diff --git a/src/app/components/alternative-forms/alternative-forms.component.ts b/src/app/components/alternative-forms/alternative-forms.component.ts
index 05842ff6d..1caafadfe 100644
--- a/src/app/components/alternative-forms/alternative-forms.component.ts
+++ b/src/app/components/alternative-forms/alternative-forms.component.ts
@@ -4,8 +4,8 @@ import { DbnaryService } from '../../services/dbnary.service';
import { GeticonService } from '../../services/geticon.service';
import { HttpClient } from '@angular/common/http';
import mullberryJson from '../../../assets/symbol-info.json';
-import arasaacJson from '../../../assets/arasaac-symbol-info.json';
-import arasaacColoredJson from '../../../assets/arasaac-color-symbol-info.json';
+import arasaacJsonSymbol from '../../../assets/arasaac-symbol-info.json';
+import arasaacJson from '../../../assets/arasaac.json';
import { MulBerryObject, ArasaacObject } from '../../libTypes';
import { Ng2ImgMaxService } from 'ng2-img-max';
import { ElementForm } from '../../types';
@@ -289,7 +289,7 @@ export class AlternativeFormsComponent implements OnInit {
}
/**
- * Shows the image corresponding to a combination of selected library (mulberry or arasaac) and searched word (any)
+ * Shows the image corresponding to a combination of selected library (mulberry or arasaac) and searched word (any)
* @param elt library to be used and word to be searched
*/
previewLibrary(elt: { lib, word }) {
@@ -299,13 +299,14 @@ export class AlternativeFormsComponent implements OnInit {
this.boardService.board.libraryUsed.push('Mulberry');
}
this.previewMullberry(elt.word);
- } else if (elt.lib === 'arasaacNB') {
- this.previewArasaac(elt.word, false);
+ } else if (elt.lib === 'arasaac') {
+ this.imageSelectionStarted = true;
+ this.elementFormNameImageURL = 'assets/libs/arasaac_pictos/' + elt.word + '.png';
if (!this.boardService.board.libraryUsed.includes('Arasaac')) {
this.boardService.board.libraryUsed.push('Arasaac');
}
- } else if (elt.lib === 'arasaacColor') {
- this.previewArasaac(elt.word, true);
+ } else if (elt.lib === 'arasaacNB') {
+ this.previewArasaac(elt.word, false);
if (!this.boardService.board.libraryUsed.includes('Arasaac')) {
this.boardService.board.libraryUsed.push('Arasaac');
}
@@ -313,7 +314,7 @@ export class AlternativeFormsComponent implements OnInit {
}
/**
- *
+ *
* @param elt library to be used and word to be searched
* @returns an url corresponding to the searched image's name in the selected library
*/
@@ -324,6 +325,8 @@ export class AlternativeFormsComponent implements OnInit {
return 'url(\'assets/libs/FR_Noir_et_blanc_pictogrammes/' + elt.word + '.png\')';
} else if (elt.lib === 'arasaacColor') {
return 'url(\'assets/libs/FR_Pictogrammes_couleur/' + elt.word + '.png\')';
+ } else if (elt.lib === 'arasaac') {
+ return 'url(\'assets/libs/arasaac_pictos/' + elt.word + '.png\')';
}
}
@@ -360,17 +363,25 @@ export class AlternativeFormsComponent implements OnInit {
let tempList = [];
if (this.configurationService.LANGUAGE_VALUE === 'FR') {
- (arasaacJson as unknown as ArasaacObject)[0].wordList.forEach(word => {
- if (text !== null && text !== '' && word.toLowerCase().includes(text.toLocaleLowerCase()) && this.getSimilarity(text.toLowerCase(), word.toLowerCase()) >= 0.5) {
- const url = word;
- tempList.push({ lib: 'arasaacNB', word: this.cleanString(url) });
+ let idInArasaac: { id: number, keyword: string }[] = [];
+ // @ts-ignore
+ for (const item of arasaacJson) {
+ for (const k of item.keywords) {
+ if (text !== null && text !== '' && k.keyword === text && k.keyword.toLowerCase().includes(text.toLocaleLowerCase()) && this.getSimilarity(text.toLowerCase(), k.keyword.toLowerCase()) >= 0.5) {
+ idInArasaac.push({ id: item._id, keyword: k.keyword });
+ }
}
- }, this);
+ }
+ if(idInArasaac.length > 0){
+ idInArasaac.forEach(elementId => {
+ tempList.push({ lib: 'arasaac', word: elementId.id });
+ });
+ }
- (arasaacColoredJson as unknown as ArasaacObject)[0].wordList.forEach(word => {
+ (arasaacJsonSymbol as unknown as ArasaacObject)[0].wordList.forEach(word => {
if (text !== null && text !== '' && word.toLowerCase().includes(text.toLocaleLowerCase()) && this.getSimilarity(text.toLowerCase(), word.toLowerCase()) >= 0.5) {
const url = word;
- tempList.push({ lib: 'arasaacColor', word: this.cleanString(url) });
+ tempList.push({ lib: 'arasaacNB', word: this.cleanString(url) });
}
}, this);
}
diff --git a/src/app/components/generator-grid/generator-grid.component.html b/src/app/components/generator-grid/generator-grid.component.html
index 0adf37fd3..1b44acb7d 100644
--- a/src/app/components/generator-grid/generator-grid.component.html
+++ b/src/app/components/generator-grid/generator-grid.component.html
@@ -5,7 +5,7 @@
-
+
@@ -67,4 +67,4 @@
{{this.multilinguism.translate(errorType)}}
-{{this.configuration.VERSION}}
\ No newline at end of file
+{{this.configuration.VERSION}}
diff --git a/src/app/components/generator-grid/generator-grid.component.ts b/src/app/components/generator-grid/generator-grid.component.ts
index 990db25d1..996277008 100644
--- a/src/app/components/generator-grid/generator-grid.component.ts
+++ b/src/app/components/generator-grid/generator-grid.component.ts
@@ -2,9 +2,9 @@ import {Component, OnInit} from '@angular/core';
import {ConfigurationService} from '../../services/configuration.service';
import {FolderGoTo, Grid, GridElementGenerated, Page} from '../../types';
import {BoardService} from '../../services/board.service';
-import arasaacJson from '../../../assets/arasaac-symbol-info.json';
+import arasaacJsonSymbol from '../../../assets/arasaac-symbol-info.json';
+import arasaacJson from '../../../assets/arasaac.json';
import {ArasaacObject, MulBerryObject} from '../../libTypes';
-import arasaacColoredJson from '../../../assets/arasaac-color-symbol-info.json';
import mullberryJson from '../../../assets/symbol-info.json';
import {EditionService} from '../../services/edition.service';
import {FunctionsService} from '../../services/functions.service';
@@ -111,20 +111,23 @@ export class GeneratorGridComponent implements OnInit {
this.addOnlyOneImage = false;
console.log('Search the exact word : ');
if (this.libToUse === 'arasaacNB') {
- (arasaacJson as unknown as ArasaacObject)[0].wordList.forEach(word => {
+ (arasaacJsonSymbol as unknown as ArasaacObject)[0].wordList.forEach(word => {
if (text !== null && text !== '' && word.toLowerCase() === text.toLocaleLowerCase() && !this.addOnlyOneImage) {
this.addOnlyOneImage = true;
this.imageList.push({ lib: 'arasaacNB', word: this.cleanString(word) });
return;
}
}, this);
- } else if (this.libToUse === 'arasaacColor') {
- (arasaacColoredJson as unknown as ArasaacObject)[0].wordList.forEach(word => {
- if (text !== null && text !== '' && word.toLowerCase() === text.toLocaleLowerCase() && !this.addOnlyOneImage) {
- this.addOnlyOneImage = true;
- this.imageList.push({ lib: 'arasaacColor', word: this.cleanString(word) });
+ } else if (this.libToUse === 'arasaac') {
+ // @ts-ignore
+ for (const item of arasaacJson) {
+ for (const k of item.keywords) {
+ if (text !== null && text !== '' && k.keyword === text && k.keyword.toLowerCase() === text.toLocaleLowerCase() && !this.addOnlyOneImage) {
+ this.addOnlyOneImage = true;
+ this.imageList.push({ lib: 'arasaac', word: item._id });
+ }
}
- }, this);
+ }
}
if (!this.addOnlyOneImage) {
console.log('No find in arasaac lib !');
@@ -145,20 +148,23 @@ export class GeneratorGridComponent implements OnInit {
searchTheClosestWordInLib(text: string) {
console.log('Search the closest word :');
if (this.libToUse === 'arasaacNB') {
- (arasaacJson as unknown as ArasaacObject)[0].wordList.forEach(word => {
+ (arasaacJsonSymbol as unknown as ArasaacObject)[0].wordList.forEach(word => {
if (text !== null && text !== '' && word.toLowerCase().includes(text.toLocaleLowerCase()) && !this.addOnlyOneImage) {
this.addOnlyOneImage = true;
this.imageList.push({ lib: 'arasaacNB', word: this.cleanString(word) });
return;
}
}, this);
- } else if (this.libToUse === 'arasaacColor') {
- (arasaacColoredJson as unknown as ArasaacObject)[0].wordList.forEach(word => {
- if (text !== null && text !== '' && word.toLowerCase().includes(text.toLocaleLowerCase()) && !this.addOnlyOneImage) {
- this.addOnlyOneImage = true;
- this.imageList.push({ lib: 'arasaacColor', word: this.cleanString(word) });
+ } else if (this.libToUse === 'arasaac') {
+ // @ts-ignore
+ for (const item of arasaacJson) {
+ for (const k of item.keywords) {
+ if (text !== null && text !== '' && k.keyword === text && k.keyword.toLowerCase().includes(text.toLocaleLowerCase()) && !this.addOnlyOneImage) {
+ this.addOnlyOneImage = true;
+ this.imageList.push({ lib: 'arasaac', word: item._id });
+ }
}
- }, this);
+ }
}
if (!this.addOnlyOneImage) {
(mullberryJson as unknown as MulBerryObject[]).forEach(value => {
@@ -181,7 +187,7 @@ export class GeneratorGridComponent implements OnInit {
this.previewMullberry(elt.word);
} else if (elt.lib === 'arasaacNB') {
this.previewArasaac(elt.word, false);
- } else if (elt.lib === 'arasaacColor') {
+ } else if (elt.lib === 'arasaac') {
this.previewArasaac(elt.word, true);
}
}
@@ -193,8 +199,8 @@ export class GeneratorGridComponent implements OnInit {
previewArasaac(t: string, isColored: boolean) {
if (isColored) {
- this.previewWithURL('assets/libs/FR_Pictogrammes_couleur/' + t + '.png');
- console.log('assets/libs/FR_Pictogrammes_couleur/' + t + '.png');
+ this.previewWithURL('assets/libs/arasaac_pictos/' + t + '.png');
+ console.log('assets/libs/arasaac_pictos/' + t + '.png');
} else {
this.previewWithURL('assets/libs/FR_Noir_et_blanc_pictogrammes/' + t + '.png');
console.log('assets/libs/FR_Noir_et_blanc_pictogrammes/' + t + '.png');
diff --git a/src/app/components/image-selection-page/image-selection-page.component.ts b/src/app/components/image-selection-page/image-selection-page.component.ts
index d50ef267b..62a6666e4 100644
--- a/src/app/components/image-selection-page/image-selection-page.component.ts
+++ b/src/app/components/image-selection-page/image-selection-page.component.ts
@@ -2,15 +2,14 @@ import { Component, OnInit } from '@angular/core';
import { EditionService } from '../../services/edition.service';
import { Ng2ImgMaxService } from 'ng2-img-max';
import mullberryJson from '../../../assets/symbol-info.json';
-import arasaacJson from '../../../assets/arasaac-symbol-info.json';
-import arasaacColoredJson from '../../../assets/arasaac-color-symbol-info.json';
+import arasaacJsonSymbol from '../../../assets/arasaac-symbol-info.json';
+import arasaacJson from '../../../assets/arasaac.json';
import { ArasaacObject, MulBerryObject } from '../../libTypes';
import { MultilinguismService } from '../../services/multilinguism.service';
import { ConfigurationService } from "../../services/configuration.service";
import { Observable } from "rxjs";
import { FormControl } from "@angular/forms";
import { map, startWith } from "rxjs/operators";
-import { DialogAddUserComponent } from "../dialog-add-user/dialog-add-user.component";
import { MatDialog } from "@angular/material/dialog";
import { DialogModifyColorInsideComponent } from "../dialog-modify-color-inside/dialog-modify-color-inside.component";
import { DialogModifyColorBorderComponent } from "../dialog-modify-color-border/dialog-modify-color-border.component";
@@ -98,8 +97,8 @@ export class ImageSelectionPageComponent implements OnInit {
return 'url(\'assets/libs/mulberry-symbols/EN-symbols/' + elt.word + '.svg\')';
} else if (elt.lib === 'arasaacNB') {
return 'url(\'assets/libs/FR_Noir_et_blanc_pictogrammes/' + elt.word + '.png\')';
- } else if (elt.lib === 'arasaacColor') {
- return 'url(\'assets/libs/FR_Pictogrammes_couleur/' + elt.word + '.png\')';
+ } else if (elt.lib === 'arasaac') {
+ return 'url(\'assets/libs/arasaac_pictos/' + elt.word + '.png\')';
}
}
@@ -124,7 +123,7 @@ export class ImageSelectionPageComponent implements OnInit {
previewArasaac(t: string, isColored: boolean) {
if (isColored) {
- this.previewWithURL('assets/libs/FR_Pictogrammes_couleur/' + t + '.png');
+ this.previewWithURL('assets/libs/arasaac_pictos/' + t + '.png');
} else {
console.log('assets/libs/FR_Noir_et_blanc_pictogrammes/' + t + '.png');
this.previewWithURL('assets/libs/FR_Noir_et_blanc_pictogrammes/' + t + '.png');
@@ -142,7 +141,7 @@ export class ImageSelectionPageComponent implements OnInit {
if (!this.boardService.board.libraryUsed.includes('Arasaac')) {
this.boardService.board.libraryUsed.push('Arasaac');
}
- } else if (elt.lib === 'arasaacColor') {
+ } else if (elt.lib === 'arasaac') {
this.previewArasaac(elt.word, true);
if (!this.boardService.board.libraryUsed.includes('Arasaac')) {
this.boardService.board.libraryUsed.push('Arasaac');
@@ -171,19 +170,26 @@ export class ImageSelectionPageComponent implements OnInit {
let tempList = [];
if (this.configurationService.LANGUAGE_VALUE === 'FR') {
- (arasaacJson as unknown as ArasaacObject)[0].wordList.forEach(word => {
- if (text !== null && text !== '' && word.toLowerCase().includes(text.toLocaleLowerCase()) && this.getSimilarity(text.toLowerCase(), word.toLowerCase()) >= 0.5) {
- console.log(word + "; " + text + "; " + this.getSimilarity(text, word));
- const url = word;
- tempList.push({ lib: 'arasaacNB', word: this.cleanString(url) });
+ let idInArasaac: { id: number, keyword: string }[] = [];
+ // @ts-ignore
+ for (const item of arasaacJson) {
+ for (const k of item.keywords) {
+ if (text !== null && text !== '' && k.keyword === text && k.keyword.toLowerCase().includes(text.toLocaleLowerCase()) && this.getSimilarity(text.toLowerCase(), k.keyword.toLowerCase()) >= 0.5) {
+ idInArasaac.push({ id: item._id, keyword: k.keyword });
+ }
}
- }, this);
+ }
+ if(idInArasaac.length > 0){
+ idInArasaac.forEach(elementId => {
+ tempList.push({ lib: 'arasaac', word: elementId.id });
+ });
+ }
- (arasaacColoredJson as unknown as ArasaacObject)[0].wordList.forEach(word => {
+ (arasaacJsonSymbol as unknown as ArasaacObject)[0].wordList.forEach(word => {
if (text !== null && text !== '' && word.toLowerCase().includes(text.toLocaleLowerCase()) && this.getSimilarity(text.toLowerCase(), word.toLowerCase()) >= 0.5) {
console.log(word + "; " + text + "; " + this.getSimilarity(text, word));
const url = word;
- tempList.push({ lib: 'arasaacColor', word: this.cleanString(url) });
+ tempList.push({ lib: 'arasaacNB', word: this.cleanString(url) });
}
}, this);
}
diff --git a/src/app/components/life-companion2aug/life-companion2aug.component.ts b/src/app/components/life-companion2aug/life-companion2aug.component.ts
index 46fc58163..42ddc6c37 100644
--- a/src/app/components/life-companion2aug/life-companion2aug.component.ts
+++ b/src/app/components/life-companion2aug/life-companion2aug.component.ts
@@ -4,15 +4,13 @@ import { BoardService } from '../../services/board.service';
import { Grid, GridElement, Page } from '../../types';
import { LayoutService } from '../../services/layout.service';
import { Router } from '@angular/router';
-import arasaacColoredJson from '../../../assets/arasaac-color-symbol-info.json';
import scleraJson from '../../../assets/sclera.json';
import parlerPictoJson from '../../../assets/parlerpictos.json';
-import arasaacJson from '../../../assets/arasaac.json';
+import arasaacJsonLCC from '../../../assets/arasaacLCC.json';
import fontawesomeJson from '../../../assets/fontawesome.json';
import mulberryJson from '../../../assets/mulberry-symbols-lcc.json';
import {
arasaacLCCObject,
- ArasaacObject,
fontawesomeObject,
mulberryObject,
ParlerPictoObject,
@@ -338,17 +336,6 @@ export class LifeCompanion2augComponent implements OnInit {
return gridElement;
}
- private getPathImageArsaacLibrary(textContent: any): string {
- if (textContent !== null) {
- const index = (arasaacColoredJson as unknown as ArasaacObject)[0].wordList.findIndex(word => {
- return textContent.toLowerCase().trim() === word.toLowerCase();
- });
- if (index > -1) {
- return 'assets/libs/FR_Pictogrammes_couleur/' + (arasaacColoredJson as unknown as ArasaacObject)[0].wordList[index] + '.png';
- }
- }
- }
-
private getPathImageFromLibraries(idImage: any): string {
if (idImage !== undefined) {
//sclera
@@ -367,11 +354,11 @@ export class LifeCompanion2augComponent implements OnInit {
}
// ca commence ici
//arasaac-lifecompanion
- index = (arasaacJson as unknown as arasaacLCCObject).images.findIndex(word => {
+ index = (arasaacJsonLCC as unknown as arasaacLCCObject).images.findIndex(word => {
return idImage === word.id;
});
if (index > -1) {
- return 'assets/libs/arasaac/' + (arasaacJson as unknown as arasaacLCCObject).images[index].id + '.png';
+ return 'assets/libs/arasaac/' + (arasaacJsonLCC as unknown as arasaacLCCObject).images[index].id + '.png';
}
//mulberry-lifecompanion
index = (mulberryJson as unknown as mulberryObject).images.findIndex(word => {
@@ -402,24 +389,6 @@ export class LifeCompanion2augComponent implements OnInit {
return '';
}
- private addImageButton(element: any) {
- try {
- const pathImage = this.getPathImageArsaacLibrary(element.attr.textContent);
- this.grid.ImageList.push({
- ID: element.attr.textContent,
- OriginalName: element.attr.textContent,
- Path: pathImage !== undefined ? pathImage : '',
- });
- } catch (e) {
- const pathImage = this.getPathImageArsaacLibrary(element.attr.text);
- this.grid.ImageList.push({
- ID: element.attr.text,
- OriginalName: element.attr.text,
- Path: pathImage !== undefined ? pathImage : '',
- });
- }
- }
-
private addImageButtonFullLibrary(element: any) {
let pathImage: string;
diff --git a/src/app/components/spb2aug/spb2aug.component.ts b/src/app/components/spb2aug/spb2aug.component.ts
index 9547ff279..c9fa15634 100644
--- a/src/app/components/spb2aug/spb2aug.component.ts
+++ b/src/app/components/spb2aug/spb2aug.component.ts
@@ -5,8 +5,7 @@ import {BoardService} from '../../services/board.service';
import {Router} from '@angular/router';
import {IndexeddbaccessService} from '../../services/indexeddbaccess.service';
import {ConfigurationService} from '../../services/configuration.service';
-import arasaacColoredJson from '../../../assets/arasaac-color-symbol-info.json';
-import {ArasaacObject} from '../../libTypes';
+import arasaacJson from '../../../assets/arasaac.json';
import {LayoutService} from '../../services/layout.service';
declare const initSqlJs: any;
@@ -356,25 +355,21 @@ export class Spb2augComponent implements OnInit {
* @param message the message of the button
*/
getPathImageArsaacLibrary(label, message): string {
- if (label !== null) {
- const index = (arasaacColoredJson as unknown as ArasaacObject)[0].wordList.findIndex(word => {
- return label.toLowerCase() === word.toLowerCase();
- });
- if (index > -1) {
- return 'assets/libs/FR_Pictogrammes_couleur/' + (arasaacColoredJson as unknown as ArasaacObject)[0].wordList[index] + '.png';
+
+ if(label !== null){
+ // @ts-ignore
+ const idInArasaac = arasaacJson.filter(item => item.keywords.some(k => k.keyword === label)).map(item => item._id);
+ if(idInArasaac.length > 0){
+ return 'assets/libs/arasaac_pictos/' + idInArasaac[0] + '.png';
}
}
-
- if (message !== null) {
- const index = (arasaacColoredJson as unknown as ArasaacObject)[0].wordList.findIndex(word => {
- return message.toLowerCase() === word.toLowerCase();
- });
- if (index > -1) {
- return 'assets/libs/FR_Pictogrammes_couleur/' + (arasaacColoredJson as unknown as ArasaacObject)[0].wordList[index] + '.png';
+ if(message !== null){
+ // @ts-ignore
+ const idInArasaac = arasaacJson.filter(item => item.keywords.some(k => k.keyword === message)).map(item => item._id);
+ if(idInArasaac.length > 0){
+ return 'assets/libs/arasaac_pictos/' + idInArasaac[0] + '.png';
}
}
-
-
return '';
}
@@ -449,11 +444,9 @@ export class Spb2augComponent implements OnInit {
*/
statErrorImage() {
this.newGrid.ImageList.forEach(picture => {
- const index = (arasaacColoredJson as unknown as ArasaacObject)[0].wordList.findIndex(word => {
- return picture.ID !== null && picture.ID !== '' && (picture.ID.toLowerCase() === word || picture.ID.toUpperCase() === word);
- });
-
- if (index === -1) {
+ // @ts-ignore
+ const idInArasaac = arasaacJson.filter(item => item.keywords.some(k => k.keyword === picture.ID)).map(item => item._id);
+ if (idInArasaac.length == 0) {
// console.log(picture.ID);
this.numberErrorImage = this.numberErrorImage + 1;
}
diff --git a/src/app/libTypes.ts b/src/app/libTypes.ts
index 922c6292e..0e9b59832 100644
--- a/src/app/libTypes.ts
+++ b/src/app/libTypes.ts
@@ -1,7 +1,13 @@
/**
* the description of a mulberry element from the mulberry library
*/
-import { ImageMulberry, ImageParlerPicto, ImageSclera, ImagearasaacLCC, ImageFontawesome } from "./types";
+import {
+ ImageMulberry,
+ ImageParlerPicto,
+ ImageSclera,
+ ImagearasaacLCC,
+ ImageFontawesome,
+} from "./types";
export class MulBerryObject {
id: number;
@@ -13,7 +19,29 @@ export class MulBerryObject {
}
/**
- * the description of a mulberry element from the mulberry library
+ * the description of Arasaac element from the Arasaac library
+ */
+/* pas utile
+export class ArasaacUpdatedObject{
+ schematic: boolean;
+ sex: boolean;
+ violence: boolean;
+ aac: boolean;
+ skin: boolean;
+ hair: boolean;
+ download: number;
+ categories: string[];
+ synsets: string[];
+ tags: string[];
+ _id: number;
+ created: string;
+ lastUpdated: string;
+ keywords: KeywordsArasaac[];
+}
+*/
+
+/**
+ * the description of Arasaac element from the mulberry library
*/
export class ArasaacObject {
wordList: string[];
diff --git a/src/app/types.ts b/src/app/types.ts
index 4d9102f56..bc9ef7611 100644
--- a/src/app/types.ts
+++ b/src/app/types.ts
@@ -266,6 +266,13 @@ export class ImageParlerPicto {
id: string;
kws: Kws;
}
+/* pas utile
+export class ImagearasaacUpdated {
+ nm: string;
+ id: string;
+ kws: Kws;
+}
+ */
export class ImagearasaacLCC {
nm: string;
@@ -288,3 +295,11 @@ export class ImageFontawesome {
export class Kws {
fr: string[];
}
+/*pas utile
+export class KeywordsArasaac{
+ type: number;
+ keyword: string;
+ hasLocution: boolean;
+ plural: string;
+}
+ */
diff --git a/src/assets/arasaac.json b/src/assets/arasaac.json
index dd48bf850..b76916cf8 100644
--- a/src/assets/arasaac.json
+++ b/src/assets/arasaac.json
@@ -1,68386 +1,532140 @@
-{
- "name": "ARASAAC",
- "description": "image.dictionary.description.arasaac",
- "author": "image.dictionary.author.arasaac",
- "imageExtension": "png",
- "url": "http://www.arasaac.org/",
- "customDictionary": false,
- "images": [
- {
- "nm": "hulier",
- "id": "10ca720aee60e80baa8774aa3aa9c547f7599da1f343b8c278c77b3e9c57fb2c",
- "kws": {
- "fr": [
- "hulier",
- "ornement"
- ]
- }
- },
- {
- "nm": "disposer",
- "id": "c8f982626beae479ea0e9411e2f1fb05f7bb8a078c75249dfe4da40e3d7e5501",
- "kws": {
- "fr": [
- "disposer",
- "ranger",
- "organiser"
- ]
- }
- },
- {
- "nm": "casse-noix",
- "id": "fc69722025e858789aaaf18ff319f5c464e7da988813b0a56b03e49f42fc9451",
- "kws": {
- "fr": [
- "casse-noix"
- ]
- }
- },
- {
- "nm": "triangle",
- "id": "449191d66df1a2d561259c8f18f84063c455054633c4e99cad9a56108c812451",
- "kws": {
- "fr": [
- "triangle",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "chaussons de danse",
- "id": "4789cf8d9ccdcb87a0f2784cec8c3190345ac2a477e9cd502a7466f97fb5777f",
- "kws": {
- "fr": [
- "chaussons de danse"
- ]
- }
- },
- {
- "nm": "poursuivre",
- "id": "e6afacd01db74e2369e28564253645250b167f0f72f617ab487e27e7e20a0628",
- "kws": {
- "fr": [
- "poursuivre",
- "suivre"
- ]
- }
- },
- {
- "nm": "bibliothèque",
- "id": "fa05f385719907bc994159896a03326eb9e792fe330fcaf5407f441ff585bc1c",
- "kws": {
- "fr": [
- "bibliothèque"
- ]
- }
- },
- {
- "nm": "théâtre",
- "id": "8cd36f7d83d9b3d0c780cf2e3072444c8028696eea130816c7cb320791974bc8",
- "kws": {
- "fr": [
- "théâtre",
- "pièce de théâtre"
- ]
- }
- },
- {
- "nm": "vingt-deux",
- "id": "447d71e0f86cee6912498d3b2b9c42542f4147b62ff06b5200fea239ed4d58a0",
- "kws": {
- "fr": [
- "vingt-deux",
- "22"
- ]
- }
- },
- {
- "nm": "conseiller d\u0027orientation professionnel",
- "id": "a7d5ee0b5177ba7fd9d7f139be59ca21d971ad6a5644a8324dffdecc8d543b02",
- "kws": {
- "fr": [
- "conseiller d\u0027orientation professionnel"
- ]
- }
- },
- {
- "nm": "terminer",
- "id": "6fdea099749c285e83b9b0629aa724427961c87d2ddd0de4d6e5201e39f98b95",
- "kws": {
- "fr": [
- "terminer",
- "fin",
- "finir"
- ]
- }
- },
- {
- "nm": "sentir",
- "id": "7320218171249a0306a448299ff41c7b4ff18e5a4ded3d4c50a3db0b3215a0fa",
- "kws": {
- "fr": [
- "sentir",
- "odeur",
- "odorat"
- ]
- }
- },
- {
- "nm": "froid",
- "id": "89da2901a01de84c77d976705f9cf2b69f2f757178d0bc7dbce97eac07ce0646",
- "kws": {
- "fr": [
- "froid"
- ]
- }
- },
- {
- "nm": "collant",
- "id": "87e5bfb37aff60652c221ee2a82dcea33c4aab5a861d7e8de3af5ca758379b0b",
- "kws": {
- "fr": [
- "collant",
- "collante"
- ]
- }
- },
- {
- "nm": "trace",
- "id": "6fc12c4bba515b118b61bd6b1443778ea6344ac7c0413342da62ee91462d484f",
- "kws": {
- "fr": [
- "trace"
- ]
- }
- },
- {
- "nm": "fou",
- "id": "ee6226d5a9f270d9aa1cf7966245af0fd98925c7305f463c10cacc4f42352691",
- "kws": {
- "fr": [
- "fou"
- ]
- }
- },
- {
- "nm": "huile de tournesol",
- "id": "a156eaf70fc203ac0a29baee003d58547a3b57f4c51190d4213d557ff08cb582",
- "kws": {
- "fr": [
- "huile de tournesol",
- "huile",
- "huilier"
- ]
- }
- },
- {
- "nm": "secouriste",
- "id": "8e4614a022b7aacc310ede0db76a99164b1793f255c4366cfba647f064f5f4ba",
- "kws": {
- "fr": [
- "secouriste"
- ]
- }
- },
- {
- "nm": "conseiller d\u0027orientation professionnel",
- "id": "48ebe4ae4c966f926fe7c9695d217b84997bd26f1083374be192c070ef5de6a6",
- "kws": {
- "fr": [
- "conseiller d\u0027orientation professionnel",
- "itinéraire personnalisé"
- ]
- }
- },
- {
- "nm": "enfant",
- "id": "764eaf9f4147ca182e11c0f3cb60958bb1bb527041e6cfb3bde037d2b524d977",
- "kws": {
- "fr": [
- "enfant",
- "petit garçon",
- "garçon"
- ]
- }
- },
- {
- "nm": "toi",
- "id": "6a01e351088d82a20ad09f31181865dae9c0ea0161e0709c8530120f98193078",
- "kws": {
- "fr": [
- "toi",
- "tu",
- "vous"
- ]
- }
- },
- {
- "nm": "atteindre",
- "id": "9c6363318e6ad47a3a554eaa8606e58c2cf9ab60dbac4993bf77f2637fbeea65",
- "kws": {
- "fr": [
- "atteindre",
- "attraper"
- ]
- }
- },
- {
- "nm": "cœur",
- "id": "09e34cf5181018637e9b11b025d441fb381c8de4adaae8f479d9286f1d15bb39",
- "kws": {
- "fr": [
- "cœur",
- "organe"
- ]
- }
- },
- {
- "nm": "frankenstein",
- "id": "98d2015bc362d0e1fa32bed76f9f7efea0d2f2f95ae157ed56401fd233966da8",
- "kws": {
- "fr": [
- "frankenstein"
- ]
- }
- },
- {
- "nm": "lèvres",
- "id": "7b9946516674b6d38ad49008fc3f0df7a1d0cbb6d95d0475140a20f12afb638e",
- "kws": {
- "fr": [
- "lèvres"
- ]
- }
- },
- {
- "nm": "neige-t-il",
- "id": "1e8a60c41bdf93ce2c3d5f1dff64b164e5bebd8de78420a2a4c89988f49be937",
- "kws": {
- "fr": [
- "neige-t-il"
- ]
- }
- },
- {
- "nm": "équitation",
- "id": "f13e4ab6a491cd206695c2cb9067e1818b2076ea4b6e290093fe718ea911064a",
- "kws": {
- "fr": [
- "équitation",
- "monter"
- ]
- }
- },
- {
- "nm": "limer les ongles",
- "id": "023b477979f3f3a004f363992f17e2efe2ad65ef1306f7a58fa47c08a89a5c4d",
- "kws": {
- "fr": [
- "limer les ongles",
- "limer"
- ]
- }
- },
- {
- "nm": "parcourir",
- "id": "86bb5f2bc170d6a801ddb8f013ccb38277d8c1ede2963bd16430bdff101feba5",
- "kws": {
- "fr": [
- "parcourir",
- "voyager"
- ]
- }
- },
- {
- "nm": "salle atelier",
- "id": "2b9ae9e37b060136c6cd8c5823b8095c0dc57fbcf11f7c4ff4522d22d3de74b8",
- "kws": {
- "fr": [
- "salle atelier",
- "salle d\u0027activités"
- ]
- }
- },
- {
- "nm": "raquettes de plage",
- "id": "fa59325a9550ec8aeba61cbf539a51160c5130de6598b06046fc3ffe66929f33",
- "kws": {
- "fr": [
- "raquettes de plage",
- "raquettes"
- ]
- }
- },
- {
- "nm": "rincer les cheveux",
- "id": "63149d216a9519f89c6a00ca2e9916e66ff58860a9db7bf73e226f7ef1c50878",
- "kws": {
- "fr": [
- "rincer les cheveux",
- "rincer"
- ]
- }
- },
- {
- "nm": "compléter",
- "id": "52e4f5d09c08e38787150f305648c641c0593e4a51d5d54a5c8243bce4461625",
- "kws": {
- "fr": [
- "compléter",
- "remplir"
- ]
- }
- },
- {
- "nm": "pompière",
- "id": "3058cd22272b5ef34cd8302b59ab10da773855b8fd4dfeb7e8f4b41e49855146",
- "kws": {
- "fr": [
- "pompière"
- ]
- }
- },
- {
- "nm": "maison de campagne",
- "id": "f4872c92bfc33cb193a89090f7102aaba630497c263fb64461da01ad785e79c9",
- "kws": {
- "fr": [
- "maison de campagne",
- "maison de labourage"
- ]
- }
- },
- {
- "nm": "corde d\u0027escalade",
- "id": "f814f68ef653faa4c54aebb0f98968eaf308ce791a91016d67ca16db84be0357",
- "kws": {
- "fr": [
- "corde d\u0027escalade",
- "corde"
- ]
- }
- },
- {
- "nm": "psychologue",
- "id": "f687ddd4161d7b7bdaecc8c790be96642e66a6ba18c67f650038e14300d7af0b",
- "kws": {
- "fr": [
- "psychologue"
- ]
- }
- },
- {
- "nm": "sponsor",
- "id": "49640c0cac091718285c2f4df1080d6da70365e3785e9e0198f513997a9f88e9",
- "kws": {
- "fr": [
- "sponsor"
- ]
- }
- },
- {
- "nm": "lecteur vidéo",
- "id": "64fb7aa1da3fc66290f3af0f3995bef3fff9b6408a4c0d6fd24f4b8d2dce3908",
- "kws": {
- "fr": [
- "lecteur vidéo"
- ]
- }
- },
- {
- "nm": "bulles de savon",
- "id": "35a17e3dcd638de8921f099bf590c6849fdaf97bcfd48cba0f27560f4736b339",
- "kws": {
- "fr": [
- "bulles de savon",
- "bulles"
- ]
- }
- },
- {
- "nm": "essuyer les assiettes",
- "id": "a2fa15d3774b00719f0cdfa0642ddcdd8ef09a0d455478e6a1c28d822c53e58b",
- "kws": {
- "fr": [
- "essuyer les assiettes",
- "sécher"
- ]
- }
- },
- {
- "nm": "bateau",
- "id": "f8ee40bb650f2df25dde69a9d3321e4455b5cd17ac191b9f738bc41c343a4b87",
- "kws": {
- "fr": [
- "bateau"
- ]
- }
- },
- {
- "nm": "glace",
- "id": "e6b645f76302f7c03a92e44ce044672ab8a178d191a498d27ebd998aa9025e9f",
- "kws": {
- "fr": [
- "glace"
- ]
- }
- },
- {
- "nm": "faner",
- "id": "0559a0ce7a36c3d1b433d9742702882e0c7b2b5e9662a7dfb55e878cc51bae94",
- "kws": {
- "fr": [
- "faner",
- "fané"
- ]
- }
- },
- {
- "nm": "nœud papillon",
- "id": "b628cf402d3d637fcb4fb26575c92471f58a7cb94779ceb0efc455f54f3c4a66",
- "kws": {
- "fr": [
- "nœud papillon"
- ]
- }
- },
- {
- "nm": "sortie dépendants",
- "id": "050879a07f40279541e39c150c791118eae98052d0d0f7f004bb1c096d9f7d1f",
- "kws": {
- "fr": [
- "sortie dépendants"
- ]
- }
- },
- {
- "nm": "bigoudi",
- "id": "3950b82b56eee1ecae2cd6f51300d7436f6ffe93d746c0a694d59ebc722568e1",
- "kws": {
- "fr": [
- "bigoudi"
- ]
- }
- },
- {
- "nm": "argentine",
- "id": "de34347681d6524dcf74ae8e196f4fbbab860fafc59cec4e64f0acdabe8518dd",
- "kws": {
- "fr": [
- "argentine"
- ]
- }
- },
- {
- "nm": "sélection",
- "id": "417aea84ad73ecb8b059b6b378b36bf75a677dcaa66cf3661acf617ac9c46bb9",
- "kws": {
- "fr": [
- "sélection",
- "décision",
- "choix",
- "préférence"
- ]
- }
- },
- {
- "nm": "fléchettes",
- "id": "64d855592de8b8bd966d5b0c6af08eb8412ac79aad5c35b4ed8eff889600c73c",
- "kws": {
- "fr": [
- "fléchettes"
- ]
- }
- },
- {
- "nm": "vingt-trois",
- "id": "e6597813fd1e65137ef4eb49e0e5ca8b19863833501557e86b214efa528a161d",
- "kws": {
- "fr": [
- "vingt-trois",
- "23"
- ]
- }
- },
- {
- "nm": "ramasser les poubelles",
- "id": "ed4442232863111672a71ce699aa272d4863663f75771eabd69ee2dedd08d7a5",
- "kws": {
- "fr": [
- "ramasser les poubelles"
- ]
- }
- },
- {
- "nm": "peinture",
- "id": "feaf907c10302da386429a7601547bc0508a0b5f9261cfc25186f1bd6b9cc4f4",
- "kws": {
- "fr": [
- "peinture",
- "picasso",
- "cubisme"
- ]
- }
- },
- {
- "nm": "se lever",
- "id": "f0fe84ed002907e0412e7de6dc6e23d2ac6fa9e15f0b5d8b0a5ba87349e2d7ef",
- "kws": {
- "fr": [
- "se lever",
- "lever"
- ]
- }
- },
- {
- "nm": "prendre",
- "id": "5eca8944e0986049b293145e3d8c60fa76054cd51b3bb4b2c24ebe1ed7757f4d",
- "kws": {
- "fr": [
- "prendre",
- "manger"
- ]
- }
- },
- {
- "nm": "boucle",
- "id": "723a65628b62d9efb3740e08ac28ed41e2b17627fa096f6934011a6f24f49dde",
- "kws": {
- "fr": [
- "boucle"
- ]
- }
- },
- {
- "nm": "ça va !",
- "id": "905a015d0945e5d5d023d2fb75064e94695a87a72fa1cce7b5430d8615cee2e0",
- "kws": {
- "fr": [
- "ça va !",
- "ça va"
- ]
- }
- },
- {
- "nm": "s\u0027allonger",
- "id": "3797223c77b91d80e1e9e3dbe8bd866053d1108df643ff7f75135ee8655e0008",
- "kws": {
- "fr": [
- "s\u0027allonger"
- ]
- }
- },
- {
- "nm": "manifestation",
- "id": "759ddb1945ad311110c9a7decac9c12758601b4afdfb4cfcb578dfb6723d33bd",
- "kws": {
- "fr": [
- "manifestation"
- ]
- }
- },
- {
- "nm": "radio",
- "id": "c60edcd7876c4bbc100e814a59503972db7766f96dc449a8bffcf7bc2c1167c9",
- "kws": {
- "fr": [
- "radio"
- ]
- }
- },
- {
- "nm": "canari",
- "id": "6f153fb350514003a1d5426c15aa9f98f838e1cad4afcf72708b31c652affc1f",
- "kws": {
- "fr": [
- "canari"
- ]
- }
- },
- {
- "nm": "manche",
- "id": "0d1a7e6835056542bdbbc96014515367f47d1378919809a17a95cbf4ced76c1e",
- "kws": {
- "fr": [
- "manche"
- ]
- }
- },
- {
- "nm": "macaroni",
- "id": "ba7d242bf124943567144c323503265fcf6ead53d4f8623d314c75e2a97f8323",
- "kws": {
- "fr": [
- "macaroni"
- ]
- }
- },
- {
- "nm": "nuit de la saint sylvestre",
- "id": "3937e79ea533ecd50666c6525da536e5d7c5639e3197a9caba516d51beaa34c5",
- "kws": {
- "fr": [
- "nuit de la saint sylvestre",
- "nuit de la saint-sylvestre",
- "fin d\u0027année"
- ]
- }
- },
- {
- "nm": "produit de soutien",
- "id": "16f91b98f57da223c79eb89f71b71a26aff6e4b5c0bb09576afae749f2c76830",
- "kws": {
- "fr": [
- "produit de soutien",
- "bon marcheur"
- ]
- }
- },
- {
- "nm": "tu",
- "id": "452b7b4424d3117152d37af5a400aaad6604b2461183a73f6f05e724d518104f",
- "kws": {
- "fr": [
- "tu",
- "vous"
- ]
- }
- },
- {
- "nm": "souffler",
- "id": "b6781208cc378048005f5cbaec8ae1cc66c5b5cda4986feec18df094e70770b3",
- "kws": {
- "fr": [
- "souffler"
- ]
- }
- },
- {
- "nm": "melon",
- "id": "f52c33685f4b70cf783fd04da20a597fe1202dbc1f2ef373b77789ad91445422",
- "kws": {
- "fr": [
- "melon"
- ]
- }
- },
- {
- "nm": "au",
- "id": "e5ca3e3fb2f76842c44c41b388351ac742b0815080a17d451782a5bf71204629",
- "kws": {
- "fr": [
- "au"
- ]
- }
- },
- {
- "nm": "unifor",
- "id": "f356fef38b1acb4e7c400489669bd44b46eaaf844fbe4d191ddc31272ba984f6",
- "kws": {
- "fr": [
- "unifor",
- "signalétique"
- ]
- }
- },
- {
- "nm": "fumée",
- "id": "55223f325e1a10e88ced6035129863d8684d3f2a7e0fd4062d5f1a4de54cd10f",
- "kws": {
- "fr": [
- "fumée"
- ]
- }
- },
- {
- "nm": "bijoux",
- "id": "66168628694b328ea94e30e9c08243de0f4ee098cb16f98d8ccd01de76127332",
- "kws": {
- "fr": [
- "bijoux"
- ]
- }
- },
- {
- "nm": "kippa",
- "id": "310a3c7fdfc55c6396c542236e11cef6c7044b9400e32c098511d0dce1ed5627",
- "kws": {
- "fr": [
- "kippa"
- ]
- }
- },
- {
- "nm": "tambour",
- "id": "044b26b4bbca2271d43c21ef7918b38e42c962c84c7c4fe0c7ce976187b7d8d1",
- "kws": {
- "fr": [
- "tambour",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "demi-pension",
- "id": "f960dd02e87a8e4df54a402d7c5598304840b244e405512efd16167e6a2aa59c",
- "kws": {
- "fr": [
- "demi-pension"
- ]
- }
- },
- {
- "nm": "jouer la guitare",
- "id": "e4170e97190059aeaee503461ae1563dcc42c6ff450c968003073611dd3af0f7",
- "kws": {
- "fr": [
- "jouer la guitare",
- "jouer"
- ]
- }
- },
- {
- "nm": "céréales",
- "id": "e41e33f30ca6514b853a7e4fe8a8222c7b290613d79eaaa2a50d7913bf474ec7",
- "kws": {
- "fr": [
- "céréales",
- "avoine"
- ]
- }
- },
- {
- "nm": "mal à l\u0027oreille",
- "id": "8b16759d4d99555d4d36f916c0a9c19e2947f7029ef4cd1692365119eace9b3c",
- "kws": {
- "fr": [
- "mal à l\u0027oreille"
- ]
- }
- },
- {
- "nm": "partir",
- "id": "1a473df6225365d6552608e2cf46f009cb89c1817a73c111de202294b3c7ef0c",
- "kws": {
- "fr": [
- "partir",
- "casser",
- "diviser"
- ]
- }
- },
- {
- "nm": "talc pour bébé",
- "id": "84a4be087a10b6a533b7a880da9da9b8d2339bc573f303c3e6ad69d40d1e4040",
- "kws": {
- "fr": [
- "talc pour bébé",
- "talc"
- ]
- }
- },
- {
- "nm": "patient",
- "id": "ab6abc22b2962752760e3814c59fb4a7c96e38f56edf13aeeeeed17947ae2b56",
- "kws": {
- "fr": [
- "patient",
- "tomber malade",
- "maladie"
- ]
- }
- },
- {
- "nm": "saint",
- "id": "92d73cfa62206d9c4ba6ddc22b659b35cee7f3bc66029e58d577657b7fc6cbf6",
- "kws": {
- "fr": [
- "saint"
- ]
- }
- },
- {
- "nm": "planète",
- "id": "a210524239fbcfa5719df5f29df2bd868ff273812163df0c3d95cf924ca4a59c",
- "kws": {
- "fr": [
- "planète",
- "saturne"
- ]
- }
- },
- {
- "nm": "thérapie de groupe",
- "id": "cf8c3bcd14f4dd266790784a42954209ce06b45858ec0b5e09885562b88ddc9f",
- "kws": {
- "fr": [
- "thérapie de groupe"
- ]
- }
- },
- {
- "nm": "gaine d\u0027évacuation verticale",
- "id": "1c32b61a0d4929cb381b1813f30a69ea7325b271cc7f96d89d2c79ad26f8917c",
- "kws": {
- "fr": [
- "gaine d\u0027évacuation verticale"
- ]
- }
- },
- {
- "nm": "tailleur",
- "id": "4e7e020ef543aecf93ef77f63d80ff0cea0aa51bb3a6fc0c881271f7cfb398db",
- "kws": {
- "fr": [
- "tailleur"
- ]
- }
- },
- {
- "nm": "suivant",
- "id": "f65b289e27bdfc565257036be5babd9ea2e888185d4a7f0dc06925e78effbf13",
- "kws": {
- "fr": [
- "suivant"
- ]
- }
- },
- {
- "nm": "diviser",
- "id": "61443282aafd107d9216e482fd425ddbb5e63d1cd0949404b5206b670c4984d3",
- "kws": {
- "fr": [
- "diviser"
- ]
- }
- },
- {
- "nm": "se retourner",
- "id": "73bc79dc944b175a69c348846d644f9080d6d8a58b19781b28a7d1cd7dab1146",
- "kws": {
- "fr": [
- "se retourner",
- "retourner"
- ]
- }
- },
- {
- "nm": "formation professionnelle",
- "id": "c9a2a70438a32be75e29aff11958203eaa6f1b91ac1480e7030a9866e4ef353f",
- "kws": {
- "fr": [
- "formation professionnelle"
- ]
- }
- },
- {
- "nm": "parfois",
- "id": "6b178da72b8712a417519dc7514d4af03a547c26b3b086d0440944accd5dfdda",
- "kws": {
- "fr": [
- "parfois"
- ]
- }
- },
- {
- "nm": "honneur",
- "id": "f5e4fb632e885a52ce4cb976f502e92535d859447f282d73ee49f18593bf958e",
- "kws": {
- "fr": [
- "honneur",
- "respect",
- "réputation"
- ]
- }
- },
- {
- "nm": "saumon",
- "id": "3dca6f977de6134faf24e223654eb42372e1259cbfc61ea5b9f6be9592439dab",
- "kws": {
- "fr": [
- "saumon"
- ]
- }
- },
- {
- "nm": "hochet",
- "id": "8cde2676445418970aa1d4fad9cb314fe0b81d6d8bd7d5296492c24ffcada09a",
- "kws": {
- "fr": [
- "hochet"
- ]
- }
- },
- {
- "nm": "porte-document",
- "id": "adee155e3d2d51956e25052680fad5fdb78d48797f6bd40613273a9476d16e73",
- "kws": {
- "fr": [
- "porte-document",
- "porte-documents",
- "attaché-case"
- ]
- }
- },
- {
- "nm": "pauvre",
- "id": "b30f5118f5e47d393eb2bcfc6adad26468061a28ab84aeb93f590b8d42bd9a30",
- "kws": {
- "fr": [
- "pauvre",
- "demander",
- "indigent",
- "mendiant"
- ]
- }
- },
- {
- "nm": "île",
- "id": "0357e623f48aa5ebbe04b7b76424840a7dd83749d46133a689b0c58cbe5bc17a",
- "kws": {
- "fr": [
- "île"
- ]
- }
- },
- {
- "nm": "dompteuse",
- "id": "c1ece7b9552840f529b128fb30fba612c75baad340a3d3ffe7d6e5a4c62f6011",
- "kws": {
- "fr": [
- "dompteuse"
- ]
- }
- },
- {
- "nm": "incendie",
- "id": "a30020ae9c724036889fb2920e5c861942d5ee02957e77ab5c38233d25628537",
- "kws": {
- "fr": [
- "incendie"
- ]
- }
- },
- {
- "nm": "trébucher",
- "id": "95fbbf5c6e82feb6c04fcc5b43ea79390118e1ff84b8db20185c89095acaf940",
- "kws": {
- "fr": [
- "trébucher"
- ]
- }
- },
- {
- "nm": "toza",
- "id": "e29b720f492ba04f65a183cee52ff49a3ecc5431617c4ce9b6c163d6ed83c145",
- "kws": {
- "fr": [
- "toza",
- "tronc de noël"
- ]
- }
- },
- {
- "nm": "conseillère d\u0027orientation professionnelle",
- "id": "d6f3426711af4ed3cebc62d377850c119c9ce9c9940c166246fc79b5b568305e",
- "kws": {
- "fr": [
- "conseillère d\u0027orientation professionnelle"
- ]
- }
- },
- {
- "nm": "sonner",
- "id": "faf38314eb1e14ecdbd1a6c0123ad5a58abc9632813231162eb11ac15cc451e3",
- "kws": {
- "fr": [
- "sonner",
- "klaxonner"
- ]
- }
- },
- {
- "nm": "cheminée",
- "id": "86b7f7948f98ef202b73881853ad840d10c3aa0075fcef9846893d30e72df87c",
- "kws": {
- "fr": [
- "cheminée"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "e2c7f182bf4564f1dc6fe67714eeacbb41e7cec1dce98a933641940aaf622651",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains aux hanches",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "brioche de pâque",
- "id": "178a73d468f2b2c193a90f3a9853d5502614552c0ead00bab6fb17df126882a2",
- "kws": {
- "fr": [
- "brioche de pâque",
- "œufs au chocolat",
- "semaine de pâque"
- ]
- }
- },
- {
- "nm": "fondre",
- "id": "6fe830f79d05db51849bf653ea6022de5e987485d5db3b21fec0bf1983e26846",
- "kws": {
- "fr": [
- "fondre"
- ]
- }
- },
- {
- "nm": "coca-cola",
- "id": "09a76deca960e9ba2f990e1a22834f7cd62c8bb69ca423a7b2c38173d12180a2",
- "kws": {
- "fr": [
- "coca-cola",
- "boisson fraîche"
- ]
- }
- },
- {
- "nm": "urne",
- "id": "c961b427038a0e4b2d82ad0a99488a1324dc3b371faa6951425d9385d8a2712b",
- "kws": {
- "fr": [
- "urne"
- ]
- }
- },
- {
- "nm": "paire",
- "id": "b3718086c9f8743ccd81a8d982e205cf1137be6d1f58102c2d25f2d868353c2a",
- "kws": {
- "fr": [
- "paire",
- "six",
- "numéro"
- ]
- }
- },
- {
- "nm": "douleur",
- "id": "149f22df459a8bd180e7a51ce742e52a9f0133ced150934aa1456fcd05f62f98",
- "kws": {
- "fr": [
- "douleur",
- "faire mal",
- "souffrir",
- "bobo",
- "supporter",
- "forte douleur",
- "mal de tête"
- ]
- }
- },
- {
- "nm": "y",
- "id": "b15b3d9f8c84db92c0295b6868bcee19485fbd1bf57ddca3ab176a37620ec02f",
- "kws": {
- "fr": [
- "y",
- "lettre"
- ]
- }
- },
- {
- "nm": "plateau",
- "id": "764c15f39a18251457147b6c6e31ab2bb3b20e3f20dc897fa6f176cb5e5dc34e",
- "kws": {
- "fr": [
- "plateau"
- ]
- }
- },
- {
- "nm": "vivipare",
- "id": "95d6e44e4c813814e4183601ce8af74bd19d97be1537643593315eec3c554668",
- "kws": {
- "fr": [
- "vivipare"
- ]
- }
- },
- {
- "nm": "jaen",
- "id": "8238f7aa469dbbb2b061d821253586724788e4ab027f712c2079afb907a87e29",
- "kws": {
- "fr": [
- "jaen"
- ]
- }
- },
- {
- "nm": "queue de billard",
- "id": "c0dbd99f623de1748bcbb833a417d7e1d1b4cfc0e19ca5b490fbbf7d73672f1c",
- "kws": {
- "fr": [
- "queue de billard",
- "queue"
- ]
- }
- },
- {
- "nm": "transparent",
- "id": "90a421c964dd5d7f3b54a6730fc52d7d900fec47ab4278e08bbb9cd132b8fceb",
- "kws": {
- "fr": [
- "transparent"
- ]
- }
- },
- {
- "nm": "corde",
- "id": "6d0716b07f51fa4c7eb73dd728d9bcfd670666183b99e4c68a161a013351ed32",
- "kws": {
- "fr": [
- "corde"
- ]
- }
- },
- {
- "nm": "serveur",
- "id": "7616810c4c24a6cc657b95dd2f6ded4428db85a1f126ab33b03ce769869a9a18",
- "kws": {
- "fr": [
- "serveur"
- ]
- }
- },
- {
- "nm": "camion de pompiers",
- "id": "53834d2d1174116ee84f60f0b6da4386e69e4a32919f35c6ef8473bfffa459db",
- "kws": {
- "fr": [
- "camion de pompiers"
- ]
- }
- },
- {
- "nm": "bûcheronne",
- "id": "50f7d3e42606266ed8b6da1c097db871edd75b92f9e03ea3f1cf5bcecf44f83b",
- "kws": {
- "fr": [
- "bûcheronne"
- ]
- }
- },
- {
- "nm": "parfumerie",
- "id": "84809b2e698341d45d5b3e826edd6ab6b879a26cf533362647b53430e639146d",
- "kws": {
- "fr": [
- "parfumerie"
- ]
- }
- },
- {
- "nm": "sens",
- "id": "a33608ef881cfe8543246df552a04db541d5173df5cc6b0d1960824ae8750be5",
- "kws": {
- "fr": [
- "sens",
- "sentir"
- ]
- }
- },
- {
- "nm": "étoile",
- "id": "9444c45afa2e633eaddabbfe42db5f6d00127cf485b18c351429b3a064ea6cab",
- "kws": {
- "fr": [
- "étoile",
- "astre"
- ]
- }
- },
- {
- "nm": "pari",
- "id": "5b917bc5a4bf22eb54db8e4b339a9b6bc10506aba2911fe3e490e0d7840260cc",
- "kws": {
- "fr": [
- "pari",
- "loto foot"
- ]
- }
- },
- {
- "nm": "poney",
- "id": "6ee4ba481b5e785bd2d3e5107d35d2d13647fda1f0523b01e7d2c76bd5ec54c2",
- "kws": {
- "fr": [
- "poney"
- ]
- }
- },
- {
- "nm": "police",
- "id": "3e76fefefe7f7c1eaf0f3922eaf012c3849b97e61d9266692219452882ac7f13",
- "kws": {
- "fr": [
- "police"
- ]
- }
- },
- {
- "nm": "effacer",
- "id": "e4051e15b783028b4f0fc08d25b768530b5ea22cb742b7b5813de02ff5f42516",
- "kws": {
- "fr": [
- "effacer"
- ]
- }
- },
- {
- "nm": "baguette",
- "id": "ab68f49ec11088f469daa7e2596e041c0bef8b16508cd33fd54c2994bf1934a7",
- "kws": {
- "fr": [
- "baguette"
- ]
- }
- },
- {
- "nm": "se refléter",
- "id": "48a6ee0e09cc522557d1b297841fb014d5e787329bdf5a283f3fc35bd69983c2",
- "kws": {
- "fr": [
- "se refléter",
- "refléter"
- ]
- }
- },
- {
- "nm": "laver la voiture",
- "id": "2c1fcf0c60fa5fe2c05faec6a3b9787674abf89586142d654ab4c30156ade26d",
- "kws": {
- "fr": [
- "laver la voiture",
- "laver"
- ]
- }
- },
- {
- "nm": "sainte",
- "id": "30daec1bfb83a894322eb1abee67617c14773c4592ea574183c10db4b155eb31",
- "kws": {
- "fr": [
- "sainte"
- ]
- }
- },
- {
- "nm": "marché du travail",
- "id": "77eb01eb623713ebf3e1cbc6537f8e53d3776ee20ddbe39a4e7319996a2fca12",
- "kws": {
- "fr": [
- "marché du travail"
- ]
- }
- },
- {
- "nm": "se noyer",
- "id": "08453d88b39981dbe87e9527a055da1eb20dacc7e841f14776927dc73c6e4c26",
- "kws": {
- "fr": [
- "se noyer",
- "noyer"
- ]
- }
- },
- {
- "nm": "fève",
- "id": "f87dcb10d3eb9bcdf76f5e557edd5665bafee0263e9785aed7fcb6c6cc59061f",
- "kws": {
- "fr": [
- "fève"
- ]
- }
- },
- {
- "nm": "méduse",
- "id": "69749092f2abd11dd7b2365629f3a1521b9129d389eaf3672444df302d3a6e19",
- "kws": {
- "fr": [
- "méduse"
- ]
- }
- },
- {
- "nm": "tu as réussi !",
- "id": "0f344d6171c34f6cf4fb6c8991ae122635fd038df378dbe3de6583b63ca1db31",
- "kws": {
- "fr": [
- "tu as réussi !",
- "accepter",
- "assumer"
- ]
- }
- },
- {
- "nm": "otite",
- "id": "d766df34d5bc57edd1df1720d6d69e3fd9dc686e089ca85d9c74602635635cd5",
- "kws": {
- "fr": [
- "otite"
- ]
- }
- },
- {
- "nm": "bateau",
- "id": "328b170988e2f5356b545554384182c67f845c19ede10c446ddd4ad9fd8bbfa8",
- "kws": {
- "fr": [
- "bateau"
- ]
- }
- },
- {
- "nm": "prendre part",
- "id": "4adaab22faa01d829e44048040a3c7a520f29aef6f093d714395e13b42e98323",
- "kws": {
- "fr": [
- "prendre part"
- ]
- }
- },
- {
- "nm": "télécommande",
- "id": "e53dc073e08a4900c32a00cf7f31d80dd68e70bb1bb2a2e6155a8a6ef1a854d2",
- "kws": {
- "fr": [
- "télécommande",
- "commande"
- ]
- }
- },
- {
- "nm": "clés",
- "id": "35f2adccc0571bf52763f29b7363e77acf2989dfce64fb3f742cc0cd03f3848e",
- "kws": {
- "fr": [
- "clés"
- ]
- }
- },
- {
- "nm": "patineur",
- "id": "0e311fa90ff1c3f029c9cdc0d6b4e4722a8e48eefd17b980d6972831b75fd2cf",
- "kws": {
- "fr": [
- "patineur"
- ]
- }
- },
- {
- "nm": "interdiction de manger",
- "id": "fa9ef7cd9df64df2b9cbb89f5e12fb8646f4b78a9576930e89855c45f4ba3179",
- "kws": {
- "fr": [
- "interdiction de manger"
- ]
- }
- },
- {
- "nm": "flaque",
- "id": "19df3efab09c6e7f4ed8ec0a91b80d5361d26ee8cfe04dc5d69f9d23ef3bb942",
- "kws": {
- "fr": [
- "flaque"
- ]
- }
- },
- {
- "nm": "jouer",
- "id": "80a4555e9b5ba238f410cf9bd4f4ee8819ecd781ce0c56a6abf82b1facb908b9",
- "kws": {
- "fr": [
- "jouer"
- ]
- }
- },
- {
- "nm": "ordinateur",
- "id": "14515dcde11fc6b8a0e0cd1159257c5152cdb670eda7a69bf0869485115d81d2",
- "kws": {
- "fr": [
- "ordinateur",
- "ordinateur"
- ]
- }
- },
- {
- "nm": "racines de radis",
- "id": "dee1a2533f941eeaab3df284b0793d1fe36f169e6fc9bddbd53722ba80b5f028",
- "kws": {
- "fr": [
- "racines de radis"
- ]
- }
- },
- {
- "nm": "famille monoparentale",
- "id": "fb1777efabdaaec44560f2e466fde19d330433e537050f5f9602c0f539939449",
- "kws": {
- "fr": [
- "famille monoparentale"
- ]
- }
- },
- {
- "nm": "lait caillé",
- "id": "850fabaecf92ea7c1467064075b88900b01648cdebad38aa7661c5b888c8a218",
- "kws": {
- "fr": [
- "lait caillé"
- ]
- }
- },
- {
- "nm": "donner un coup",
- "id": "6091ddcbe2cefea94f3acdebffed7b7aa92ecf0ea6e664a788418de066d260b2",
- "kws": {
- "fr": [
- "donner un coup"
- ]
- }
- },
- {
- "nm": "lancer une fléchette",
- "id": "09cd7f7c05958e1ea9c3f879c05df386c0bc01d00b376dde87bd6cff7944158a",
- "kws": {
- "fr": [
- "lancer une fléchette"
- ]
- }
- },
- {
- "nm": "piège",
- "id": "5a7b83ee769d444dcf00f27912f6649cebab2e0b59f0eb6d0ae15fa77ef2f4f1",
- "kws": {
- "fr": [
- "piège"
- ]
- }
- },
- {
- "nm": "griffe",
- "id": "d57ff79eb49b784788784cd2b27d781fd02fe134850334c8fed8b19eee2a06cc",
- "kws": {
- "fr": [
- "griffe"
- ]
- }
- },
- {
- "nm": "ciseaux scolaires",
- "id": "fa6a944f0fc6c2e5b01d1fe254b62031907ca8b7b62f8af2900aaed37f421566",
- "kws": {
- "fr": [
- "ciseaux scolaires",
- "ciseaux"
- ]
- }
- },
- {
- "nm": "librairie",
- "id": "bbdb098e300f73753ae915fc197f094672262af9b010f561e54a4af782bd8a1e",
- "kws": {
- "fr": [
- "librairie"
- ]
- }
- },
- {
- "nm": "romantique",
- "id": "8755b5984ea04d22aa5074a6461116b142b98f6df1d67674f67b0abfafc20323",
- "kws": {
- "fr": [
- "romantique"
- ]
- }
- },
- {
- "nm": "savoir",
- "id": "0d54a56feeb1d1933d76351304d26d223cfe977d8c56577c6daf10252da04fb6",
- "kws": {
- "fr": [
- "savoir",
- "lever le doigt"
- ]
- }
- },
- {
- "nm": "opticienne",
- "id": "ba6e133e8f428df129922d9d432fda4ab770dbedac1d790a08b57fd5daea5272",
- "kws": {
- "fr": [
- "opticienne"
- ]
- }
- },
- {
- "nm": "ascenseur",
- "id": "d5737464eee5dabb456432b468e4ef86efe5940af27190e1c8b8a4725c8974cd",
- "kws": {
- "fr": [
- "ascenseur"
- ]
- }
- },
- {
- "nm": "paquet de chips",
- "id": "ee6adc5b9943869b0241c3cac9d48336c8d88b78817c5f7758a3277ab52ace1c",
- "kws": {
- "fr": [
- "paquet de chips",
- "frites",
- "gâteaux apéritif"
- ]
- }
- },
- {
- "nm": "omoplate",
- "id": "0ba8f479a8fd7bdac48460753de8acbe33608e4eda5522e0fc77ad3221ba3313",
- "kws": {
- "fr": [
- "omoplate"
- ]
- }
- },
- {
- "nm": "castilla-leon",
- "id": "dcc390d91458f2ebcfcb518f42805e31a085a82507ac76990595d012c1487368",
- "kws": {
- "fr": [
- "castilla-leon",
- "castille et léon",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "croche",
- "id": "ab46e7bd7598e548c88f5d6d285fedb7a058c567cdfe2fb9727d788ad4880c91",
- "kws": {
- "fr": [
- "croche"
- ]
- }
- },
- {
- "nm": "étoile de david",
- "id": "32d283db4517ef4edff9e1991b2fb368270bdb5fd6de575cecc7d39746cb60ab",
- "kws": {
- "fr": [
- "étoile de david",
- "judaïsme"
- ]
- }
- },
- {
- "nm": "salle d\u0027attente",
- "id": "15e445a1ac91ee38ff98c7552390bc6ebf90632e9415bd76634885abd95a2579",
- "kws": {
- "fr": [
- "salle d\u0027attente"
- ]
- }
- },
- {
- "nm": "rôti",
- "id": "e4fdcff81cdb532e01dc49eab875e1a90b684dcdea6aba6c3dfa8f792ff64582",
- "kws": {
- "fr": [
- "rôti"
- ]
- }
- },
- {
- "nm": "sole",
- "id": "e7f2b8e6b3c3113fca86f8ffbcd9e18b6fafab0196ca2833e8835fbc817fd051",
- "kws": {
- "fr": [
- "sole"
- ]
- }
- },
- {
- "nm": "saint georges et le dragon (nom d\u0027une légende)",
- "id": "800bc192a28d6ee90398f5394796476dab2022b58a5a4448b7fecfffc518757e",
- "kws": {
- "fr": [
- "saint georges et le dragon (nom d\u0027une légende)",
- "saint georges"
- ]
- }
- },
- {
- "nm": "majeur",
- "id": "bc0071c8213ac630a7281b3c0a6eb06d1bfb484d45c2ff81762bac5027b4b93a",
- "kws": {
- "fr": [
- "majeur"
- ]
- }
- },
- {
- "nm": "manège",
- "id": "9d587c8907c2063bab7f6553f67e1cde52a9dde7f7e7bbe8a76ab1ee5c6fa8b8",
- "kws": {
- "fr": [
- "manège"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "46abfa92b989ae8f97fbb8922f405a90f462ca597f29efb80efe2bcaefdc0280",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains aux épaules",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "prendre",
- "id": "104b90747db6be350c4e1ef3050fe6a3bb6777c82f0cb09bc838306db52ebd5c",
- "kws": {
- "fr": [
- "prendre"
- ]
- }
- },
- {
- "nm": "faire peur",
- "id": "a64443ce93b9ab7a8cb900c541efc99e951687b35afdf5e9f8192c146a80ac9c",
- "kws": {
- "fr": [
- "faire peur",
- "avoir peur"
- ]
- }
- },
- {
- "nm": "enfants",
- "id": "cb059002b86a0e6144a225367d7536bf3f52486f1c8a69c342f34138b7ccbfec",
- "kws": {
- "fr": [
- "enfants",
- "garçons"
- ]
- }
- },
- {
- "nm": "tomber",
- "id": "97a76b1d94e1cf7bc30ce8db3b29e69cd3febba6967ab636260fc88be1400eb4",
- "kws": {
- "fr": [
- "tomber"
- ]
- }
- },
- {
- "nm": "butane",
- "id": "3b63e3995d491c7c7318d643c03e49265198e856eb6e6ee07ca3aa9cacb35ed8",
- "kws": {
- "fr": [
- "butane",
- "bonbonne de butane",
- "bonbonne"
- ]
- }
- },
- {
- "nm": "éviter",
- "id": "ce9aa2f80ee19906b9b9509948ec1d88be2d068ea7cff3390eb595f2b8760c0c",
- "kws": {
- "fr": [
- "éviter",
- "slalom"
- ]
- }
- },
- {
- "nm": "planche",
- "id": "9c67d30c69476bcf83e66d8d7f4a845a21649cb96e5ca630cf0566286a2346c1",
- "kws": {
- "fr": [
- "planche"
- ]
- }
- },
- {
- "nm": "objets perdus",
- "id": "6610d297cad1f71aa8720cd7cc1ddb8f661f1d423639d8c4c19960624db5bc5e",
- "kws": {
- "fr": [
- "objets perdus"
- ]
- }
- },
- {
- "nm": "remonter",
- "id": "af5720aa4d0b2a27a8098407e97b32b86f6e97e3ec70d170c035f4f0aba7e501",
- "kws": {
- "fr": [
- "remonter"
- ]
- }
- },
- {
- "nm": "ridé",
- "id": "3b118803a95eda00a21833f239c46cc1b329072e77445ebd5ae26cc8dbe1a07e",
- "kws": {
- "fr": [
- "ridé",
- "ridée"
- ]
- }
- },
- {
- "nm": "opérer",
- "id": "af31f608655eb7585da47b9753bfa58262d23159f36e5f30609ee72387e046d2",
- "kws": {
- "fr": [
- "opérer"
- ]
- }
- },
- {
- "nm": "ami",
- "id": "7a09fb4b3c185790ed7b0324ff50f50a136eb0a71aee99a20292042ca3ef0985",
- "kws": {
- "fr": [
- "ami"
- ]
- }
- },
- {
- "nm": "cracher",
- "id": "6ba2ff437761ae2ca639e726556f1b9fa73daf7d95bd28bc412d4fb08b0e7f5e",
- "kws": {
- "fr": [
- "cracher"
- ]
- }
- },
- {
- "nm": "roumanie",
- "id": "011cfd9a6579fc21c82f95aa18bcb4f68e28c0cddd6403c0267d474a239c2292",
- "kws": {
- "fr": [
- "roumanie"
- ]
- }
- },
- {
- "nm": "guide",
- "id": "78e0283787734a4abae11df42976d8d71e9a899f7f136363696e8698310b8b68",
- "kws": {
- "fr": [
- "guide"
- ]
- }
- },
- {
- "nm": "groupe électrogène",
- "id": "95ac233709410783e9caabd7c3d5bbb07d23646ed88dd2af7e0982c82cd39ce1",
- "kws": {
- "fr": [
- "groupe électrogène",
- "générateur"
- ]
- }
- },
- {
- "nm": "castagnette",
- "id": "50c599f5860b1bfb86aebbe2d987afe85cd27474efe48a619a81ace887cccaf7",
- "kws": {
- "fr": [
- "castagnette",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "prêter attention",
- "id": "1eb6681ecf12642f8975b385f0ca475a0ca4130a3805cd9a2c23639f581712be",
- "kws": {
- "fr": [
- "prêter attention",
- "bien traiter",
- "s\u0027occuper"
- ]
- }
- },
- {
- "nm": "lingettes",
- "id": "1027b41342f91464cb0719083fde062eff2119908a2a76ba2096509927347cb2",
- "kws": {
- "fr": [
- "lingettes"
- ]
- }
- },
- {
- "nm": "alicante",
- "id": "7db2416e330eb151df3a171c9c40fffe850021d1be47e60a299b663c6d2f8098",
- "kws": {
- "fr": [
- "alicante"
- ]
- }
- },
- {
- "nm": "jaune d\u0027œuf",
- "id": "17a0e5e9e42d8be1048d7807349f04f7971903d0a601ff25f196f85c2a34e0af",
- "kws": {
- "fr": [
- "jaune d\u0027œuf"
- ]
- }
- },
- {
- "nm": "chanter",
- "id": "b8e9e04cdb08b3577fc7b2902beada5f5d0d9666086bc1a2d7e5b6dee63a0613",
- "kws": {
- "fr": [
- "chanter",
- "musique"
- ]
- }
- },
- {
- "nm": "coiffer",
- "id": "eff594e1d8cd4380c2541f09d7ef171ef618362fa4d317cbd32ddfb788353975",
- "kws": {
- "fr": [
- "coiffer",
- "se coiffer"
- ]
- }
- },
- {
- "nm": "donner un coup",
- "id": "2fd113e27c5e3a3a2698d066dfe28523dba26b1650028db187546025d50470d1",
- "kws": {
- "fr": [
- "donner un coup",
- "coller",
- "donner des coups de pied",
- "attaquer",
- "donner un coup de pied"
- ]
- }
- },
- {
- "nm": "blocs",
- "id": "dacde5faebd12011d5736ec224cd33a2a256d6565a8e3102d832d69a6ddf3315",
- "kws": {
- "fr": [
- "blocs"
- ]
- }
- },
- {
- "nm": "assistant social",
- "id": "1575386c1d13e59ea57b1f572753997b85d7aef2832ce9e75c6db0f71026c2f8",
- "kws": {
- "fr": [
- "assistant social",
- "assistant",
- "assistante sociale"
- ]
- }
- },
- {
- "nm": "asperge",
- "id": "f2593b2ffba5e32cb73a4d564ac769919eb6bf3ecc8a6948efba70966dda17a8",
- "kws": {
- "fr": [
- "asperge"
- ]
- }
- },
- {
- "nm": "télécabine",
- "id": "362763da40cbf84a71513dc76a1388626f5448f489906801ad1c3c152c811cfe",
- "kws": {
- "fr": [
- "télécabine",
- "téléphérique"
- ]
- }
- },
- {
- "nm": "muraille de chine",
- "id": "b6e46739348b2e758a4e0151730bf9cf9b1b8951e220bfdbb410cdce21b5c958",
- "kws": {
- "fr": [
- "muraille de chine"
- ]
- }
- },
- {
- "nm": "pageot",
- "id": "5633b1dd6e5e94bc3d50b8dfe133aa56a946cebb3441d71ac61c01342f850282",
- "kws": {
- "fr": [
- "pageot"
- ]
- }
- },
- {
- "nm": "danger électricité",
- "id": "c1cc76dec71be0d3b551b8b15eee21368f009672989b5b15eb07301bd80eb596",
- "kws": {
- "fr": [
- "danger électricité",
- "danger",
- "risque"
- ]
- }
- },
- {
- "nm": "fesses",
- "id": "f0e24f64fba53f217d370e1cb37f1d43cfa7816c1fc4ca8ab958b5b0a9a65e33",
- "kws": {
- "fr": [
- "fesses"
- ]
- }
- },
- {
- "nm": "plat à fondue",
- "id": "99f4db8b4967743a26c5b3242bc9173b01f90ae539038f5c3245d29291ab1a90",
- "kws": {
- "fr": [
- "plat à fondue",
- "fondue"
- ]
- }
- },
- {
- "nm": "tourne disque",
- "id": "dd1bf2340151a4b723a9b41fece0bb3d2dfca8c30be233433819e06d23e796fd",
- "kws": {
- "fr": [
- "tourne disque"
- ]
- }
- },
- {
- "nm": "ambulance",
- "id": "8aa4b2150fa8744f1b743e1fccf4e581fbbfb619d9dbf8d7d30b41ee50d286db",
- "kws": {
- "fr": [
- "ambulance"
- ]
- }
- },
- {
- "nm": "patient",
- "id": "baab731cde82df9919e47be7bb861fb8637cc3cf15230dfcaa4c7e0f60f9c0cb",
- "kws": {
- "fr": [
- "patient"
- ]
- }
- },
- {
- "nm": "sourde-muette",
- "id": "c59752127e3f7d4bd3f493accbfb3beacb780c0bb5cdcb0811d1f5b0c8d69713",
- "kws": {
- "fr": [
- "sourde-muette"
- ]
- }
- },
- {
- "nm": "maire",
- "id": "25e4c60d28acda4d3ab822ca25e609a1315b3f4d83b70373d71184ded72cbaa2",
- "kws": {
- "fr": [
- "maire",
- "mairie"
- ]
- }
- },
- {
- "nm": "peintures de couleurs",
- "id": "92ba0866b809081ce578cfb445b54ce1a14cbc9db9b34cddcf5570ba246a74c2",
- "kws": {
- "fr": [
- "peintures de couleurs",
- "peintures",
- "crayons de cire"
- ]
- }
- },
- {
- "nm": "fatiguer",
- "id": "4d9984cb53ae8476a065e067e206e18f46250237fafae7010a7363af11928ec1",
- "kws": {
- "fr": [
- "fatiguer",
- "épuiser"
- ]
- }
- },
- {
- "nm": "luxembourg",
- "id": "13b0f28ed0c690cf966409b204b200c76e94ac8276fb31390f9cadbb03534e20",
- "kws": {
- "fr": [
- "luxembourg"
- ]
- }
- },
- {
- "nm": "attendre",
- "id": "581f49d6e931265589f253c1621491fb94dede219eedf39b30103227a4350e3c",
- "kws": {
- "fr": [
- "attendre"
- ]
- }
- },
- {
- "nm": "égoutter",
- "id": "83a4408be1537997a4f4c2efdd449fb70e64874124b7422e8e9c441020b8e4c5",
- "kws": {
- "fr": [
- "égoutter"
- ]
- }
- },
- {
- "nm": "nièce",
- "id": "931b4577e397c90ff0576b50d24e376e0395704a1e738e04889e10e7986da4af",
- "kws": {
- "fr": [
- "nièce"
- ]
- }
- },
- {
- "nm": "femme",
- "id": "48092b2757848b9bfa9d564dbd59a6e17b1d74425799e66955ab01a3a03b8390",
- "kws": {
- "fr": [
- "femme"
- ]
- }
- },
- {
- "nm": "vieille carême",
- "id": "dd78c87c197822f36179c157931459aae8187980f5fe7ddbc92864f68bb54a52",
- "kws": {
- "fr": [
- "vieille carême"
- ]
- }
- },
- {
- "nm": "incliner",
- "id": "21b781c62819e419d4d55c0629c050b668669ff0184ebcb976e83a2026c03eba",
- "kws": {
- "fr": [
- "incliner",
- "s\u0027incliner"
- ]
- }
- },
- {
- "nm": "bijouterie",
- "id": "44649401059dbf3d91da6436958a67025ee79b7bc20a4f714b0de6be084cbcee",
- "kws": {
- "fr": [
- "bijouterie"
- ]
- }
- },
- {
- "nm": "les",
- "id": "14ad475c3c76d506f6033932b6437b282751ae3ec430c078ab879e4fa0389499",
- "kws": {
- "fr": [
- "les"
- ]
- }
- },
- {
- "nm": "art-thérapie",
- "id": "28065d09ad81e30dc3dbaac3b2f20979d542081977f8271d1542f7854670be48",
- "kws": {
- "fr": [
- "art-thérapie"
- ]
- }
- },
- {
- "nm": "œuf",
- "id": "5ebfadaaaf76eaf8866fc22bec65b465a95a1f3fd185bf2f6f07e228599091c7",
- "kws": {
- "fr": [
- "œuf"
- ]
- }
- },
- {
- "nm": "livres de jeux, sport et loisir",
- "id": "01aa3c520d4a244f9c038df9c631c1bd71ed7e0f1123e8b0231c6c9543e8e69e",
- "kws": {
- "fr": [
- "livres de jeux, sport et loisir"
- ]
- }
- },
- {
- "nm": "prendre",
- "id": "c3c19a69ec720697f9be22068b80c95a8d17305505d23e6597bf1901cdbc3e30",
- "kws": {
- "fr": [
- "prendre"
- ]
- }
- },
- {
- "nm": "oncle",
- "id": "3c96fe3e179aae046fc74b58dd9eef8a27d53b76a4a3f76e4888637507bea768",
- "kws": {
- "fr": [
- "oncle"
- ]
- }
- },
- {
- "nm": "cascade",
- "id": "ae3482581e8344dd235129a294630b83b517563c5bd813035e9c6cecb3d5abb6",
- "kws": {
- "fr": [
- "cascade",
- "chute",
- "monastère de piedra"
- ]
- }
- },
- {
- "nm": "défenseur",
- "id": "2ece3a2d439c6f9be4745bbb63c5fd105cde5c27c9a367339ad1c082d8207a7b",
- "kws": {
- "fr": [
- "défenseur",
- "avocat"
- ]
- }
- },
- {
- "nm": "puerto rico",
- "id": "35f4aaa14dca711faf063e8fdb770c945f28f3ce7ce86d29aae2bf1028b2bb29",
- "kws": {
- "fr": [
- "puerto rico"
- ]
- }
- },
- {
- "nm": "sceau de peinture",
- "id": "8aaaa43367984f8e2df3ce1a0337746fb22654fa5a763881591865d17c9c2f80",
- "kws": {
- "fr": [
- "sceau de peinture",
- "sceau"
- ]
- }
- },
- {
- "nm": "pauvreté",
- "id": "775603310338ae5bfce6902a708bb571577a4700860886612bfd6bad5420775d",
- "kws": {
- "fr": [
- "pauvreté"
- ]
- }
- },
- {
- "nm": "salle de classe",
- "id": "285f2ff873ef81de3a6a6d7f711b0bce9e1f01d2ce957292204b533a6eaf6880",
- "kws": {
- "fr": [
- "salle de classe",
- "salle de cours"
- ]
- }
- },
- {
- "nm": "berger",
- "id": "cf30cd357eef56567111558e1a60600a1ca071187d0c181ce327d5e721987b97",
- "kws": {
- "fr": [
- "berger"
- ]
- }
- },
- {
- "nm": "équateur",
- "id": "d0e73acdd5a2d52b4e2d9f5c7f04b17b490d9c1f72894eab0b9d081bee3da23f",
- "kws": {
- "fr": [
- "équateur"
- ]
- }
- },
- {
- "nm": "pommeau",
- "id": "c40fc84d9f060f8e09f16608e683b477c257aeaa9566f9257eb00adc45d1f5b6",
- "kws": {
- "fr": [
- "pommeau"
- ]
- }
- },
- {
- "nm": "broyer",
- "id": "5d60622d311b2b16662aebbc04e0f3e1d16ea00ad476cd6d12aae8ba6a722925",
- "kws": {
- "fr": [
- "broyer",
- "piler"
- ]
- }
- },
- {
- "nm": "soupe",
- "id": "1fe2c40ae8f783a70272fafef1165daab05ec2be131fd7dcd96993dee6440eef",
- "kws": {
- "fr": [
- "soupe",
- "bouillon de viande"
- ]
- }
- },
- {
- "nm": "poing",
- "id": "b2de4e40c8e4c82b709db514abb46c8f8ff4c2a2c20097b154261c78909cb8e3",
- "kws": {
- "fr": [
- "poing"
- ]
- }
- },
- {
- "nm": "encens",
- "id": "4c1023cca1672257cc7aabccf4e4ba541ccad4fbce075145471f2da1fc69fd9a",
- "kws": {
- "fr": [
- "encens"
- ]
- }
- },
- {
- "nm": "aveugle",
- "id": "3b7b67a8803599c1c8107e03496cd7201b2c0a319b6ec6c24d73f22ab1e2c789",
- "kws": {
- "fr": [
- "aveugle",
- "non-voyant"
- ]
- }
- },
- {
- "nm": "station d\u0027épuration",
- "id": "00e7e824a9aebee61361cd2f71a5f316eeccba0ca93bd26c4861c91c79010504",
- "kws": {
- "fr": [
- "station d\u0027épuration"
- ]
- }
- },
- {
- "nm": "bénédiction pontificale",
- "id": "f395f0e25aaa7871d5e9a8e4c118ddaac1173354df7d96c2d31f4530a24935e3",
- "kws": {
- "fr": [
- "bénédiction pontificale",
- "bénédiction"
- ]
- }
- },
- {
- "nm": "huppe fasciée",
- "id": "ad2feb7261ee1f76b8f2b17e974c408109dfecbe5809c573258536d45c46928c",
- "kws": {
- "fr": [
- "huppe fasciée"
- ]
- }
- },
- {
- "nm": "poubelle de recyclage pour le papier",
- "id": "e32c2feaefd16863707d811a4464411e41101fecd7e72acecf5fec219eae0e69",
- "kws": {
- "fr": [
- "poubelle de recyclage pour le papier",
- "benne"
- ]
- }
- },
- {
- "nm": "inaugurer",
- "id": "79185cac67e2a3040f37c3593d45e359369c1292b25e1e38b88a24fb7f3352be",
- "kws": {
- "fr": [
- "inaugurer"
- ]
- }
- },
- {
- "nm": "escargot",
- "id": "0eefc81d190f3f55261695ced7b3ef91151f729e872f03775e9699d534956069",
- "kws": {
- "fr": [
- "escargot"
- ]
- }
- },
- {
- "nm": "gauche",
- "id": "de0eeeced0073a55365e3a44c615803d2e2922b1ed59e5aa17d2f6f321f11eee",
- "kws": {
- "fr": [
- "gauche"
- ]
- }
- },
- {
- "nm": "cils",
- "id": "6181d188746ba06fa274b4737c94578e91bfd62f44c96fa2bbbebd4f00dc2955",
- "kws": {
- "fr": [
- "cils"
- ]
- }
- },
- {
- "nm": "prunier",
- "id": "a5c9549f4f1158ad52af043d32ecdcae297dd05fb6708c38f28a227523d1b35e",
- "kws": {
- "fr": [
- "prunier",
- "arbre fruitier"
- ]
- }
- },
- {
- "nm": "soupe aux fruits de mer",
- "id": "6dfb0d2e646fb9a40c8eb337b6e024ee7be468add5b84ee1d575ffe12a1f1db3",
- "kws": {
- "fr": [
- "soupe aux fruits de mer",
- "soupe"
- ]
- }
- },
- {
- "nm": "documentaire",
- "id": "6ddc40d1f0e337c9ea103ec78b45de7ca0e523ffab6b761d982ffa544076e20a",
- "kws": {
- "fr": [
- "documentaire"
- ]
- }
- },
- {
- "nm": "joseph",
- "id": "50f5447358942659f26bfafe143d0a0061358f870cce003687d7a69a2ca520f5",
- "kws": {
- "fr": [
- "joseph",
- "saint josé"
- ]
- }
- },
- {
- "nm": "source",
- "id": "7653a1dde75030874932e6a7c9ddf6dd7281616f1feffb9e2640c678df362d68",
- "kws": {
- "fr": [
- "source"
- ]
- }
- },
- {
- "nm": "tante",
- "id": "3bfad3e9b7c884c02ca0fe23230f1ca5eb0c1264ef63a45724078ae7437bd391",
- "kws": {
- "fr": [
- "tante"
- ]
- }
- },
- {
- "nm": "ramasser",
- "id": "b497bcd26c3eb6e046e8b60bb09187a0ef87f030127dd461f4925e554b8cbc04",
- "kws": {
- "fr": [
- "ramasser"
- ]
- }
- },
- {
- "nm": "vibreur",
- "id": "a0508b7b3b0687226a7cab19cdb22ef87d3591061c269b0238e6254a661acdd6",
- "kws": {
- "fr": [
- "vibreur",
- "masseur"
- ]
- }
- },
- {
- "nm": "pince universelle",
- "id": "dbb49345944757a441f8a065a67e0cc37e1925a5c0d9e4eac5d8823c55d91033",
- "kws": {
- "fr": [
- "pince universelle",
- "pince"
- ]
- }
- },
- {
- "nm": "rincer les mains",
- "id": "91f209994f71a0a6ea2d8fbe79d0d1858ea97152b78cb69fdb5bd4d5739ec09f",
- "kws": {
- "fr": [
- "rincer les mains",
- "rincer"
- ]
- }
- },
- {
- "nm": "passer",
- "id": "4d320cd6873093f87009928f9df5ffe279e9cf7f8ef7f81491b6db3c3d9fe2ee",
- "kws": {
- "fr": [
- "passer"
- ]
- }
- },
- {
- "nm": "brioche de pâque",
- "id": "3023a0a4de17ef4ae68253683527042608f637a73d221cf13654506f5e3d6f78",
- "kws": {
- "fr": [
- "brioche de pâque"
- ]
- }
- },
- {
- "nm": "où est-il",
- "id": "0b2fae85801580d1a3ee51efb44d35a39aea5848076ba95e2620faa4a60812a8",
- "kws": {
- "fr": [
- "où est-il",
- "où"
- ]
- }
- },
- {
- "nm": "centre de jour",
- "id": "4efa53e895583777110b56154d711dc2b9194f7d2882f413b31b0b205f2cdc2d",
- "kws": {
- "fr": [
- "centre de jour"
- ]
- }
- },
- {
- "nm": "éteindre la lumière",
- "id": "24bd5c699359a9d774b495603b36cfa78f6d0013bfbe20056a8cdc8cd1302f48",
- "kws": {
- "fr": [
- "éteindre la lumière",
- "éteindre"
- ]
- }
- },
- {
- "nm": "lilas",
- "id": "0c0e1758d0e64423a98245f556bb3d55c846122238391905e599d2c0b2f95290",
- "kws": {
- "fr": [
- "lilas"
- ]
- }
- },
- {
- "nm": "parcourir",
- "id": "d63e019f7a59662b6cdbfc4fc8fe916b86970dee2fe17738b806de848ae65f9f",
- "kws": {
- "fr": [
- "parcourir",
- "voyager"
- ]
- }
- },
- {
- "nm": "vers",
- "id": "292c09890cb01dcd3656526642069aad4bbdbc146dbcf7ccf02bb6d293036b36",
- "kws": {
- "fr": [
- "vers"
- ]
- }
- },
- {
- "nm": "secouriste",
- "id": "8b22bb6791a3dbe8ec3d867ea43e46b385d09445b01976de67ff9cf9ff1b1af7",
- "kws": {
- "fr": [
- "secouriste"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "797ecbc87f760073f1424658d62b5f61f867091f85b223c92e7cb32d82801802",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains aux épaules",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "expositions",
- "id": "8da200a85297f639d642957b62f8b120908410e2bb409cb68f77797180929b56",
- "kws": {
- "fr": [
- "expositions"
- ]
- }
- },
- {
- "nm": "se lever tôt",
- "id": "adbc0d5106f2ef23d0685f3fabe186002d107750cdbfe6a583366bbe8de5e7d8",
- "kws": {
- "fr": [
- "se lever tôt"
- ]
- }
- },
- {
- "nm": "vociférer",
- "id": "b5af57b68193251ab97854a5bf1a3a0f677302f750e1df7de20d9ff8ff5b2634",
- "kws": {
- "fr": [
- "vociférer",
- "crier",
- "appeler"
- ]
- }
- },
- {
- "nm": "instruments de musique",
- "id": "1b0307e34bbd57ac30aec17c84b6028bb5348687dac2e0cb0018c4bb968358d6",
- "kws": {
- "fr": [
- "instruments de musique",
- "instruments"
- ]
- }
- },
- {
- "nm": "gouvernante",
- "id": "a107a7707c072d4fb1f5ebb0874db9796d55430764b8bde5b43610ce74204b8d",
- "kws": {
- "fr": [
- "gouvernante"
- ]
- }
- },
- {
- "nm": "but",
- "id": "19358d195ef76ce42a319fe0f29eeb6f7a07c13d68305057055bb13b124d4690",
- "kws": {
- "fr": [
- "but"
- ]
- }
- },
- {
- "nm": "livres de sciences sociales",
- "id": "891c5497b7819bbac469a3320b55fcde4a8db7292c48e5583033b72f6062a736",
- "kws": {
- "fr": [
- "livres de sciences sociales"
- ]
- }
- },
- {
- "nm": "arriver",
- "id": "24d9f0d2708235717685e03c00dd3a5041d0ceb94b3604dbc44ddaf11cc210d5",
- "kws": {
- "fr": [
- "arriver"
- ]
- }
- },
- {
- "nm": "remercier",
- "id": "037999d714c9de92d10343b355e0b2167febd6e38c7eab9d735959ad1e23849e",
- "kws": {
- "fr": [
- "remercier",
- "merci"
- ]
- }
- },
- {
- "nm": "nageur",
- "id": "1552fa6264a303a654a7c6baac0937771bc7c0659b8d095ae35542d61f05a854",
- "kws": {
- "fr": [
- "nageur"
- ]
- }
- },
- {
- "nm": "boomerang",
- "id": "3941248731dd416b8bb840ddd3becdc7c0b19637362c3152b73d611a38fc944b",
- "kws": {
- "fr": [
- "boomerang"
- ]
- }
- },
- {
- "nm": "tolède",
- "id": "613cb66ad09db42f81429b3a4f986e2b594bd332f8f912f0ac18194cffc933a2",
- "kws": {
- "fr": [
- "tolède"
- ]
- }
- },
- {
- "nm": "espagne",
- "id": "99559a5533be5a3ecaae85257049fe05380fca60c10ecdb6287ff481c7feb006",
- "kws": {
- "fr": [
- "espagne"
- ]
- }
- },
- {
- "nm": "os",
- "id": "5041d3b0a4a4b3bf40fc996af117267fd2bcbb6dd4567773bcc5a01b658410c1",
- "kws": {
- "fr": [
- "os"
- ]
- }
- },
- {
- "nm": "internat",
- "id": "7a64f2c09ca872b71d3b633fee2cdbf069203ea511985d9c16c32445edb77021",
- "kws": {
- "fr": [
- "internat",
- "résidence"
- ]
- }
- },
- {
- "nm": "modem",
- "id": "f44bde5767b58ad683613187e9639a696745baf6ee0a4367ea000ea8c17f3d30",
- "kws": {
- "fr": [
- "modem"
- ]
- }
- },
- {
- "nm": "boue",
- "id": "69bd2b676ced55e202ff0e877554162ff76d10f40746da3169cb4eda8d85b757",
- "kws": {
- "fr": [
- "boue",
- "argile"
- ]
- }
- },
- {
- "nm": "hisser",
- "id": "b51861cd953563b23e55d9f1bb76a67e3efe1110de586dab5b0a957664f0d8fb",
- "kws": {
- "fr": [
- "hisser",
- "lever"
- ]
- }
- },
- {
- "nm": "tenir compte",
- "id": "12484e8d04c360d863317f93ee4c8c5f0d9da9ef24acd815da3f39f3f444bbd9",
- "kws": {
- "fr": [
- "tenir compte",
- "considérer"
- ]
- }
- },
- {
- "nm": "tante",
- "id": "f5f92fbbee1f373a77e20c568f3388f0dcb2e10ac81484c69231e44b390a38a9",
- "kws": {
- "fr": [
- "tante"
- ]
- }
- },
- {
- "nm": "froid",
- "id": "5298ed312b6cfd4acf5d3e91f1cdc5d208a1971b49e6327f0aa622aeb5277321",
- "kws": {
- "fr": [
- "froid"
- ]
- }
- },
- {
- "nm": "carcajou",
- "id": "4f1cca1ecbf30e0a23836979ab9f2d30fa0873175d6c0af4eaa68acd882bfb10",
- "kws": {
- "fr": [
- "carcajou"
- ]
- }
- },
- {
- "nm": "plongeur",
- "id": "0d687a03db29f4123e9e381f92073b9d184603fb21c5ac948245ea426c0febed",
- "kws": {
- "fr": [
- "plongeur"
- ]
- }
- },
- {
- "nm": "assurance vie",
- "id": "a1b8211829fca30377501a8a73cb0ba852642dddeed46678580bb8f5eb95522e",
- "kws": {
- "fr": [
- "assurance vie",
- "assurance"
- ]
- }
- },
- {
- "nm": "poire au sirop",
- "id": "15753ca1727c49f005ed575c4c776909c84a8d7a41cf598b3106767d6a5c2ff4",
- "kws": {
- "fr": [
- "poire au sirop",
- "poire"
- ]
- }
- },
- {
- "nm": "être debout",
- "id": "1b74c74c084a7529a3924daee4c07747ce18e1d146ef515cd88f6498a82c1094",
- "kws": {
- "fr": [
- "être debout"
- ]
- }
- },
- {
- "nm": "signer",
- "id": "83f405dea16fdc98af18965e16b67600e51580cd1f1484ad94cefa2948748a46",
- "kws": {
- "fr": [
- "signer"
- ]
- }
- },
- {
- "nm": "département de saragosse",
- "id": "f3f85ebcffee652a6235f2cc15400ce12ef8736265ec151b5d48ea65699fa576",
- "kws": {
- "fr": [
- "département de saragosse",
- "saragosse province"
- ]
- }
- },
- {
- "nm": "absorber",
- "id": "d5c81a2b4e5abb67a51d42d9ece975f3e6ac82a94d3805d71ce95d38582ea19a",
- "kws": {
- "fr": [
- "absorber"
- ]
- }
- },
- {
- "nm": "entrevue",
- "id": "50a8ce9e01b6718e9153fc666495b39255e26b6d4ed670a2ff6c03a08ef1c818",
- "kws": {
- "fr": [
- "entrevue"
- ]
- }
- },
- {
- "nm": "bouteille vide",
- "id": "d49247a98b1b82830b260025f2f19f59ecd2875a959f92365f25fcc76cf9d63e",
- "kws": {
- "fr": [
- "bouteille vide",
- "bouteille"
- ]
- }
- },
- {
- "nm": "interphone",
- "id": "e0f59c9bb2f28ef49465c54d7358eec81d12ba72ff25f3c0de0fcdf4faac97f8",
- "kws": {
- "fr": [
- "interphone"
- ]
- }
- },
- {
- "nm": "appareils électroménagers",
- "id": "1ae3adcc5389179c73a10cd3b0e128c80b9c6d0b97e5d4c3ec3bb9ee133c2172",
- "kws": {
- "fr": [
- "appareils électroménagers"
- ]
- }
- },
- {
- "nm": "date",
- "id": "c3a9b3bb9c4f0657ad15d9b7ef78c39231c3d64d33e9d478993c12cff2b5eb1b",
- "kws": {
- "fr": [
- "date"
- ]
- }
- },
- {
- "nm": "double-croche",
- "id": "e54c377ece3d3c25a454a4dbfded52a4815e3b195f3a74cf02197372b4d28823",
- "kws": {
- "fr": [
- "double-croche",
- "figure"
- ]
- }
- },
- {
- "nm": "bracelet",
- "id": "a5498a24c82803c6f73b512cbb56fe6090e0585a7322c1678c90885ca186e3ba",
- "kws": {
- "fr": [
- "bracelet"
- ]
- }
- },
- {
- "nm": "nouvelle lune",
- "id": "9848602a965bf910745ff3cf27664b7abeeff65f90dcd8c74adf3d33ab59f91a",
- "kws": {
- "fr": [
- "nouvelle lune",
- "lune"
- ]
- }
- },
- {
- "nm": "incompréhension",
- "id": "605773cd7283f9ea05ea4a0a06187808aec2d75794bcc92884e7303911155cbc",
- "kws": {
- "fr": [
- "incompréhension"
- ]
- }
- },
- {
- "nm": "lunettes de soleil",
- "id": "45426f06f3a00f0494fe0db53d33c8adbc8b74a7ca625871ac48500155dc6042",
- "kws": {
- "fr": [
- "lunettes de soleil",
- "lunettes"
- ]
- }
- },
- {
- "nm": "couverture",
- "id": "17759d473a01b0ab4d88461752e8e5afcafabc72ebe4ae2335a6c9a773a7e959",
- "kws": {
- "fr": [
- "couverture"
- ]
- }
- },
- {
- "nm": "tamis",
- "id": "d9c1a7dcac7f3c62344cb0138eb6bec96f7474208412c7c82ea65b681650e7e7",
- "kws": {
- "fr": [
- "tamis",
- "crible"
- ]
- }
- },
- {
- "nm": "estrémadure",
- "id": "e217e302e00228aee2170a87f69cdba897f199a21615bfa2c88120051b80d717",
- "kws": {
- "fr": [
- "estrémadure",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "temps libre",
- "id": "0c0a780de38a5ff44e53527b74b89c84621ba7aa290e6bbd5d073ef6b637b4a6",
- "kws": {
- "fr": [
- "temps libre",
- "esplai",
- "loisirs"
- ]
- }
- },
- {
- "nm": "être à genoux",
- "id": "4ebba031d2cafb1eaa2e6f73d9ba6d619b93cd617f2fc1ad2dce9dc0f4bb8ba6",
- "kws": {
- "fr": [
- "être à genoux",
- "agenouiller",
- "s\u0027agenouiller"
- ]
- }
- },
- {
- "nm": "vétérinaire",
- "id": "20608a7ac75e6f3d421521659c4a0f09542c2e7630888e6b827646521b6c4046",
- "kws": {
- "fr": [
- "vétérinaire"
- ]
- }
- },
- {
- "nm": "boîte de conserve de coques",
- "id": "4be4d7b164f021c1bffb450a1b56ab7227885cdb6708f9bc0082f471ed42f06d",
- "kws": {
- "fr": [
- "boîte de conserve de coques"
- ]
- }
- },
- {
- "nm": "pédale",
- "id": "b572dd564e8c750258b9056566d0df6fc36f40a03180b64f76dcca1b0d7797da",
- "kws": {
- "fr": [
- "pédale"
- ]
- }
- },
- {
- "nm": "cou",
- "id": "e946bbac1f4071f7e56c13e683ef9b7a60ff6808c46afa4ae3098d78a3d2b8b6",
- "kws": {
- "fr": [
- "cou"
- ]
- }
- },
- {
- "nm": "drap du dessous",
- "id": "f056de9dc4d292efe94caa63702a606b47838d0aa1f9289a5bf92f89cea87d5a",
- "kws": {
- "fr": [
- "drap du dessous"
- ]
- }
- },
- {
- "nm": "panier à linge",
- "id": "de4ef831ab578095ea27da03b52ec048c31bcbe7473ca72e6203d451839ba848",
- "kws": {
- "fr": [
- "panier à linge",
- "panier"
- ]
- }
- },
- {
- "nm": "peigne pour chevaux",
- "id": "ac4fac6224e035d87d4127298d7f7ce77c3c9a74eb6e2ffb2886bd7012de07a3",
- "kws": {
- "fr": [
- "peigne pour chevaux"
- ]
- }
- },
- {
- "nm": "outre à vin",
- "id": "377e59dbf493efe53cb2c6719cfd3da3237a489f1ba382dd632a27dcf3497c0b",
- "kws": {
- "fr": [
- "outre à vin",
- "outre"
- ]
- }
- },
- {
- "nm": "éclipse du soleil",
- "id": "e83f4edcbe79c80cc862a545eef8bd3cebe9173f77b954f1bab9aaa3ced8e870",
- "kws": {
- "fr": [
- "éclipse du soleil",
- "éclipse"
- ]
- }
- },
- {
- "nm": "cerf",
- "id": "66274d1a9b3d948eaf374cc29e53c4e4ece7c9e2c0a96f0057528766923077f6",
- "kws": {
- "fr": [
- "cerf"
- ]
- }
- },
- {
- "nm": "cours de psychomotricité",
- "id": "aae32de3cf5a33b80012a9302096298d513067ecbc74234d4d65453e8742ce6f",
- "kws": {
- "fr": [
- "cours de psychomotricité",
- "psychomotricité"
- ]
- }
- },
- {
- "nm": "qu\u0027as-tu fait",
- "id": "08060b54183cf550659a1bd0500f8e55c4e8794e653aec449b9d43e095ebd95e",
- "kws": {
- "fr": [
- "qu\u0027as-tu fait"
- ]
- }
- },
- {
- "nm": "chomage",
- "id": "e7c1ac4cb5918e80ddbadacc3fe2bb1b99e090348740b0e74e457a05d8f9fab3",
- "kws": {
- "fr": [
- "chomage"
- ]
- }
- },
- {
- "nm": "parfumeur",
- "id": "948bde438c288bc858bb6d8687fe60d40046d48692ad4d5c0e7ac9087aa63794",
- "kws": {
- "fr": [
- "parfumeur",
- "vendeur"
- ]
- }
- },
- {
- "nm": "jardinier",
- "id": "00d27419b86fac9766832a7f9d7a6e7188b42766d6f035d71ca561199ee5eadf",
- "kws": {
- "fr": [
- "jardinier"
- ]
- }
- },
- {
- "nm": "chef cuisinier",
- "id": "8d6c1d694341cd715758debfd24bf6b65384557cd4bfca29e1ff2e77c19a1f0d",
- "kws": {
- "fr": [
- "chef cuisinier",
- "chef",
- "cuisinière"
- ]
- }
- },
- {
- "nm": "reçu",
- "id": "825b15c160b9c232504754d8e7478123e52dff05c751683d93789ee9ac3c1643",
- "kws": {
- "fr": [
- "reçu"
- ]
- }
- },
- {
- "nm": "plaine",
- "id": "69991531a0cec1872103b5d1633cba0451d0f464a34f739e3bc167ca5282c311",
- "kws": {
- "fr": [
- "plaine"
- ]
- }
- },
- {
- "nm": "port",
- "id": "9d11e8e49fbf7a34c5e6ee7703a5cefb998f99bd697afd514b191d8c9fa73b5d",
- "kws": {
- "fr": [
- "port"
- ]
- }
- },
- {
- "nm": "couvrir",
- "id": "884e7f6eae7869f833bd108c1145bb82a7d808357b7bde2c4889c5ba06b6e343",
- "kws": {
- "fr": [
- "couvrir",
- "protéger"
- ]
- }
- },
- {
- "nm": "pauvre",
- "id": "a53df859fa7aa29e7c997649d7889baf21bf4340de07ce2636317b3d84fbdf3a",
- "kws": {
- "fr": [
- "pauvre",
- "demander",
- "indigent",
- "mendiant"
- ]
- }
- },
- {
- "nm": "gonfleur",
- "id": "37fed64c57ff96ead3b956ce0a94ebbeb57c3d0b1454d3123bcdc25611c55b98",
- "kws": {
- "fr": [
- "gonfleur"
- ]
- }
- },
- {
- "nm": "petite fille",
- "id": "3cf6c03fd19246e0be4d7e51e8636a721dadd34bac8c6812b9a57489eeff6da6",
- "kws": {
- "fr": [
- "petite fille",
- "fille"
- ]
- }
- },
- {
- "nm": "promouvoir",
- "id": "6c6f654932f873687ba5d77309c5fdcb32d0d3d271ec08618d89c8e7d519d639",
- "kws": {
- "fr": [
- "promouvoir",
- "impulser"
- ]
- }
- },
- {
- "nm": "fauteuil",
- "id": "8a847379a30602298335d3b13c789682b7990ebd629b7fdd2a166300066eb5c4",
- "kws": {
- "fr": [
- "fauteuil"
- ]
- }
- },
- {
- "nm": "lettre",
- "id": "e0f4a71f2d4a5220855b5ab4bc2fb56cee1264b5f7c2b3c0ae6010287323623d",
- "kws": {
- "fr": [
- "lettre"
- ]
- }
- },
- {
- "nm": "éructer",
- "id": "43789d67a64829ab1ac0cd98c68e194701bb7b03e70765b36c85ed8aec90805c",
- "kws": {
- "fr": [
- "éructer",
- "roter"
- ]
- }
- },
- {
- "nm": "environnements",
- "id": "d894d1e4f154ee661ba3c75a630742d995e4b766fbd65166edf909696f7cee9e",
- "kws": {
- "fr": [
- "environnements"
- ]
- }
- },
- {
- "nm": "esssuies-glace",
- "id": "2775dc83c2947e07d551c0e94fd3e03638ab00121c00bc058e92b09b727195ad",
- "kws": {
- "fr": [
- "esssuies-glace"
- ]
- }
- },
- {
- "nm": "tambour de basque",
- "id": "8d4062fda01ec1a4f8f0c900cd4c2c4f5e13332ea3e839a328164868b5f7f771",
- "kws": {
- "fr": [
- "tambour de basque"
- ]
- }
- },
- {
- "nm": "phalanges",
- "id": "71cc06a19d42056bec2b73057c6950176ac59d53ddf9405f335a40737dcb58bb",
- "kws": {
- "fr": [
- "phalanges"
- ]
- }
- },
- {
- "nm": "lynx",
- "id": "49dc80bcd73f7b954e7fba77b611cc1f9be4779de2e3483e5952fd1a211ccf39",
- "kws": {
- "fr": [
- "lynx"
- ]
- }
- },
- {
- "nm": "joueur de base-ball",
- "id": "42f82b4643e9d232815ef5e9b8c8797d3dc4acb4da5ba67ee1e7cfe858b57696",
- "kws": {
- "fr": [
- "joueur de base-ball"
- ]
- }
- },
- {
- "nm": "interprète de langue des signes",
- "id": "2646e0eadd61f7c1f9494898b67b45ce7f08bc5d1606a33ec61596f21a72f89b",
- "kws": {
- "fr": [
- "interprète de langue des signes",
- "interprète"
- ]
- }
- },
- {
- "nm": "il pleut!",
- "id": "d903d5d3faa4db0cd1175881c474b16fc0500d27fbc5de5c55a7f498f200c555",
- "kws": {
- "fr": [
- "il pleut!"
- ]
- }
- },
- {
- "nm": "gratis",
- "id": "aaa134b6c3979a749a1ef691a50d91fa48fe381d138873ff82d7c4913db7b6ee",
- "kws": {
- "fr": [
- "gratis",
- "gratuit"
- ]
- }
- },
- {
- "nm": "partager",
- "id": "15db4fd4a8dda30dbe527876a4ee158f2cd1e30f33d5c655290bfd73c9c073af",
- "kws": {
- "fr": [
- "partager"
- ]
- }
- },
- {
- "nm": "ouvrir la fenêtre",
- "id": "805a61a841e5642739e8d9dd74bdb208d9f1e75ceacdf58756f0fb3e399bd958",
- "kws": {
- "fr": [
- "ouvrir la fenêtre",
- "ouvrir"
- ]
- }
- },
- {
- "nm": "charcuterie",
- "id": "7f74efac75ca4957638821e2cf6a4588612c3f21755d81ba5ba36123f21bc7bf",
- "kws": {
- "fr": [
- "charcuterie"
- ]
- }
- },
- {
- "nm": "sclérotique",
- "id": "4131236e1da9591d0302f954d8ead5b46d4f89617770bd91feb9c2ac7980efb0",
- "kws": {
- "fr": [
- "sclérotique"
- ]
- }
- },
- {
- "nm": "développer",
- "id": "a77908e1f400a8056e3a4b6b381ebc85185191f04af14d90065d71a6d52da7ce",
- "kws": {
- "fr": [
- "développer",
- "grandir"
- ]
- }
- },
- {
- "nm": "photographe",
- "id": "8b20e2394e6589de9091f897064ca5a60e07c814d2ec90be2ddc2799ad70eb99",
- "kws": {
- "fr": [
- "photographe"
- ]
- }
- },
- {
- "nm": "faire le lit",
- "id": "9e40eb0ce22998c07c6d120ee8a96de24fafcc1b307e7242dde7f7b5c3908bd2",
- "kws": {
- "fr": [
- "faire le lit"
- ]
- }
- },
- {
- "nm": "ravin",
- "id": "649f92ecad92da3e96f38c19846edee72e213de425828a792013a8739b54350f",
- "kws": {
- "fr": [
- "ravin"
- ]
- }
- },
- {
- "nm": "matelas à eau",
- "id": "a4ead785191d0376a4688204d8798ba623b7fbf1892c0b72bf588376c23f7ab9",
- "kws": {
- "fr": [
- "matelas à eau",
- "matelas"
- ]
- }
- },
- {
- "nm": "pelote basque",
- "id": "50023123fd46ee42a2022777576b30c9134ab166a727dc29af8c81a89e0370e5",
- "kws": {
- "fr": [
- "pelote basque"
- ]
- }
- },
- {
- "nm": "embrasser",
- "id": "5ea7bad255031cd1c3e297e414b49df399dc565afa88960470ea2a2341ec9101",
- "kws": {
- "fr": [
- "embrasser",
- "praxie",
- "donner un bisou",
- "baiser",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "loquet",
- "id": "76e34f4842107b5c2eac0404f179971319bda3e932bc4723e90bd361b0909412",
- "kws": {
- "fr": [
- "loquet",
- "marteau de porte",
- "marteau"
- ]
- }
- },
- {
- "nm": "canal",
- "id": "209a90d370bef981fe8407df4ae17febada0f1e58938530fe4c7ccbd9e7c85a8",
- "kws": {
- "fr": [
- "canal"
- ]
- }
- },
- {
- "nm": "éboueur",
- "id": "1fa6899bf56ef6fddc083f84388d6ff0aed2dda70ef5d38ee975918c1277dc4e",
- "kws": {
- "fr": [
- "éboueur",
- "balayeur"
- ]
- }
- },
- {
- "nm": "clé de sol",
- "id": "474bcf48d4eb6d3a88e5e04123695153c356630419b1a03082663e76de9b6d41",
- "kws": {
- "fr": [
- "clé de sol"
- ]
- }
- },
- {
- "nm": "envoyer",
- "id": "cd1b84545aef29828d307afea78c8d53b4dd970397b75bf0d73b54a5aadbd77b",
- "kws": {
- "fr": [
- "envoyer",
- "commande",
- "commander",
- "demander"
- ]
- }
- },
- {
- "nm": "pruneaux",
- "id": "bf8eec5b5d7fed2075977d2feb0c676440ccfb445897ce26980b711c63a122b7",
- "kws": {
- "fr": [
- "pruneaux"
- ]
- }
- },
- {
- "nm": "pilier",
- "id": "8a6691de6f4da4a9fda677467fbdb6cfbc8937c8b3b7034fcb2ae871c1bd95c9",
- "kws": {
- "fr": [
- "pilier",
- "basilique del pilar",
- "basilique"
- ]
- }
- },
- {
- "nm": "appartements",
- "id": "f1d3d56fd5fd8b623d22edcdf0fa0841d46848fb0826bfeaeda5aae52bdc47e1",
- "kws": {
- "fr": [
- "appartements"
- ]
- }
- },
- {
- "nm": "terre",
- "id": "c5829136f4df2428fb5dfa32f45838028698c9a1128232002a609c45a489c170",
- "kws": {
- "fr": [
- "terre"
- ]
- }
- },
- {
- "nm": "ruban adhésif",
- "id": "8835f1726c63165c62c59cdc14d22b0f9b947922c06b543e5fcbf852b8c118cb",
- "kws": {
- "fr": [
- "ruban adhésif"
- ]
- }
- },
- {
- "nm": "a",
- "id": "fb4a5808420e2bbf3edf449cbc3c09f31a031905ad0ca1e8ff3a3e64a33debf6",
- "kws": {
- "fr": [
- "a"
- ]
- }
- },
- {
- "nm": "coque",
- "id": "2108b3adf9083b4d59552cd6973a2e8ea67080212f63efe972b213b3c2a0cf7a",
- "kws": {
- "fr": [
- "coque"
- ]
- }
- },
- {
- "nm": "eeuu",
- "id": "cc415f5e0a9ba25984273b1301a564ef2de85687ed624d0a09b1daa3ca51817e",
- "kws": {
- "fr": [
- "eeuu",
- "etats-unis"
- ]
- }
- },
- {
- "nm": "semaine",
- "id": "06aa828cced25ebffc331093e32b1b9196396aff885064788f3ae75c8edbc315",
- "kws": {
- "fr": [
- "semaine"
- ]
- }
- },
- {
- "nm": "haricots verts",
- "id": "fe89a7f50b6208676792058203b9312eb34d1efc56976de76a4c0e5b7b788efd",
- "kws": {
- "fr": [
- "haricots verts"
- ]
- }
- },
- {
- "nm": "saint valentin",
- "id": "ffc72689283bf14eee53eb9554dee011359847874813a90d8b004a36664b3c2b",
- "kws": {
- "fr": [
- "saint valentin",
- "saint-valentin"
- ]
- }
- },
- {
- "nm": "fièvre",
- "id": "e651ef42c39e8561eb813e8a9851822255343ab30a3284c0803d6572e81a1d7d",
- "kws": {
- "fr": [
- "fièvre"
- ]
- }
- },
- {
- "nm": "marais",
- "id": "43bacff3ac28977f711ceb0ee9d22b1ee853f97d821d1ccf2a5e8bee08bfbca0",
- "kws": {
- "fr": [
- "marais",
- "marécageux"
- ]
- }
- },
- {
- "nm": "grenade",
- "id": "0091e1ffbb669a1471ae2c9bf0b328ec78aee860532258877dcb82e5e022382d",
- "kws": {
- "fr": [
- "grenade"
- ]
- }
- },
- {
- "nm": "hydrate de carbone",
- "id": "337bd4689bf576cf291e91a273a70c53a1b117002baa7008a24dce7bc167292b",
- "kws": {
- "fr": [
- "hydrate de carbone"
- ]
- }
- },
- {
- "nm": "déprimée",
- "id": "57dc3720d5dc03a4ff3dd0ee4193e9188fb057b7ca47c03e7f46bf703448cd32",
- "kws": {
- "fr": [
- "déprimée",
- "peinée",
- "triste",
- "tristesse",
- "expression",
- "malheureuse",
- "malheureux"
- ]
- }
- },
- {
- "nm": "chinois",
- "id": "2f64cf35ea20e2ca806bc6dd122ec58048d490c908d2bb2173c75a3c4bc26cef",
- "kws": {
- "fr": [
- "chinois",
- "étranger"
- ]
- }
- },
- {
- "nm": "boire",
- "id": "b407d2efc7d633b67add0398134f1afddf335afd72ebfc428e05051e914502c9",
- "kws": {
- "fr": [
- "boire"
- ]
- }
- },
- {
- "nm": "salle de réunions",
- "id": "32cfe68be3655a2331574fa793527460677d286bf1141860d88594fe281f72ad",
- "kws": {
- "fr": [
- "salle de réunions",
- "salle des professeurs"
- ]
- }
- },
- {
- "nm": "herboristerie",
- "id": "ef2accf8c38529662853945f02e6b3334669d18aa3f934f3aa46cf153fa81907",
- "kws": {
- "fr": [
- "herboristerie"
- ]
- }
- },
- {
- "nm": "contes",
- "id": "8e7b6ea0a1cb7726512372906b457f921a940f6f59aa53a3dc46ff88769c5fa4",
- "kws": {
- "fr": [
- "contes",
- "conte"
- ]
- }
- },
- {
- "nm": "ni",
- "id": "5e901eccb033ccc1984cabafa64b3cfca5e6c4c07196b336b3035b3fac60ba42",
- "kws": {
- "fr": [
- "ni"
- ]
- }
- },
- {
- "nm": "concours",
- "id": "5132efd91954a9badc01e50a4c701298673cb6491c7b0d587bd6ff79b8592aed",
- "kws": {
- "fr": [
- "concours",
- "concours"
- ]
- }
- },
- {
- "nm": "crête",
- "id": "c41c9c561f85d2d3b688b6c86d5e555130acbbb12204ff43c45face5ad5db075",
- "kws": {
- "fr": [
- "crête"
- ]
- }
- },
- {
- "nm": "mesurer",
- "id": "f82c1587733696b19d4f4f8b9ddd1d85529460393f368495170fb88a27929c44",
- "kws": {
- "fr": [
- "mesurer"
- ]
- }
- },
- {
- "nm": "cyclisme",
- "id": "a65f0f569dcb23b1a18e5d4404b8b0930f3c9db7f8ba96fec1a3ff6382de1ac6",
- "kws": {
- "fr": [
- "cyclisme",
- "se ballader en vélo",
- "monter à vélo"
- ]
- }
- },
- {
- "nm": "sucré",
- "id": "69cd5daa627c3340ba13b39b315df0fa665943bbaba7ece030140dedea15bca8",
- "kws": {
- "fr": [
- "sucré"
- ]
- }
- },
- {
- "nm": "genouillère",
- "id": "7cb5c0c4b992b8fc570f70e94aeb973a19f5aa02c733c954a3abbc7fcab982e5",
- "kws": {
- "fr": [
- "genouillère"
- ]
- }
- },
- {
- "nm": "coquilles de mer",
- "id": "f8c582fadb5c3217ff5dad0d15221c332842d0a11bbcc65a87a14829d8fe034d",
- "kws": {
- "fr": [
- "coquilles de mer",
- "coquilles"
- ]
- }
- },
- {
- "nm": "président",
- "id": "3e01839ee29c2744b8af520d4653d1369b5021452d1ac6129ad77ba6669c9e66",
- "kws": {
- "fr": [
- "président"
- ]
- }
- },
- {
- "nm": "virement bancaire",
- "id": "7ce8a9c5f7f1e8b773217e51a6775a7edbae0ceceb3151a1c8a37af18beb3507",
- "kws": {
- "fr": [
- "virement bancaire"
- ]
- }
- },
- {
- "nm": "rocking-chair",
- "id": "d8b93f3eb3274e3fd7655d813fe69454ecb15eef8c1a1d220b9d6d9fea195ec1",
- "kws": {
- "fr": [
- "rocking-chair"
- ]
- }
- },
- {
- "nm": "valise",
- "id": "7063f67ec3a66f510e4d608cf7720d5728d0b4a8db8bce8e076991cb7a4afa66",
- "kws": {
- "fr": [
- "valise"
- ]
- }
- },
- {
- "nm": "noire",
- "id": "161cc3e24cfca4965cc09d67ed2fadfd7099c8c89eb9435da8deb645531501ab",
- "kws": {
- "fr": [
- "noire"
- ]
- }
- },
- {
- "nm": "euros",
- "id": "cbc1cfbb70f8508ddc73ceeff38e486a4e7731a53369bffd0301256669200709",
- "kws": {
- "fr": [
- "euros",
- "billet",
- "200 euros",
- "argent"
- ]
- }
- },
- {
- "nm": "chaussures de football",
- "id": "c03c7da79b0350dc284aa8343872c3995432fffd8a9990ffe1753989093ab406",
- "kws": {
- "fr": [
- "chaussures de football",
- "chaussures à crampons"
- ]
- }
- },
- {
- "nm": "aveugle",
- "id": "41d6936a59c0880dcf51386121946399a9d85d8c958972351401d17144f3854e",
- "kws": {
- "fr": [
- "aveugle",
- "non-voyant"
- ]
- }
- },
- {
- "nm": "tir aux pigeons",
- "id": "46160fb74a88122ea8da7d6f1a7b8fb991d331566f76e97619049a1555410d55",
- "kws": {
- "fr": [
- "tir aux pigeons",
- "stand de foire",
- "stand de féria"
- ]
- }
- },
- {
- "nm": "vouloir",
- "id": "a9ac00d46e74c6f11ec2542aa9b6ce8879be6008574e43c856fc3ffe1b5710db",
- "kws": {
- "fr": [
- "vouloir",
- "aimer",
- "amoureux"
- ]
- }
- },
- {
- "nm": "menuisier",
- "id": "3a61c5ef9c69a281be5ba68c0dc77602c2c993900ada49e9314b214867c0c774",
- "kws": {
- "fr": [
- "menuisier"
- ]
- }
- },
- {
- "nm": "magasin de meubles",
- "id": "b8a8e5d99e2502588bf025a00994d0029a0db4a18553159dddaa204b306d757f",
- "kws": {
- "fr": [
- "magasin de meubles"
- ]
- }
- },
- {
- "nm": "extracteur",
- "id": "7383c190317ea0f207eae57e13d3a3fc11178e59789bd7e53fb0cd10e6153c70",
- "kws": {
- "fr": [
- "extracteur",
- "hotte extractrice"
- ]
- }
- },
- {
- "nm": "engrais",
- "id": "230cb6d02bf4609839e7ed0ff1ec5841ab578a4f1aeba2e4609c4299c3a51394",
- "kws": {
- "fr": [
- "engrais",
- "fertilisant"
- ]
- }
- },
- {
- "nm": "séisme",
- "id": "cee72a4ae7c452e1586769ce8788a36a7270043aca884087d25cdf1bc15ce85c",
- "kws": {
- "fr": [
- "séisme",
- "tremblement",
- "tremblement de terre",
- "catastrophe"
- ]
- }
- },
- {
- "nm": "asthme",
- "id": "89858ed7b473111420b8872390a059a12a6e99f45b4e1816215e8a5dd86a223e",
- "kws": {
- "fr": [
- "asthme"
- ]
- }
- },
- {
- "nm": "eau oxigénée",
- "id": "c3f79764899b44db4b3a1dffcadc4187433f84534a2cdde3da7ac1b605137adb",
- "kws": {
- "fr": [
- "eau oxigénée"
- ]
- }
- },
- {
- "nm": "cassé",
- "id": "38dec0003eb7a66e9929a28cee48916073a9d712ca317484106332024b39e07f",
- "kws": {
- "fr": [
- "cassé"
- ]
- }
- },
- {
- "nm": "verre",
- "id": "8740ececbfa5b03891b563cadd1e74a945f2cf9ca3e6469f5acea1c675074885",
- "kws": {
- "fr": [
- "verre",
- "cristal"
- ]
- }
- },
- {
- "nm": "ovale",
- "id": "c8daab541401735e062752da603e854eed986abd214419a34221e694910aac52",
- "kws": {
- "fr": [
- "ovale"
- ]
- }
- },
- {
- "nm": "station d\u0027épuration",
- "id": "7329394264ce1e8360af511de995f631a148dfc8818f1106d8af2157427ca973",
- "kws": {
- "fr": [
- "station d\u0027épuration"
- ]
- }
- },
- {
- "nm": "dernier quartier",
- "id": "c32c77ed145a0125959cd3dc37b306f0284ba88a3804525ebcc64b8f20839b36",
- "kws": {
- "fr": [
- "dernier quartier",
- "lune"
- ]
- }
- },
- {
- "nm": "potière",
- "id": "5c244cb5819107c237e2ab617abe4802a297db6cef36621ecba30c67d46c5198",
- "kws": {
- "fr": [
- "potière"
- ]
- }
- },
- {
- "nm": "prince",
- "id": "d95ad7274f79a75ea72511c5eb216efc7214eb07478e0f322e2b85c17a40796d",
- "kws": {
- "fr": [
- "prince"
- ]
- }
- },
- {
- "nm": "arrosoir",
- "id": "02fc38494de9e18dfd6ab14d9c6b2bf497ebf8f3bbb4d9530d31b445c2706dfb",
- "kws": {
- "fr": [
- "arrosoir"
- ]
- }
- },
- {
- "nm": "information",
- "id": "d8aa352f9e4b9eedcba585ffd5035370f93036e7418e2bcd186bdf6a80eafded",
- "kws": {
- "fr": [
- "information",
- "office de tourisme"
- ]
- }
- },
- {
- "nm": "herbivore",
- "id": "609ac63590e203913d41d8efb628a77617a43258f76b5b336e6c09b8d959e7a0",
- "kws": {
- "fr": [
- "herbivore",
- "herbivores"
- ]
- }
- },
- {
- "nm": "férule",
- "id": "0fd8c49618811ac1a1ac7afc04a52dba819b125ff9f018b9a44dfc954f60d571",
- "kws": {
- "fr": [
- "férule"
- ]
- }
- },
- {
- "nm": "casques",
- "id": "12f0447e38e1135a97b20423a6f90c81b1661eac350e4627d5e0ae83e59d36cb",
- "kws": {
- "fr": [
- "casques"
- ]
- }
- },
- {
- "nm": "donner",
- "id": "ba02d3e6fbb97cc3de0fd7e8dd184aa68b22e8f1b70899ec96b90b8452b07d0c",
- "kws": {
- "fr": [
- "donner",
- "offrir"
- ]
- }
- },
- {
- "nm": "coquille",
- "id": "808ba0a6e28f05d557c43c2455d60963993b30c561d56543391f10966f51b2a8",
- "kws": {
- "fr": [
- "coquille",
- "épluchure"
- ]
- }
- },
- {
- "nm": "chercher",
- "id": "5c9b02df7fe4f87bc55a0772bcea032d75778132d31ab41ca20878bdd5b2d633",
- "kws": {
- "fr": [
- "chercher"
- ]
- }
- },
- {
- "nm": "patins à glace",
- "id": "22d07fdb7c4e7ddfe65db293927fa1a3b73e1f10c1f7681cdfa676d994a55955",
- "kws": {
- "fr": [
- "patins à glace",
- "patins à roulettes"
- ]
- }
- },
- {
- "nm": "enregistrer",
- "id": "d3563dfde2ccef36c67cc703cb6f00a7e1ad0d545534b1531e436f72b6ff3169",
- "kws": {
- "fr": [
- "enregistrer"
- ]
- }
- },
- {
- "nm": "cardiologue",
- "id": "3e2d160a2c7efc8a99e985da6f8182051bf13aef5f65af55ffdfd156e77e1aac",
- "kws": {
- "fr": [
- "cardiologue"
- ]
- }
- },
- {
- "nm": "huile d\u0027olive",
- "id": "b433465a0e0defcf5f2ba962dccf88277e7b95be5000a19def0c1931cdf7250a",
- "kws": {
- "fr": [
- "huile d\u0027olive",
- "huile",
- "huilier",
- "ornement"
- ]
- }
- },
- {
- "nm": "microscope",
- "id": "fd251394c4549715c673f2c8334ae7a55c74188932643917822de08bfc015db7",
- "kws": {
- "fr": [
- "microscope",
- "appareil"
- ]
- }
- },
- {
- "nm": "porte battante",
- "id": "41b00d014b58cdae0f25d3578c7433490c9d00c2bc39d9d4e52f02e4a961363d",
- "kws": {
- "fr": [
- "porte battante"
- ]
- }
- },
- {
- "nm": "aveugle",
- "id": "69e382815843e7ae5c4fb71cdc0617214fe74ef295ea994c688392af75c1852a",
- "kws": {
- "fr": [
- "aveugle",
- "non-voyant"
- ]
- }
- },
- {
- "nm": "balayer",
- "id": "b0fdf87fd5dd8e034f8052e6b3f21f977d4cf7e150bb8ff1ed5447bf6a9d9513",
- "kws": {
- "fr": [
- "balayer"
- ]
- }
- },
- {
- "nm": "magasin de glaces",
- "id": "bd660c31db648d76142662c81c7af4fe144cdf9993fdd8a022f7f01ed475e5b9",
- "kws": {
- "fr": [
- "magasin de glaces"
- ]
- }
- },
- {
- "nm": "musicothérapie",
- "id": "67316b3a882b20c9be6314259843ab9b7f7e7d8ab3af12118e4c83a25ce80b9b",
- "kws": {
- "fr": [
- "musicothérapie"
- ]
- }
- },
- {
- "nm": "vol",
- "id": "893225470a45d6219d2854e2d2f85bdaff40e982896f916ffecd35fadd7871ae",
- "kws": {
- "fr": [
- "vol",
- "voler",
- "soustraire",
- "agresser"
- ]
- }
- },
- {
- "nm": "p",
- "id": "f71c566c20617de9f8a36ade714bb16516cdabccf4e89b33eb2147439bd08623",
- "kws": {
- "fr": [
- "p",
- "lettre"
- ]
- }
- },
- {
- "nm": "boulangerie",
- "id": "959f6f248cd28fec11b49818a560f18b3a105be0addf3fd0dc906902eb3d0c06",
- "kws": {
- "fr": [
- "boulangerie"
- ]
- }
- },
- {
- "nm": "maison de retraite",
- "id": "3fe9a8f8af73b0b9a664bb7a1994b273ce7db981f600d37ae7e8e677607c41cb",
- "kws": {
- "fr": [
- "maison de retraite"
- ]
- }
- },
- {
- "nm": "lisse",
- "id": "fbb254915aa420b5fbc45a8e1bb390705aa512c4bb9d0423038eb45b1fdee57d",
- "kws": {
- "fr": [
- "lisse"
- ]
- }
- },
- {
- "nm": "préscription",
- "id": "4259a09c80e6455a577df222fb91eb1e614628b802ea3a513a52e363c6cc1bad",
- "kws": {
- "fr": [
- "préscription"
- ]
- }
- },
- {
- "nm": "appuyer",
- "id": "0d8cd035ab02a8c5636314281174845aa1480f1f1a1a656bf549ddbe028324db",
- "kws": {
- "fr": [
- "appuyer"
- ]
- }
- },
- {
- "nm": "pyrénées",
- "id": "b26cf0805dee826700b213127432edcf36f7f9bf6d96bb9b31f75a9b08dddab5",
- "kws": {
- "fr": [
- "pyrénées"
- ]
- }
- },
- {
- "nm": "description",
- "id": "fe9f128ee5f4ad34f871b9eab32bd4891ad4bb4737bdada7192635d2832c4cd9",
- "kws": {
- "fr": [
- "description"
- ]
- }
- },
- {
- "nm": "paquet de spaghettis",
- "id": "3bd2154d9a207f50289d6d6af6b1b2dca0a11c2668d4fe6b1e6f6a13f35fdee1",
- "kws": {
- "fr": [
- "paquet de spaghettis",
- "spaghettis"
- ]
- }
- },
- {
- "nm": "planche de natation",
- "id": "cc0127fcdb5e9a25b93ea571522957a20e699b48d4c250e897622e0ba3f374b4",
- "kws": {
- "fr": [
- "planche de natation"
- ]
- }
- },
- {
- "nm": "avoir l\u0027habitude",
- "id": "6e23ca725884a465d1611f290f260e5f88a3ac6b751f1e200f99f56992d47e70",
- "kws": {
- "fr": [
- "avoir l\u0027habitude",
- "anniversaire"
- ]
- }
- },
- {
- "nm": "architecte",
- "id": "5fb2a3ef0d3cb81cb62bfa8cfad73b8cc1687d7ab82c654c701efb354e7d3366",
- "kws": {
- "fr": [
- "architecte"
- ]
- }
- },
- {
- "nm": "évier",
- "id": "a4c6b2839ef7729521a6141c88a6495006cf3e2891e453f0f0c52e97c4057b46",
- "kws": {
- "fr": [
- "évier"
- ]
- }
- },
- {
- "nm": "motocyclette",
- "id": "17cee8c5edd77cbec59078c51335d5af6c082b2bbb887caaff8c75d60ac33330",
- "kws": {
- "fr": [
- "motocyclette"
- ]
- }
- },
- {
- "nm": "vendeur",
- "id": "5163a01017a28faea75392badbaa9cdd17e62873131c9a3b369528591d3b2740",
- "kws": {
- "fr": [
- "vendeur",
- "marchand de poisson"
- ]
- }
- },
- {
- "nm": "cardinal",
- "id": "8f26edc0a868477e3aecf4876e1a77dbf0ce5528c4e924099d2c9b59e30f6f2f",
- "kws": {
- "fr": [
- "cardinal"
- ]
- }
- },
- {
- "nm": "yaourt",
- "id": "3314dbfcae6db69f3b8cb3f3f1da2372a90e22e89e241c146632d6366f30ba94",
- "kws": {
- "fr": [
- "yaourt"
- ]
- }
- },
- {
- "nm": "financer",
- "id": "1a31dcdbac38cbed49873a71e817707b7c3555d2751225691c07e1ee45c71d04",
- "kws": {
- "fr": [
- "financer"
- ]
- }
- },
- {
- "nm": "salle de musique",
- "id": "367173734c2d394818c80bff82d81f9c639a52a3366f5736c12a626098e8813c",
- "kws": {
- "fr": [
- "salle de musique"
- ]
- }
- },
- {
- "nm": "gaspar",
- "id": "6bdc65f838b638ee6a13cd08573dc2461192232640ea8d38cf17760ca1a5387e",
- "kws": {
- "fr": [
- "gaspar"
- ]
- }
- },
- {
- "nm": "quincaillerie",
- "id": "83f5ecb9059d57d1962f4d3b6443218832d7f2ccc12847cb818a5bdf4ef1fe51",
- "kws": {
- "fr": [
- "quincaillerie"
- ]
- }
- },
- {
- "nm": "cage",
- "id": "f109f31baddfa544e0165ec011ab08058dd81fdaa549189fa1fff38b6003e128",
- "kws": {
- "fr": [
- "cage"
- ]
- }
- },
- {
- "nm": "courir",
- "id": "1c1b34b5793bd1fea32891d1104168752b4727d7b70afeb7762df77e6a0a539e",
- "kws": {
- "fr": [
- "courir"
- ]
- }
- },
- {
- "nm": "égarée",
- "id": "af9d1401ec5bc6d01cd1b3102252269a220c26cab2aeacefb2b07abe57c217f8",
- "kws": {
- "fr": [
- "égarée",
- "distraire",
- "s\u0027égarer"
- ]
- }
- },
- {
- "nm": "truite",
- "id": "2e608c087a405d4337d39ba8b4727f7f9c0edcffaf12492584e37505e05085a7",
- "kws": {
- "fr": [
- "truite"
- ]
- }
- },
- {
- "nm": "chapeau haut de forme",
- "id": "691b82139f3e9faba9b030ade3afb290739f9759d951d063a583f263c1a2a7d3",
- "kws": {
- "fr": [
- "chapeau haut de forme"
- ]
- }
- },
- {
- "nm": "plus grand",
- "id": "180e4277428552dccdba6262cdc803c08306b014ba50ef19f96bbde3b2084d71",
- "kws": {
- "fr": [
- "plus grand",
- "grand"
- ]
- }
- },
- {
- "nm": "basse-cour",
- "id": "72ced93589f1185efa2a012fab3fcfc24c3547cb851091a456c9017abb20ca30",
- "kws": {
- "fr": [
- "basse-cour"
- ]
- }
- },
- {
- "nm": "chew-gum",
- "id": "47a31f6eedde46dd818e73076695b3923b57ae552e48de8485841848d6cf4c84",
- "kws": {
- "fr": [
- "chew-gum",
- "chewing-gums"
- ]
- }
- },
- {
- "nm": "récréation",
- "id": "7b17569d5ab507d530ab4b229b92d80d4dfd3f5e1528434a3b09e382b8284091",
- "kws": {
- "fr": [
- "récréation"
- ]
- }
- },
- {
- "nm": "exclure",
- "id": "b95dd203fa9179a4cd781d549bb4e5f52745393b3b01e1b5f8f382a4b85d90c2",
- "kws": {
- "fr": [
- "exclure",
- "discriminer"
- ]
- }
- },
- {
- "nm": "souris adaptée",
- "id": "affa05e2cd2feecfceca35f6fbe9c77b5e2899c61b5b73742e6b6c33622e4ef2",
- "kws": {
- "fr": [
- "souris adaptée"
- ]
- }
- },
- {
- "nm": "gymnase",
- "id": "cb94653e39484dd572370d6d461bcd094b54693e9c5b084d68a9c7fca03b2de6",
- "kws": {
- "fr": [
- "gymnase"
- ]
- }
- },
- {
- "nm": "casque",
- "id": "b31f82d433231bc6fdf93471bb63e8b759eede34decc226145f1e878fbde4476",
- "kws": {
- "fr": [
- "casque"
- ]
- }
- },
- {
- "nm": "manger",
- "id": "1e8681c9aec978f42401eb59ddb111fbae8ce9a8c32cc1d355278ca279b5cadd",
- "kws": {
- "fr": [
- "manger"
- ]
- }
- },
- {
- "nm": "ronger",
- "id": "e632d941251a7262761c57cf3a594a24fb3f3ba9939eb7739a65f7087594113d",
- "kws": {
- "fr": [
- "ronger"
- ]
- }
- },
- {
- "nm": "enfant autiste",
- "id": "2b7e3b967566602001ff1c9a9206787be891c6a60113d7308c79348daf3b6c65",
- "kws": {
- "fr": [
- "enfant autiste"
- ]
- }
- },
- {
- "nm": "force",
- "id": "6866228d929178d96b1c510f96dc3d68aea7a31323191a13a25e937910179184",
- "kws": {
- "fr": [
- "force"
- ]
- }
- },
- {
- "nm": "transexualité",
- "id": "3486741039bfab919e97106f6b3ff042205bb979fd811be99651f5be1909cd36",
- "kws": {
- "fr": [
- "transexualité",
- "transexuels"
- ]
- }
- },
- {
- "nm": "fonctionnaire",
- "id": "393e70678d72ff099a01a81594e2730520773a08fb19cfa1ff6ce21c84348c0c",
- "kws": {
- "fr": [
- "fonctionnaire"
- ]
- }
- },
- {
- "nm": "félicitations !",
- "id": "e9d5823c518737082aa7db30bdcb11240b590d7bb80b27db354f4bdf052be104",
- "kws": {
- "fr": [
- "félicitations !",
- "félicitations"
- ]
- }
- },
- {
- "nm": "personnel",
- "id": "2d1a4559edd6f2c1230280b5e041d30af3a4c463535975ee0003a9e3af75d552",
- "kws": {
- "fr": [
- "personnel",
- "personnes",
- "gens",
- "groupe"
- ]
- }
- },
- {
- "nm": "fumer",
- "id": "c22bee3f0a3dee973ece3de7edd5cfc396deb5331dff97104154d5fe4f5e41b0",
- "kws": {
- "fr": [
- "fumer"
- ]
- }
- },
- {
- "nm": "guillemets",
- "id": "75d71327c4dcc0c1fb4bbe68b570e8ea8a12fbcc522312d732c1d59099b1a296",
- "kws": {
- "fr": [
- "guillemets"
- ]
- }
- },
- {
- "nm": "apôtres",
- "id": "5a42725675b3e70e5268a38a26eb2f2152378e0805c9b4bdd300110acfd5c45f",
- "kws": {
- "fr": [
- "apôtres"
- ]
- }
- },
- {
- "nm": "salé",
- "id": "3ea91e198bc5ef80a71b353535078afa6fb2cf96659923c4dc9a810e1b076f0f",
- "kws": {
- "fr": [
- "salé"
- ]
- }
- },
- {
- "nm": "entrée",
- "id": "a5875a2324ea04812141b71c765ffb5bb869a11e907c5c818efc40b3b4b1c996",
- "kws": {
- "fr": [
- "entrée"
- ]
- }
- },
- {
- "nm": "vêtement",
- "id": "d41a47c8ce2f228041da122b9e64b31e48c5f7d2354b9e44f47556a35b18e501",
- "kws": {
- "fr": [
- "vêtement",
- "écharpe"
- ]
- }
- },
- {
- "nm": "tout",
- "id": "c0579e28e1d85b8791e46ea902080f90d217df8b070fc05feaad7759257ff2c0",
- "kws": {
- "fr": [
- "tout",
- "n\u0027importe qui"
- ]
- }
- },
- {
- "nm": "sauvage",
- "id": "bc99247124181fd6df8c5956bf217546f7b0cf6e1a2689493c1b25edef498f29",
- "kws": {
- "fr": [
- "sauvage"
- ]
- }
- },
- {
- "nm": "es-tu triste",
- "id": "0b5a59328c90fbff097c6dfef57f035987414d44f96534f165f99cf5d71ba287",
- "kws": {
- "fr": [
- "es-tu triste"
- ]
- }
- },
- {
- "nm": "dessus",
- "id": "a7410f9bb2f53ae720b8b3056a1f4fc2ababfc8568d7d41bba20e2d90e8f8306",
- "kws": {
- "fr": [
- "dessus",
- "sur"
- ]
- }
- },
- {
- "nm": "carreleur",
- "id": "70c1d6a3980b0729a676b3898e85c5164027163bd4b5a5cf9867399cecf0cfd6",
- "kws": {
- "fr": [
- "carreleur"
- ]
- }
- },
- {
- "nm": "chauffeur",
- "id": "fdd23cc75fc2d5077cb89d87ed8dc15ab0730c9b466c39677720585a8e554c65",
- "kws": {
- "fr": [
- "chauffeur",
- "conducteur"
- ]
- }
- },
- {
- "nm": "s\u0027asseoir sur un banc",
- "id": "7f3555804dab20c24ab33e07e8de94fec2b155149778fc533a8bd23a85a7fa0e",
- "kws": {
- "fr": [
- "s\u0027asseoir sur un banc",
- "s\u0027asseoir",
- "asseoir"
- ]
- }
- },
- {
- "nm": "water",
- "id": "e052d7c57279791024780b89409f19877955cf485bfb2da82a4caee7691f2c5b",
- "kws": {
- "fr": [
- "water",
- "wc adapté"
- ]
- }
- },
- {
- "nm": "crapaud",
- "id": "f51bae9e41819b3e4daccdcb780074667afbf130ff8896b7cd282809c6ce42f2",
- "kws": {
- "fr": [
- "crapaud"
- ]
- }
- },
- {
- "nm": "chausson",
- "id": "b5362252b29e455e24c7686912a9257de521cb592f1d630ed39d4fe299a799ff",
- "kws": {
- "fr": [
- "chausson",
- "chaussure"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "5231a9c93f1c45084bec9ad85c24d3be9a393928fcb1ceeb466ce798d4db453d",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains sur le ventre",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "courir",
- "id": "a168d7cf43fc8d580afa7d818add253e696cb156716ffd06b7fc047588e808d9",
- "kws": {
- "fr": [
- "courir"
- ]
- }
- },
- {
- "nm": "section",
- "id": "587f2cba13bcad190ba418042d0deb3c22f9199d40ac169bca301a1cf991188c",
- "kws": {
- "fr": [
- "section"
- ]
- }
- },
- {
- "nm": "mordre",
- "id": "22606201d9ccf8a8e025d2bd50fe8ab15cb83de69338c1ce2b1e60364a6f46a8",
- "kws": {
- "fr": [
- "mordre"
- ]
- }
- },
- {
- "nm": "ouvre-boîte",
- "id": "877a46586cc48c55010feb2148a9a4a432202c6b63c610f79c9794d17deed804",
- "kws": {
- "fr": [
- "ouvre-boîte"
- ]
- }
- },
- {
- "nm": "rondelle",
- "id": "3872122d734d0ebcb9f88d94b039835e150e8f283acf92acfddb7753bf3c4a3f",
- "kws": {
- "fr": [
- "rondelle"
- ]
- }
- },
- {
- "nm": "développement infantile",
- "id": "941210dc538b9daef5b3988a2cca22ae606f068aace081edc97a89d44412970d",
- "kws": {
- "fr": [
- "développement infantile",
- "développement"
- ]
- }
- },
- {
- "nm": "fermier",
- "id": "fa41c5faead1e8ebd4fd0e74d1d69df061906ab44b5bafec4ed836c72de50ed6",
- "kws": {
- "fr": [
- "fermier"
- ]
- }
- },
- {
- "nm": "précédent",
- "id": "d31e7222c70f649748164cb3975c53acfd91fccfec5e02113f1b80f2f9d8253a",
- "kws": {
- "fr": [
- "précédent"
- ]
- }
- },
- {
- "nm": "jouer au billard",
- "id": "1738728bfbc0449333760f41196ddb212982d70e19f9ad26d85c52468aa4b2db",
- "kws": {
- "fr": [
- "jouer au billard"
- ]
- }
- },
- {
- "nm": "accident ferroviaire",
- "id": "22f7e32ad4f2ce3332ca18c56935e493b059c0db010dc0b80198be870b02294f",
- "kws": {
- "fr": [
- "accident ferroviaire",
- "accident"
- ]
- }
- },
- {
- "nm": "représentants d\u0027élèves",
- "id": "56d9ed7d78bec0274e4e3884af8490f746630c3c5063cdf9dd2c4dedec7e6a08",
- "kws": {
- "fr": [
- "représentants d\u0027élèves",
- "représentants"
- ]
- }
- },
- {
- "nm": "sortie",
- "id": "27f5e5d354829d152c5c7899c1bc4dd839302f8d542fbbb35a13e8e5ac03f56d",
- "kws": {
- "fr": [
- "sortie"
- ]
- }
- },
- {
- "nm": "vous",
- "id": "7c5d41021744ab823adc9d14f21384bf061851a1572f9f674470a5648eb725e5",
- "kws": {
- "fr": [
- "vous"
- ]
- }
- },
- {
- "nm": "monastère de san juan de la peña",
- "id": "7a581c8a05bc2548e33cef6afa178b288e3d6700972202a8fa066847b7075c90",
- "kws": {
- "fr": [
- "monastère de san juan de la peña",
- "monastère",
- "san juan de la peña"
- ]
- }
- },
- {
- "nm": "palencia",
- "id": "3ff482c81f45f46f24b13f4b56085deeebd9ead4a036a4e9b6560f8683c8428c",
- "kws": {
- "fr": [
- "palencia"
- ]
- }
- },
- {
- "nm": "entendre",
- "id": "8ff4c12a4bca4c8da0fbf21756576d71aeb067848ae3a6999f9db2548d7e3d93",
- "kws": {
- "fr": [
- "entendre",
- "écouter"
- ]
- }
- },
- {
- "nm": "inclure",
- "id": "1b105cb54ce7d13e1a6ec8ddf527f6a0db88ee84fff3ff29456b78cf949f6504",
- "kws": {
- "fr": [
- "inclure",
- "intégrer"
- ]
- }
- },
- {
- "nm": "contraceptif",
- "id": "51b8c7f88e570a71015bff98f03a7d363d1171935adb6bcd7a9b7faae624f69a",
- "kws": {
- "fr": [
- "contraceptif",
- "stérilet"
- ]
- }
- },
- {
- "nm": "expliquer",
- "id": "f6804581b90094375460ca6414616ea1825af91df6194aa9bc06be100252682b",
- "kws": {
- "fr": [
- "expliquer"
- ]
- }
- },
- {
- "nm": "vendeur",
- "id": "470770d509f6745500161006c133f49342c790341545aa4f0dbe249cfa39b132",
- "kws": {
- "fr": [
- "vendeur",
- "marchand de journaux"
- ]
- }
- },
- {
- "nm": "palais des congrès",
- "id": "9537069516173f07db90355b9fe5e7beb63bc5c5181633c3856e8a397351f1cc",
- "kws": {
- "fr": [
- "palais des congrès"
- ]
- }
- },
- {
- "nm": "peau",
- "id": "bf5f1eb3d32552ffa90445fac14a750a5d45ee9668fc1e4cddf4507aff93f50f",
- "kws": {
- "fr": [
- "peau",
- "cuir"
- ]
- }
- },
- {
- "nm": "noter",
- "id": "658759af64d5c82eecd77741f9a592afefa524887b039b1538d35678e26b5812",
- "kws": {
- "fr": [
- "noter",
- "marquer un panier"
- ]
- }
- },
- {
- "nm": "chef de maintenance",
- "id": "e8e5621dae0c20f5e0495a89aefaec354c0484df293dcb8e4f431a318c70df53",
- "kws": {
- "fr": [
- "chef de maintenance"
- ]
- }
- },
- {
- "nm": "affûter",
- "id": "3ff1ed0d1874b574509ccc4ae45b3fda6de0dedcbd2573f47048e338beddc974",
- "kws": {
- "fr": [
- "affûter",
- "aiguisé"
- ]
- }
- },
- {
- "nm": "corne",
- "id": "376c914aef9dd02d5ce974932e3e81f4029a29bb3db8c164b2f117e4c55eda0f",
- "kws": {
- "fr": [
- "corne"
- ]
- }
- },
- {
- "nm": "mètre de menuisier",
- "id": "b22613a7fb3891a470ec463f5d1ae54d9cf2503bde18baa35022c626c8a5abd1",
- "kws": {
- "fr": [
- "mètre de menuisier",
- "mètre"
- ]
- }
- },
- {
- "nm": "amis",
- "id": "ec0e04cc91a1ffae9614d155f81e9c082d1ef9ddfeef0c09a784cee336f2d6a8",
- "kws": {
- "fr": [
- "amis"
- ]
- }
- },
- {
- "nm": "vociférer",
- "id": "8f0a33ee03efe54313a2d7ae4d4c454e0d4e588a5d1a183fedb004fef291f195",
- "kws": {
- "fr": [
- "vociférer",
- "crier"
- ]
- }
- },
- {
- "nm": "prendre sa retraite",
- "id": "b22ab524cc6957bc0781bef3a9d9d3b0b8f407da600a4e942e04873c72972385",
- "kws": {
- "fr": [
- "prendre sa retraite",
- "mettre à la retraite retraite"
- ]
- }
- },
- {
- "nm": "éclabousser",
- "id": "817db1879905a4bbaede81567ed64ff73ad9c5f80879175b5e4c2c4497ea64d4",
- "kws": {
- "fr": [
- "éclabousser"
- ]
- }
- },
- {
- "nm": "hypnotiser",
- "id": "877d20ee13ed0c0126fd4fbda02a0668e00dd503706c750538f60426bb1df82a",
- "kws": {
- "fr": [
- "hypnotiser"
- ]
- }
- },
- {
- "nm": "magasin de volailles",
- "id": "1f1728624b275aca3a33f072447f4fda2486a167291e5e469b7d9f46ded1eee9",
- "kws": {
- "fr": [
- "magasin de volailles"
- ]
- }
- },
- {
- "nm": "tricoter",
- "id": "a84591e4ad214d0c8f2b08d7b749f363fb7877340907b1105d26a226f3d70eae",
- "kws": {
- "fr": [
- "tricoter"
- ]
- }
- },
- {
- "nm": "loi",
- "id": "0b6b12322e15a7abc98d26123b41e31f84944274bf92cf18c89024910f244742",
- "kws": {
- "fr": [
- "loi",
- "légal"
- ]
- }
- },
- {
- "nm": "poney",
- "id": "852bbbde65b2ffb05adf5c127824601c896a6660e8f1a13087435127ea75dbd7",
- "kws": {
- "fr": [
- "poney"
- ]
- }
- },
- {
- "nm": "pharmacie",
- "id": "48a31638c216978f6c49ec4a4531cc7e945448b55147672a66dfd6abb89f9ec2",
- "kws": {
- "fr": [
- "pharmacie"
- ]
- }
- },
- {
- "nm": "faire une ronde",
- "id": "e304474edfbfb57a75bcd1a80bfb1e3fddeb2ad3460a4ea9a7bfa76cda05c731",
- "kws": {
- "fr": [
- "faire une ronde",
- "ronde"
- ]
- }
- },
- {
- "nm": "petit cochon",
- "id": "d3e70206d6c3a85f2288ef9d175115c43cec0824e963d51d68bd40574e30c8c2",
- "kws": {
- "fr": [
- "petit cochon",
- "cochonnet moyen"
- ]
- }
- },
- {
- "nm": "nerveux",
- "id": "c74d37fc61f827253d4776b9ac3064a0e55b465b8567e1a5272a0c81a9aad9cb",
- "kws": {
- "fr": [
- "nerveux"
- ]
- }
- },
- {
- "nm": "chatain",
- "id": "abd6a8f249ca2396286583b7e52e3d7ceeda52f39b2fb4f606bd3c8a823d8154",
- "kws": {
- "fr": [
- "chatain"
- ]
- }
- },
- {
- "nm": "ouvrir le frigo",
- "id": "95d7442aa734fb9e4cdc3b4bdf9350f2433af2090159ce7e1eb6256b7a61b824",
- "kws": {
- "fr": [
- "ouvrir le frigo"
- ]
- }
- },
- {
- "nm": "démolir",
- "id": "656562ed57fb181af0d386a1162b2d7df971fc3b6a08ce1c651a200809d6f8ac",
- "kws": {
- "fr": [
- "démolir"
- ]
- }
- },
- {
- "nm": "pastèque",
- "id": "71333f34009da487f46c89f2f7ba329ffbc64dd4fdcc1dc4ddb840690d75a678",
- "kws": {
- "fr": [
- "pastèque"
- ]
- }
- },
- {
- "nm": "flamme",
- "id": "3bd1c7357199c6f4fb27c11e4c628f606f177083326173155ec3c3aa9d79bb85",
- "kws": {
- "fr": [
- "flamme",
- "antorche"
- ]
- }
- },
- {
- "nm": "sucette",
- "id": "87ee8abe8d1898b3f3f164eb13633506f6bbe365c74fb665dc66bafb83c33de6",
- "kws": {
- "fr": [
- "sucette",
- "sucettes"
- ]
- }
- },
- {
- "nm": "naviguer",
- "id": "fe02e0629daa02c42c2d18f5e40e186f918a0cb7327242996f76066defa9ea6e",
- "kws": {
- "fr": [
- "naviguer"
- ]
- }
- },
- {
- "nm": "foulard",
- "id": "bf4e5f759c870735154b781d2a130804d064daa5f05ca75a77f4fdbbb05c6f24",
- "kws": {
- "fr": [
- "foulard"
- ]
- }
- },
- {
- "nm": "éteindre",
- "id": "79a7fe06bca6993f9ecf4b30f87e81b24eb89e780ee2eaac03e00381537d23fa",
- "kws": {
- "fr": [
- "éteindre"
- ]
- }
- },
- {
- "nm": "ségovie",
- "id": "12864d6d2ef3a10334c64aae8ab4d9c84e571e2e716ba4b6c5005e78ee4582ce",
- "kws": {
- "fr": [
- "ségovie"
- ]
- }
- },
- {
- "nm": "pénis",
- "id": "046b5f585ffebe8f58ef709265551af9243b355c799d65b10d0ddc3a03084b7e",
- "kws": {
- "fr": [
- "pénis"
- ]
- }
- },
- {
- "nm": "boutonner",
- "id": "a831e980db17f6d6ebce085e20c1394f88f2690e3041584b268270661c6a65ed",
- "kws": {
- "fr": [
- "boutonner",
- "attacher"
- ]
- }
- },
- {
- "nm": "cacher",
- "id": "ed3d9ae5f0732cc7917fc8e42e23d4c9170c653a7d943dca8dbc407f25fa56c6",
- "kws": {
- "fr": [
- "cacher",
- "disparaitre"
- ]
- }
- },
- {
- "nm": "boule",
- "id": "ae53f76ed4bce2caeb6e391c8b2ea7eaa08910d74495dd86fd51104ad43f5035",
- "kws": {
- "fr": [
- "boule",
- "boule de sapin de noël"
- ]
- }
- },
- {
- "nm": "boussolle",
- "id": "e386177588d0d285b9152e1fc9af3d2abdfd0fe3865cbdbbd8caa8a1e6354bc3",
- "kws": {
- "fr": [
- "boussolle"
- ]
- }
- },
- {
- "nm": "médecin rééducateur",
- "id": "654163d68233df4a00cb2a9917ca3f2f0ec24c511cdc9b27125eeada90d4e09d",
- "kws": {
- "fr": [
- "médecin rééducateur",
- "rééducateur"
- ]
- }
- },
- {
- "nm": "brosse",
- "id": "caa29b6338890a02859dceb9c6062c8fe63daceb89128662a76d298ce9ca6455",
- "kws": {
- "fr": [
- "brosse",
- "balai"
- ]
- }
- },
- {
- "nm": "gymnase",
- "id": "180927260eea6dc26d23e21d490f428860724d7054e187b91d964cc39de0abad",
- "kws": {
- "fr": [
- "gymnase"
- ]
- }
- },
- {
- "nm": "s\u0027asseoir",
- "id": "1e2b4c585f12e658a2cf57610b30bf86509c507bb8c9f3158a388e9e8404fc35",
- "kws": {
- "fr": [
- "s\u0027asseoir"
- ]
- }
- },
- {
- "nm": "ciseau à bois",
- "id": "ab0d296c7374abc71e3e23f881043475df67ade46ae361772e2003eb3c5b8c55",
- "kws": {
- "fr": [
- "ciseau à bois"
- ]
- }
- },
- {
- "nm": "salade russe",
- "id": "9de110568260fd712bf657eebdb2e6593c81bac284e257c28840a19610214b6d",
- "kws": {
- "fr": [
- "salade russe",
- "salade"
- ]
- }
- },
- {
- "nm": "badajoz",
- "id": "0a3b041c1d1e3789e6250f60e7c39096757425374e5df05425377f3b7dd9c82b",
- "kws": {
- "fr": [
- "badajoz"
- ]
- }
- },
- {
- "nm": "menottes",
- "id": "3bbfde93e72f026456ffe74f7b95f28c3f484bc540f44370d53fe5aeb9f1bffb",
- "kws": {
- "fr": [
- "menottes"
- ]
- }
- },
- {
- "nm": "maintenant",
- "id": "0e39bea4fbb1bbab904a054048a1cc2aab1046307ecc99060a9bf84ff0dce80c",
- "kws": {
- "fr": [
- "maintenant"
- ]
- }
- },
- {
- "nm": "hyène",
- "id": "c6a9b1d17a2c221979068c4bbdf094663ab7295c2669e06a9cf6704d96ef00e7",
- "kws": {
- "fr": [
- "hyène"
- ]
- }
- },
- {
- "nm": "chambre",
- "id": "c5878002abb99224d6daf3b2c895f4a70ce512ae3067fcabe75fe0d21f5cd1e6",
- "kws": {
- "fr": [
- "chambre",
- "cuisine",
- "signalétique"
- ]
- }
- },
- {
- "nm": "cascade",
- "id": "d8eeb15c0fecc994019de1781381ce4b8dc2f2543f832affeb163535b4b4af09",
- "kws": {
- "fr": [
- "cascade",
- "chute"
- ]
- }
- },
- {
- "nm": "cacao",
- "id": "7ea503dc875445a7c465e0bd7ff65d1c691c36416c8f328fd39e93dba33f9dfc",
- "kws": {
- "fr": [
- "cacao"
- ]
- }
- },
- {
- "nm": "faire des courses",
- "id": "82d6f2829f6a3f04293a05f272e6cbc387260b1f47dcd2aed7abaa0f2928d550",
- "kws": {
- "fr": [
- "faire des courses",
- "faire les courses",
- "acheter"
- ]
- }
- },
- {
- "nm": "embrasser",
- "id": "89c691db6db418e87b62e03b7b242a7f9a95f526718bfc2f6a6250218e8dc7a9",
- "kws": {
- "fr": [
- "embrasser",
- "donner un bisou",
- "baiser"
- ]
- }
- },
- {
- "nm": "cochon",
- "id": "aa1b061534fbbe1df9db9fc651b603c23103298de74008e7a9e4304c73213acd",
- "kws": {
- "fr": [
- "cochon",
- "lard",
- "goret"
- ]
- }
- },
- {
- "nm": "télésiège",
- "id": "8834053f69a0ca07d4dc35c6ebd72676130e6e6d2320d3f5dc8200e398a90d79",
- "kws": {
- "fr": [
- "télésiège"
- ]
- }
- },
- {
- "nm": "demander",
- "id": "02a879288fb6644a02dcc8aa21edbe61e992855c60eeb4e192f7100fe8216045",
- "kws": {
- "fr": [
- "demander"
- ]
- }
- },
- {
- "nm": "croquettes",
- "id": "a946d98e0a6cd26ca1b21c27ac2d8730c5fc2b0bc6f3506dd75d45cdf3aa48bf",
- "kws": {
- "fr": [
- "croquettes"
- ]
- }
- },
- {
- "nm": "se déplacer",
- "id": "78baa1b5a3f2b257fc3b72bc291ba96c6052b978accde97dea04a29e6010bbbe",
- "kws": {
- "fr": [
- "se déplacer",
- "avancer"
- ]
- }
- },
- {
- "nm": "chambre à coucher",
- "id": "1be2c912d8d28cd05bf8cd115b6d84b85bc54ef6af74cd32059a945025dcf1d9",
- "kws": {
- "fr": [
- "chambre à coucher",
- "chambre",
- "signalétique"
- ]
- }
- },
- {
- "nm": "casserole",
- "id": "c93bfd8e7dad92235a82e0a703d9af25ea54f1e26a6815e946f0f1c345243715",
- "kws": {
- "fr": [
- "casserole",
- "ustensile de cuisine"
- ]
- }
- },
- {
- "nm": "cuisine de la cafétéria",
- "id": "ca8ab98d5971a9bfe055b7a57338b4444449fdfe9fc81a597cb892b747b899b8",
- "kws": {
- "fr": [
- "cuisine de la cafétéria",
- "cuisine",
- "signalétique"
- ]
- }
- },
- {
- "nm": "cerf-volant",
- "id": "c9088c7ca6c6e1bae7747a167ce7863b938215d2242d90217c25df385d7c1e14",
- "kws": {
- "fr": [
- "cerf-volant",
- "foulard"
- ]
- }
- },
- {
- "nm": "faire tourner la tête",
- "id": "1668c4ea80997d77739c2bca04fe707b258f8477b2adfa3ace05763ee5c07a22",
- "kws": {
- "fr": [
- "faire tourner la tête",
- "avoir la tête qui tourne",
- "mal au cœur"
- ]
- }
- },
- {
- "nm": "sucer",
- "id": "6f58ef20745af6802028847f8f813689322b907c3384120512e7ac4459ed1224",
- "kws": {
- "fr": [
- "sucer"
- ]
- }
- },
- {
- "nm": "saler",
- "id": "99cec6f6ac907f34f31c5bf5d8462224c715354740d57ebe8748088f7055ba50",
- "kws": {
- "fr": [
- "saler",
- "assaisonner"
- ]
- }
- },
- {
- "nm": "tenerife",
- "id": "1ad9df515a4255fe25638bf01dac80f8be7d454a40b6f822f1f034046b616693",
- "kws": {
- "fr": [
- "tenerife"
- ]
- }
- },
- {
- "nm": "couper",
- "id": "994f6e7bb4e448e18fb48fe22d1c962e0cd0ad122ac5d4556f1fe733b06740b4",
- "kws": {
- "fr": [
- "couper"
- ]
- }
- },
- {
- "nm": "asturies",
- "id": "c37c70ff1195f44c5fc6793e21c8410251861a40b19f9da223718a1ebdd61fa0",
- "kws": {
- "fr": [
- "asturies"
- ]
- }
- },
- {
- "nm": "faire cercle",
- "id": "aedc61e5377c2063ddb709c1ec1a90942d896c5fa2dcddcfa9962e71f4102935",
- "kws": {
- "fr": [
- "faire cercle",
- "s\u0027asseoir en cercle"
- ]
- }
- },
- {
- "nm": "vingt-et-un",
- "id": "c6f94501b060c8e661d75ac1004234297c87161406b519a00dab0d917a5f71b9",
- "kws": {
- "fr": [
- "vingt-et-un",
- "21"
- ]
- }
- },
- {
- "nm": "percer",
- "id": "fdfb706f010414b0b3280f67ba8e6bca3eb46aeaa95abadb158ddd831108cc39",
- "kws": {
- "fr": [
- "percer"
- ]
- }
- },
- {
- "nm": "orchidée",
- "id": "487ad6f447331901f33c6235dab58639b5577bcb0644a44e286857cd7d2fcc58",
- "kws": {
- "fr": [
- "orchidée",
- "fleur"
- ]
- }
- },
- {
- "nm": "fromage râpé",
- "id": "1ac45c4bd3ce84409dd5938e8d0676a3708297168e387a3bb6250ace2b36654a",
- "kws": {
- "fr": [
- "fromage râpé",
- "râper du fromage",
- "râper"
- ]
- }
- },
- {
- "nm": "peintre",
- "id": "6b041dfec435f67de10c9a2a1bcba480bd27f6d80a92478158136d958385ad5f",
- "kws": {
- "fr": [
- "peintre",
- "artiste"
- ]
- }
- },
- {
- "nm": "gratis",
- "id": "98f772f3586592635fa89fa0a2a8fb824fa9ba9a4219ac469e93db50e3170919",
- "kws": {
- "fr": [
- "gratis",
- "gratuit"
- ]
- }
- },
- {
- "nm": "essaim",
- "id": "1a16bceb1ca541f448b30878846a34a6c9f1cb6ba5332a85102cbe4363a7c871",
- "kws": {
- "fr": [
- "essaim"
- ]
- }
- },
- {
- "nm": "lancement de disque",
- "id": "10481a8d81bfda3a4be95e4f252bc27df0d695a276bc19d38cfb141fb50442f9",
- "kws": {
- "fr": [
- "lancement de disque",
- "lancement",
- "lanceur"
- ]
- }
- },
- {
- "nm": "faire un massage",
- "id": "869885c46870a618c4c440278facb9d22840667c01bd3bf792d89b6acfd13071",
- "kws": {
- "fr": [
- "faire un massage",
- "massage facial",
- "massage"
- ]
- }
- },
- {
- "nm": "peignoir",
- "id": "975c5e21f6c09134816ed006498249b267a59419d81adb720c957516f8a5a140",
- "kws": {
- "fr": [
- "peignoir",
- "blouse"
- ]
- }
- },
- {
- "nm": "fièvre",
- "id": "121a621c6510c3034ef2c45b4bbe5713e979c83964d837366b2b7fd660086251",
- "kws": {
- "fr": [
- "fièvre"
- ]
- }
- },
- {
- "nm": "crèche de noël",
- "id": "b5f56b4521c4ac1d62a70a4ec13bd53627966aca6cf9c831fca2d03e43807785",
- "kws": {
- "fr": [
- "crèche de noël",
- "crèche",
- "noël"
- ]
- }
- },
- {
- "nm": "pharmacie",
- "id": "759c8d18051b7c68c319ac7dc704a3b7eaaa40d5abee9e8a36d454be525bfdbc",
- "kws": {
- "fr": [
- "pharmacie"
- ]
- }
- },
- {
- "nm": "cisaille",
- "id": "3d2cd8096bb459ea9970ab0c223f300201bd05809ea3c9c8b10286528684d310",
- "kws": {
- "fr": [
- "cisaille"
- ]
- }
- },
- {
- "nm": "nourriture pour chiens",
- "id": "6998c9555add8f835a63c3a6915358a77a520921276954748728b427565574b7",
- "kws": {
- "fr": [
- "nourriture pour chiens",
- "nourriture"
- ]
- }
- },
- {
- "nm": "ombre à paupières",
- "id": "bd75b23a9846a01e5b8bf98b168f0d006d9083fb57d6ddd4692f4ce001575b48",
- "kws": {
- "fr": [
- "ombre à paupières"
- ]
- }
- },
- {
- "nm": "sac de jouets",
- "id": "bef4fc7c5c6968295a8b4be6806c44c9676012856f2ab3c6833c22072bdfe272",
- "kws": {
- "fr": [
- "sac de jouets"
- ]
- }
- },
- {
- "nm": "conte",
- "id": "fea30790dbaebe043b92aa161e27938f72285af3bd3ce72eb7d81b3182ec979d",
- "kws": {
- "fr": [
- "conte"
- ]
- }
- },
- {
- "nm": "vestiaires",
- "id": "3bed8411561fd44f7fe4ab6edeac39871ea225a87bf25624a28b1d87d29e02a0",
- "kws": {
- "fr": [
- "vestiaires"
- ]
- }
- },
- {
- "nm": "lunettes de natation",
- "id": "a9e9c77f4dd5edbab8d2a472c5e0937eeff6da2fc6d35f2d7efb54c4db0ff170",
- "kws": {
- "fr": [
- "lunettes de natation",
- "lunettes de plongée",
- "lunettes"
- ]
- }
- },
- {
- "nm": "saint valentin",
- "id": "8b0a5a51263c67608b894eff34595925fa0c6da9f51109ccda2b3125ca9e73df",
- "kws": {
- "fr": [
- "saint valentin",
- "saint-valentin"
- ]
- }
- },
- {
- "nm": "remorque",
- "id": "5fc293332e3d43aecad07a08fe79ea9d55fe070afe81d156c24a59c3645f0c1b",
- "kws": {
- "fr": [
- "remorque"
- ]
- }
- },
- {
- "nm": "libraire",
- "id": "37a86abb949b74c562ac235b879a21a1f537f49a1394218dcde9f0e92b141ff4",
- "kws": {
- "fr": [
- "libraire"
- ]
- }
- },
- {
- "nm": "plus",
- "id": "2eb6dde3d1d0f6ff77116fe9f195788325903edb485d2fc6d090cb57d44bc02d",
- "kws": {
- "fr": [
- "plus"
- ]
- }
- },
- {
- "nm": "haut-parleur",
- "id": "4311ac36672e1913b0bf743cb4e5c0e2771c2ceec06994e9b1e3dae1d2824822",
- "kws": {
- "fr": [
- "haut-parleur"
- ]
- }
- },
- {
- "nm": "bougie",
- "id": "1a51e0b92a6664e996be8b9d0bf8ed8276d7e3a4e3c82b1e8d5594fbb949885d",
- "kws": {
- "fr": [
- "bougie"
- ]
- }
- },
- {
- "nm": "batterie",
- "id": "cc3a5135f0e264c48224e1fa057821986551ad88a138b3dc9f15b6a9f636e916",
- "kws": {
- "fr": [
- "batterie"
- ]
- }
- },
- {
- "nm": "le chat botté",
- "id": "6f0e12619f66cc0614a72a4d37bcb2eaa4a7268f14461317a33566c0a3d23b1d",
- "kws": {
- "fr": [
- "le chat botté"
- ]
- }
- },
- {
- "nm": "se mouiller",
- "id": "fd6531e1c13477fa2e9d6bc65db989609b00c10c317dafbf1207151f53c16f37",
- "kws": {
- "fr": [
- "se mouiller",
- "mouiller",
- "mouillée"
- ]
- }
- },
- {
- "nm": "clignotant",
- "id": "e31ecee822ecb8469b6adbb821d03ac964c07942af236da7fdaa3e3155b2d5e6",
- "kws": {
- "fr": [
- "clignotant"
- ]
- }
- },
- {
- "nm": "ananas",
- "id": "706ed15ee2ef748a6869201e25292669c023cd984e7bc095964b680fef977049",
- "kws": {
- "fr": [
- "ananas"
- ]
- }
- },
- {
- "nm": "baie",
- "id": "4e6ae99b91794e50c605162386dc3aafa003edbc4d221d82ab7481fd66cda010",
- "kws": {
- "fr": [
- "baie"
- ]
- }
- },
- {
- "nm": "étoile de mer",
- "id": "fc55972ddfed097f433e4a4bf01995c615e675f09caedffd522a585ce17e2037",
- "kws": {
- "fr": [
- "étoile de mer"
- ]
- }
- },
- {
- "nm": "natte",
- "id": "da1103e0372a7066cd60cd7ca075a7149828ae58288eb70ae4cbfd669ca4fb9a",
- "kws": {
- "fr": [
- "natte"
- ]
- }
- },
- {
- "nm": "cassette vidéo",
- "id": "ede758f5866adce35eda76dd922b27840579d0859a6275583da80ea5fb7e9120",
- "kws": {
- "fr": [
- "cassette vidéo"
- ]
- }
- },
- {
- "nm": "poivron",
- "id": "5b7b36374ce15083d8e7b9a7fb9f688665525ee3fb5257aa61e564db2fbf0074",
- "kws": {
- "fr": [
- "poivron",
- "concombre"
- ]
- }
- },
- {
- "nm": "citrouille",
- "id": "cb4cef74dcaf584ba8dcbef64dfe0523a91905676c7c4b944bbdc0ea9d104e40",
- "kws": {
- "fr": [
- "citrouille"
- ]
- }
- },
- {
- "nm": "désirer",
- "id": "11a70c66dcda7519a70e5e0e1b62e9949c1f15833935b9fc7554963ea2e8f7bc",
- "kws": {
- "fr": [
- "désirer",
- "vouloir",
- "avoir envie",
- "je veux celui-là",
- "je veux"
- ]
- }
- },
- {
- "nm": "sifflet",
- "id": "c720620f059b0b6b90455355184c25b872f2c94854012be171b5a36b2bc7802c",
- "kws": {
- "fr": [
- "sifflet"
- ]
- }
- },
- {
- "nm": "daurade",
- "id": "bffbd8439d782ceb874f1651df3c81448aa8dd5335ce28491b8b7d01b9f99a23",
- "kws": {
- "fr": [
- "daurade"
- ]
- }
- },
- {
- "nm": "compagnon",
- "id": "5894cc91c606ddc49fc11eea0d3f73d7e55dfdeaea3a843ea6454fdab65f5c3a",
- "kws": {
- "fr": [
- "compagnon",
- "aimé",
- "amour"
- ]
- }
- },
- {
- "nm": "pèlerin",
- "id": "0232bbd218be9eda14923a5323e8b62412be8dbfe2e9b5f232fd9a997d9aa75a",
- "kws": {
- "fr": [
- "pèlerin"
- ]
- }
- },
- {
- "nm": "repassé",
- "id": "71e5c57e91ea713eb9b741f35457ed3eba683ab9f8f4c07449bcd4c80ef36847",
- "kws": {
- "fr": [
- "repassé",
- "repassée"
- ]
- }
- },
- {
- "nm": "se lever",
- "id": "eef716b0edc21713dee94a13cfaaab73cfeb09331b4ca1b787fbda72f129d754",
- "kws": {
- "fr": [
- "se lever",
- "lever"
- ]
- }
- },
- {
- "nm": "mince",
- "id": "9fe9c9e79eb9f30cbd21c9a2d942871fd13196742556e06190818bc522079a5e",
- "kws": {
- "fr": [
- "mince",
- "maigre"
- ]
- }
- },
- {
- "nm": "scarole",
- "id": "51422076f0583645a1af23e1dbb923f7b45bb67e211320f19c4b08d00d52c5d5",
- "kws": {
- "fr": [
- "scarole"
- ]
- }
- },
- {
- "nm": "goûter",
- "id": "9ea7c1f912392c546eaaec49a1878cc647ec5f53a78ecbfb8d81c2dac3eaaea2",
- "kws": {
- "fr": [
- "goûter"
- ]
- }
- },
- {
- "nm": "obliger",
- "id": "e66ab6d03426e72546d35bc2f0d98f37c391b7c5e3a38f033806c91aa5eec1c5",
- "kws": {
- "fr": [
- "obliger"
- ]
- }
- },
- {
- "nm": "électricien",
- "id": "21fd75cb6d21a64196f9a282486278b1ebaf8d92f33c2daa4d17bbde2af5af2f",
- "kws": {
- "fr": [
- "électricien"
- ]
- }
- },
- {
- "nm": "y-a-t-il du vent",
- "id": "c540a1e739f3ae657b9d4f0a010cca6270709289d363e0176be9c0fa8abc37fb",
- "kws": {
- "fr": [
- "y-a-t-il du vent",
- "le vent souffle-t-il"
- ]
- }
- },
- {
- "nm": "craie",
- "id": "bcd421da0f22e01c0bd7d9048884b661f239153e669b46150ad260faa7a7ee5f",
- "kws": {
- "fr": [
- "craie",
- "craies"
- ]
- }
- },
- {
- "nm": "blocs psychomotricité",
- "id": "c3ef1eb4970b6652aacfe2df810004901c16aae2a4824ddccf1a97934364d7ae",
- "kws": {
- "fr": [
- "blocs psychomotricité",
- "blocs"
- ]
- }
- },
- {
- "nm": "lion",
- "id": "07557d35323302a66d63767e97c40c12f47aa87d32ddbab168f6a6af04679a43",
- "kws": {
- "fr": [
- "lion"
- ]
- }
- },
- {
- "nm": "menuisière",
- "id": "71802cc1def8a7acb04c67b4b0fe7bb5365ac6577146969f64e5cf1977a41cbb",
- "kws": {
- "fr": [
- "menuisière"
- ]
- }
- },
- {
- "nm": "peuplé",
- "id": "cb4dc20d118ba18498e1d300951c515fa7e3cf2a2f295db684f01d907bc50d24",
- "kws": {
- "fr": [
- "peuplé",
- "village",
- "population",
- "commune"
- ]
- }
- },
- {
- "nm": "caganer",
- "id": "f0aca3a490e727852ee15a51a403e2643addafef6861e1bc0d8513a29f54d807",
- "kws": {
- "fr": [
- "caganer"
- ]
- }
- },
- {
- "nm": "point d\u0027accès",
- "id": "e9afa9d74e1c29006323d3a5ad2d3d9156a064a3437c80b7266daf8c14484727",
- "kws": {
- "fr": [
- "point d\u0027accès",
- "wi-fi",
- "router wi-fi",
- "router"
- ]
- }
- },
- {
- "nm": "cabine téléphonique",
- "id": "2bf1b10dc76c818e4b7b599914ce1e18b7d0577596188d151dadf20e7813d4f1",
- "kws": {
- "fr": [
- "cabine téléphonique",
- "cabine",
- "téléphone"
- ]
- }
- },
- {
- "nm": "président d\u0027aragon",
- "id": "b521ccf47e80c200e32d3b5930608efdcc5b352dbcf0b8b0fd334394c44a9098",
- "kws": {
- "fr": [
- "président d\u0027aragon"
- ]
- }
- },
- {
- "nm": "éplucher",
- "id": "3fd24a1438e893a4e03416fe536dd4057b47ffad376d81b3474d541edaa7c960",
- "kws": {
- "fr": [
- "éplucher"
- ]
- }
- },
- {
- "nm": "cinq heures pile",
- "id": "923c7b410907ae05e03122f00578876af1d0ccaa3ff7ba61b03b2f66fd089c02",
- "kws": {
- "fr": [
- "cinq heures pile",
- "cinq heures"
- ]
- }
- },
- {
- "nm": "vêtement",
- "id": "7b60e4195ab396a2e1c2be3fe5abff6d0f5b1a041093d559018856bf965a9502",
- "kws": {
- "fr": [
- "vêtement",
- "bonnet"
- ]
- }
- },
- {
- "nm": "oculiste",
- "id": "79ce83d9cec216587262ec6d3b3fcfbc96afc21acde3bfbf27b17fa89435d92b",
- "kws": {
- "fr": [
- "oculiste",
- "ophtalmologue"
- ]
- }
- },
- {
- "nm": "exercice",
- "id": "6054c0739c65e9b2ad5ab59afd3cea5cd425f24c975724ca649ac1a5dfc1b6ae",
- "kws": {
- "fr": [
- "exercice",
- "tâche",
- "fiche"
- ]
- }
- },
- {
- "nm": "boîte de sauce tomate",
- "id": "81ea0e06c36e58be3a5c053ff2f43620736f36ed2d4c0261220d62ac131e6a9e",
- "kws": {
- "fr": [
- "boîte de sauce tomate",
- "sauce tomate"
- ]
- }
- },
- {
- "nm": "jeu de l\u0027oie",
- "id": "1e4bd7e4434063b62bc9e269b39f4b5a0beefc3e30eda16d1d8558eae1a3a4d5",
- "kws": {
- "fr": [
- "jeu de l\u0027oie",
- "jeux de table"
- ]
- }
- },
- {
- "nm": "pollution",
- "id": "380e0dd8f0cab4ce5355671e121eb91d746209f529dbbab615c6a1f09450d4da",
- "kws": {
- "fr": [
- "pollution",
- "contaminer"
- ]
- }
- },
- {
- "nm": "viande d\u0027agneau",
- "id": "957134c44277109c75eff775cfc2584619b2245eb6fdb916dd94a26e8915c53f",
- "kws": {
- "fr": [
- "viande d\u0027agneau",
- "viande",
- "côte"
- ]
- }
- },
- {
- "nm": "petits pois",
- "id": "2977e43112439ff818805363a8b105a833227ef9bc79c135d8febf9133890151",
- "kws": {
- "fr": [
- "petits pois",
- "légumes secs"
- ]
- }
- },
- {
- "nm": "technicien d\u0027animation socioculturelle",
- "id": "cd95b40167eb14bd5ab64bfd90d9e840a7535a28469d24eb468878624c529de9",
- "kws": {
- "fr": [
- "technicien d\u0027animation socioculturelle",
- "technicien supérieur d\u0027activités spécifiques"
- ]
- }
- },
- {
- "nm": "fluorescent",
- "id": "85ff16d88a6d2eeaa7207c8dcb3c3a233a3c93a33ee067637ab160a5381b2294",
- "kws": {
- "fr": [
- "fluorescent"
- ]
- }
- },
- {
- "nm": "madeleine",
- "id": "3ad7f5f6b33892f7b108c26a2624cdceddeda314e463cd40d33ff8fab4cc0d4f",
- "kws": {
- "fr": [
- "madeleine"
- ]
- }
- },
- {
- "nm": "pansement",
- "id": "969be1a85290ed7da435c798ce15590cd76785c8dc3e81f83877a11d2fa4448f",
- "kws": {
- "fr": [
- "pansement"
- ]
- }
- },
- {
- "nm": "pizza",
- "id": "75a52e9969a0c1cc58de7d776b0ad221f00a399347e30b1eb3c807295bf23818",
- "kws": {
- "fr": [
- "pizza"
- ]
- }
- },
- {
- "nm": "projecteur",
- "id": "08c62a5e4683087f5db73c917b564113f0775455e79c502fae267e6e5dc92990",
- "kws": {
- "fr": [
- "projecteur"
- ]
- }
- },
- {
- "nm": "mélanger",
- "id": "c26d68c081b5229d8d8e62ef885b9e59dec40f9fdba57b4281d4c920e103b1ef",
- "kws": {
- "fr": [
- "mélanger"
- ]
- }
- },
- {
- "nm": "compléter",
- "id": "ab6ab772e56823c764c359c1d7511938b9b9baadc95491c9b193664d23422916",
- "kws": {
- "fr": [
- "compléter"
- ]
- }
- },
- {
- "nm": "fleuri",
- "id": "37c0578a954e8c4bf7aa62d7539c9dfbd51eb11d3410ac97f6c84bf9e3302064",
- "kws": {
- "fr": [
- "fleuri"
- ]
- }
- },
- {
- "nm": "danseuse de jota",
- "id": "4e5f0fe3bbc58b6483004da3be406d4812305788e17c588edf01844004b76842",
- "kws": {
- "fr": [
- "danseuse de jota"
- ]
- }
- },
- {
- "nm": "maillot de bain",
- "id": "867c27354c4dfea6832503016c3c48ce0e35cf00808137371292558c7ac811ce",
- "kws": {
- "fr": [
- "maillot de bain"
- ]
- }
- },
- {
- "nm": "vendre",
- "id": "c5bdb2e74a5fcfed87ae9f28ea93951edf9b2f16603daf0eab7d6254accb809d",
- "kws": {
- "fr": [
- "vendre",
- "commerce"
- ]
- }
- },
- {
- "nm": "couleuvre",
- "id": "f28df50f8ce41e461b1c0f32a77926fd77e1a26d4d9167836619dd982e163b11",
- "kws": {
- "fr": [
- "couleuvre",
- "serpent"
- ]
- }
- },
- {
- "nm": "devinette",
- "id": "199f0dffacd13f3423ea461607c55c269c55a2c60b3ea802b53a66102238e0f2",
- "kws": {
- "fr": [
- "devinette"
- ]
- }
- },
- {
- "nm": "fermier",
- "id": "5dded89fde0494e879f81f518324c4813fb34e9113a6ad2d94b0254dab650aaf",
- "kws": {
- "fr": [
- "fermier"
- ]
- }
- },
- {
- "nm": "atelier",
- "id": "6709d38298982d3e2232fab945be17ae14c88363f7f53e77d87106c91b1ce453",
- "kws": {
- "fr": [
- "atelier",
- "garage"
- ]
- }
- },
- {
- "nm": "crise économique",
- "id": "30f1ccdf4b6513241c51f0bdfb11af27e2adfb506cb032cf85156871000f4899",
- "kws": {
- "fr": [
- "crise économique",
- "crise"
- ]
- }
- },
- {
- "nm": "du",
- "id": "75582e52a7f5433d53c5c12e3f26e498684cb1fd17f1f18519d16e0319608a98",
- "kws": {
- "fr": [
- "du"
- ]
- }
- },
- {
- "nm": "plaque d\u0027immatriculation",
- "id": "7b1de44a9acc9394884f63c0baab62e17e32b70a262f7a510297fc1505cff51d",
- "kws": {
- "fr": [
- "plaque d\u0027immatriculation"
- ]
- }
- },
- {
- "nm": "se laver",
- "id": "d1dbb90400d1906d9b0f377f52b2ff83f2009dc57e53960cea6ebc9ee3ac6ab2",
- "kws": {
- "fr": [
- "se laver",
- "se rincer",
- "laver le visage",
- "laver"
- ]
- }
- },
- {
- "nm": "boucle",
- "id": "5f61a65bdce767c3d7a5f10c8343cd8df132764055827675e7fb894e8784cc43",
- "kws": {
- "fr": [
- "boucle",
- "frisé"
- ]
- }
- },
- {
- "nm": "théâtre de marionnettes",
- "id": "ade94a180f05f0ace22c0df609e7361a3073d7ed9a74fce6f06c7635e7e392c7",
- "kws": {
- "fr": [
- "théâtre de marionnettes",
- "représentation"
- ]
- }
- },
- {
- "nm": "quel est ton email",
- "id": "2754a2a22fc7445f6118d3ab4abe393a528b2a79a6bc0f4ea681dac74d914297",
- "kws": {
- "fr": [
- "quel est ton email",
- "quelle est ton adresse électronique"
- ]
- }
- },
- {
- "nm": "potelé",
- "id": "9c5a4339191e58880d63f722a0e27fe7c1d4dc0ab1350c3b228301653a1870e9",
- "kws": {
- "fr": [
- "potelé",
- "obèse",
- "rondelet",
- "gros"
- ]
- }
- },
- {
- "nm": "permettre",
- "id": "6fccb354591370f1c6c27fca3ce9cbc80f442828ef8a9ec2aa98197bcaf1ca8f",
- "kws": {
- "fr": [
- "permettre"
- ]
- }
- },
- {
- "nm": "palette de couleurs",
- "id": "7ff4700dba7e226e88f0140187652c7dce5975ed67078411ff8ad1bb2b9461f0",
- "kws": {
- "fr": [
- "palette de couleurs",
- "palette"
- ]
- }
- },
- {
- "nm": "collier",
- "id": "88b41d63751eec0e97b68671260ee4a39c94026fa196c2615432b7e71f986015",
- "kws": {
- "fr": [
- "collier"
- ]
- }
- },
- {
- "nm": "europe",
- "id": "b524144244db56a4c733f46aebd7aea4fd4e2187f6fe89af0fa4e3a9ff744550",
- "kws": {
- "fr": [
- "europe"
- ]
- }
- },
- {
- "nm": "lits superposés",
- "id": "206518cc4ebd3badac6d9c3d2240d3024748d8e742ef189b56cb3b682432d7fa",
- "kws": {
- "fr": [
- "lits superposés"
- ]
- }
- },
- {
- "nm": "grille",
- "id": "948fda6dec846fe4b648af935142f3844bd29faa7667b2063372ab7a8d4a04d7",
- "kws": {
- "fr": [
- "grille"
- ]
- }
- },
- {
- "nm": "éponge",
- "id": "e23e9c0247531f4f5b5fbb30030f30066691131db39261667f39a9e1f27cf8b8",
- "kws": {
- "fr": [
- "éponge"
- ]
- }
- },
- {
- "nm": "fusée",
- "id": "5c4525be38992b0964da1b7cd11a90a0793c9bea2ac8bf2c983fb4c154f06a7c",
- "kws": {
- "fr": [
- "fusée"
- ]
- }
- },
- {
- "nm": "pays",
- "id": "e83dc44abeb7fc0b492f2e2be440b2dc9400968245d003e77309dc37806a880a",
- "kws": {
- "fr": [
- "pays",
- "france"
- ]
- }
- },
- {
- "nm": "pipi",
- "id": "20dbfbac2769aaae16cdbfecaa365a1987e1040dafd97a196e19f21d8405f850",
- "kws": {
- "fr": [
- "pipi",
- "pisser",
- "faire pipi",
- "uriner"
- ]
- }
- },
- {
- "nm": "baisser le lit",
- "id": "3f1a3469da0187e0131ef78aee82dba8bc0ad7b56850736a6e91674ffbb4bd67",
- "kws": {
- "fr": [
- "baisser le lit"
- ]
- }
- },
- {
- "nm": "séparer",
- "id": "c486fbed1f51ed5672117f4391b26d0244455c5148abc2c7928b4e88884b588e",
- "kws": {
- "fr": [
- "séparer",
- "éloigner",
- "s\u0027éloigner"
- ]
- }
- },
- {
- "nm": "puis-je jouer",
- "id": "9397534c620477bf209511e8a48bcc4407330273519eb393eba688660bece147",
- "kws": {
- "fr": [
- "puis-je jouer",
- "je peux..."
- ]
- }
- },
- {
- "nm": "lampadaire",
- "id": "4063ec44094e1279283caa6db27edd5128e6ec523b6f9b357934e3d318ad2fdc",
- "kws": {
- "fr": [
- "lampadaire"
- ]
- }
- },
- {
- "nm": "tresse",
- "id": "01f8f1df6ac8d6fb061731ce5c8491a982a095d5ec378fac28d106eb33e78318",
- "kws": {
- "fr": [
- "tresse"
- ]
- }
- },
- {
- "nm": "amender",
- "id": "a41883d6350602653a8749c8a73a3e054e3c1a44fb4a1c0ddd68dd3675e601cc",
- "kws": {
- "fr": [
- "amender"
- ]
- }
- },
- {
- "nm": "responsable administratif",
- "id": "231664fe19809eaa5fe28aa1250cb7d01b5883614b49974efde595037f62a332",
- "kws": {
- "fr": [
- "responsable administratif",
- "responsable"
- ]
- }
- },
- {
- "nm": "chèque",
- "id": "70918ff98a1abcd9e09c0b0980d9ae5f7bbf7e86e825d556b33a8abbf601bdaf",
- "kws": {
- "fr": [
- "chèque"
- ]
- }
- },
- {
- "nm": "balançoire adaptée",
- "id": "c094f27d0bfa7d055e522454013b5667d3006fdb67ba934ba0c663956dee6ad4",
- "kws": {
- "fr": [
- "balançoire adaptée",
- "balançoire"
- ]
- }
- },
- {
- "nm": "lettre",
- "id": "cf1ca0e01e7d02b8011538df01e8a5ffe9f8296c4969e94e56c81fb80086840a",
- "kws": {
- "fr": [
- "lettre",
- "f"
- ]
- }
- },
- {
- "nm": "suicide",
- "id": "bdef38b9b3541c2b2a0c506e1c31eaa9301b458b3a3321ace40b22f42eac337f",
- "kws": {
- "fr": [
- "suicide"
- ]
- }
- },
- {
- "nm": "chariot de boissons",
- "id": "17a9370ab03cc3ae2426127d006cb6242973624ed8ad063c8fb13c17930b084f",
- "kws": {
- "fr": [
- "chariot de boissons",
- "charriot"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "feaa7a5dd7506f8fe9b5d2909b48d4689119a5d7f690543c8c3cf0d854453e5c",
- "kws": {
- "fr": [
- "praxie",
- "sortir la langue",
- "orthophonie",
- "retirer"
- ]
- }
- },
- {
- "nm": "badminton",
- "id": "48f96bef956be5c4172452d98034a43ade61e4324744fe5b427a1e4cfd900f6b",
- "kws": {
- "fr": [
- "badminton",
- "joueur de badminton",
- "joueuse"
- ]
- }
- },
- {
- "nm": "assurer",
- "id": "3a65106e2bfda868e3065b511c91a25e4aae3122bda2748647c18f66e4f2caf4",
- "kws": {
- "fr": [
- "assurer"
- ]
- }
- },
- {
- "nm": "bouton",
- "id": "f81da846550e75678c2c583d11673ab00805c49518676f9b123a2fb02575d44a",
- "kws": {
- "fr": [
- "bouton",
- "produit de soutien",
- "commutateur"
- ]
- }
- },
- {
- "nm": "cours",
- "id": "15891b23e85bc4610373c46cdaa9abaed059857a69bd70cb749207b717566a78",
- "kws": {
- "fr": [
- "cours",
- "professeur",
- "maîtresse"
- ]
- }
- },
- {
- "nm": "cage",
- "id": "920054bb777236e49fa8d8377a41f05f7963049c2980f8ea81bf458069af8205",
- "kws": {
- "fr": [
- "cage"
- ]
- }
- },
- {
- "nm": "castilla-la-mancha",
- "id": "d10b6efd90ed833e28d1989aef0bcdacd9430fd9739863443f8267651d612ee4",
- "kws": {
- "fr": [
- "castilla-la-mancha",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "eau",
- "id": "578c0663057600ba5d628c5a2a740591ce934fab1ca6340567dbd67c20c494b4",
- "kws": {
- "fr": [
- "eau",
- "boisson"
- ]
- }
- },
- {
- "nm": "centimes",
- "id": "6307c57c7157d3a1d77c7c30d7ad832cf0f5c14c4ab9eb9bd638747336c4037e",
- "kws": {
- "fr": [
- "centimes",
- "50 centimes",
- "argent"
- ]
- }
- },
- {
- "nm": "pousser",
- "id": "16ba4e22fa02c9864bda16a7188ed884be631545059eda98957e01194d51c53d",
- "kws": {
- "fr": [
- "pousser",
- "renverser"
- ]
- }
- },
- {
- "nm": "cousin",
- "id": "d308e914bf996fadca707ccc22f49e8beb1028f8831b6c00f4ef6b2b8d840755",
- "kws": {
- "fr": [
- "cousin"
- ]
- }
- },
- {
- "nm": "brosser",
- "id": "5c843a8d06f3174fcb5fbd55703c3f7c72784126a63f18c000b2e65b274f1368",
- "kws": {
- "fr": [
- "brosser"
- ]
- }
- },
- {
- "nm": "cafetière",
- "id": "e616f0a6524b5c40dc75c3b305ae0866c40fc36ae7688caa59f1f1101fccc508",
- "kws": {
- "fr": [
- "cafetière"
- ]
- }
- },
- {
- "nm": "pôle sud",
- "id": "68159bb65ddce85782774ec44fd383d577ef6b485a64512c29192c82018270d7",
- "kws": {
- "fr": [
- "pôle sud"
- ]
- }
- },
- {
- "nm": "pincée",
- "id": "1c94054cf29f2a67474f8687848f16b1b06bda09eeeeed93369824c91c1bf5c3",
- "kws": {
- "fr": [
- "pincée"
- ]
- }
- },
- {
- "nm": "fertiliser",
- "id": "d30efba623b762b1e9e8c3410c26e316e488fde53bef8314efb8c743dbc45555",
- "kws": {
- "fr": [
- "fertiliser",
- "amender"
- ]
- }
- },
- {
- "nm": "salle de réunions",
- "id": "01976349e4a90591d79166a9b6ceeca6387f0f076f70ba29679e3dc3263497ea",
- "kws": {
- "fr": [
- "salle de réunions"
- ]
- }
- },
- {
- "nm": "comètes",
- "id": "bd1eedcc6fdf351b8589e9f66724e298b25f419f0e02753f5c622a100f16ff34",
- "kws": {
- "fr": [
- "comètes"
- ]
- }
- },
- {
- "nm": "course de voitures",
- "id": "2ada253bfb040352027d31050d070007a669e6e17414a980f003a240c4e726b4",
- "kws": {
- "fr": [
- "course de voitures",
- "course"
- ]
- }
- },
- {
- "nm": "essayer",
- "id": "783df3363572adf576ccc20c00d96c631dd5330d08b4f2654a87c999711e3d47",
- "kws": {
- "fr": [
- "essayer"
- ]
- }
- },
- {
- "nm": "poussière",
- "id": "87e94c771b928a2864679068cf14fce8e28c71dcad1d45e04271470f4e284f68",
- "kws": {
- "fr": [
- "poussière"
- ]
- }
- },
- {
- "nm": "cours",
- "id": "c29f04b7171bab6657bf3c663b324c09c30941b184a829f4dc9e83dc63459bdd",
- "kws": {
- "fr": [
- "cours",
- "professeur d\u0027atelier",
- "professeur"
- ]
- }
- },
- {
- "nm": "prier",
- "id": "e3aaeaa31f8d0e37eef9f1d56a94f7634bea554ace3661af283be025e3cb1507",
- "kws": {
- "fr": [
- "prier"
- ]
- }
- },
- {
- "nm": "pdi",
- "id": "8f6cafdc93a891356a9c78cb24cd7202020e623ea6b10d4b26b7a683a4f9163c",
- "kws": {
- "fr": [
- "pdi",
- "ardoise interactive numérique"
- ]
- }
- },
- {
- "nm": "mort",
- "id": "0076092ed65bcbbc35b4712d0a636e47cf904b6fea15778c88c78fc796f68e08",
- "kws": {
- "fr": [
- "mort",
- "meurtre"
- ]
- }
- },
- {
- "nm": "râteau",
- "id": "a5aeb9b0042d8fdc4c5f3f41708188a0110e41dcc2e6960faa58ebb50eb5d59d",
- "kws": {
- "fr": [
- "râteau"
- ]
- }
- },
- {
- "nm": "sourd",
- "id": "82a9d630bee13261e40398f69a6a7505ad7d08ebd926614321c8dccbbba0d83b",
- "kws": {
- "fr": [
- "sourd"
- ]
- }
- },
- {
- "nm": "catalogue de jouets",
- "id": "a86aee9eb19d8580c915a99e60a747d81dac356aad0c6cc3d1dd1f0665980e7c",
- "kws": {
- "fr": [
- "catalogue de jouets"
- ]
- }
- },
- {
- "nm": "court",
- "id": "90466af415807f4449de6dbacc01e0384d7d54329c606421cfebc3dc89e3981d",
- "kws": {
- "fr": [
- "court"
- ]
- }
- },
- {
- "nm": "refuser",
- "id": "927cd527bc138a8a3ec50b1696df6c40393855cfca63e6c82526a0153b5b6391",
- "kws": {
- "fr": [
- "refuser"
- ]
- }
- },
- {
- "nm": "vendeuse",
- "id": "796b2a179298002bc4911a2b14c5f19aa4bc69684e7c183954badba650433dc5",
- "kws": {
- "fr": [
- "vendeuse",
- "boulangère"
- ]
- }
- },
- {
- "nm": "laid",
- "id": "5c2f4961e24459cb097a41ed0f5aef87976bf25b32e3b1fe216ef2c50de65dea",
- "kws": {
- "fr": [
- "laid"
- ]
- }
- },
- {
- "nm": "chuchoter",
- "id": "5bb0515d1c1ad878d04d828e9a3fd2c9c2ef4c953da58a29936353308b3ceff7",
- "kws": {
- "fr": [
- "chuchoter"
- ]
- }
- },
- {
- "nm": "batteur",
- "id": "db8e12a7fd1be3a2a454eb8c6a78a2bc7024348fb93a142e98e22ceb9784bd21",
- "kws": {
- "fr": [
- "batteur"
- ]
- }
- },
- {
- "nm": "cutter",
- "id": "f966e3f2db69e0650fd8da7ba1d62542a05b013eec5839c932c79a2e45151e51",
- "kws": {
- "fr": [
- "cutter"
- ]
- }
- },
- {
- "nm": "motion de censure",
- "id": "110fdfe502f57c3a021e5e215e3b65f1ddb785b1583d50143455a842dba1cc9f",
- "kws": {
- "fr": [
- "motion de censure",
- "motion"
- ]
- }
- },
- {
- "nm": "handicap moteur",
- "id": "e5ac621190340fa96340ced504cd360da4fd0c33259ffe30dc6614a798751b7a",
- "kws": {
- "fr": [
- "handicap moteur",
- "handicapé"
- ]
- }
- },
- {
- "nm": "combattre",
- "id": "975824ca60e0d983154005e33103c938c377b40608b2c03b718755f756762e67",
- "kws": {
- "fr": [
- "combattre",
- "se battre",
- "lutter"
- ]
- }
- },
- {
- "nm": "pousser",
- "id": "a15bac8e561828f6422d8318c33ce2a40affda9162d377008e81fecff04c96b7",
- "kws": {
- "fr": [
- "pousser"
- ]
- }
- },
- {
- "nm": "animal",
- "id": "86fa1a17d779a137c8c5d7b45c70740784c2ad30fce2d6a58c25a6a510a14072",
- "kws": {
- "fr": [
- "animal",
- "animaux"
- ]
- }
- },
- {
- "nm": "se curer le nez",
- "id": "f5cd8e0795323eb01c6102b3407b302c2b304e4ea7a6c3a89a1de032c434c204",
- "kws": {
- "fr": [
- "se curer le nez",
- "remuer"
- ]
- }
- },
- {
- "nm": "lérida",
- "id": "d6cdd742c47f3f2096a47c82922a556921d7227a118cf124f07f6d9b2ec28601",
- "kws": {
- "fr": [
- "lérida"
- ]
- }
- },
- {
- "nm": "chinoise",
- "id": "9b6a1eaba5293b1673549fc3027689c2b551dd1248cd5fd7a5e2cc2f212ddae2",
- "kws": {
- "fr": [
- "chinoise",
- "étrangère"
- ]
- }
- },
- {
- "nm": "ouvrier dans le bâtiment",
- "id": "811a4d93da782ce9abb05477e2c7bcfa477187437179c3906361b9a2f9175fdd",
- "kws": {
- "fr": [
- "ouvrier dans le bâtiment",
- "entreprise de construction",
- "travailleur",
- "constructeur",
- "maçon"
- ]
- }
- },
- {
- "nm": "opticien",
- "id": "f1102c2739a4021816d22b48950c583cbbb5d2f4852f8c1563c48b047b4a95cb",
- "kws": {
- "fr": [
- "opticien"
- ]
- }
- },
- {
- "nm": "figue",
- "id": "8338fce4996f36d7470e5dd940f398cb792c5c2581c4c616b54edd85f2c84956",
- "kws": {
- "fr": [
- "figue",
- "figues"
- ]
- }
- },
- {
- "nm": "toilettes adaptées",
- "id": "13e780486a155276afa7ceb028867edffb20f51f13f129064c3bb24c8013d052",
- "kws": {
- "fr": [
- "toilettes adaptées",
- "toilettes pour hommes",
- "toilettes",
- "salle de bains"
- ]
- }
- },
- {
- "nm": "verroterie",
- "id": "55ce05dd1ee350377deea01f25d27bbc76428024d6c702671b1123ab0725435e",
- "kws": {
- "fr": [
- "verroterie",
- "compte"
- ]
- }
- },
- {
- "nm": "trou",
- "id": "85de66de8e6ebcdddcacfd37baf38af324049366bbfd71c8941c5ca5589c048d",
- "kws": {
- "fr": [
- "trou"
- ]
- }
- },
- {
- "nm": "pédiatre",
- "id": "eec5c43a9c213dd694ca45e561e4d73160e51d9baed24c9d52db1f9f3b6ee929",
- "kws": {
- "fr": [
- "pédiatre"
- ]
- }
- },
- {
- "nm": "arbuste",
- "id": "57e749c3e5dc72cb5006d22a2a44c4182a659ea03abc49bb482db89489d045a9",
- "kws": {
- "fr": [
- "arbuste"
- ]
- }
- },
- {
- "nm": "ceinture de sécurité",
- "id": "5eb7e1e7210b6f79687934f45caa1cd2ea4dc9301198233b1965c30870b83cc1",
- "kws": {
- "fr": [
- "ceinture de sécurité"
- ]
- }
- },
- {
- "nm": "voir",
- "id": "c602551d7beb84c3969c141b190c278463cdd4229a9e5bb2fb80415a6cbdc70e",
- "kws": {
- "fr": [
- "voir",
- "observer",
- "regard",
- "regarder"
- ]
- }
- },
- {
- "nm": "almeria",
- "id": "22a62ef8da4311a634dc7d333030825a602bc78112bd960b6151c0d82253b893",
- "kws": {
- "fr": [
- "almeria"
- ]
- }
- },
- {
- "nm": "seconde",
- "id": "25e97455afc87f7e8f6ba7f69f4efe3a22199ec262d8f45399c3ad5c71083f33",
- "kws": {
- "fr": [
- "seconde"
- ]
- }
- },
- {
- "nm": "saucisse de francfort",
- "id": "492561f29c5771646f5660876edff7798c3854eb2f13475270b724c388729609",
- "kws": {
- "fr": [
- "saucisse de francfort",
- "saucisse"
- ]
- }
- },
- {
- "nm": "mètre de couturière",
- "id": "254512659e9df7ea39824b9d6b52a9058e300954f5b7b63e9bfbbc78a615a806",
- "kws": {
- "fr": [
- "mètre de couturière",
- "mètre"
- ]
- }
- },
- {
- "nm": "remonter le pantalon",
- "id": "21a050bf93985d62d501b14412c4246e5df11afdfbea47270d31d957c7348402",
- "kws": {
- "fr": [
- "remonter le pantalon",
- "remonter"
- ]
- }
- },
- {
- "nm": "rater",
- "id": "1c4959cf9bb0fcf41e49cbd3e83e0b75d93fc1a44ef3d3bdb6c2140db9084988",
- "kws": {
- "fr": [
- "rater"
- ]
- }
- },
- {
- "nm": "clé de do",
- "id": "77cdc0340fa810903692f683258bf1f7f1409c7ad237655eafaab83d16cdb6ec",
- "kws": {
- "fr": [
- "clé de do"
- ]
- }
- },
- {
- "nm": "bonhomme",
- "id": "03ebeadc7391993952baadabe656405a1f702db14b54edef1a6ce444e0166bef",
- "kws": {
- "fr": [
- "bonhomme",
- "marionnette articulée"
- ]
- }
- },
- {
- "nm": "ouvert",
- "id": "e91a419e9e28e503484592a723e6b6589b428f3e3296b7d66800fc84a234d7fb",
- "kws": {
- "fr": [
- "ouvert",
- "ouverte"
- ]
- }
- },
- {
- "nm": "famille monoparentale",
- "id": "19cfeb2b9c4c720da4addba97d8fee9317147c3614836df46c0be2d94759082b",
- "kws": {
- "fr": [
- "famille monoparentale",
- "famille"
- ]
- }
- },
- {
- "nm": "porte-serviette",
- "id": "f7e6f242d6a41fdcd28a39c8d4e4e44151fa2ebf7a4ba8945c8ef6c5d80e2778",
- "kws": {
- "fr": [
- "porte-serviette"
- ]
- }
- },
- {
- "nm": "ovipare",
- "id": "3dc7e8c4cb2d04ef4be4284c8ab85f9862bb52a8168ff62d4d56ad23106d620f",
- "kws": {
- "fr": [
- "ovipare"
- ]
- }
- },
- {
- "nm": "lézard",
- "id": "5dc4094b4c62a368abd889e8e0a3ab6a39e65b4c8c1fc440ae228acbec4e8b68",
- "kws": {
- "fr": [
- "lézard"
- ]
- }
- },
- {
- "nm": "médecine",
- "id": "a9f5af7e0a8b5d550363d4cc190bf6eecd8c8a6e310d32d99f59f984ffe1787f",
- "kws": {
- "fr": [
- "médecine",
- "médicament"
- ]
- }
- },
- {
- "nm": "bonhomme de neige",
- "id": "4851c8ad0968c1052b0cd9208ea698eb712448656c61aa6a0c8dc36afef4f3a0",
- "kws": {
- "fr": [
- "bonhomme de neige"
- ]
- }
- },
- {
- "nm": "benne",
- "id": "96a7a7a1c5f99fe0445f9b17bcbe9ddc8767dea920d9e1c5e497a386ec7ad6d4",
- "kws": {
- "fr": [
- "benne"
- ]
- }
- },
- {
- "nm": "docteur",
- "id": "70bc264e468d601e321694f0d09e4dae2dce520ab87607eb1310effdddeb8432",
- "kws": {
- "fr": [
- "docteur",
- "médecin"
- ]
- }
- },
- {
- "nm": "date de péremption",
- "id": "0b96e61a9c1e0e694e1479bfa18be994cb9152f303642840c0197467443260b5",
- "kws": {
- "fr": [
- "date de péremption",
- "péremption"
- ]
- }
- },
- {
- "nm": "clarinette",
- "id": "5273cf8a3173a6a4521ad59e299c2970e6011b6f6c9f97c0e9f426e9780a85da",
- "kws": {
- "fr": [
- "clarinette"
- ]
- }
- },
- {
- "nm": "tour",
- "id": "0f18078a763ea59b6e0ca0b66318f32eff9fb66d159e175d6bce7a75cb97ecd9",
- "kws": {
- "fr": [
- "tour",
- "revenir"
- ]
- }
- },
- {
- "nm": "tatouage",
- "id": "c1a04141871e8eddd244388eaff2fbf7c7387a931b2de7e64c355584aea3a129",
- "kws": {
- "fr": [
- "tatouage"
- ]
- }
- },
- {
- "nm": "partager",
- "id": "b0bba03db01d5e0112de02c7a34d34c8383396d01a52679e292577e48262d1d0",
- "kws": {
- "fr": [
- "partager"
- ]
- }
- },
- {
- "nm": "changer la compresse",
- "id": "2eb0001a1629089f66a51b7568cb9a0c366100badeb20d79afcdde3c9fbacb75",
- "kws": {
- "fr": [
- "changer la compresse"
- ]
- }
- },
- {
- "nm": "barrage",
- "id": "ff8a7f43646934ad66137e39b6fce93c3d5a4882e6998a673c2b2109060f7a5a",
- "kws": {
- "fr": [
- "barrage",
- "marais"
- ]
- }
- },
- {
- "nm": "jouet adapté",
- "id": "ff0c1adb54022c89a14fb9480599e749ddf419108d08b3ecffb161ad3f5bb2a8",
- "kws": {
- "fr": [
- "jouet adapté"
- ]
- }
- },
- {
- "nm": "huit",
- "id": "2f173867d0b75d8ad4656b46ecd5cfd74edb61b16802bc91617dd59f15fe36b1",
- "kws": {
- "fr": [
- "huit",
- "8 dé",
- "8"
- ]
- }
- },
- {
- "nm": "interdit de fouiner",
- "id": "64e3bff304342ff0291c86b907c8d6180ff82e63fb05e8d1479281fcb857ee1d",
- "kws": {
- "fr": [
- "interdit de fouiner"
- ]
- }
- },
- {
- "nm": "chaussures",
- "id": "852fb98c479b9dc5745058b9e95b779a7bb04dd4168b19655b42fb107a3c2cee",
- "kws": {
- "fr": [
- "chaussures",
- "chaussures",
- "sandale"
- ]
- }
- },
- {
- "nm": "estouffade",
- "id": "a67be80054ff3c955156a8d481efa58813c513f499d72483935ff14e7c30001c",
- "kws": {
- "fr": [
- "estouffade"
- ]
- }
- },
- {
- "nm": "s\u0027allonger sur le ventre",
- "id": "672d496d84a60001ed9c5b09924a4f611df80046f86619a4afcc2faa4957cd9f",
- "kws": {
- "fr": [
- "s\u0027allonger sur le ventre",
- "s\u0027allonger"
- ]
- }
- },
- {
- "nm": "vêtement",
- "id": "24edf43d36c53ebac4684182170e6632bbed850d22ce28c4ed957b3d67f24748",
- "kws": {
- "fr": [
- "vêtement",
- "robe"
- ]
- }
- },
- {
- "nm": "bras",
- "id": "be4faef997f24ba5409c94611b09db59d5eea0f95000a95b1dbec46ea0a0ba36",
- "kws": {
- "fr": [
- "bras"
- ]
- }
- },
- {
- "nm": "serviette de bain",
- "id": "d84efe400e90c30ba037e00c9037707e7c6077861a1ac00c3e0b8dfbbda35c20",
- "kws": {
- "fr": [
- "serviette de bain",
- "serviette de plage"
- ]
- }
- },
- {
- "nm": "balayer",
- "id": "1e5de9f1832a9ab90b93fd8ed7bacbd12d8b0ae2949aa8d190d0c3db11348fac",
- "kws": {
- "fr": [
- "balayer"
- ]
- }
- },
- {
- "nm": "pommes de terre",
- "id": "a2ae31edfe8d15fbec48c17d885e3e7e00eb0765b7354a281e54b9446d31197b",
- "kws": {
- "fr": [
- "pommes de terre",
- "frites"
- ]
- }
- },
- {
- "nm": "allergie",
- "id": "f93d7420f944f53d3488e52b025f14d39b12bc4c072324092f3974ce93e1db72",
- "kws": {
- "fr": [
- "allergie",
- "allergies"
- ]
- }
- },
- {
- "nm": "pleut-il",
- "id": "95a1700cfad77a127696931c891eeac8e6d6322872751e2abb9b96214beef938",
- "kws": {
- "fr": [
- "pleut-il"
- ]
- }
- },
- {
- "nm": "badminton",
- "id": "ebe7d5eb49516cea9c2a566747d9973308aef41608b9d18739bf4aaea03400cf",
- "kws": {
- "fr": [
- "badminton"
- ]
- }
- },
- {
- "nm": "fêter",
- "id": "56d759957b082431707a7ba51e113ec9fd6cfb6e42ab8d57c591b167d4fe5fc0",
- "kws": {
- "fr": [
- "fêter"
- ]
- }
- },
- {
- "nm": "potence",
- "id": "5c59266f01c1fffb1cd9cefa39dc1099985896c444fd48009856592efb7879ad",
- "kws": {
- "fr": [
- "potence"
- ]
- }
- },
- {
- "nm": "hot-dog",
- "id": "bccffa5787a74c79f4870485e3883a404b9e3f98bd54aa0cba4ab6261e7e5888",
- "kws": {
- "fr": [
- "hot-dog"
- ]
- }
- },
- {
- "nm": "eau de mer",
- "id": "fac687c77454df417d997e4a0c80935d3a6ade92b3a237de67139a40f460eb79",
- "kws": {
- "fr": [
- "eau de mer",
- "eau salée"
- ]
- }
- },
- {
- "nm": "plafonnier",
- "id": "bdc2d445836a54427f829735d69355f29d11bad8289cd970f11f4b22409f4e4d",
- "kws": {
- "fr": [
- "plafonnier",
- "lampe"
- ]
- }
- },
- {
- "nm": "siffler",
- "id": "9981c13ba2f8240f89668ad1bfd3f57ccfbc9c52fc6a29b414e0989f4f61479c",
- "kws": {
- "fr": [
- "siffler"
- ]
- }
- },
- {
- "nm": "guirlande",
- "id": "451c8af7a2d01b0113f26c99cdf8863d8a83010d03ce52bd1d612e40a8cf2a76",
- "kws": {
- "fr": [
- "guirlande"
- ]
- }
- },
- {
- "nm": "pollution",
- "id": "47b5b0f78ec33e1593cf7632b9c13f9d1fab238fc77e50d405d18d58ddce633d",
- "kws": {
- "fr": [
- "pollution",
- "contaminer"
- ]
- }
- },
- {
- "nm": "célibataire",
- "id": "8ad6a7eb5fd7d1c431195d923e681e03429a8b40d2248df27719488683c2eeaf",
- "kws": {
- "fr": [
- "célibataire"
- ]
- }
- },
- {
- "nm": "lits superposés",
- "id": "6ace78a298c14dfd724e6a9b330c1326328e5b9afa0609858046400c729cea3a",
- "kws": {
- "fr": [
- "lits superposés"
- ]
- }
- },
- {
- "nm": "en-cas",
- "id": "6b38547d665528510d3a0ec944959b107d0b0c7f26a2bd22e21bee298f88640c",
- "kws": {
- "fr": [
- "en-cas"
- ]
- }
- },
- {
- "nm": "avion",
- "id": "64f39c9d67f36dc14a2699657ea75c16262c2ea63dd5fc12b2ca7a9dc2a9b667",
- "kws": {
- "fr": [
- "avion",
- "aéronef",
- "aéroplane"
- ]
- }
- },
- {
- "nm": "mercurochrome",
- "id": "b3b00c820b509a571e5f62e95386f187e719935eade21d94c40b9b69d27d21ac",
- "kws": {
- "fr": [
- "mercurochrome"
- ]
- }
- },
- {
- "nm": "produit de soutien",
- "id": "5daebf701e610a56c1a9018a9e8ad84061515564f167b8c4e426ddb99f54d77a",
- "kws": {
- "fr": [
- "produit de soutien",
- "bon marcheur"
- ]
- }
- },
- {
- "nm": "sécher les cheveux",
- "id": "791dd99649a34ada6835c5774e92885f326e333c0662603784cc84878594234f",
- "kws": {
- "fr": [
- "sécher les cheveux",
- "sécher"
- ]
- }
- },
- {
- "nm": "céleri",
- "id": "50596e8fc8bc6f0598fb697815f4337a0de09db5e5adf284d5712d76f7b63aaf",
- "kws": {
- "fr": [
- "céleri"
- ]
- }
- },
- {
- "nm": "descendre",
- "id": "52a2385336d5379c6263b3cecdba5b334d3de2a5781528e73db42d9776776034",
- "kws": {
- "fr": [
- "descendre",
- "glisser"
- ]
- }
- },
- {
- "nm": "faire ses lacets",
- "id": "73e2e16851af3c7aa10c8942beb791534c2c5a115503c51f2ee28e216b4430d3",
- "kws": {
- "fr": [
- "faire ses lacets",
- "faire un lacet",
- "faires ses lacets"
- ]
- }
- },
- {
- "nm": "aimer",
- "id": "2fbe7c758b38b83561e29e46ff3f2fda1727c842d857a0c68976c3bdce2ac15e",
- "kws": {
- "fr": [
- "aimer",
- "goûter"
- ]
- }
- },
- {
- "nm": "enregistrer",
- "id": "fbaa6d2a90b058bc4527ebd2d470d3c9513dc71f89f3f23849cc217188e76d7f",
- "kws": {
- "fr": [
- "enregistrer",
- "ramasser",
- "mettre"
- ]
- }
- },
- {
- "nm": "arbre",
- "id": "7eb334d99fa98819b48772edc13c2d283cd0643f1dc9217bbb2a3c2b5ec236d0",
- "kws": {
- "fr": [
- "arbre"
- ]
- }
- },
- {
- "nm": "interrogation",
- "id": "734381534b5a4e69baaa3011b48996029f4340ec68c1010497a9c747d8d3be6e",
- "kws": {
- "fr": [
- "interrogation",
- "sin traduccion"
- ]
- }
- },
- {
- "nm": "fermer les yeux",
- "id": "a5fd5170c44dd76ed4135833b7cd3a6fa66a1b2c59ccb82bfbb7db3c08fbe67c",
- "kws": {
- "fr": [
- "fermer les yeux",
- "fermer"
- ]
- }
- },
- {
- "nm": "famille",
- "id": "c84ec7f8da1c2b4e52b0b00a92474f9444923fb4b53bc7af5f06511eaa6e544e",
- "kws": {
- "fr": [
- "famille"
- ]
- }
- },
- {
- "nm": "source",
- "id": "2a194e4e2f9ad6722083eca6168b0223ad9216b2c9dfa64bcaa49b4aad119f4a",
- "kws": {
- "fr": [
- "source",
- "fontaine d\u0027eau potable"
- ]
- }
- },
- {
- "nm": "changer de conversation",
- "id": "4ab97135870e57b53d6cb6b2511f5cb00c4e49f1bd67f4cc89bb977a749aeae3",
- "kws": {
- "fr": [
- "changer de conversation",
- "changer de sujet"
- ]
- }
- },
- {
- "nm": "sourire",
- "id": "bc3259056599938a3be4464d6232e7e11076eb64ec49dd03289e7c7284ca8af5",
- "kws": {
- "fr": [
- "sourire",
- "rire"
- ]
- }
- },
- {
- "nm": "glacière",
- "id": "0313d921141ee88d49979bf179bdaeb1860f2f1b7311ecc91fa254665bdba32e",
- "kws": {
- "fr": [
- "glacière"
- ]
- }
- },
- {
- "nm": "buis",
- "id": "bf2403b744f0e96f4a891c83ad5edb787f05caf299fd1437accf2741753001b7",
- "kws": {
- "fr": [
- "buis"
- ]
- }
- },
- {
- "nm": "entonnoir",
- "id": "1f6febbba0a4ac5e98c135d032bb9f478a939a000fc7692e393aa3ffee3ef41b",
- "kws": {
- "fr": [
- "entonnoir"
- ]
- }
- },
- {
- "nm": "se moucher le nez",
- "id": "c71b51a69c3ea981b463b1e94462f3733540b2be4bb47f7fab769c17fc38e26f",
- "kws": {
- "fr": [
- "se moucher le nez",
- "se moucher",
- "moucher"
- ]
- }
- },
- {
- "nm": "morue",
- "id": "c020116de0d46f651fd9a28af00feef702e2b4c342e573689e9303048e609f3d",
- "kws": {
- "fr": [
- "morue"
- ]
- }
- },
- {
- "nm": "glaïeul",
- "id": "6a3258e3dd4fff3e95f9dfa9484d934c18387e5eac49ae6112faa62d0d75ddcb",
- "kws": {
- "fr": [
- "glaïeul"
- ]
- }
- },
- {
- "nm": "lancement de poids",
- "id": "3778489dae5220045dbee8af811de4a7f1901d97e772377db5f632a0c4cdcdbf",
- "kws": {
- "fr": [
- "lancement de poids",
- "lancement",
- "lanceur"
- ]
- }
- },
- {
- "nm": "chef d\u0027études",
- "id": "d7e745cb2b7c6851c95a6e12749484d9392eaa0d41bb7f5c40cb98321db9ef84",
- "kws": {
- "fr": [
- "chef d\u0027études"
- ]
- }
- },
- {
- "nm": "course",
- "id": "7775d4be121b41ee1bcf355d41bf9b126954373a7e0b840f937e489d2daf5eab",
- "kws": {
- "fr": [
- "course"
- ]
- }
- },
- {
- "nm": "cochon",
- "id": "c8a5274b1bb73bee8aa4b31c58600d6d334e57e2170415ac17c8df39385f673a",
- "kws": {
- "fr": [
- "cochon",
- "lard",
- "goret"
- ]
- }
- },
- {
- "nm": "technicien d\u0027activités sportives",
- "id": "5528a1d11ba9d4f0a09c00b8082affa6c7859cd401b186a6b54fc3f5124c8da4",
- "kws": {
- "fr": [
- "technicien d\u0027activités sportives"
- ]
- }
- },
- {
- "nm": "communauté",
- "id": "a86acec291a779eda88b644837f205d38d7a047e6fd78b4d673e57d77f261275",
- "kws": {
- "fr": [
- "communauté",
- "communauté autonome",
- "aragon"
- ]
- }
- },
- {
- "nm": "pommes de terres sauce piquante",
- "id": "4f9b5f3b4e24a48992a8f717e82f04eb5efa12e0dc46d30763903fce2f510657",
- "kws": {
- "fr": [
- "pommes de terres sauce piquante"
- ]
- }
- },
- {
- "nm": "interprète",
- "id": "ede13823dabc0054ccd266fd32e18875287cbfe4e0867e55aeb5dea5ea7c826a",
- "kws": {
- "fr": [
- "interprète",
- "jouer",
- "actrice"
- ]
- }
- },
- {
- "nm": "découvrir",
- "id": "d8d201b3f34924bbe7ba27eecdfdca05af70ef1b57c96b42e16553a4d2273485",
- "kws": {
- "fr": [
- "découvrir",
- "trouver",
- "avoir une idée",
- "inventer"
- ]
- }
- },
- {
- "nm": "permettre",
- "id": "1dda2849f4a88bd88fab04ef8bd67cad44b150f003668a21a1be4abe96df90c0",
- "kws": {
- "fr": [
- "permettre"
- ]
- }
- },
- {
- "nm": "salle des fêtes",
- "id": "e5c34210eebeeaee7e23d40d75be577d6391945f06a7e41dcdf15f27289de67a",
- "kws": {
- "fr": [
- "salle des fêtes"
- ]
- }
- },
- {
- "nm": "tiroir",
- "id": "144befee43f489292edc66d08fbc397a442d906b907d29d0727ba28dac7ffdc5",
- "kws": {
- "fr": [
- "tiroir"
- ]
- }
- },
- {
- "nm": "avant",
- "id": "2c06539daee52bbfe357627a29ca8f2ec1d689bd92a2e10049df45642c502925",
- "kws": {
- "fr": [
- "avant"
- ]
- }
- },
- {
- "nm": "savoir",
- "id": "343d7830c36d6d455f4f1e7e9c85343832a947912d1fcd873664e8b38815107e",
- "kws": {
- "fr": [
- "savoir",
- "lever le doigt"
- ]
- }
- },
- {
- "nm": "brosse de menuisier",
- "id": "91587b2e526fca8dbcd53e410a64584765ce1748cd8a3b27bd40a399bd2f5af6",
- "kws": {
- "fr": [
- "brosse de menuisier"
- ]
- }
- },
- {
- "nm": "évêque",
- "id": "7991aa89510c1bccada967261afdc378e3a8fec1338ad97808b02bc34039b60f",
- "kws": {
- "fr": [
- "évêque"
- ]
- }
- },
- {
- "nm": "chéri",
- "id": "2896c2469f480f2e1d30e8105a07372b0320e42a63cb5d8921259875e09f92b3",
- "kws": {
- "fr": [
- "chéri",
- "amour"
- ]
- }
- },
- {
- "nm": "rose",
- "id": "f30821ce4edc6f722b522667fa89f3778bf905f7eb391e1b8cb0cc333c405c9e",
- "kws": {
- "fr": [
- "rose"
- ]
- }
- },
- {
- "nm": "chaussette de père noël",
- "id": "18a4f50728c720cb4816d07961b953f52903ce25673a14f0374df4656cd66892",
- "kws": {
- "fr": [
- "chaussette de père noël",
- "chaussette"
- ]
- }
- },
- {
- "nm": "épiler",
- "id": "8ea555c9b40004eea7af557f2766024edacb3e530549434d53b2367e0492bd30",
- "kws": {
- "fr": [
- "épiler",
- "s\u0027épiler"
- ]
- }
- },
- {
- "nm": "jungle",
- "id": "fa5a5d0bbb0626be76733dd97181b136bf2f6fb6f810ce248393860ddc150cc7",
- "kws": {
- "fr": [
- "jungle"
- ]
- }
- },
- {
- "nm": "s\u0027allonger sur le ventre",
- "id": "4c1743f5c968518191d6036720d819ca1853886597a5dbdbb02ccc956532f480",
- "kws": {
- "fr": [
- "s\u0027allonger sur le ventre",
- "s\u0027allonger"
- ]
- }
- },
- {
- "nm": "à cloche-pied",
- "id": "6b79c226e32c4d9f021b14df525df50b51da468e4d1cef6c8254ce575685c6e6",
- "kws": {
- "fr": [
- "à cloche-pied",
- "sauter à cloche-pied",
- "sauter"
- ]
- }
- },
- {
- "nm": "se lever de la chaise",
- "id": "b44c895dbba39e83accd1d415d8fa2e1a78e390fd407269b419d8e45f10ec0f0",
- "kws": {
- "fr": [
- "se lever de la chaise",
- "se lever"
- ]
- }
- },
- {
- "nm": "beaucoup",
- "id": "fe36296b178ee9a15b6d8887f0d820fef53e82dc9affae4c261098372b0f1f75",
- "kws": {
- "fr": [
- "beaucoup"
- ]
- }
- },
- {
- "nm": "saladier",
- "id": "a70396fdb3aa33201b977e1bc2b81ad93747bc7e9eb08691d84110d2ac8cd9d3",
- "kws": {
- "fr": [
- "saladier"
- ]
- }
- },
- {
- "nm": "court",
- "id": "2518f72d5b4cb1d7b1a726a7a1c471959a49919dcead12f168a6b09f2e8ddb1b",
- "kws": {
- "fr": [
- "court"
- ]
- }
- },
- {
- "nm": "chameau",
- "id": "02b8b68b4739f786e6de2c6bc0f65310bccb606ea1849705bc667f7e77afaff9",
- "kws": {
- "fr": [
- "chameau"
- ]
- }
- },
- {
- "nm": "géants",
- "id": "d066e79076736895ea4200ec3b2cf79094c7808f069f8f723875e16e91666384",
- "kws": {
- "fr": [
- "géants"
- ]
- }
- },
- {
- "nm": "théière",
- "id": "c64313ec1556e23301eb210becf735a9634674db683d93b0e27e734c6d4cb694",
- "kws": {
- "fr": [
- "théière"
- ]
- }
- },
- {
- "nm": "viande",
- "id": "de77b73b141daf058d001794db07bd9d43962aefaa3f5eae726b90dd10006fbf",
- "kws": {
- "fr": [
- "viande",
- "côtelette"
- ]
- }
- },
- {
- "nm": "dos",
- "id": "5eb6af90581c8eacd1783a74062f539945d1599efef5e402e5357c741d79e78f",
- "kws": {
- "fr": [
- "dos"
- ]
- }
- },
- {
- "nm": "sceau et serpillère",
- "id": "b1d3cb291a2a0112d217435a293d8a01d8b547892f2b3c6a4c2c039b8d2e0a55",
- "kws": {
- "fr": [
- "sceau et serpillère"
- ]
- }
- },
- {
- "nm": "parcage",
- "id": "b80222e0bddeaf5cb57a5525799282f62bf8390374fcdfc8e389b2e5593a3a73",
- "kws": {
- "fr": [
- "parcage"
- ]
- }
- },
- {
- "nm": "marchand de légumes",
- "id": "0e010fdea2f9d53b820ea9e0e833c9133cca49d535542697acc8e3cb7ad42bb5",
- "kws": {
- "fr": [
- "marchand de légumes"
- ]
- }
- },
- {
- "nm": "raquette",
- "id": "2f668a61c30621552e55f90744ab6f257d6b09b6a69e98901d73d8a9fb4f1ef4",
- "kws": {
- "fr": [
- "raquette"
- ]
- }
- },
- {
- "nm": "notre",
- "id": "881c64f6ef9491faf62d6fcb74f1c40f064c7e0c642c9b776f728c6201252068",
- "kws": {
- "fr": [
- "notre",
- "la nôtre"
- ]
- }
- },
- {
- "nm": "viande",
- "id": "6b13f08ca0197627d5ad03f757a1fb34fb94550960f91d911b408f143564799d",
- "kws": {
- "fr": [
- "viande",
- "côte"
- ]
- }
- },
- {
- "nm": "charger",
- "id": "fea5cdc31e017517c47c8b1acf29e7afe46be09e99adccf2ed2eb66baedd26be",
- "kws": {
- "fr": [
- "charger"
- ]
- }
- },
- {
- "nm": "paiement",
- "id": "5370bcb7ec2864a60528a74b697e89bcc025f715e4eab1757a873601e6a7b0d7",
- "kws": {
- "fr": [
- "paiement",
- "achat",
- "acquisition"
- ]
- }
- },
- {
- "nm": "unesco",
- "id": "be6eaed77fa29fd5bc13cf6d001ecaeaf968d77edf91f1e62694604d5c75c75f",
- "kws": {
- "fr": [
- "unesco"
- ]
- }
- },
- {
- "nm": "attention!",
- "id": "f373b1ccc8c5e725e04f164810d8d7dcc3f6df08a6dcbb9b132a45efdcbdadd8",
- "kws": {
- "fr": [
- "attention!",
- "attention",
- "soin"
- ]
- }
- },
- {
- "nm": "escalader",
- "id": "98ab4bd1b31031de2ca7ea871a5d1a6efaf1234d5e6b6b7fb1d3daf1d2c329bf",
- "kws": {
- "fr": [
- "escalader",
- "grimpeur"
- ]
- }
- },
- {
- "nm": "clôture",
- "id": "6290ef513a243c88b5e1dcdfdfa70d31ba5c0db40978e5ccad01bc78336291fe",
- "kws": {
- "fr": [
- "clôture"
- ]
- }
- },
- {
- "nm": "piles",
- "id": "e1ab0a904269e4d16293786c2e7592618ac46a05b4ba458749017e9ac5c4c216",
- "kws": {
- "fr": [
- "piles"
- ]
- }
- },
- {
- "nm": "plateau",
- "id": "489f5933fd6de049574a4583afc14e62384aba12f9df73f01be0e997bbb2dc2a",
- "kws": {
- "fr": [
- "plateau"
- ]
- }
- },
- {
- "nm": "demander",
- "id": "8bd478c5727681f5c683c14cd23e4edbd5ea2261e0a00dddaf2a6cba803d4e94",
- "kws": {
- "fr": [
- "demander"
- ]
- }
- },
- {
- "nm": "mal de tête",
- "id": "5e0a2d00c6cf3613241b342aed9f5f3d83bf52e3181a7cddafa843e39b6cfc18",
- "kws": {
- "fr": [
- "mal de tête"
- ]
- }
- },
- {
- "nm": "potier",
- "id": "2496f99259c2f9c5361698f4ea1c3061a6a5f55482aad09e88a2f96928baed28",
- "kws": {
- "fr": [
- "potier"
- ]
- }
- },
- {
- "nm": "copier",
- "id": "603ec8176ef2a9f5de3882f15dfd0c281cf4923e3676798d7dab0aa707476ca7",
- "kws": {
- "fr": [
- "copier"
- ]
- }
- },
- {
- "nm": "filet",
- "id": "48a33a81705f5ebbb37a4db73d1e462bbccb9eef4c8aa307dc174322857cd62f",
- "kws": {
- "fr": [
- "filet"
- ]
- }
- },
- {
- "nm": "tu as entendu ça",
- "id": "7d6d7c482241e93a18aaa9c6401b30cfeca4d19e34e89ac8b8fde59b65859cfd",
- "kws": {
- "fr": [
- "tu as entendu ça",
- "tu entends ça",
- "l\u0027as-tu entendu"
- ]
- }
- },
- {
- "nm": "italie",
- "id": "7ee5e3f87b781d84b6777904e409ecfcd7b93d847a86db030e133872f5033bee",
- "kws": {
- "fr": [
- "italie"
- ]
- }
- },
- {
- "nm": "sous-vêtement",
- "id": "c7edc056d87d69db2b8c1d98770fdbc6d779df13c438903cd9bfbe37ae9e8a12",
- "kws": {
- "fr": [
- "sous-vêtement"
- ]
- }
- },
- {
- "nm": "registre",
- "id": "98071e6f1a8a3fd946752fa66b8715b318e4fd3953afbaa0868e188f30b35808",
- "kws": {
- "fr": [
- "registre"
- ]
- }
- },
- {
- "nm": "pédiatre",
- "id": "f3a9c1728642783409cfa0dfd39b82ac33f02e7b6d300dac3d07fa8784f384b9",
- "kws": {
- "fr": [
- "pédiatre"
- ]
- }
- },
- {
- "nm": "fesses",
- "id": "8df0fa39609765ac457d88a1f59a33d53842d196d370f2b35d35d58451e05fd2",
- "kws": {
- "fr": [
- "fesses"
- ]
- }
- },
- {
- "nm": "réceptionniste",
- "id": "fe852d817d6159209cfa3b078603036cc459eeec5b5c4a5450e5944c630bd7e4",
- "kws": {
- "fr": [
- "réceptionniste"
- ]
- }
- },
- {
- "nm": "encadrement",
- "id": "0fdad862a570f7090130d7b3d9753dc22ad5921ac88a73f7858e976420f81083",
- "kws": {
- "fr": [
- "encadrement",
- "cadre avec photo"
- ]
- }
- },
- {
- "nm": "parler",
- "id": "a82b56cc8c03b5d361f83d44a57f0c776ce7c06eed92605d406e0904fe5cc97d",
- "kws": {
- "fr": [
- "parler",
- "causer",
- "conversation",
- "dialogue",
- "dialoguer",
- "discussion",
- "discuter"
- ]
- }
- },
- {
- "nm": "poulpe",
- "id": "4ccc2dabbe10be0230b9b77371b2325c37cb55f1b82c58988c7c6b36ba3806bd",
- "kws": {
- "fr": [
- "poulpe"
- ]
- }
- },
- {
- "nm": "remorque pour chevaux",
- "id": "b3f8182b5352e1d09dbc2c6bbc542be6dbcee0207ec2b64f5705fbeafd790212",
- "kws": {
- "fr": [
- "remorque pour chevaux",
- "remorque"
- ]
- }
- },
- {
- "nm": "encaissement",
- "id": "505fe86ff1d588ee855f983f0ff68c5d4438ee2493e94f94696899b78d9f7e91",
- "kws": {
- "fr": [
- "encaissement"
- ]
- }
- },
- {
- "nm": "lettre",
- "id": "6403a29f9aa096cd12c0f0944451acf07b062b8b66d740049b35d3666148e511",
- "kws": {
- "fr": [
- "lettre",
- "g"
- ]
- }
- },
- {
- "nm": "coiffeuse",
- "id": "91159f283cf1ba62e31879943b7b9685dbbe9f2be670b2e2ada195fbf58a8f1b",
- "kws": {
- "fr": [
- "coiffeuse"
- ]
- }
- },
- {
- "nm": "émigrant",
- "id": "d5f4671fc1cb13b590a6d935f365f7ea82b692cd31b51edc80f81675aef7ae82",
- "kws": {
- "fr": [
- "émigrant",
- "émigrer",
- "immigrant"
- ]
- }
- },
- {
- "nm": "jante",
- "id": "aec1ec4fdcb0e773fc89200dae0bf0bb2383d108b004de17cec2489a2c066e8d",
- "kws": {
- "fr": [
- "jante"
- ]
- }
- },
- {
- "nm": "terre",
- "id": "a3f6c4dc5af403de2188c03a95b3bd9bc52f13f05982a737a325adbc31da10bd",
- "kws": {
- "fr": [
- "terre",
- "monde",
- "la terre"
- ]
- }
- },
- {
- "nm": "visiter",
- "id": "a521c7f82f5f5248e19b48b414188b8eeb3e6a5e1b89545529c93614d3a641d9",
- "kws": {
- "fr": [
- "visiter",
- "accompagner"
- ]
- }
- },
- {
- "nm": "marron",
- "id": "c745ab4438f798189cc69db115d21406aa147ccd6b89d48862f8c357697d4b0b",
- "kws": {
- "fr": [
- "marron"
- ]
- }
- },
- {
- "nm": "échiquier",
- "id": "a7019b29d8b9b01793a55fdd80d45065b4f5ab69d895b80350cfe9a34bc32327",
- "kws": {
- "fr": [
- "échiquier",
- "jeu d\u0027échecs"
- ]
- }
- },
- {
- "nm": "discuter",
- "id": "090586e377f80d5f6ccff85a8c7a6f66013892c13efe2f553ab4f1391e892467",
- "kws": {
- "fr": [
- "discuter"
- ]
- }
- },
- {
- "nm": "carrosse",
- "id": "144d2e7e83369dce69a75fb1895bf07a25a41e1fcb7a4adb6811737619f96f36",
- "kws": {
- "fr": [
- "carrosse"
- ]
- }
- },
- {
- "nm": "tabouret",
- "id": "b41f67055e952836942c09317e82ddd2d1c78d0e678b201041c19ecb49e4d919",
- "kws": {
- "fr": [
- "tabouret"
- ]
- }
- },
- {
- "nm": "être vivant",
- "id": "36a312b353ab6d58d9b329699b3329bc72d5e2af22479700ded14506feadb456",
- "kws": {
- "fr": [
- "être vivant",
- "êtres vivants"
- ]
- }
- },
- {
- "nm": "fromage",
- "id": "64c53cf452f868593ca95923509b4509c49efcff6a78ea602b1515271275e235",
- "kws": {
- "fr": [
- "fromage"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "37bbe062131f8236fc224258169ce3702605d9a9237da90e628e6e709445b3df",
- "kws": {
- "fr": [
- "praxie",
- "orthophonie",
- "rire"
- ]
- }
- },
- {
- "nm": "atelier de danse",
- "id": "d8f078aadc7e345f5a1fe06f24aa0ea9d231fde8b03d9ddeb6b2721835f9d8f7",
- "kws": {
- "fr": [
- "atelier de danse"
- ]
- }
- },
- {
- "nm": "reins",
- "id": "c7553b5819a212dca570f9329facb163e9a723318227d5ba34e53dc592179f13",
- "kws": {
- "fr": [
- "reins"
- ]
- }
- },
- {
- "nm": "rôtir",
- "id": "ef1008b3b2ad424b567a63439e3a1155703350d513f818e4d5ef97311153f5f9",
- "kws": {
- "fr": [
- "rôtir"
- ]
- }
- },
- {
- "nm": "en-cas",
- "id": "f66bcc59732721711a31f79d2dd333d4c47f4c754e1649fa03d0b5c4269a3d3e",
- "kws": {
- "fr": [
- "en-cas"
- ]
- }
- },
- {
- "nm": "pommade",
- "id": "d45a7b978989d8508b58e0a2ed407bfbbad8d88762bc015b45a144202f79e9c0",
- "kws": {
- "fr": [
- "pommade",
- "crème"
- ]
- }
- },
- {
- "nm": "autel",
- "id": "33383574160fa9e6f20b0f684e8fe20f481fcfc10be4c0c2b24f2e482f9b565a",
- "kws": {
- "fr": [
- "autel"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "f4d5367b408489d1a8782b56eee37c64b8760e1bb9dd10cdfb5edf9480f9f092",
- "kws": {
- "fr": [
- "praxie",
- "sucer",
- "orthophonie",
- "s\u0027aspirer les joues"
- ]
- }
- },
- {
- "nm": "peindre avec les doigts",
- "id": "5bb98c93f46623b927ddeaf6ba4cf9c7f8f617a349c46505531294f87b55a411",
- "kws": {
- "fr": [
- "peindre avec les doigts"
- ]
- }
- },
- {
- "nm": "tomber amoureux",
- "id": "a16c6394d4d72990bd731264037d8d9e72d62f17d5c1e670c0b649af109a47cd",
- "kws": {
- "fr": [
- "tomber amoureux",
- "amoureuses"
- ]
- }
- },
- {
- "nm": "partir",
- "id": "6438064ac27f311491a0128db89af5afc9fe950a5b1290c9efd1b1f2edd1f359",
- "kws": {
- "fr": [
- "partir",
- "casser"
- ]
- }
- },
- {
- "nm": "orthophoniste",
- "id": "fb98658cb1e9a7985f593e55b73ffa6fd42dbd2e1a96a010e0494ade3a5b63f1",
- "kws": {
- "fr": [
- "orthophoniste",
- "logopédie"
- ]
- }
- },
- {
- "nm": "ouvrir",
- "id": "cb6e71f10e75f2a665d1fb6d43155ba99e6401fda02aa333373fab93fb0b4292",
- "kws": {
- "fr": [
- "ouvrir"
- ]
- }
- },
- {
- "nm": "pensée",
- "id": "4711d71432a03c9ab3e94bcf22168be7821224536b82b1a8ed8faf20c9bf330c",
- "kws": {
- "fr": [
- "pensée"
- ]
- }
- },
- {
- "nm": "cultivateur",
- "id": "4a5f221edbedbc02645e278bebf5cfe3f5be6e143a2da3f8d72a2c7dd6fe45fe",
- "kws": {
- "fr": [
- "cultivateur",
- "motoculteur"
- ]
- }
- },
- {
- "nm": "clé",
- "id": "e54387c785d4250252345e1f843aebfc57bcf0aad380919a08d3a41bdce4c95e",
- "kws": {
- "fr": [
- "clé"
- ]
- }
- },
- {
- "nm": "passager",
- "id": "94cecb2ea22e1e9361f66378b3cee211b2c334f9eb2cc812ec78ecaad67f1f02",
- "kws": {
- "fr": [
- "passager",
- "voyageur"
- ]
- }
- },
- {
- "nm": "correspondance",
- "id": "1512b2bb615f4c45b468074ae14d85a8537ed78442bc3d3758bb32d369d3afcc",
- "kws": {
- "fr": [
- "correspondance",
- "lettre"
- ]
- }
- },
- {
- "nm": "pétard",
- "id": "851c48b22761143a15eb4afaf4a918e15e83b0bf2e130c1d0421aee6daf1ec7e",
- "kws": {
- "fr": [
- "pétard"
- ]
- }
- },
- {
- "nm": "sombre",
- "id": "349db1793af1867be238e64b52abe035a2a832b16b9e96384363e5254c3652d9",
- "kws": {
- "fr": [
- "sombre"
- ]
- }
- },
- {
- "nm": "agrafeuse",
- "id": "164c8e3b41828775356a3b5d094d4afe6df01ef83e15447de51ce9eb4a0030d9",
- "kws": {
- "fr": [
- "agrafeuse"
- ]
- }
- },
- {
- "nm": "marinière",
- "id": "ebd539946db38f5b774a651ceee9aa29e9acca82e998a24a343a99f3d5c5ad00",
- "kws": {
- "fr": [
- "marinière"
- ]
- }
- },
- {
- "nm": "découper",
- "id": "64de941a3d501e40963e30d16dcf9a80693cfcad154b0df64d0e7e2467aa20b8",
- "kws": {
- "fr": [
- "découper",
- "couper"
- ]
- }
- },
- {
- "nm": "livre",
- "id": "80193fc4f03fc06b0a7a2d0d58e3556bf7ac193390ad506b5b60110d26ce1fc1",
- "kws": {
- "fr": [
- "livre"
- ]
- }
- },
- {
- "nm": "abeille",
- "id": "0007a6f5b1ba5eb2e44769ebd9a5de2161257edf26186a94ea0b5f9f2e5e8fa2",
- "kws": {
- "fr": [
- "abeille"
- ]
- }
- },
- {
- "nm": "caméra",
- "id": "97645668f284f74bd6edd3bd902262921496a31a219de9f9011be1046880d238",
- "kws": {
- "fr": [
- "caméra",
- "appareil photo"
- ]
- }
- },
- {
- "nm": "peindre",
- "id": "a1de4a748a312db733a513da15e74de8d4950f38872fa65a33038a69cab9847e",
- "kws": {
- "fr": [
- "peindre"
- ]
- }
- },
- {
- "nm": "enregistrer",
- "id": "0e141e568f563a7831c1a732214ca28241fa1571b56008c61a7691cbf41076cc",
- "kws": {
- "fr": [
- "enregistrer",
- "classer"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "1a91df301a5ecba235777887030375e338b965efee501f8ba71bf9c9e6c9634c",
- "kws": {
- "fr": [
- "communauté autonome",
- "madrid"
- ]
- }
- },
- {
- "nm": "qu\u0027est-ce tu as",
- "id": "c9f6ddfeea94d439c5c9a32c8df7a97192218f4bc255f8db4868351a0d9e02a0",
- "kws": {
- "fr": [
- "qu\u0027est-ce tu as"
- ]
- }
- },
- {
- "nm": "console",
- "id": "146c22271ffa923956237dc73539abe12472d1a234aa1256127a2a8da469f916",
- "kws": {
- "fr": [
- "console"
- ]
- }
- },
- {
- "nm": "quelle émission veux-tu regarder",
- "id": "2b0eb15681d972b673ab1315a932f1369ea34b87a0a9f437072879b044ee8055",
- "kws": {
- "fr": [
- "quelle émission veux-tu regarder"
- ]
- }
- },
- {
- "nm": "ténia",
- "id": "a0e3b50454adc7c06d95331f46cd3f5b852ba0b32515084b7a7bd125a0cee15a",
- "kws": {
- "fr": [
- "ténia"
- ]
- }
- },
- {
- "nm": "recycler",
- "id": "e31699c9e49b484c5bc5bc0ffed342b00ed257deb3ee40503d0d5a8785cf0f35",
- "kws": {
- "fr": [
- "recycler"
- ]
- }
- },
- {
- "nm": "v",
- "id": "9a54891f479af66a1ce73ab6303cadbb0c4626862c0233c9f53bdb695207d9ed",
- "kws": {
- "fr": [
- "v",
- "lettre"
- ]
- }
- },
- {
- "nm": "hisser",
- "id": "6031c2f4a2ea4eac29d4f1a007e9a4e2a6b9d4981083aff1533de22d3ac3a1b1",
- "kws": {
- "fr": [
- "hisser",
- "lever"
- ]
- }
- },
- {
- "nm": "présente",
- "id": "4c98973a342acad4515bc8b834424bf4ce89195603ae0e4dd474bcfc2e3406e3",
- "kws": {
- "fr": [
- "présente",
- "aujourd\u0027hui",
- "actuel",
- "maintenant"
- ]
- }
- },
- {
- "nm": "cours",
- "id": "66e85a569f0b0d81b098d64a5b25ed538be2119fa4c5f120897de29df76de38d",
- "kws": {
- "fr": [
- "cours"
- ]
- }
- },
- {
- "nm": "faire naufrage",
- "id": "525e3bf0bfa93915f0bd35e424a769ecb4c2088f3d7afbceb6b445d073170c49",
- "kws": {
- "fr": [
- "faire naufrage",
- "couler"
- ]
- }
- },
- {
- "nm": "gâteau à la crème",
- "id": "acb19f3afc7cd925d49522f5642427b89a4ccc9b4437505977aa81422ca3f202",
- "kws": {
- "fr": [
- "gâteau à la crème"
- ]
- }
- },
- {
- "nm": "nuit de noël",
- "id": "93ea2e57f0a3c0e69c9cabbf80d849fa64f568b3faf9b0d3070253bd7fb54799",
- "kws": {
- "fr": [
- "nuit de noël",
- "réveillon de noël",
- "réveillon"
- ]
- }
- },
- {
- "nm": "partition",
- "id": "34e17560d8b70b7e941ee56628777471f9b6110c67d85a0504121d1298f79695",
- "kws": {
- "fr": [
- "partition",
- "chanson",
- "portée",
- "composition",
- "musique"
- ]
- }
- },
- {
- "nm": "lecture facile",
- "id": "b80885e01e7b9657e20a8ccca53107d13fa9923e6a2203700fe818daa5f778d8",
- "kws": {
- "fr": [
- "lecture facile"
- ]
- }
- },
- {
- "nm": "figuier",
- "id": "037fb800ba46a0324b70356e8a8799a3fc19e91143fab60348ff653344e75a97",
- "kws": {
- "fr": [
- "figuier"
- ]
- }
- },
- {
- "nm": "jouer",
- "id": "81b572927f9f41f090f7f4203d40e249b9985f68d916faf92dcbaaf005c408ca",
- "kws": {
- "fr": [
- "jouer"
- ]
- }
- },
- {
- "nm": "adhérer",
- "id": "c91d7d4515576b14deea0e8a4a590752f67ec189657ee33a414689e3ac7a5748",
- "kws": {
- "fr": [
- "adhérer"
- ]
- }
- },
- {
- "nm": "froid",
- "id": "5b2249e194bc56e9c1213b7b1672f5c25b11fb219713fa26399375dcaf221321",
- "kws": {
- "fr": [
- "froid"
- ]
- }
- },
- {
- "nm": "malchance",
- "id": "5638517efffd1471e85ff9dc3b6bbd7de5981bfcc89aa63e6c6f524c6ea12587",
- "kws": {
- "fr": [
- "malchance"
- ]
- }
- },
- {
- "nm": "osselets",
- "id": "30c9d88ef105d940da3bc1b09149ab27928dc22435f3e6f52375f793758e8354",
- "kws": {
- "fr": [
- "osselets"
- ]
- }
- },
- {
- "nm": "vêtement",
- "id": "4523537fb03aa49c9cc54f4be5cbb962ec8836cff70e2cf1064fc96b72b0681e",
- "kws": {
- "fr": [
- "vêtement",
- "gants"
- ]
- }
- },
- {
- "nm": "corbeille",
- "id": "1478378699ab7174473299381ce722786b509e3569c2a71b38279332d4566148",
- "kws": {
- "fr": [
- "corbeille"
- ]
- }
- },
- {
- "nm": "caisse d\u0027épargne",
- "id": "e430e335d948b8e43c588ff6bcbaba2908b1fe78ce0606ddbfcb366918e33bc7",
- "kws": {
- "fr": [
- "caisse d\u0027épargne"
- ]
- }
- },
- {
- "nm": "directeur",
- "id": "139707973f517d4518278265804873818ecf457d2ae11886290e071f518373a8",
- "kws": {
- "fr": [
- "directeur"
- ]
- }
- },
- {
- "nm": "conception universelle",
- "id": "63c8874000c812b65a249bddb23473ead3242d72ebd9f99814014191de443cc3",
- "kws": {
- "fr": [
- "conception universelle"
- ]
- }
- },
- {
- "nm": "effrayée",
- "id": "98d7dffa7c7293d079bdd9c0a0d34ec97d1c7cc1870fd2995b3b6674608ec254",
- "kws": {
- "fr": [
- "effrayée",
- "faire peur",
- "avoir peur",
- "apeurée"
- ]
- }
- },
- {
- "nm": "la palma",
- "id": "a1172d346d35f2fd68df0a51ae9fc626a8fc76d99eda63f10cce2b52201ee2c8",
- "kws": {
- "fr": [
- "la palma"
- ]
- }
- },
- {
- "nm": "créativité",
- "id": "ceadc50fba2939cd514de22dd5ee0aa4f1c117c74a58dad41b72c07ae55427d4",
- "kws": {
- "fr": [
- "créativité"
- ]
- }
- },
- {
- "nm": "cône de signalisation",
- "id": "f228bf79a892836379b4376668f33b7d5bf2ef18a3c0494b8fc3234f0940a03f",
- "kws": {
- "fr": [
- "cône de signalisation",
- "cône"
- ]
- }
- },
- {
- "nm": "oncle",
- "id": "5583affc748698e97c144a21a9607444898e901415fd9d682e38f719221431db",
- "kws": {
- "fr": [
- "oncle"
- ]
- }
- },
- {
- "nm": "étiquette",
- "id": "e8a66b8bb8d46c9ca4b4ed998cfcb3d3ff8eefcbc881f9b7f4c29be7fb9da280",
- "kws": {
- "fr": [
- "étiquette"
- ]
- }
- },
- {
- "nm": "vociférer",
- "id": "92c7deb919a5de0c0d83ed659181c539ebde689be3733be643c767993134bc0c",
- "kws": {
- "fr": [
- "vociférer",
- "crier"
- ]
- }
- },
- {
- "nm": "deux",
- "id": "d6c10d9bee5a537857e30fc218a4325c8abf178b69157e1a98030f0273a77452",
- "kws": {
- "fr": [
- "deux",
- "2 dé",
- "2"
- ]
- }
- },
- {
- "nm": "blanc",
- "id": "83ef60a1a202a382de212a025319010dbf2e6f38cdb195ea06985a3a7540c526",
- "kws": {
- "fr": [
- "blanc"
- ]
- }
- },
- {
- "nm": "suisse",
- "id": "7d0588b3379a618fdc175ae0fde50ad5a7a1e13f8d1b0148784f3817c9b3b507",
- "kws": {
- "fr": [
- "suisse"
- ]
- }
- },
- {
- "nm": "canöe",
- "id": "eb9f6bce7f0abd3f28702eb48439b63c0035af453f85aa2296e9a1fe92993de5",
- "kws": {
- "fr": [
- "canöe",
- "pirogue"
- ]
- }
- },
- {
- "nm": "fiche",
- "id": "78bdfe0c6a0e146459cb04aa199d6a87ab1403f2f220a54075224b6a410cb192",
- "kws": {
- "fr": [
- "fiche"
- ]
- }
- },
- {
- "nm": "canöe",
- "id": "b3dfec3b7d0468c62c298a449c15c02e784b9c6a5bb174861897e7ca2dd30be4",
- "kws": {
- "fr": [
- "canöe"
- ]
- }
- },
- {
- "nm": "torchon",
- "id": "011344cbae92213b0609ed64b5201bf2023aa9244e003d3104dbdc5b41f8593a",
- "kws": {
- "fr": [
- "torchon"
- ]
- }
- },
- {
- "nm": "phases lunaires",
- "id": "e0b33af27419ddf6c332aa8f55589af3875538ce155487c46d216ef1e4900e8d",
- "kws": {
- "fr": [
- "phases lunaires"
- ]
- }
- },
- {
- "nm": "publicité",
- "id": "13f01321ff5b087526beb77d6a41a974215f975cffc38e95c8ae098a59879efa",
- "kws": {
- "fr": [
- "publicité",
- "affiche",
- "annoncer",
- "annonce"
- ]
- }
- },
- {
- "nm": "haut-parleur",
- "id": "747a3efe4dd7af3c0d360c22c742c4eda7855f55821e0b7fd2b015a5424cb27c",
- "kws": {
- "fr": [
- "haut-parleur"
- ]
- }
- },
- {
- "nm": "arobase",
- "id": "f796fe0c1f43c5d27d76df72275c1be781e153405cc354fd161d7e7a7703dcf3",
- "kws": {
- "fr": [
- "arobase"
- ]
- }
- },
- {
- "nm": "scientifique",
- "id": "750f63988a3a16a9bac8bbdcd059f75aa8c8bcb29ac7ce3897c8c39823d70b36",
- "kws": {
- "fr": [
- "scientifique"
- ]
- }
- },
- {
- "nm": "programme",
- "id": "a9bfd19e27d1451c3dfebb23144e24a236318ba10e398b51de15d88720479d87",
- "kws": {
- "fr": [
- "programme",
- "software"
- ]
- }
- },
- {
- "nm": "poste",
- "id": "4da7de3352460da1d225c129583a9fdf64c52989791f5bec56b7ec8c34d1f1d2",
- "kws": {
- "fr": [
- "poste",
- "directeur d\u0027école",
- "directeur"
- ]
- }
- },
- {
- "nm": "aérogénérateur",
- "id": "5c1355ee854d40bc901ff47566ae9b40ed1594d215dcfe86c44b0e50087202d0",
- "kws": {
- "fr": [
- "aérogénérateur"
- ]
- }
- },
- {
- "nm": "vêtements",
- "id": "fdd6ed78033eb0648d92b5674956b1ffc6f4bb5c075b9d34eb22e5421c0de55e",
- "kws": {
- "fr": [
- "vêtements"
- ]
- }
- },
- {
- "nm": "paysane",
- "id": "0d26b7c2692e66fb20f8afe05f6dc61b6f4db618ac15b1209d5d115f31551e6e",
- "kws": {
- "fr": [
- "paysane",
- "agricultrice",
- "agriculture"
- ]
- }
- },
- {
- "nm": "peau",
- "id": "795c55dd4f89042712cfe5942ba58663d3c9805f925701b4d508e7e4560de915",
- "kws": {
- "fr": [
- "peau"
- ]
- }
- },
- {
- "nm": "cupide",
- "id": "644ff212f97eca46d833bebaf993d53fb5f69b150bedb548c2d325d32afcd307",
- "kws": {
- "fr": [
- "cupide"
- ]
- }
- },
- {
- "nm": "mélanger",
- "id": "597cfea3101935fba308d53e410b978fd0ba993efd9d5fb0b7509a779c51bd63",
- "kws": {
- "fr": [
- "mélanger"
- ]
- }
- },
- {
- "nm": "falaise",
- "id": "5ab615c2cfdbabce2b7078ed9792adf0dcc46aa5aadd81f06dcaf70f1c1da132",
- "kws": {
- "fr": [
- "falaise",
- "côte"
- ]
- }
- },
- {
- "nm": "rater",
- "id": "2289a98878f656839d432da31c09b486489ea10548f3bf0a1950513a9c60d810",
- "kws": {
- "fr": [
- "rater"
- ]
- }
- },
- {
- "nm": "rampe",
- "id": "e61856780127a0c601436861be80c0c110442d937677d8bba4af517de07776ae",
- "kws": {
- "fr": [
- "rampe"
- ]
- }
- },
- {
- "nm": "compresse",
- "id": "f460862630d819c5426409db1cdabd24dae135cda792224151ad12b934e13f7b",
- "kws": {
- "fr": [
- "compresse"
- ]
- }
- },
- {
- "nm": "caleçon",
- "id": "bfa54d76a43ec7b91af0b6742d832fa8fa83818d43bab80b30c7b6113a2364dc",
- "kws": {
- "fr": [
- "caleçon",
- "caleçons"
- ]
- }
- },
- {
- "nm": "matelas gonflable",
- "id": "ebc8fa2270d471fa1aefe3ff2f1b0109001c66853100e410c6dd9fec852f1af3",
- "kws": {
- "fr": [
- "matelas gonflable"
- ]
- }
- },
- {
- "nm": "huile",
- "id": "adca5422a265588153332223ae73925b913d407ec5327255b9f86d0e66398487",
- "kws": {
- "fr": [
- "huile"
- ]
- }
- },
- {
- "nm": "argent",
- "id": "e82d918f5705089ebc4f230c0e02e1ede75e9804dcafe9d50b880113373cfb67",
- "kws": {
- "fr": [
- "argent"
- ]
- }
- },
- {
- "nm": "calamars à la romaine",
- "id": "1d9b8bdc55950a4d882f49a1db01cb4459630b8cba37d946f77aeac6ed227968",
- "kws": {
- "fr": [
- "calamars à la romaine"
- ]
- }
- },
- {
- "nm": "râpe à fromage",
- "id": "7a62fce2b8fcab496687628b8928498446689e3f090d23b1537d1ffa55939670",
- "kws": {
- "fr": [
- "râpe à fromage",
- "râpe"
- ]
- }
- },
- {
- "nm": "cuisiner",
- "id": "260695d47d6c6430d020e15a4ae4d9a0df30da220038ad0f812d1abc54308082",
- "kws": {
- "fr": [
- "cuisiner",
- "rôtir"
- ]
- }
- },
- {
- "nm": "galette",
- "id": "43b3a99ebc0014a269ffe211ac88b64c61a4e8c1dce95335dc79a271dda5d46f",
- "kws": {
- "fr": [
- "galette"
- ]
- }
- },
- {
- "nm": "tailler",
- "id": "bbf234050c17364577b43f0da3f1494889e76b7309bb5245853f4c5b48a432c2",
- "kws": {
- "fr": [
- "tailler"
- ]
- }
- },
- {
- "nm": "barcelone",
- "id": "3a5364ee1af33cc3dc440438eaa7ec9b66b165f65750da0cf7a363d68d38e307",
- "kws": {
- "fr": [
- "barcelone"
- ]
- }
- },
- {
- "nm": "signet",
- "id": "2c1e8693cbfdf42fc6ff208ac6661d4ccd4a874b6a0cda4eb761802b66a21096",
- "kws": {
- "fr": [
- "signet"
- ]
- }
- },
- {
- "nm": "cornet au chocolat",
- "id": "4c66d84f0fdd8d8440f138319e5c5d3cfd95522bdef4e1907e93f7a943f36274",
- "kws": {
- "fr": [
- "cornet au chocolat",
- "cornet"
- ]
- }
- },
- {
- "nm": "pupitre",
- "id": "0044c02ad676f6671d7795b8ab7e07de8e90789e251a0fbcaf222c6eebe01a54",
- "kws": {
- "fr": [
- "pupitre"
- ]
- }
- },
- {
- "nm": "chauffeur de taxi",
- "id": "d2eb331e0be15d19dc49d9431e475db6436cb4db6a3d6e25a77f1ab57ddf3b3f",
- "kws": {
- "fr": [
- "chauffeur de taxi"
- ]
- }
- },
- {
- "nm": "savonner",
- "id": "4587b53b661bb4180be7c5e8dac802289e237bf0944f1234ab11c7d0ff606473",
- "kws": {
- "fr": [
- "savonner",
- "se savonner",
- "frotter"
- ]
- }
- },
- {
- "nm": "perdre",
- "id": "21a115f12c1264062a888d8eb72830cd0969c5c47629d8de9175639ffd69b6eb",
- "kws": {
- "fr": [
- "perdre"
- ]
- }
- },
- {
- "nm": "griffe",
- "id": "59eacd0c26fa8204944d47774e44135f3400b077c1a68e4a1c75425e8b2489a3",
- "kws": {
- "fr": [
- "griffe"
- ]
- }
- },
- {
- "nm": "président",
- "id": "698c100524928b93c38f86c98fb8b94fbf026d5a8461b6cdd5fe95cc0a85aee4",
- "kws": {
- "fr": [
- "président"
- ]
- }
- },
- {
- "nm": "allumé",
- "id": "e865f6ff412914d3df476e749dff264295c4dd8ddf61c876f90061e5e076dd91",
- "kws": {
- "fr": [
- "allumé",
- "allumée"
- ]
- }
- },
- {
- "nm": "bouquet",
- "id": "0507de3e687b8613bde169c9c353826690a7943ddccb2a2610a69a5eb397d425",
- "kws": {
- "fr": [
- "bouquet"
- ]
- }
- },
- {
- "nm": "biographie",
- "id": "2c854cf623e214780e7ebad3faa1b18d10664c330072b2d1db0ecff082b9c5d4",
- "kws": {
- "fr": [
- "biographie"
- ]
- }
- },
- {
- "nm": "verser",
- "id": "482ec9e0a683276be32587d4f165b2c4c70e1136a39520161f0d3c42a76ea27c",
- "kws": {
- "fr": [
- "verser",
- "vider la poubelle",
- "vider",
- "jeter",
- "retirer"
- ]
- }
- },
- {
- "nm": "verre d\u0027eau",
- "id": "fdab52ef3ea45595c1ada5c9d122bd4bebfa0a9f5f93f9ae5cb60edfce454249",
- "kws": {
- "fr": [
- "verre d\u0027eau",
- "verre"
- ]
- }
- },
- {
- "nm": "série",
- "id": "3b1c500e105924f2d4168a23fa4ea9e4f9ea97e8a491a395402ca526960e6698",
- "kws": {
- "fr": [
- "série"
- ]
- }
- },
- {
- "nm": "moment",
- "id": "ca216312c4685281338738889d52e9d05883a41116bf760aa012f80792165048",
- "kws": {
- "fr": [
- "moment",
- "instant"
- ]
- }
- },
- {
- "nm": "interdiction de fumer",
- "id": "34d60a7dc7c1d473d7d76b394e728a89266d5a7b87fcef0aec712c6fd752c41a",
- "kws": {
- "fr": [
- "interdiction de fumer"
- ]
- }
- },
- {
- "nm": "nuit",
- "id": "099c12f52ff6f03389bdb16be767725653f70102ca47f0dd908558664f681ff6",
- "kws": {
- "fr": [
- "nuit"
- ]
- }
- },
- {
- "nm": "œillet",
- "id": "dbe0a460594270f13e11f3f15ddb9e4226a586507542fb45e87dd81159e4988d",
- "kws": {
- "fr": [
- "œillet",
- "oeillet",
- "fleur"
- ]
- }
- },
- {
- "nm": "empereur",
- "id": "c9ba73c06bd1d596742d3627e35b7745ee4e41fe338f4880fe8fce2aaa4be315",
- "kws": {
- "fr": [
- "empereur",
- "monarchie",
- "reine",
- "majesté"
- ]
- }
- },
- {
- "nm": "fromage à tartiner",
- "id": "62de8c8cda0b970396bcdf05b8d6d564e648bc5a307189f2458b055808c3ecca",
- "kws": {
- "fr": [
- "fromage à tartiner"
- ]
- }
- },
- {
- "nm": "boisson fraîche",
- "id": "09ba71a7131fcba23dd26125c5b02012ec251ac551a5e778a0d5137b35ecd4b2",
- "kws": {
- "fr": [
- "boisson fraîche",
- "boisson"
- ]
- }
- },
- {
- "nm": "tartiner",
- "id": "2c1bd0c9d0d37026acb36b5cb1d26edc93d05fd38c0afc15f6c2767b179d92e9",
- "kws": {
- "fr": [
- "tartiner"
- ]
- }
- },
- {
- "nm": "rétine",
- "id": "71b2f90af0f104c5f1485d42322770673eaff19ea4e1556309ae97da96d24bf9",
- "kws": {
- "fr": [
- "rétine"
- ]
- }
- },
- {
- "nm": "viole",
- "id": "1a9a7b928abda5345cfd91a03b2dff273de7e544ce46eece6ae545f35ff74a9b",
- "kws": {
- "fr": [
- "viole",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "caméléon",
- "id": "0511ba411a752badce81cdd82f4a99c2ebd63348f0ee868cb01d5f5ed9bd7e50",
- "kws": {
- "fr": [
- "caméléon"
- ]
- }
- },
- {
- "nm": "rétroviseur",
- "id": "9f1e45c6379b61f1fdc0e70f6777e6dca2b866f859c49df0adc06c2ddac7918e",
- "kws": {
- "fr": [
- "rétroviseur"
- ]
- }
- },
- {
- "nm": "concombres",
- "id": "8df43e079f2657610e55e712aae5963bd25a8e6bd2b6878a989df49831ec9f67",
- "kws": {
- "fr": [
- "concombres"
- ]
- }
- },
- {
- "nm": "blouse",
- "id": "79a8edd6491cbbdb2b739dfa80700e12bb31fba41336c59ec0d2d0dd6ed763ea",
- "kws": {
- "fr": [
- "blouse"
- ]
- }
- },
- {
- "nm": "pleurer",
- "id": "d7b83666b20f6f2d12eef27b27f7039fe911f23fd93e13a1c6d58744dd2d6163",
- "kws": {
- "fr": [
- "pleurer"
- ]
- }
- },
- {
- "nm": "lime",
- "id": "23ab977d233570a99799c7ab5206ef65a26c2acd385b12969681941988cce240",
- "kws": {
- "fr": [
- "lime"
- ]
- }
- },
- {
- "nm": "matériaux",
- "id": "cbd485c28a02a1a0a7e790ac0c9dcda14993b8284e3c899b137e2cb3a74714d0",
- "kws": {
- "fr": [
- "matériaux",
- "matériel d\u0027éducation physique",
- "matériel"
- ]
- }
- },
- {
- "nm": "petit",
- "id": "3983adc893780d443bbdbd2462ab86ad43159d77a79c19610f5fed1885e5aa79",
- "kws": {
- "fr": [
- "petit"
- ]
- }
- },
- {
- "nm": "piquer",
- "id": "0909a578c84d4fd53105827f7c1721094faa7421cefad7de10095806e9cbd28a",
- "kws": {
- "fr": [
- "piquer"
- ]
- }
- },
- {
- "nm": "lampe de poche",
- "id": "dd754457f63f95dde8d88cdaa9c222d1046e12dc19ff50da059df137d44d1359",
- "kws": {
- "fr": [
- "lampe de poche"
- ]
- }
- },
- {
- "nm": "vaccination",
- "id": "b978a2d43ee7e5c73f18b2b2edcfa5afede8bc4d65adc387b793e92f16a3c452",
- "kws": {
- "fr": [
- "vaccination",
- "vacciner",
- "vaccin"
- ]
- }
- },
- {
- "nm": "verroterie",
- "id": "34f57a910f148617bf3b40ab7baa1282ca0bf310cd5de8ebc1c393c41ccd2f47",
- "kws": {
- "fr": [
- "verroterie",
- "comptes"
- ]
- }
- },
- {
- "nm": "chocolat",
- "id": "8e21c2ac0426d7b4f9d6b8b6203b65e1a50cff040e8b0cbd036be343140f6fcb",
- "kws": {
- "fr": [
- "chocolat"
- ]
- }
- },
- {
- "nm": "écrire",
- "id": "9ad2bde187e60a19319a7ce6887bb16eb15cf91a4e1f9f1f2e3fe4c023462b00",
- "kws": {
- "fr": [
- "écrire",
- "écriture"
- ]
- }
- },
- {
- "nm": "fermière",
- "id": "4d637a094120def31d5c521aaafcad1fb0df7247899c4b5651b93d724cb4499f",
- "kws": {
- "fr": [
- "fermière"
- ]
- }
- },
- {
- "nm": "plâtrer",
- "id": "56106e9aa44d4cb70a2133cc2bdd2b738a8eac2f7192c0e6a7c3a845879b2f54",
- "kws": {
- "fr": [
- "plâtrer"
- ]
- }
- },
- {
- "nm": "paquet de biscuits",
- "id": "3a3ef51b5c33bb756f1e3594d7d1eba002c8ded66bf078ff0e923a0dab5c45dc",
- "kws": {
- "fr": [
- "paquet de biscuits",
- "galettes"
- ]
- }
- },
- {
- "nm": "kaléidoscope",
- "id": "41966f144cf74c086021cfcc4dceccbd99608ebdec8c3eb2c3335328e5b0051a",
- "kws": {
- "fr": [
- "kaléidoscope"
- ]
- }
- },
- {
- "nm": "parcourir",
- "id": "e6bb72e7c89083498a1c83e961f79e35d01b338eb8b0dcafe8ffb5515bedfe8a",
- "kws": {
- "fr": [
- "parcourir",
- "voyager"
- ]
- }
- },
- {
- "nm": "technicienne supérieur d\u0027activités spécifiques",
- "id": "f5d24807ff53a3f0e029d89da65201ed8828b60f69bce7f7a25e9174f5ae3962",
- "kws": {
- "fr": [
- "technicienne supérieur d\u0027activités spécifiques"
- ]
- }
- },
- {
- "nm": "mini-brochette",
- "id": "7271c67023887275f379db5a45a33268f48ce4f4886264db25b1d81e11825701",
- "kws": {
- "fr": [
- "mini-brochette"
- ]
- }
- },
- {
- "nm": "légumes",
- "id": "f7b6c2c05aae52199d9db7e7659d2482cad5fba8703384c3de4092c44d4d4a71",
- "kws": {
- "fr": [
- "légumes"
- ]
- }
- },
- {
- "nm": "cendrillon",
- "id": "886c4d1713d8a769da9b62b2de44320522591736cc3905e9677473a3465146ee",
- "kws": {
- "fr": [
- "cendrillon"
- ]
- }
- },
- {
- "nm": "trompe",
- "id": "1eb158862828fa601d4e5dee3b14a99f9c809732111edb227d401632ec637d8b",
- "kws": {
- "fr": [
- "trompe"
- ]
- }
- },
- {
- "nm": "diurne",
- "id": "4492bff0ebdb07b2b77741cd5927ebfc484f4be596210700fbfd12ff5cf0dd14",
- "kws": {
- "fr": [
- "diurne",
- "jour"
- ]
- }
- },
- {
- "nm": "jeter du papier dans les wc",
- "id": "a6c8cc03e003377b8c33e58354e156e4c01a0634a527c2ba9948b12500bdc03d",
- "kws": {
- "fr": [
- "jeter du papier dans les wc",
- "jeter"
- ]
- }
- },
- {
- "nm": "repasser",
- "id": "41a833faeed96816a1ebb36033f42efc8e489bebb6cf7f3920f5daf04f660d95",
- "kws": {
- "fr": [
- "repasser"
- ]
- }
- },
- {
- "nm": "jamais",
- "id": "b84bf43382a998eb78c49f588415d0f3fe2cd05661415b42fdc766f6c2cfb955",
- "kws": {
- "fr": [
- "jamais"
- ]
- }
- },
- {
- "nm": "flotter",
- "id": "2557f45feade219c891848dc457a78878a2b92b8b18eec4ed91ca9a439e66d28",
- "kws": {
- "fr": [
- "flotter"
- ]
- }
- },
- {
- "nm": "poubelle",
- "id": "38416d3023ce9158cbd25e1f71c7faa4b09c36fb7489724fc80cc373727904c8",
- "kws": {
- "fr": [
- "poubelle",
- "sac poubelle",
- "sac"
- ]
- }
- },
- {
- "nm": "larme",
- "id": "34016991826788916724c7ca6dd09254c8d00faecb59348a9ca893002f31a8d0",
- "kws": {
- "fr": [
- "larme"
- ]
- }
- },
- {
- "nm": "équilibriste",
- "id": "cf545201dcebe063f98dcf77bb576dc5ac2a468ce87806f4fbad780d37a82661",
- "kws": {
- "fr": [
- "équilibriste",
- "artiste"
- ]
- }
- },
- {
- "nm": "conseillère",
- "id": "5f273364f0830bd0de9b9b1bb738bb89e8fb89d187f7deeb18bd3109661996c4",
- "kws": {
- "fr": [
- "conseillère"
- ]
- }
- },
- {
- "nm": "porte-serviettes",
- "id": "4aec12a6ad96ca6ce3c7ab5e8ff0fe2b8cd4fb2f3493beb037000899bd8e074b",
- "kws": {
- "fr": [
- "porte-serviettes"
- ]
- }
- },
- {
- "nm": "attendre",
- "id": "d01fe44b20042e09a53de47e16bb77ad46cc023e32ef0bec04962935a422a23d",
- "kws": {
- "fr": [
- "attendre"
- ]
- }
- },
- {
- "nm": "vomir",
- "id": "7e233acdb95d05d318c2f2ac976494fdf48b224c910ddf4b10287c6d20d79a17",
- "kws": {
- "fr": [
- "vomir"
- ]
- }
- },
- {
- "nm": "traces de pas",
- "id": "be79192678488a59343790737f9df1d9d0c18c9e1082df5fb413096ade5a22c4",
- "kws": {
- "fr": [
- "traces de pas",
- "traces"
- ]
- }
- },
- {
- "nm": "slovénie",
- "id": "c8fcafc184eeffbcd47b42bee92ae4c1bf418ca4b7b6c19c4ed2d7139efadace",
- "kws": {
- "fr": [
- "slovénie"
- ]
- }
- },
- {
- "nm": "héritage",
- "id": "f5c59a2063df26f846637396b85f14f2853dba863c9eeafd53ff18c60ead08e8",
- "kws": {
- "fr": [
- "héritage",
- "hériter"
- ]
- }
- },
- {
- "nm": "sien",
- "id": "2acf084c8543fca9bf1a840d2d988b87e56390fe8341196ad9fa47cf7605867f",
- "kws": {
- "fr": [
- "sien",
- "sienne",
- "son"
- ]
- }
- },
- {
- "nm": "coffre fort",
- "id": "b8f2041ca890a58cc418168e9fffdad2e6ba2d6b39c49528e0b90393134aee05",
- "kws": {
- "fr": [
- "coffre fort"
- ]
- }
- },
- {
- "nm": "moufles",
- "id": "af253a85fb23d0cb6d9bf801f66afbd23b8fd9bcf8251c08c5cc7d0429386322",
- "kws": {
- "fr": [
- "moufles"
- ]
- }
- },
- {
- "nm": "cousin",
- "id": "25b7bcf4310cbc133435f4346d5cc2af72ee5332ec14f721d0c95d8f898a92ec",
- "kws": {
- "fr": [
- "cousin"
- ]
- }
- },
- {
- "nm": "je",
- "id": "f77a4e0191f6ae6388487682d0ca129ba4f932ca4b5891d510651f1a7820125e",
- "kws": {
- "fr": [
- "je"
- ]
- }
- },
- {
- "nm": "pousser",
- "id": "00eefa0c34334de8fd47c47abac6f17ce9005f8ab7e19e3cc5f18c79b44dc94f",
- "kws": {
- "fr": [
- "pousser"
- ]
- }
- },
- {
- "nm": "désordonné",
- "id": "587f8a994f886ea8b17d8474d3374685b995168a8a013ef409ef23e7c6b10716",
- "kws": {
- "fr": [
- "désordonné"
- ]
- }
- },
- {
- "nm": "mixeur",
- "id": "95cabe6f36651cea0547557235c39bb55215ee3481e153a2577a978048f31dcb",
- "kws": {
- "fr": [
- "mixeur",
- "batteur"
- ]
- }
- },
- {
- "nm": "jeu du morpion",
- "id": "9a5cce17ac36dfcd8751275b4ff92eddead53e6f4b2c7b11882380a919775f89",
- "kws": {
- "fr": [
- "jeu du morpion"
- ]
- }
- },
- {
- "nm": "regrouper",
- "id": "1200eb4ee4056a5cc35f194e3e781977f3165ca6f0eba559bc403016a39d3fa1",
- "kws": {
- "fr": [
- "regrouper",
- "assembler"
- ]
- }
- },
- {
- "nm": "castilla-la-mancha",
- "id": "a2e684564a394192f822ee2449e0c8fb671d0b6fdc0b57f7b18ed5e8663d9bd7",
- "kws": {
- "fr": [
- "castilla-la-mancha",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "résidence pour handicapés",
- "id": "93ec62b8a3c09cb39e1683d19d487d29ecf96482e7ee99391b34d29299e4dd37",
- "kws": {
- "fr": [
- "résidence pour handicapés"
- ]
- }
- },
- {
- "nm": "crème renversée",
- "id": "35ed51d94b3d3f64d74727c888b4527f018ed5b30bb707bcb932740162607255",
- "kws": {
- "fr": [
- "crème renversée",
- "crèmes renversées"
- ]
- }
- },
- {
- "nm": "coucher",
- "id": "9632e99a003c2e3b896675590292de3ef0d6984ceff03c871868beffaad6803a",
- "kws": {
- "fr": [
- "coucher",
- "se coucher dans le lit",
- "se coucher"
- ]
- }
- },
- {
- "nm": "calcium",
- "id": "ac8cc49e68f2af7cfbc688019d1d54024969ec3b81f465c3d9ec65714a0fc623",
- "kws": {
- "fr": [
- "calcium"
- ]
- }
- },
- {
- "nm": "livreur",
- "id": "6298aea7845b0352437841cac43f5088b4a6666343e1dd73d75a9b2dfc26f662",
- "kws": {
- "fr": [
- "livreur"
- ]
- }
- },
- {
- "nm": "qui sont-ils",
- "id": "0fd7402f4ba34291c092184b813217a406f2b0141c47f74ca4f16ebbb0b16135",
- "kws": {
- "fr": [
- "qui sont-ils",
- "qui"
- ]
- }
- },
- {
- "nm": "apôtre",
- "id": "b30b539e0e0629a29b0c0591f7d3eed36b42e7d20d0ad2c4740ac28b02acfa2f",
- "kws": {
- "fr": [
- "apôtre"
- ]
- }
- },
- {
- "nm": "maison de la culture",
- "id": "c50fdbba9798683a34a01ee69a684c1137b4ba6672b3b97aa40affdd7ebaa903",
- "kws": {
- "fr": [
- "maison de la culture"
- ]
- }
- },
- {
- "nm": "clitoris",
- "id": "1ce20519a41439308d84b33dd45881a3ef8ffb14e75a60dd6f1e8aed7bee9a88",
- "kws": {
- "fr": [
- "clitoris"
- ]
- }
- },
- {
- "nm": "saumon",
- "id": "8efec7d5c6e77c164765ab16945a1ac1a13b86ae2e8e74423b045a23b5defb7d",
- "kws": {
- "fr": [
- "saumon"
- ]
- }
- },
- {
- "nm": "incompréhensible",
- "id": "a8b651d4aaf6a96f3f49704c1dd4b407f4ec8a77c6fe99fbb941965cb1810b89",
- "kws": {
- "fr": [
- "incompréhensible",
- "inintelligible"
- ]
- }
- },
- {
- "nm": "signalétique",
- "id": "bdbc8ee93e2e299c2ab7cca7abcb6f3930e90b2921e0486ab44f45db1d979d93",
- "kws": {
- "fr": [
- "signalétique",
- "salle de jeux",
- "salle"
- ]
- }
- },
- {
- "nm": "champagne catalan",
- "id": "c76c9303c8b58dcad6028a41bcf7663e4050eedea6c74203a7f6c0d6ff2b6c24",
- "kws": {
- "fr": [
- "champagne catalan",
- "champagne"
- ]
- }
- },
- {
- "nm": "farce",
- "id": "19ceceaa2ebf6643a8cb80d35ee4cd3154fcbe82928860d608083e062ad42e0b",
- "kws": {
- "fr": [
- "farce"
- ]
- }
- },
- {
- "nm": "nièce",
- "id": "67dc4d7e2d3eca18f1623f3a4256e3b7e31157567dd8998501bb47eef00631fe",
- "kws": {
- "fr": [
- "nièce"
- ]
- }
- },
- {
- "nm": "ongle",
- "id": "84684ea46daeeefc056f2bc9fe9bf966107c57f0028adab806ae9b0428ecac74",
- "kws": {
- "fr": [
- "ongle"
- ]
- }
- },
- {
- "nm": "arum",
- "id": "c8990d54730373bf074e2ca2de349d4647d385c8cfec388863a929dfb4d99c9b",
- "kws": {
- "fr": [
- "arum"
- ]
- }
- },
- {
- "nm": "goalball",
- "id": "14916555700c48bc5017cef902715527af0df4e13376ccee0f035b5e38083ec1",
- "kws": {
- "fr": [
- "goalball"
- ]
- }
- },
- {
- "nm": "canapé",
- "id": "b3f3a0b088590a6189bf2b2c22152d08d0c9108c1b19105e96c4c859dd363ac3",
- "kws": {
- "fr": [
- "canapé"
- ]
- }
- },
- {
- "nm": "camion de chantier",
- "id": "bba07a90f9cf0487e09d9cb2904c682ecd5ab3001e104d15a84e3390fa984e71",
- "kws": {
- "fr": [
- "camion de chantier",
- "camion à benne"
- ]
- }
- },
- {
- "nm": "cerf-volant",
- "id": "33548d57ba8c7b2551534254b6d44884cdcf98ecf783f6beec9f35c5274345c6",
- "kws": {
- "fr": [
- "cerf-volant"
- ]
- }
- },
- {
- "nm": "papeterie",
- "id": "9f6b6cb5f762b8734513c7bbe1dee04d5ec1b6ffd536990d2cb47a8e88d5a644",
- "kws": {
- "fr": [
- "papeterie",
- "entrepôt",
- "signalétique"
- ]
- }
- },
- {
- "nm": "mort",
- "id": "0a8a06937937dece2600c2cd5e2b085626568f4655442cdc0c4ee8065c27deec",
- "kws": {
- "fr": [
- "mort",
- "meurtre"
- ]
- }
- },
- {
- "nm": "crayon",
- "id": "fdc3b5aeaa9ca622af1463bbaee7795ffd30c8916c0758c25885cf23162ae1dc",
- "kws": {
- "fr": [
- "crayon"
- ]
- }
- },
- {
- "nm": "livres de poésie et art",
- "id": "e47f58f6785595b2f11f83fd1b1349c5e9b59aec9d875021f7d05ad75ee3ccaa",
- "kws": {
- "fr": [
- "livres de poésie et art"
- ]
- }
- },
- {
- "nm": "dépasser",
- "id": "bbb1c086475ff5e63b5982ff5ac8f976547d9795f0a32f8c09ad101f36e62f71",
- "kws": {
- "fr": [
- "dépasser",
- "avancer"
- ]
- }
- },
- {
- "nm": "ouvrir",
- "id": "53c80d3ccfe6eefae1a1e24557982ab839c84dc3d361c2e523f1f7d555f2eb97",
- "kws": {
- "fr": [
- "ouvrir"
- ]
- }
- },
- {
- "nm": "balai et pelle",
- "id": "9ebf30d1caad2358f2fef30cb7d99f3db13ccac152ee16f4caafe1e9730599d9",
- "kws": {
- "fr": [
- "balai et pelle"
- ]
- }
- },
- {
- "nm": "cheval",
- "id": "dbb538bfee3b406929dbdb6e117dffadc43f2fe205661ec10cfb2a71836fe8dd",
- "kws": {
- "fr": [
- "cheval"
- ]
- }
- },
- {
- "nm": "carreau",
- "id": "da578509d196fa987128cccd8f44bccce59ada0769987a3e70704c2357c0fd55",
- "kws": {
- "fr": [
- "carreau"
- ]
- }
- },
- {
- "nm": "invertébré",
- "id": "c0fe919d57f119b3ce099fefa73f8c023c42347f6265ecd5e35ef1bd711187bb",
- "kws": {
- "fr": [
- "invertébré"
- ]
- }
- },
- {
- "nm": "signalétique",
- "id": "3e7af498d789cded880af55268bc162878342f1b0ffeb6b6ea78d78ffaae6a4c",
- "kws": {
- "fr": [
- "signalétique",
- "salle à manger du personnel",
- "salle à manger"
- ]
- }
- },
- {
- "nm": "expérience",
- "id": "1a43c85d5e08b8e3e0a7b67769ec7315e523ab1a8e84c6f2f53ff463628150aa",
- "kws": {
- "fr": [
- "expérience"
- ]
- }
- },
- {
- "nm": "supplier",
- "id": "1effa2daba222d01ca09db4493a6523a38bb385210f4655051ef6fca5dee43c1",
- "kws": {
- "fr": [
- "supplier",
- "s\u0027il vous plaît"
- ]
- }
- },
- {
- "nm": "accompagné",
- "id": "656dfa68fda86c050f91682f0abd30968c73d56042a48db6fc7e77e5ee4244d8",
- "kws": {
- "fr": [
- "accompagné"
- ]
- }
- },
- {
- "nm": "papillon",
- "id": "5957b8493f4c66e82c60b4d91ad5a9022d0d495af87a990efa1a0ed60b6fce9e",
- "kws": {
- "fr": [
- "papillon"
- ]
- }
- },
- {
- "nm": "hiver",
- "id": "c1d9f8750c450e5337c2cb0d1f760e3dbb317358ee9726507aaabd662cf6f46b",
- "kws": {
- "fr": [
- "hiver",
- "gare"
- ]
- }
- },
- {
- "nm": "découvrir",
- "id": "5bb6f8c4c2647ff713e4fa906609eda016e5928a1d8d8498b3336f9bb02def18",
- "kws": {
- "fr": [
- "découvrir"
- ]
- }
- },
- {
- "nm": "trace",
- "id": "1135e430f0e52431ab377156ad062efaaaa49eb4c7984846cd2204e98c83bac3",
- "kws": {
- "fr": [
- "trace"
- ]
- }
- },
- {
- "nm": "caresser",
- "id": "e87b307d1d05e2ba60c88c8a96e1b58eadae13473e310ba8c73bcaba1906e32e",
- "kws": {
- "fr": [
- "caresser"
- ]
- }
- },
- {
- "nm": "fourmi",
- "id": "c9c218fd4a136cbad72b02d27502589b2d8ca948b5cc04a27c3cd25ba06de0b5",
- "kws": {
- "fr": [
- "fourmi"
- ]
- }
- },
- {
- "nm": "problème",
- "id": "8430f2ac16e7ad59c63fb8e2f8af36d4696b37e6825b43e036e47fd604369e5c",
- "kws": {
- "fr": [
- "problème"
- ]
- }
- },
- {
- "nm": "nourriture",
- "id": "05534975b9be9981ebddb0344abce7e2cc75e83fbc398cacc5e975ab0a4d6fa5",
- "kws": {
- "fr": [
- "nourriture",
- "aliment",
- "aliments"
- ]
- }
- },
- {
- "nm": "famille monoparentale",
- "id": "6c865ec27ec68663911e7c423c75b285fff29298a71d989847580a234928c8e3",
- "kws": {
- "fr": [
- "famille monoparentale"
- ]
- }
- },
- {
- "nm": "labourer",
- "id": "c7bca869b2b912b409fafa700f8afc4c5721ad9fb6c37c54d1c514735795a48f",
- "kws": {
- "fr": [
- "labourer"
- ]
- }
- },
- {
- "nm": "explosion",
- "id": "307b288ee22b161eba3b97325ad20ddde0bc7fff1956b291f530c6f91f09127e",
- "kws": {
- "fr": [
- "explosion"
- ]
- }
- },
- {
- "nm": "abricot",
- "id": "b84d63cd40162a80302a9be4d25396cfa406ffe8053b60d2244d38ca6793f16b",
- "kws": {
- "fr": [
- "abricot"
- ]
- }
- },
- {
- "nm": "galette de maïs",
- "id": "d051290670f09edb367c1b8f7651b4a7a0d90cfcdbe4ce3123a88122d0b4c85e",
- "kws": {
- "fr": [
- "galette de maïs"
- ]
- }
- },
- {
- "nm": "candidat",
- "id": "e8709bf50306b72b77af8b95202f19fb11d911eafae8d1c2ad407351c652c85f",
- "kws": {
- "fr": [
- "candidat"
- ]
- }
- },
- {
- "nm": "bras en croix",
- "id": "69a8b68630d8fc068086074f8910094678259b6af6805dc3352f8420c19864e2",
- "kws": {
- "fr": [
- "bras en croix",
- "faire de l\u0027exercice",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "boutique",
- "id": "60fd168fa1c3137079b09842c9562acd661455509323b843871b04bfea66692e",
- "kws": {
- "fr": [
- "boutique",
- "magasin de vêtements"
- ]
- }
- },
- {
- "nm": "se reproduire",
- "id": "5e50ae8632588429c0ac167a08bfcbe830dfb6af8622d322cd5037d8831e5db6",
- "kws": {
- "fr": [
- "se reproduire",
- "reproduction"
- ]
- }
- },
- {
- "nm": "avion",
- "id": "668216911dc35b7b5602f8e4774818a40b555d78689c89ca2c5fd6b949f31883",
- "kws": {
- "fr": [
- "avion",
- "aéronef",
- "aéroplane"
- ]
- }
- },
- {
- "nm": "décoration de noël",
- "id": "6919ad983141bb6a3b679a27bce71cddf8cb77b78c617a7b29506794d690e6ba",
- "kws": {
- "fr": [
- "décoration de noël",
- "ornementation"
- ]
- }
- },
- {
- "nm": "donner l\u0027aumône",
- "id": "4ad6cd8a659cb1c5a7eba917b22c0a2e928d487297d248fea11f63bebdc9adab",
- "kws": {
- "fr": [
- "donner l\u0027aumône"
- ]
- }
- },
- {
- "nm": "profil",
- "id": "4430ef1b5055abbbcc961509a5159de57ed5b0a032000ed9e46aa5057febc74f",
- "kws": {
- "fr": [
- "profil",
- "homme"
- ]
- }
- },
- {
- "nm": "témoin",
- "id": "1bc94745b0384b450cac6549bdf291d6f91a9c2cb243b2e040a5001dfb020f15",
- "kws": {
- "fr": [
- "témoin"
- ]
- }
- },
- {
- "nm": "vernis à ongle",
- "id": "6aae7def1b01090ff8520e15c844c4a10ef26e5e5640c67805dd72279417a13e",
- "kws": {
- "fr": [
- "vernis à ongle",
- "vernis à ongles",
- "émail"
- ]
- }
- },
- {
- "nm": "demande de divorce",
- "id": "704c15297547b148f8de0232f9c874f84532f74c470509eb266fa3b63b0b8efc",
- "kws": {
- "fr": [
- "demande de divorce"
- ]
- }
- },
- {
- "nm": "brise",
- "id": "409c6e751cdcda51c3d75205c0a75044be48868aa4f7152796885fdef0ee7672",
- "kws": {
- "fr": [
- "brise",
- "air"
- ]
- }
- },
- {
- "nm": "fermer la bouche",
- "id": "d958219ed8260310ee13707a9242372d0ac0fd56c6bea8f256abb3ff3784d1da",
- "kws": {
- "fr": [
- "fermer la bouche",
- "fermer",
- "praxie",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "caille",
- "id": "b90070ad169e5a563f50c614ac103e645583d4b3f1b1db115dfc954d37aa2d0d",
- "kws": {
- "fr": [
- "caille"
- ]
- }
- },
- {
- "nm": "moins",
- "id": "33f0a37b604d30add613a77d70852f92e36423c121268daeb181c7218a604528",
- "kws": {
- "fr": [
- "moins"
- ]
- }
- },
- {
- "nm": "joue",
- "id": "3513108cb6f80ea85b89cd44f4f471f5d9e04888dc03d3022690b91fbffeec09",
- "kws": {
- "fr": [
- "joue"
- ]
- }
- },
- {
- "nm": "recycler",
- "id": "37ff56780e3cb3e398c6361029a0d03f36ea7c9af10b53996b8681a625c481fc",
- "kws": {
- "fr": [
- "recycler"
- ]
- }
- },
- {
- "nm": "première",
- "id": "c56e25127c50214b30203fd1eb2ce0954181ee1f0091007dca8c6a05ddaecad7",
- "kws": {
- "fr": [
- "première"
- ]
- }
- },
- {
- "nm": "lumière",
- "id": "8a1a55093b173bdaceaedddd03d5d1233368d23418bf608c4a4eeea4cf818bfd",
- "kws": {
- "fr": [
- "lumière"
- ]
- }
- },
- {
- "nm": "eau non potable",
- "id": "bd4f367bb3ac813123362b4a8f7f707c7dbb51a2228f6d0e75c027c1c12e04ae",
- "kws": {
- "fr": [
- "eau non potable"
- ]
- }
- },
- {
- "nm": "drapeau d\u0027aragon",
- "id": "4a1a59186a2256a8f845aee2fda7e4681d05aceeb8c83be78b5b2eadd3c1b096",
- "kws": {
- "fr": [
- "drapeau d\u0027aragon",
- "communauté autonome",
- "aragon drapeau",
- "aragon"
- ]
- }
- },
- {
- "nm": "neuf",
- "id": "e9902cd3e5ac0d9d1a2b61eb37fa0934b2b2e74525358c727763f49856e66865",
- "kws": {
- "fr": [
- "neuf",
- "9 dé",
- "9"
- ]
- }
- },
- {
- "nm": "dépendance",
- "id": "76aa381c4c094493398008d96ffac1b5efd3842aa2079704b736b4e2d6b7eb76",
- "kws": {
- "fr": [
- "dépendance"
- ]
- }
- },
- {
- "nm": "sandwich",
- "id": "d9f5b04b64ef1c3964fdc0880f381e923a077b3a0702d5036d6caf654e694362",
- "kws": {
- "fr": [
- "sandwich"
- ]
- }
- },
- {
- "nm": "arbre",
- "id": "c753da592ec0d4dcf9907d4fdae25ebc3090cf752dba0f3b8e34b1368b65b166",
- "kws": {
- "fr": [
- "arbre",
- "sapin"
- ]
- }
- },
- {
- "nm": "décaféiné",
- "id": "7c11f718d5028ff0c5488ede17a5f4ca24bf521cfaab35f0ea13673b589a28ee",
- "kws": {
- "fr": [
- "décaféiné",
- "café décaféiné"
- ]
- }
- },
- {
- "nm": "éteindre la lumière",
- "id": "8dca62b47147bd3ac95129199cba3b44d41c622b93c56f67a6cea53597c47902",
- "kws": {
- "fr": [
- "éteindre la lumière",
- "éteint",
- "éteinte"
- ]
- }
- },
- {
- "nm": "mine à ciel ouvert",
- "id": "19ee3bb4f9b44706cbee282f487980c34a34dc7e8b63ce58c5c1ae5750af24b3",
- "kws": {
- "fr": [
- "mine à ciel ouvert",
- "mine"
- ]
- }
- },
- {
- "nm": "père noël",
- "id": "a9f55e05eedbf95983053771949db061eb3172fb7909d25b5e708b710562467c",
- "kws": {
- "fr": [
- "père noël",
- "père-noël"
- ]
- }
- },
- {
- "nm": "midi pile",
- "id": "c3ad16b8af83cf568c3e210b3e69619da061bf20f95dec82108506241b75e0a8",
- "kws": {
- "fr": [
- "midi pile",
- "midi"
- ]
- }
- },
- {
- "nm": "découvrir",
- "id": "6e178381e85cdb227e54d4be79943ea39896956d23412925dc6c4af33ddf0824",
- "kws": {
- "fr": [
- "découvrir",
- "trouver",
- "avoir une idée",
- "inventer"
- ]
- }
- },
- {
- "nm": "grippe",
- "id": "d514af79cd9c3da5d52cce89cb3b77981afa20733889913fc22b5d1d6acfdc84",
- "kws": {
- "fr": [
- "grippe"
- ]
- }
- },
- {
- "nm": "couvercle",
- "id": "7cab5d772796322af2bd9ebfaeee2caf8e39051bd90a6dc1dbaafa7f0aae4bce",
- "kws": {
- "fr": [
- "couvercle"
- ]
- }
- },
- {
- "nm": "pêche",
- "id": "ddbf9b7727086b846b5f59a9b60eee965878926754d3f0623b2ea69173e39d8b",
- "kws": {
- "fr": [
- "pêche"
- ]
- }
- },
- {
- "nm": "tondeuse à gazon",
- "id": "8ad195f3e9ec0924f5833a4ed1adb7c3cccf8af1b91189174c99b08cdf7ff977",
- "kws": {
- "fr": [
- "tondeuse à gazon"
- ]
- }
- },
- {
- "nm": "remplir",
- "id": "b1fb9ea5a2376b5e5e712f363f143a5eabecbc9afdfbf908b698c063f3bf1d66",
- "kws": {
- "fr": [
- "remplir"
- ]
- }
- },
- {
- "nm": "tomber malade",
- "id": "21b53258c35662ebc4de9eb463dc1bd3328da686ebc4183a922bc028f2586c6b",
- "kws": {
- "fr": [
- "tomber malade",
- "maladie"
- ]
- }
- },
- {
- "nm": "planète",
- "id": "94c687e954b890e8f1738bf4c5baba5b6ccec4512252e57176f2ef7a421b14d7",
- "kws": {
- "fr": [
- "planète"
- ]
- }
- },
- {
- "nm": "scier",
- "id": "b623ad1eb9c6de9b153d84eb975bcd315b394e993ae85145998989bd2bb9c9b4",
- "kws": {
- "fr": [
- "scier"
- ]
- }
- },
- {
- "nm": "se sucer le doigt",
- "id": "0d962baab128f035e9cebe368f823ae9cfba1a655c97d47a294c17113c4db60a",
- "kws": {
- "fr": [
- "se sucer le doigt"
- ]
- }
- },
- {
- "nm": "aquarium",
- "id": "e4ec41aa9be458dd4f8239c42430f58ad21b7da5acbaa54759f01a4656b77e7c",
- "kws": {
- "fr": [
- "aquarium"
- ]
- }
- },
- {
- "nm": "jus de pomme",
- "id": "002d0c4b44902b3bfa84d29b4294f2487e32b66f703c18cefdac3685c9dd7d59",
- "kws": {
- "fr": [
- "jus de pomme"
- ]
- }
- },
- {
- "nm": "bosnie-herzégovine",
- "id": "30f1246583a1598220574241359b101153f5db1bd252b9fb6a627ecbc55b7785",
- "kws": {
- "fr": [
- "bosnie-herzégovine"
- ]
- }
- },
- {
- "nm": "épiphanie",
- "id": "88a53f2eec5813f0309a8e95cd690d124d720d042c963309ad94b163e4c32e8d",
- "kws": {
- "fr": [
- "épiphanie",
- "jour des rois",
- "rois"
- ]
- }
- },
- {
- "nm": "coudre",
- "id": "9467338479090862c8a1e4eedf327a45a1def970e7628a7a31723497f2188b86",
- "kws": {
- "fr": [
- "coudre"
- ]
- }
- },
- {
- "nm": "salle d\u0027entretiens",
- "id": "248b374a5a2168a9f9502a6e88255d7234e08c2386a7db6eb7230cf65a89fee6",
- "kws": {
- "fr": [
- "salle d\u0027entretiens"
- ]
- }
- },
- {
- "nm": "péninsule",
- "id": "bd10ce6faed56a9c836a576450de083220e39dee56d2c635d0935bc0a0a3d593",
- "kws": {
- "fr": [
- "péninsule"
- ]
- }
- },
- {
- "nm": "tuer",
- "id": "6259739f35404ee765e33ced27c03c81ab536ca5f3e538cb31f67f72f07efc96",
- "kws": {
- "fr": [
- "tuer",
- "assassiner"
- ]
- }
- },
- {
- "nm": "punaise",
- "id": "9faff745482e883e041bfe80c836cb6b8ec1f6417487e877f7fe14088e323973",
- "kws": {
- "fr": [
- "punaise"
- ]
- }
- },
- {
- "nm": "fermer",
- "id": "b2366a5bd8751b123d45b84bf35e1c2b24ea3784e48eca00c59980eb5146d538",
- "kws": {
- "fr": [
- "fermer"
- ]
- }
- },
- {
- "nm": "u",
- "id": "f860c6354d354bf89ee25b35cc0ccd2168a6cac0a11615adc0a9c6a5cd742675",
- "kws": {
- "fr": [
- "u",
- "lettre"
- ]
- }
- },
- {
- "nm": "arbre",
- "id": "5f116a24e63c982299954ba7d361c2744e6bb7f971d2502c808e1b17aaf60226",
- "kws": {
- "fr": [
- "arbre"
- ]
- }
- },
- {
- "nm": "tendon",
- "id": "c6297d7da2e5891ab2be0fe10863bb1fe7cc707517485471f4836eb5d63cadde",
- "kws": {
- "fr": [
- "tendon"
- ]
- }
- },
- {
- "nm": "faire peur",
- "id": "f47cb728a182efc10eaf1039087050032e64465b9a0bc0e2aacfc991c2a4e7c1",
- "kws": {
- "fr": [
- "faire peur",
- "avoir peur"
- ]
- }
- },
- {
- "nm": "serrer dans les bras",
- "id": "7f4cac337ef1a3f4f4ce4acf32218fe17cf2a8e0a9a4a2adbfb7213140caa014",
- "kws": {
- "fr": [
- "serrer dans les bras",
- "s\u0027embrasser"
- ]
- }
- },
- {
- "nm": "tour",
- "id": "b02e09da458ab755eddcf311355dd5ff786b0292803a408bd912027db6f92ea5",
- "kws": {
- "fr": [
- "tour",
- "tourner",
- "faire de l\u0027exercice",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "guêtres",
- "id": "d50617f095e185f8ff5c01a687a8acb55723f4a843eb9d55766d2ca9d65223a1",
- "kws": {
- "fr": [
- "guêtres"
- ]
- }
- },
- {
- "nm": "tiroir",
- "id": "76137648c4c38b3ff95590b3f5ab52819fe389c5d4d32aedd552609158caa453",
- "kws": {
- "fr": [
- "tiroir"
- ]
- }
- },
- {
- "nm": "conduit auditif",
- "id": "49fda8c39d8089a03d554148cc3260574061b56a53306363ae40d23b07f9a9ed",
- "kws": {
- "fr": [
- "conduit auditif"
- ]
- }
- },
- {
- "nm": "s\u0027appuyer",
- "id": "6f3c36eafeaca55a4fed76c07eb33a14c4b9b9ce00c43df6bc452c48522868f2",
- "kws": {
- "fr": [
- "s\u0027appuyer"
- ]
- }
- },
- {
- "nm": "cantabrie",
- "id": "e43c12588c4e88028bee1bb3fd8f733db1b38e1d2e056192afa34c232580c86f",
- "kws": {
- "fr": [
- "cantabrie"
- ]
- }
- },
- {
- "nm": "éteindre",
- "id": "e505eb837abbcd768335af7de3f7e7d901541faedee3919b0e560e8d3d89da24",
- "kws": {
- "fr": [
- "éteindre"
- ]
- }
- },
- {
- "nm": "justice",
- "id": "3271adce68916342ea302711a11f045f0ac51380971bbccb2c383786a5304dca",
- "kws": {
- "fr": [
- "justice"
- ]
- }
- },
- {
- "nm": "couvrir",
- "id": "3296b9b0d0a132a1fa8760e7e9ca0565e8c938deb3b4beef75654a94bd0306c3",
- "kws": {
- "fr": [
- "couvrir"
- ]
- }
- },
- {
- "nm": "vasectomie",
- "id": "b67d1b78fafc13718a30bc2388fb2e78fd7d2009b27f07417108ccd2f9bd43f4",
- "kws": {
- "fr": [
- "vasectomie"
- ]
- }
- },
- {
- "nm": "projet de vie",
- "id": "82dd8c3f16c58b17ec601eaef01cc9d145c9f5f45257a40d58cefcdf38baf1d4",
- "kws": {
- "fr": [
- "projet de vie"
- ]
- }
- },
- {
- "nm": "sens interdit",
- "id": "fa2fb5a2a65d7b0b3ba36b8ae0247b0f50378f7cb74cbeeb71c977e54be73b4c",
- "kws": {
- "fr": [
- "sens interdit",
- "interdit"
- ]
- }
- },
- {
- "nm": "communiquer",
- "id": "099c0b23d6170667365ddafa65978e76e48e63f66fddfb9ec1a0de428a1c92a0",
- "kws": {
- "fr": [
- "communiquer",
- "signer",
- "langage des signes"
- ]
- }
- },
- {
- "nm": "signalétique",
- "id": "a7fdba5bb527a2a214f5cc7b2d3b47414e78f459342ddef1c381f27bcc5a895c",
- "kws": {
- "fr": [
- "signalétique",
- "salle de télévision",
- "salle"
- ]
- }
- },
- {
- "nm": "petit cochon",
- "id": "1a12a0670e17785a17498fc223fd0e8b4656338d38a4e46384e97e0909e752d2",
- "kws": {
- "fr": [
- "petit cochon",
- "grand cochonnet"
- ]
- }
- },
- {
- "nm": "plier",
- "id": "ac2e6c18093d5cb171f516823dfbff180fe2e9d67dc12b5f973a510316dc1119",
- "kws": {
- "fr": [
- "plier"
- ]
- }
- },
- {
- "nm": "expression",
- "id": "844cd46939431f8e1dd6ce8b0f303ed33303a4824072541ea499163cd60ceeed",
- "kws": {
- "fr": [
- "expression",
- "vexé",
- "colère",
- "se facher",
- "se fâcher",
- "irriter",
- "irrité",
- "furieux",
- "fâché",
- "mettre en colère"
- ]
- }
- },
- {
- "nm": "crème de cacao",
- "id": "da04af6b47e6e016ddbbec5825b9cdf6e897bab4d278a0f5ddc5f260b4401a4e",
- "kws": {
- "fr": [
- "crème de cacao"
- ]
- }
- },
- {
- "nm": "océan",
- "id": "a7904fdf1dad3b9f8d15d1be4941632a5bf94b6bb61427716cbf611303b338c3",
- "kws": {
- "fr": [
- "océan",
- "mer"
- ]
- }
- },
- {
- "nm": "capitaine de navire",
- "id": "34dfb959dfc3a9ca38878e457e2ab5ead5d9c7f571f522aebab61a869e628905",
- "kws": {
- "fr": [
- "capitaine de navire",
- "capitaine"
- ]
- }
- },
- {
- "nm": "rosaire",
- "id": "dba073c3d9580775e5794ebdf0b15f8bdc343c573c7a66d4eec65288fdecac2a",
- "kws": {
- "fr": [
- "rosaire"
- ]
- }
- },
- {
- "nm": "c\u0027est drôle!",
- "id": "35212b78d139b77bdab40d25d7a7f6da174de41ead5212c2f1e573809f6931ea",
- "kws": {
- "fr": [
- "c\u0027est drôle!"
- ]
- }
- },
- {
- "nm": "corne",
- "id": "7d444e7415a05db914e88739af432b68520ee112dfae5072635cf26f9e762ccb",
- "kws": {
- "fr": [
- "corne"
- ]
- }
- },
- {
- "nm": "display",
- "id": "2fd21c3d86689d266689f9d974aae5b26b4ff7fc8850fcb559b971bab42e60ce",
- "kws": {
- "fr": [
- "display"
- ]
- }
- },
- {
- "nm": "motion de censure",
- "id": "69153acbb7a7030a1ea7f822373403a54de8054f5b8b383fa12f79c4888b9aec",
- "kws": {
- "fr": [
- "motion de censure",
- "motion"
- ]
- }
- },
- {
- "nm": "pouce",
- "id": "836ab6eddd89b513b7f78684434a8459162be1c6bb5f7dc83bea38bbad379bbf",
- "kws": {
- "fr": [
- "pouce"
- ]
- }
- },
- {
- "nm": "voile",
- "id": "ae987cc40f23a56991a32ea65942423c7584490e70b5aed280a7e65d8dfe59a4",
- "kws": {
- "fr": [
- "voile"
- ]
- }
- },
- {
- "nm": "cela",
- "id": "fb5a42216938230e4e3ad5b03602adb99fbd31c4207b8bb339d26f7e5a20d3b8",
- "kws": {
- "fr": [
- "cela",
- "celle-là",
- "celui-là"
- ]
- }
- },
- {
- "nm": "égaré",
- "id": "5b6e6abb5a2c033621bbed0aa64074592b5f09b237ecc9f4c61c2facf4f2a18a",
- "kws": {
- "fr": [
- "égaré",
- "égarée",
- "distraire",
- "distrait",
- "s\u0027égarer"
- ]
- }
- },
- {
- "nm": "marteau de porte",
- "id": "1f593a06b2b918d6677109aa47d0908e793b28bb5fbf402e4965d3a75cfa6aac",
- "kws": {
- "fr": [
- "marteau de porte",
- "marteaux de porte",
- "marteaux"
- ]
- }
- },
- {
- "nm": "bailler",
- "id": "b090fa2eaf35902bb43800bf745a171870ce8fd1e9b6ae0a1c35d1aff5d6028c",
- "kws": {
- "fr": [
- "bailler"
- ]
- }
- },
- {
- "nm": "être debout",
- "id": "4131a2b1f77adf05c21280665d2195146432f948291088a9bfdaa0a9ec95a2dd",
- "kws": {
- "fr": [
- "être debout"
- ]
- }
- },
- {
- "nm": "vouloir",
- "id": "3b0d130714f456d8c123039053854a3731fab1cdbb116e8b1c573aa8bb4026f5",
- "kws": {
- "fr": [
- "vouloir",
- "aimer",
- "amoureuses"
- ]
- }
- },
- {
- "nm": "réservoir d\u0027eau",
- "id": "bb69be4ba3220df5ca4bd6e2a0171c1612fa774a2f2bd000da104bfda8947af3",
- "kws": {
- "fr": [
- "réservoir d\u0027eau",
- "réservoir"
- ]
- }
- },
- {
- "nm": "boîte",
- "id": "f2b601c9cbb53bfc6a923ec7554e5ffe5c2d1434262fd091c516edab515c31b9",
- "kws": {
- "fr": [
- "boîte",
- "peinture",
- "pot de peinture"
- ]
- }
- },
- {
- "nm": "voyager",
- "id": "a1552de7dfa5727414c3fa51e726777341f9ea2e7e97f2dfa712d99dc0068e7e",
- "kws": {
- "fr": [
- "voyager",
- "voyageur",
- "prendre le bus",
- "monter dans le bus"
- ]
- }
- },
- {
- "nm": "fessier",
- "id": "90fc578b0ed6fdbb429c3325148e0be70b4fecda9102102f5a56db2889a748a3",
- "kws": {
- "fr": [
- "fessier"
- ]
- }
- },
- {
- "nm": "ligature des trompes",
- "id": "a098762ea11e94120e267f8092c7fbdb7e4b236d7b34455d0e435a5b85660fa8",
- "kws": {
- "fr": [
- "ligature des trompes"
- ]
- }
- },
- {
- "nm": "électricien",
- "id": "b9e1db838b9a78cfe3208d4af137600841c275af22561d825949ff8e5b45ca04",
- "kws": {
- "fr": [
- "électricien"
- ]
- }
- },
- {
- "nm": "elle",
- "id": "883bac5740851831bb4b834f789711f37a34fc31e5567b3807508798e6d62099",
- "kws": {
- "fr": [
- "elle"
- ]
- }
- },
- {
- "nm": "tortue d\u0027eau douce",
- "id": "8504d46027a5013cff7504d725f429fddc70f78472503c0ecaf5ff0b0a6902b6",
- "kws": {
- "fr": [
- "tortue d\u0027eau douce",
- "tortue"
- ]
- }
- },
- {
- "nm": "afrique du sud",
- "id": "8bfea9403f4ca3a71e54f79bec1acf0a9dbc523eb7d6dce835c5337aa43e48d4",
- "kws": {
- "fr": [
- "afrique du sud"
- ]
- }
- },
- {
- "nm": "choses",
- "id": "df01f2b51f839b3333ded754398dd05899ec5d115363e3145cd7e6cc5288b8c1",
- "kws": {
- "fr": [
- "choses",
- "objet",
- "objets"
- ]
- }
- },
- {
- "nm": "elles",
- "id": "bf92d63cfe886de1dbb15595249ce342ee562e5a8a89a16497673ec873170fe5",
- "kws": {
- "fr": [
- "elles"
- ]
- }
- },
- {
- "nm": "fauteuil roulant",
- "id": "fcc7b44ad37aed672fe3fca19f239eb4971a1d0895c8ad569949fa2b1e2e232b",
- "kws": {
- "fr": [
- "fauteuil roulant"
- ]
- }
- },
- {
- "nm": "serre-tête",
- "id": "95f42d7a3f0b32e04611bf6cb92f600f59819d3f2b2c3e1c89b379b7436ce2a3",
- "kws": {
- "fr": [
- "serre-tête"
- ]
- }
- },
- {
- "nm": "ex",
- "id": "117917b17bcf4a9030c3ae8515759d8a56299360bbd3e6692f9157b50a16b099",
- "kws": {
- "fr": [
- "ex",
- "non"
- ]
- }
- },
- {
- "nm": "étui à lunettes",
- "id": "5fe6931e48cde8fb50fa628ac764edf529202288b50574dc42700f3059d24f32",
- "kws": {
- "fr": [
- "étui à lunettes",
- "housse"
- ]
- }
- },
- {
- "nm": "nos",
- "id": "1580d19b838fe174d90cc45fcfcfbe00c19b23a7169a91a134fc09f8a2b94adb",
- "kws": {
- "fr": [
- "nos",
- "nôtres"
- ]
- }
- },
- {
- "nm": "moniteur",
- "id": "6bbaf19c81522012cf3cc3e0589efb01f162b38a9165a3d6d107b484582b1863",
- "kws": {
- "fr": [
- "moniteur"
- ]
- }
- },
- {
- "nm": "langue",
- "id": "019d8bbfff4bad2c7e5626cb166f237fa1d643a997b27d7177f332640812fac0",
- "kws": {
- "fr": [
- "langue"
- ]
- }
- },
- {
- "nm": "faire des démarches",
- "id": "c5cadb1768d3096fbf9a7e04fb4206d7e7ffc3ab554318943ced3ff30e8187de",
- "kws": {
- "fr": [
- "faire des démarches"
- ]
- }
- },
- {
- "nm": "noël",
- "id": "a99503f91cb222e99c8168dd01d03c42a0804fe500d3e6b4e2519d0f2e1b85af",
- "kws": {
- "fr": [
- "noël"
- ]
- }
- },
- {
- "nm": "valeur",
- "id": "7fa53fffca142e6f80296ef5dd2250d488169961eeba615d391f86ca9f5d0d65",
- "kws": {
- "fr": [
- "valeur",
- "prix",
- "étiquette"
- ]
- }
- },
- {
- "nm": "être debout",
- "id": "f1fe1ad34787b4132a1e9663b38533d62a42b14699adf4a8581c0a33d834988a",
- "kws": {
- "fr": [
- "être debout"
- ]
- }
- },
- {
- "nm": "âge",
- "id": "c4414f5c9213d996ed9e8dc94fff02718eb1ea710bf33ce5ab23c4be32748b93",
- "kws": {
- "fr": [
- "âge",
- "que âge as-tu"
- ]
- }
- },
- {
- "nm": "donner la main",
- "id": "534a9cd75d39540527c9acc2ad7429f9d521b5062ad84a57191248284f87efa3",
- "kws": {
- "fr": [
- "donner la main",
- "saluer"
- ]
- }
- },
- {
- "nm": "bandeau",
- "id": "a6311d0a1113f881397a1d512d4c00c895da2b8ae7f6791b58fa81d373d30ad7",
- "kws": {
- "fr": [
- "bandeau",
- "ruban"
- ]
- }
- },
- {
- "nm": "nièce",
- "id": "1147aa1edc31b405c9946cdbcdcfac47dad2f36d010da2356024259a5ce402ba",
- "kws": {
- "fr": [
- "nièce"
- ]
- }
- },
- {
- "nm": "galettes au chocolat",
- "id": "6e5768c8c95a8ed92199b7bc6fdd1068808f7c06b1b823297a0c473942102414",
- "kws": {
- "fr": [
- "galettes au chocolat",
- "galettes",
- "gâteau au chocolat"
- ]
- }
- },
- {
- "nm": "pompons",
- "id": "8c6370fd0ed39ae9c9c549f774503360342c8d9367f9f34ec7898b247ae9ceb9",
- "kws": {
- "fr": [
- "pompons"
- ]
- }
- },
- {
- "nm": "ballon main",
- "id": "9f44c8e1e46762b06665a2470b9bb351b361793ce7bee107b4bfb7b7b829beea",
- "kws": {
- "fr": [
- "ballon main",
- "jouer au hand-ball"
- ]
- }
- },
- {
- "nm": "patates au chorizo",
- "id": "358d65b7c360179674df27c6877943b0ee413a76ce700807eb7e00602e8621ae",
- "kws": {
- "fr": [
- "patates au chorizo"
- ]
- }
- },
- {
- "nm": "table de salon",
- "id": "6c9b19b2717c45bb3f1b09eab825fae876fc23bc14ae74f683d2626f90ecea82",
- "kws": {
- "fr": [
- "table de salon",
- "table"
- ]
- }
- },
- {
- "nm": "bêler",
- "id": "e4280a20514f86827a60d9060cf3ae40c6af863c9dd39c8e286adb6ae1bb773e",
- "kws": {
- "fr": [
- "bêler"
- ]
- }
- },
- {
- "nm": "droite",
- "id": "6f1bebc097cd93aaf8f1722b639b3bfd3b054b885451c3ca5a5359df9342dcee",
- "kws": {
- "fr": [
- "droite"
- ]
- }
- },
- {
- "nm": "s\u0027appuyer",
- "id": "2c07fd4a844fe8fb48aa1e65a122805ea8444912c2d08e222ce4b9b5a23ebea0",
- "kws": {
- "fr": [
- "s\u0027appuyer"
- ]
- }
- },
- {
- "nm": "étoile de noël",
- "id": "4340e7420efcc53bae320e8166baff262e6575c5bc73c66235272e14c3c1eea8",
- "kws": {
- "fr": [
- "étoile de noël",
- "étoile"
- ]
- }
- },
- {
- "nm": "stimulation",
- "id": "e627d0d40be5eb86f229a595c7007610d5f5fa06931ab13af746a0fa79f18a5b",
- "kws": {
- "fr": [
- "stimulation",
- "salle de stimulation",
- "salle multi-sensorielle"
- ]
- }
- },
- {
- "nm": "couturier",
- "id": "064a000ef84ac5511d7bcb409891b4a84b0d37a754793f9fa2f2f5f08fc31011",
- "kws": {
- "fr": [
- "couturier"
- ]
- }
- },
- {
- "nm": "partager",
- "id": "dfed54b0338b66a05d98d53c59eb62389cb1d67536fc22f66777ac1e2da27461",
- "kws": {
- "fr": [
- "partager"
- ]
- }
- },
- {
- "nm": "réduire",
- "id": "8a8ee0b7288fd039a66b11b49209a448cc7deab4f1e5f7836be3c9a1c9d98404",
- "kws": {
- "fr": [
- "réduire"
- ]
- }
- },
- {
- "nm": "sortie",
- "id": "9ce6cb88ed306be1f33a77821c60ccadf0f5c008d04f677f4c7392579433a8ba",
- "kws": {
- "fr": [
- "sortie"
- ]
- }
- },
- {
- "nm": "service d\u0027insertion professionnelle",
- "id": "a7d1b4c1a0ce021127326d48a25bcecc142b73858fb421e4d2c7cc567f2e8e11",
- "kws": {
- "fr": [
- "service d\u0027insertion professionnelle",
- "service d\u0027occupation"
- ]
- }
- },
- {
- "nm": "porte battante",
- "id": "84aeb033d2bbe94e3b2821b69447ffdeb14c2a13d7c8fbdd3f0d8d8604381871",
- "kws": {
- "fr": [
- "porte battante"
- ]
- }
- },
- {
- "nm": "pêcher",
- "id": "3f9af45993fb36a8d6337df1cb1e29aa6e5532bfec73af5553b0818e730c1c62",
- "kws": {
- "fr": [
- "pêcher",
- "pêcheur",
- "pêche",
- "marin"
- ]
- }
- },
- {
- "nm": "whisky",
- "id": "8a86fdbb5d668fea147b6e882b28a2448cfc70acbf978f474c16d934186d8e50",
- "kws": {
- "fr": [
- "whisky"
- ]
- }
- },
- {
- "nm": "chrétienne",
- "id": "43a78c329bd2a0748d5a32eecf082ed992100ca7757ce1b2f58dcc47fe1dd67d",
- "kws": {
- "fr": [
- "chrétienne",
- "chrétien"
- ]
- }
- },
- {
- "nm": "militaires",
- "id": "e7a0022c2babdf355663a1facc075534200f6a1d5c0c93aa266ae6dfa4ebf23b",
- "kws": {
- "fr": [
- "militaires",
- "soldats",
- "armée"
- ]
- }
- },
- {
- "nm": "décoration",
- "id": "e2d97134a310a7e3688cd6e0abf232244be7ed93ffc2050ff3ab62c5688cb8f6",
- "kws": {
- "fr": [
- "décoration",
- "décorer",
- "orner"
- ]
- }
- },
- {
- "nm": "neveu",
- "id": "74f81197364685ea4acd1471732e93a094d3e52f5c74d2e83cd6ada361459a0b",
- "kws": {
- "fr": [
- "neveu"
- ]
- }
- },
- {
- "nm": "vitesse",
- "id": "1522868139a9332b2a636b13375ac1e685652863a68ade818fa70d885eb6fc17",
- "kws": {
- "fr": [
- "vitesse"
- ]
- }
- },
- {
- "nm": "célèbre",
- "id": "86262d39e07c6c430127ca67d41a28bed88e1cf5522a4e6c90c0bb2f134dbbcf",
- "kws": {
- "fr": [
- "célèbre"
- ]
- }
- },
- {
- "nm": "deux heures",
- "id": "73bc79ef40e9751d380943624d1cf095561c7a8530aa8087e14edfbad3ff7f40",
- "kws": {
- "fr": [
- "deux heures",
- "midi pile"
- ]
- }
- },
- {
- "nm": "frire",
- "id": "6315d5e13c2760346159afe5f62b8c4a2a41ec2af4acfe878feb3a28e9e905a8",
- "kws": {
- "fr": [
- "frire"
- ]
- }
- },
- {
- "nm": "vautour",
- "id": "e3bab213f1a62f0925bc987e45d33c590cc2550a56811d42c3e322fe772ba6b6",
- "kws": {
- "fr": [
- "vautour"
- ]
- }
- },
- {
- "nm": "document",
- "id": "022e3ad859860881d4014f363fdb6d2045314151cf3734a54e37cd7edcf3aa28",
- "kws": {
- "fr": [
- "document"
- ]
- }
- },
- {
- "nm": "pma",
- "id": "73341a3393131cf6e69ee012e9c4622bbe6cfd51e6da5dfdf46abb6255776fad",
- "kws": {
- "fr": [
- "pma"
- ]
- }
- },
- {
- "nm": "regrouper",
- "id": "b74bd83e727185885fa893a1a2ad7e751fdf8234668bdf012d42ec81dbd8accc",
- "kws": {
- "fr": [
- "regrouper",
- "groupes",
- "assembler"
- ]
- }
- },
- {
- "nm": "bouillir",
- "id": "5b52801d7155cdbb496277244eb2018ec7858f172eca569b2d8491bd5fc69e32",
- "kws": {
- "fr": [
- "bouillir"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "47ee788306d93d317cbae46d915a0adcf380859c38770ed765b2c0eb51b20289",
- "kws": {
- "fr": [
- "faire de l\u0027exercice"
- ]
- }
- },
- {
- "nm": "dix-sept",
- "id": "62a0451aa058713fadda16e344d84288016b5e4731c3f62c233ede76889ad887",
- "kws": {
- "fr": [
- "dix-sept",
- "17"
- ]
- }
- },
- {
- "nm": "bureau pour l\u0027emploi",
- "id": "85420d541ae7f5edd9e4763b5d3a94788ee7951852eb51003b017ace4bf85707",
- "kws": {
- "fr": [
- "bureau pour l\u0027emploi"
- ]
- }
- },
- {
- "nm": "données personnelles",
- "id": "5943a727d39876712c4a0df0fa2029faf980e9a5262ae7f681eb937e11ae2426",
- "kws": {
- "fr": [
- "données personnelles"
- ]
- }
- },
- {
- "nm": "désinfecter",
- "id": "22f51357b187c2b6f1ade110c554a66241e2962e4ec3eea043e15cd6850fb5b1",
- "kws": {
- "fr": [
- "désinfecter"
- ]
- }
- },
- {
- "nm": "polo",
- "id": "058eed3af50b77fde75dbf1b2040488ee2aa17d0286f72498df18039079b5926",
- "kws": {
- "fr": [
- "polo"
- ]
- }
- },
- {
- "nm": "balai",
- "id": "3800333685e623689664205a50f73d87f27b1079603f9fc81f2c77b48903f48b",
- "kws": {
- "fr": [
- "balai"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "2a9e6dca81781d08c1a30465d878b4d0355de5fd256a159dcaa6cf3989fb153d",
- "kws": {
- "fr": [
- "communauté autonome",
- "navarre"
- ]
- }
- },
- {
- "nm": "chouchou",
- "id": "078ea926efdaf7fa248f7b356d39a8bd2c50cc6ec754ef92ea671830fb340bff",
- "kws": {
- "fr": [
- "chouchou"
- ]
- }
- },
- {
- "nm": "conférence",
- "id": "f1d266e7ad2d4414ce2daf4bf7359200ef6f8aa6029a4922a1842c7612f5f535",
- "kws": {
- "fr": [
- "conférence"
- ]
- }
- },
- {
- "nm": "savonner",
- "id": "d746ff8d2fd11062c5259ceb80623fb846dacaa2e18cc6e6639f1db602704c37",
- "kws": {
- "fr": [
- "savonner",
- "se savonner"
- ]
- }
- },
- {
- "nm": "pyramide",
- "id": "d6f60bc73a0c6c1bb1a5de35e00812f8d159d72dd213570640eed2acf8f2ac72",
- "kws": {
- "fr": [
- "pyramide"
- ]
- }
- },
- {
- "nm": "morceau",
- "id": "2796b340e38ecab0aab2adf0d4e70570baeca13d7a8f6e1021e3b88652ade969",
- "kws": {
- "fr": [
- "morceau"
- ]
- }
- },
- {
- "nm": "anchois",
- "id": "9b18dcaaa25bdd43b13005f9a17627e572df2ab9a7d24a80c80c25242ef95d8f",
- "kws": {
- "fr": [
- "anchois"
- ]
- }
- },
- {
- "nm": "ocre",
- "id": "02ade94f5cc5c87f693efa3225089d7d6015cf4887e8af58b774e1efb6f955be",
- "kws": {
- "fr": [
- "ocre"
- ]
- }
- },
- {
- "nm": "mineur",
- "id": "b357eb7f0333484206bf109962db532a5959ec02ed7c4fa86d97b31f66cedf7e",
- "kws": {
- "fr": [
- "mineur"
- ]
- }
- },
- {
- "nm": "shampoing",
- "id": "304305fcbcaafb01cf09adc6fd29eec4870bb2d4fe2524d884c3eb52d50241e6",
- "kws": {
- "fr": [
- "shampoing"
- ]
- }
- },
- {
- "nm": "continent",
- "id": "5b90c90090e505cdff713677abf052df5288174c715d3e84d975300666995da3",
- "kws": {
- "fr": [
- "continent",
- "afrique"
- ]
- }
- },
- {
- "nm": "lycée",
- "id": "ef74aeefb54e7d8e09fcde0d207dc7396eb33f5950685dc190a273e92cbd111c",
- "kws": {
- "fr": [
- "lycée"
- ]
- }
- },
- {
- "nm": "roumanie",
- "id": "fb1dedb4ccb8d5b37681706496845c07502fc16157b474245727f44e169d4fde",
- "kws": {
- "fr": [
- "roumanie"
- ]
- }
- },
- {
- "nm": "presse-agrumes",
- "id": "00e10820826d2d8f19fbac6b47a25f799a3856c81fdedf6c845eeb0c722df428",
- "kws": {
- "fr": [
- "presse-agrumes"
- ]
- }
- },
- {
- "nm": "président",
- "id": "cc5a9e37e9f4f33623e712ad275cf43b5944fac17c344ce24643190d23503b8c",
- "kws": {
- "fr": [
- "président"
- ]
- }
- },
- {
- "nm": "radiographie",
- "id": "1410b60a2df63e9b50ad303e7e4a9fbcaff17e6fc9a19e2b5c295d7296d536ce",
- "kws": {
- "fr": [
- "radiographie",
- "rayons x"
- ]
- }
- },
- {
- "nm": "cave",
- "id": "e525aedc99bc13a15a4a8c84ea55955c33c0abbd0d6379b253e736b2796f77d7",
- "kws": {
- "fr": [
- "cave"
- ]
- }
- },
- {
- "nm": "boîte de conserve de sardines",
- "id": "5c5393a269a6e655a9cfdd21f9d425c4f32c1f9e03ebbc0cdffdd04391e82720",
- "kws": {
- "fr": [
- "boîte de conserve de sardines"
- ]
- }
- },
- {
- "nm": "optimisme",
- "id": "6cdfabc80ea612d5dd836e2e5b539c0742c07889321cdbd2c870a16f0e0ad25c",
- "kws": {
- "fr": [
- "optimisme"
- ]
- }
- },
- {
- "nm": "étable",
- "id": "78f74cc66f291bf3ce67a90ae4dbf139157f04b500db582ba4990b65d7f5b656",
- "kws": {
- "fr": [
- "étable"
- ]
- }
- },
- {
- "nm": "curieux",
- "id": "ae0e1bad2242fb7286f1dd9df1df187f538be317534b4bbc0f0f3aaadd9592c5",
- "kws": {
- "fr": [
- "curieux"
- ]
- }
- },
- {
- "nm": "verser",
- "id": "d8a4023cd897c36d8a414e598c4e19c8aeb7c15de9706424185a4ed92b812334",
- "kws": {
- "fr": [
- "verser",
- "bonbon"
- ]
- }
- },
- {
- "nm": "corps",
- "id": "2556e25bd4550da9b9bd9b133af5bafae33c0d9ea3b77aa976666a8d08e04c36",
- "kws": {
- "fr": [
- "corps"
- ]
- }
- },
- {
- "nm": "recommandée",
- "id": "648e4a0669b5d634661f5c116606d36ab1976dded13cf441bb4814e3ac7b62bb",
- "kws": {
- "fr": [
- "recommandée",
- "lettre recommandée"
- ]
- }
- },
- {
- "nm": "embrasser",
- "id": "234c7d51b7b00348c7a1bbbaf70dbc95ad658348ac6ea1dbbfe46c5c2fe16f4e",
- "kws": {
- "fr": [
- "embrasser",
- "donner un bisou",
- "baiser"
- ]
- }
- },
- {
- "nm": "rasoir électrique",
- "id": "c88acdad8fe1a49e03f93f892b0a0760ee8f113dc30048b9ec3252b4c71b47c5",
- "kws": {
- "fr": [
- "rasoir électrique"
- ]
- }
- },
- {
- "nm": "ciseaux",
- "id": "f9bde3ff1cb83ee2eb65a267864125c105d6b094ae3d77019445c2207df0de93",
- "kws": {
- "fr": [
- "ciseaux"
- ]
- }
- },
- {
- "nm": "bouée de sauvetage",
- "id": "4ceec7731d8230d930647532afcb944f89f7b8b992333f6b78069cd877a2b169",
- "kws": {
- "fr": [
- "bouée de sauvetage",
- "bouée"
- ]
- }
- },
- {
- "nm": "flan",
- "id": "e081c147a26664350ad4757fd33786aee4e3819d190c776ef32373e237ebfabc",
- "kws": {
- "fr": [
- "flan"
- ]
- }
- },
- {
- "nm": "accueil du public",
- "id": "42f410467402524eca723b669adeae04c0b2f50ca791be8b5a6ea70ac2bb95d3",
- "kws": {
- "fr": [
- "accueil du public"
- ]
- }
- },
- {
- "nm": "chalumeau",
- "id": "f325163e67e05ffda805cd0cfbcd3237d0cc01a6a2e614d9a0f398b6ff7d6d7e",
- "kws": {
- "fr": [
- "chalumeau"
- ]
- }
- },
- {
- "nm": "élévatrice",
- "id": "86a95530cbd7913b54eaf2f42330ed65a431d6cdef5f4178e7c3ed74e9ef0ebf",
- "kws": {
- "fr": [
- "élévatrice"
- ]
- }
- },
- {
- "nm": "personnes",
- "id": "a8f5e35f14ad9a690de48beac7cafafeebc1149afaabceee925ea979e74d206b",
- "kws": {
- "fr": [
- "personnes",
- "gens",
- "groupe"
- ]
- }
- },
- {
- "nm": "sur",
- "id": "563efb68fffb00754e75d222936e28d339bd0466e7ba9ece46c54ee4e528183c",
- "kws": {
- "fr": [
- "sur"
- ]
- }
- },
- {
- "nm": "cigarette",
- "id": "d59cae8ea8da0a200f1e533086c5beed2a4fa2f09de8cebcce2e8aefaa0cfc5a",
- "kws": {
- "fr": [
- "cigarette"
- ]
- }
- },
- {
- "nm": "le petit poucet",
- "id": "2fa2c179a9aa06ad2c36472f58b7eae1173f27d69dc2eeab0d140f220979f0e2",
- "kws": {
- "fr": [
- "le petit poucet"
- ]
- }
- },
- {
- "nm": "effacer",
- "id": "7f82597d2d872738159586afb2aa0279f412dc88b3db74e001fef0ed7d1bf5b5",
- "kws": {
- "fr": [
- "effacer",
- "effacer"
- ]
- }
- },
- {
- "nm": "comment vas-tu",
- "id": "8f735c1109f2a919a11fe7dd665bb1f013802f6b20eb86480b120d8319fff8d3",
- "kws": {
- "fr": [
- "comment vas-tu"
- ]
- }
- },
- {
- "nm": "retirer",
- "id": "59ab97a9b581dc26f9bd10e2b67255e69bfd99f6386d6e6e9b0b9628e70aa4c5",
- "kws": {
- "fr": [
- "retirer"
- ]
- }
- },
- {
- "nm": "éteindre",
- "id": "b53bf81c32874914d3e96011c654e8bcaf967f373eb45c592beaddafc4650a6d",
- "kws": {
- "fr": [
- "éteindre"
- ]
- }
- },
- {
- "nm": "organe",
- "id": "e104336428b95648b9783ca7b82094675a6bb439a27594aa010e1039964f4c02",
- "kws": {
- "fr": [
- "organe",
- "foie"
- ]
- }
- },
- {
- "nm": "crawl",
- "id": "cac54d2b88beb201fb0b167fdd5ddcb31411f905979236ed5eb2f518a909918d",
- "kws": {
- "fr": [
- "crawl"
- ]
- }
- },
- {
- "nm": "se retrouver seul",
- "id": "3c2f5732bb3d990667936cd00a33085152093c35deb8e243f1554de79ebda62b",
- "kws": {
- "fr": [
- "se retrouver seul"
- ]
- }
- },
- {
- "nm": "ketchup",
- "id": "631e58e6a65c6c9ebfd2ed84d416d8ee6025160fd12c8c393761ba22fffd744b",
- "kws": {
- "fr": [
- "ketchup",
- "ornement",
- "sauce ketchup"
- ]
- }
- },
- {
- "nm": "crotales",
- "id": "f24baaa7d5d200f6848b70da7f6be603c19af84beb69089d6d2a86329c78fede",
- "kws": {
- "fr": [
- "crotales",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "jean baptiste",
- "id": "c545a61e7af5e8f6364fa7e4aa8fc8d68186743b6a21dee13d59395057a3b6a2",
- "kws": {
- "fr": [
- "jean baptiste",
- "saint jean"
- ]
- }
- },
- {
- "nm": "fruitier",
- "id": "21167ed6c7930b61a51688599c3a2847a8e8de2b6c35fef8cf55e8233f23f695",
- "kws": {
- "fr": [
- "fruitier"
- ]
- }
- },
- {
- "nm": "toucan",
- "id": "c72a241d4524bf5ccbcbe993a287fd15dc1d1f3af3725037122a2092657cf07e",
- "kws": {
- "fr": [
- "toucan"
- ]
- }
- },
- {
- "nm": "dénoncer",
- "id": "f6bd5627d3f2512bc53582f2a4c756fae12b25fff3a008cb84c9f7c33c98537d",
- "kws": {
- "fr": [
- "dénoncer"
- ]
- }
- },
- {
- "nm": "regrouper",
- "id": "916119c0c24d7e26b083626f85619f23495e53035a574f42ba061786d975be1b",
- "kws": {
- "fr": [
- "regrouper",
- "assembler"
- ]
- }
- },
- {
- "nm": "ouvrier dans le bâtiment",
- "id": "ceacfa041145abb546818e5e18b91d6e75200eb581882946fc1171f8ee02cc14",
- "kws": {
- "fr": [
- "ouvrier dans le bâtiment",
- "ouvrière",
- "maçon"
- ]
- }
- },
- {
- "nm": "paraguay",
- "id": "4a4bd4a28e70fde717c75137247f9817565dd0f95c185debec6cf1ed4480349e",
- "kws": {
- "fr": [
- "paraguay"
- ]
- }
- },
- {
- "nm": "nourriture",
- "id": "bcd7f7ca1c420ef6c17c7d0d250482ce07ead0692d308ecba5857365c706fb03",
- "kws": {
- "fr": [
- "nourriture"
- ]
- }
- },
- {
- "nm": "photographe",
- "id": "f0428a39cfb4db98cda04c645a04a2efe5cc912cc37192589e2fd7b9d0c3ea84",
- "kws": {
- "fr": [
- "photographe"
- ]
- }
- },
- {
- "nm": "grue",
- "id": "d944bb7424018efab9c7ca0775093d10c2663f2955dfbdfcd14ef65ca34ed7cc",
- "kws": {
- "fr": [
- "grue"
- ]
- }
- },
- {
- "nm": "cacahuètes",
- "id": "6f5b973e7858057d0a2abe5af58edb40f7f1f6127151397ff2850a4a94f24c69",
- "kws": {
- "fr": [
- "cacahuètes",
- "fruits secs"
- ]
- }
- },
- {
- "nm": "enveloppe",
- "id": "4f6437ed9bdac96e32a4100170ca1f09f02f461da9140856ba889d021918c847",
- "kws": {
- "fr": [
- "enveloppe"
- ]
- }
- },
- {
- "nm": "ours panda",
- "id": "7e129bc88e316df51643e8d5ab1e6d70d6880e95f23e9261d7292bca63f95aeb",
- "kws": {
- "fr": [
- "ours panda",
- "ours",
- "panda"
- ]
- }
- },
- {
- "nm": "rayons",
- "id": "50f296e397e24c200747887bc48a6ecc5cd77ca6f35c94ec64dc46af0a3ba39e",
- "kws": {
- "fr": [
- "rayons"
- ]
- }
- },
- {
- "nm": "épaule",
- "id": "26cbdfb749a34fc7798d46d4766e6cbe391cb0b494236ea06388a3ece3cd372f",
- "kws": {
- "fr": [
- "épaule"
- ]
- }
- },
- {
- "nm": "médecin rééducateur",
- "id": "535535adc46ff28ac356abc255541b3abbd436a23cfa3787d9beca419ffb9c83",
- "kws": {
- "fr": [
- "médecin rééducateur",
- "médecin",
- "rééducatrice"
- ]
- }
- },
- {
- "nm": "donner un coup",
- "id": "f88431a0413a86af16aff69e2a2b073f1527ca333fd96f15f588aef119dd1607",
- "kws": {
- "fr": [
- "donner un coup"
- ]
- }
- },
- {
- "nm": "calculatrice",
- "id": "0c0dcf339bf3e552b0dd88bfc2979b171100aed9e7bf00602ff52e78e3e3c32f",
- "kws": {
- "fr": [
- "calculatrice"
- ]
- }
- },
- {
- "nm": "enfiler",
- "id": "07a14e06716d70e2bee296e58fb656cfc5a247fbee03ce888c5c1625296da179",
- "kws": {
- "fr": [
- "enfiler"
- ]
- }
- },
- {
- "nm": "bronzer",
- "id": "6834f27ec105ef5280975bb8c2e2f808674354f4d3c1a297df6e80ba535d3945",
- "kws": {
- "fr": [
- "bronzer"
- ]
- }
- },
- {
- "nm": "beignets",
- "id": "8147576b90bc68fd23d59fda07aca495ead738087d870ca26747521c9e13d0c2",
- "kws": {
- "fr": [
- "beignets"
- ]
- }
- },
- {
- "nm": "recycler",
- "id": "6e04b87aae1ee8a5aa6ebf02b61e5a559aea6b55e0a781ca475b5330861dfe74",
- "kws": {
- "fr": [
- "recycler"
- ]
- }
- },
- {
- "nm": "cubes empilables",
- "id": "578a9bdcb9231b9981f0729e42ad2565f3e6774f411d8e80205aefb423bac71e",
- "kws": {
- "fr": [
- "cubes empilables",
- "cubes"
- ]
- }
- },
- {
- "nm": "nettoyer le derrière",
- "id": "da88a9793f7e8f9597810c227de512c260d5e5489134522a1712b186dfe8b93e",
- "kws": {
- "fr": [
- "nettoyer le derrière",
- "nettoyer"
- ]
- }
- },
- {
- "nm": "entrepôt",
- "id": "7a25a5a0f6a1ddbbaa4c046eb08b4e9cf083ba3828be5bfcf85c36a80b545afd",
- "kws": {
- "fr": [
- "entrepôt",
- "signalétique",
- "local de ménage"
- ]
- }
- },
- {
- "nm": "boxeur",
- "id": "4134d4ce5be453f36a7787b6de9c6b6a53df72edd10f4ce62e960ed8d3067774",
- "kws": {
- "fr": [
- "boxeur"
- ]
- }
- },
- {
- "nm": "poire",
- "id": "527f12742f9e5180d260d10bb6c3a1ce23ed64a0e1b1d9caf5b8d146905ffdd7",
- "kws": {
- "fr": [
- "poire"
- ]
- }
- },
- {
- "nm": "muffin",
- "id": "c8d3e87e11b3989b0940237bd9699135e3174307e8ea0111d7f27fb41074aedd",
- "kws": {
- "fr": [
- "muffin"
- ]
- }
- },
- {
- "nm": "chaussures de sport",
- "id": "f6f13c58a15733398cf7b137e1cd32573f6c2ffe46818babc1f7ad4f512b64bc",
- "kws": {
- "fr": [
- "chaussures de sport"
- ]
- }
- },
- {
- "nm": "ensoleillé",
- "id": "1b71c0fafb3bc65d100ae8ecf30ddd8dcec748bea204a601b2390e24ceb70b6b",
- "kws": {
- "fr": [
- "ensoleillé"
- ]
- }
- },
- {
- "nm": "batteur",
- "id": "521b4cef896e5b96b89c0e0b983c552a046150ac9fb277e7c673b9490f9a7011",
- "kws": {
- "fr": [
- "batteur"
- ]
- }
- },
- {
- "nm": "judoka",
- "id": "dd9b5cf339d12b49214e3660a088319355f2bfcd833be1a12d097beec99e2a34",
- "kws": {
- "fr": [
- "judoka"
- ]
- }
- },
- {
- "nm": "économiser",
- "id": "fc76064bad9ab935b9617aa68bd81721b414e79fb0960fd1e162746e4c212cb8",
- "kws": {
- "fr": [
- "économiser"
- ]
- }
- },
- {
- "nm": "se reposer",
- "id": "b95c33af57b9877af8f5241269ce4af82859f987e565904560b8a790b84482bd",
- "kws": {
- "fr": [
- "se reposer",
- "reposer"
- ]
- }
- },
- {
- "nm": "eau de javel",
- "id": "57e4188b9e7ccb4980da4e1a50c6ac0a1eec14e49d17ee75bee2a8f314f3d5e0",
- "kws": {
- "fr": [
- "eau de javel"
- ]
- }
- },
- {
- "nm": "enfance",
- "id": "e0831a0b2b2729fa8d9e39c356491f39fca299c53458bb29c0d2a15a6a9d5fa4",
- "kws": {
- "fr": [
- "enfance"
- ]
- }
- },
- {
- "nm": "produit de soutien",
- "id": "f3d927b6d2da6cca3028814c94eeeca8fa9e360250812ffccd1d3a95f4fe8da5",
- "kws": {
- "fr": [
- "produit de soutien",
- "bon marcheur"
- ]
- }
- },
- {
- "nm": "planète",
- "id": "5158351cca6e038a0b33dc29ac8ba19805dd2371946d2f426156ad5211a815aa",
- "kws": {
- "fr": [
- "planète",
- "neptune"
- ]
- }
- },
- {
- "nm": "donner un coup",
- "id": "1e203386dcfcc7a620bb7f4b2904e5713c500f9576a1c6185b742b65c5ff02e8",
- "kws": {
- "fr": [
- "donner un coup",
- "donner une gifle",
- "coller",
- "attaquer",
- "gifle",
- "maltraiter"
- ]
- }
- },
- {
- "nm": "obstruer",
- "id": "630b1001685b354903396d5dc8d3f4fabe6cfaa25ea3d4b3ba870ea21b1bf5ab",
- "kws": {
- "fr": [
- "obstruer",
- "boucher"
- ]
- }
- },
- {
- "nm": "plastique",
- "id": "64b0ce1331dd23920511d0f2d7995592d157138e6e1895df567704a6a626aca8",
- "kws": {
- "fr": [
- "plastique"
- ]
- }
- },
- {
- "nm": "lampadaire",
- "id": "0c8dc83bde6ada95485a5226d7cafef36870b10ecc9ce03cf53763a2b61b122c",
- "kws": {
- "fr": [
- "lampadaire"
- ]
- }
- },
- {
- "nm": "musique d\u0027orgue",
- "id": "fdf200c3cb981b57c685d7882e33a1c61e77bb3421e56393c496cf676ebe4b9e",
- "kws": {
- "fr": [
- "musique d\u0027orgue"
- ]
- }
- },
- {
- "nm": "chanteur (masc.) - chanteuse (fém.)",
- "id": "579f4fdae369bbc05e9a0750273bf5e7e0cd155a7cb7b7b505f02f471b0e4a68",
- "kws": {
- "fr": [
- "chanteur (masc.) - chanteuse (fém.)",
- "artiste"
- ]
- }
- },
- {
- "nm": "toile d\u0027araignée",
- "id": "5e71e827d2783fb442849551ef480ac762f94f23db74f0cd175cc9ccfa2a7dff",
- "kws": {
- "fr": [
- "toile d\u0027araignée",
- "toile d\u0027araignées"
- ]
- }
- },
- {
- "nm": "colonie de vacances",
- "id": "add2b93c4eb4b47a931766657cf36f7c57fecd725ab8689b8bfee6eb8766cdca",
- "kws": {
- "fr": [
- "colonie de vacances"
- ]
- }
- },
- {
- "nm": "moto",
- "id": "87f306c7963454a3e5691776690ba7ca590dcee65b27a51eabd03347d748ffaf",
- "kws": {
- "fr": [
- "moto",
- "motocyclette"
- ]
- }
- },
- {
- "nm": "arbre de printemps",
- "id": "9202f055cdf0433e2c7b9d05a48032c87ff1b85a1544f2670b5ee0c2611f5faa",
- "kws": {
- "fr": [
- "arbre de printemps"
- ]
- }
- },
- {
- "nm": "hamac suspendu",
- "id": "72d04f98d9d5156ffc008697f49f7dd2506ee569e8b6f8f5936482cf5a95ccb6",
- "kws": {
- "fr": [
- "hamac suspendu"
- ]
- }
- },
- {
- "nm": "dîner",
- "id": "f5ba0515e5d24bdc2367ef8bb4aba11cf2fe2c9c3786b6480656f3b6179a1b71",
- "kws": {
- "fr": [
- "dîner"
- ]
- }
- },
- {
- "nm": "lave-vaisselle",
- "id": "09d93f567adeb1ca439aff999245572a7ddafbd44f7cd6ca49ff60bb9b127eee",
- "kws": {
- "fr": [
- "lave-vaisselle"
- ]
- }
- },
- {
- "nm": "nouvelle zélande",
- "id": "da6606e36aa83f3360f2c19489e647b0c80ba12f1514d6f9cde34914826ef811",
- "kws": {
- "fr": [
- "nouvelle zélande"
- ]
- }
- },
- {
- "nm": "water",
- "id": "d9ca9a96843557530d04213f5cf973ea22a052adfee62d44b117f84c88918305",
- "kws": {
- "fr": [
- "water",
- "baignoire",
- "signalétique",
- "salle de bain gériatrique"
- ]
- }
- },
- {
- "nm": "jus de tomate",
- "id": "27ad53d8012582bfb81eebf7e8f1d2e683be8b3f786ef2e2337649e683bd3778",
- "kws": {
- "fr": [
- "jus de tomate"
- ]
- }
- },
- {
- "nm": "lancement de javelot",
- "id": "bf58912c69ce20e1131227612b073945ac1de3075b6a1afef7a4f2e2fb5b9ae5",
- "kws": {
- "fr": [
- "lancement de javelot",
- "lancement",
- "lanceuse"
- ]
- }
- },
- {
- "nm": "finalistes",
- "id": "c20d5cd5dc7836f17359d63748982b1b215254bd311183c5f12f878daed0cac3",
- "kws": {
- "fr": [
- "finalistes"
- ]
- }
- },
- {
- "nm": "limer",
- "id": "be4d7b78aeee88dce57772484ed9f3d75bea7b4ebafba6f40598186cffe1acfc",
- "kws": {
- "fr": [
- "limer"
- ]
- }
- },
- {
- "nm": "se laver les cheveux",
- "id": "3dc676016c7a576651b37132ed22430fb891002fb35f5c654e61f1336678edc3",
- "kws": {
- "fr": [
- "se laver les cheveux",
- "laver les cheveux"
- ]
- }
- },
- {
- "nm": "ballon",
- "id": "3d9da52c8c33d47ddb6e6946ab5564e88c0505e510e46373a0e2309fe4760555",
- "kws": {
- "fr": [
- "ballon"
- ]
- }
- },
- {
- "nm": "poser",
- "id": "4ee1370b426d76128ef0acd33fff40abd7201c8b0613aa2063a43a802f98436a",
- "kws": {
- "fr": [
- "poser"
- ]
- }
- },
- {
- "nm": "ballon aérostatique",
- "id": "81f8d8e0e6397dbf382c4fca8b0ed7f931fa108f8e7e363040c6e60d3fdaa476",
- "kws": {
- "fr": [
- "ballon aérostatique",
- "ballon"
- ]
- }
- },
- {
- "nm": "lave-vitre",
- "id": "6573b94d5317c6be47176e46bdbe36363b5140b08e79bf104878a028ef731ba1",
- "kws": {
- "fr": [
- "lave-vitre",
- "lave-vitres"
- ]
- }
- },
- {
- "nm": "rayon",
- "id": "c2e1a45797a9bb9d2eb8612727fb0710cbcf0fe613ada81ebeebad82755b90f7",
- "kws": {
- "fr": [
- "rayon"
- ]
- }
- },
- {
- "nm": "hibou",
- "id": "c0336dd356fc880e0d7ef6d6719eec145ca1c816ec1a1d2c8cdb2ca5a35c8cac",
- "kws": {
- "fr": [
- "hibou"
- ]
- }
- },
- {
- "nm": "banque mondiale",
- "id": "d39d3c3573dc2b4b6fe1a0fb29936c01ea39b0957f586173db5f300129172e9c",
- "kws": {
- "fr": [
- "banque mondiale"
- ]
- }
- },
- {
- "nm": "assiette",
- "id": "b16768e9a520c3abc9b2c8f9bf436715bfae479810db958dec6ab2d8d28015c8",
- "kws": {
- "fr": [
- "assiette"
- ]
- }
- },
- {
- "nm": "place",
- "id": "ab4ad52bd73a6e2273ad20ce737d23e9133978ed77f60bae50ae008c9834158e",
- "kws": {
- "fr": [
- "place"
- ]
- }
- },
- {
- "nm": "vieille",
- "id": "149ad82428ffb08981e7e97e6d6dca17b34ff11b29f10ece7a867e3096151f1b",
- "kws": {
- "fr": [
- "vieille",
- "vieux"
- ]
- }
- },
- {
- "nm": "vertèbres",
- "id": "852dfbfce5a5947ef04026218da0ca374218a55a9c590f49acd71921fbd0eb84",
- "kws": {
- "fr": [
- "vertèbres"
- ]
- }
- },
- {
- "nm": "buts",
- "id": "39a65fdca0038292985b1d4f77bea995ab3676417cf2e25b5edf34cc7c541cbd",
- "kws": {
- "fr": [
- "buts"
- ]
- }
- },
- {
- "nm": "piquer",
- "id": "a00a839c0ed4b45ae49adec7728f81008742680359a393a3513d8307bbe46078",
- "kws": {
- "fr": [
- "piquer",
- "vaccination",
- "vacciner",
- "se faire vacciner",
- "injecter"
- ]
- }
- },
- {
- "nm": "parfumer",
- "id": "d8948d0d81dcee3bc78aa73837bb7f2c12cdf1a96d7955ec22c98dda36732097",
- "kws": {
- "fr": [
- "parfumer",
- "se parfumer"
- ]
- }
- },
- {
- "nm": "se noyer",
- "id": "4d865a7e00cd1d2b3b27e976ecad1aecca4c5f79479fa83e008c807da1044b14",
- "kws": {
- "fr": [
- "se noyer",
- "noyer"
- ]
- }
- },
- {
- "nm": "ingénieur technique",
- "id": "b121293924b02a8d3694f0ec236533579fbc627d4cb18bd050f257296f41a7d9",
- "kws": {
- "fr": [
- "ingénieur technique",
- "ingénieur"
- ]
- }
- },
- {
- "nm": "oncle",
- "id": "d4e022820334cc6c5ddd8913382be9b038f61ced3facc9f343051b144be0f4d6",
- "kws": {
- "fr": [
- "oncle"
- ]
- }
- },
- {
- "nm": "déplaire",
- "id": "9b1b9ad366b0dc5dd81162fd62aab798a96782f2e17a65de8cae1527608d59a0",
- "kws": {
- "fr": [
- "déplaire",
- "désagréable",
- "antipathique"
- ]
- }
- },
- {
- "nm": "palourde",
- "id": "958d512d7c09e99407890f7aaa654e9af54ba7644ebbbbe24bd8a6d8779289fa",
- "kws": {
- "fr": [
- "palourde",
- "coquille",
- "mollusque"
- ]
- }
- },
- {
- "nm": "turquie",
- "id": "7b01a4510971624ded7c829df2ddb87c61a697be0ef63ac3f0dd46af626c9bca",
- "kws": {
- "fr": [
- "turquie"
- ]
- }
- },
- {
- "nm": "software de communication",
- "id": "b4cf23c121823917cfdf9cba902070887843de881e4c8dae2ba7445a4ffbfd1f",
- "kws": {
- "fr": [
- "software de communication"
- ]
- }
- },
- {
- "nm": "enterrement",
- "id": "4f17d6d2019f9216850f1c30707f2e4b203289f40e1e6833ed9f697a01787fdf",
- "kws": {
- "fr": [
- "enterrement"
- ]
- }
- },
- {
- "nm": "vestiaires",
- "id": "89956e58ef9fe98226c5d8577b2ff84e33c8507145ee7b934449d726bb224330",
- "kws": {
- "fr": [
- "vestiaires"
- ]
- }
- },
- {
- "nm": "magasin d\u0027informatique",
- "id": "6389968bf522c9350c57fc35cddf4a1a01324938003c62257c1e401ff1dcd160",
- "kws": {
- "fr": [
- "magasin d\u0027informatique"
- ]
- }
- },
- {
- "nm": "instrument musical",
- "id": "72060684dc58f5761262b6d472327c8d94573dc98b26cc05a144f05cca505be7",
- "kws": {
- "fr": [
- "instrument musical",
- "maraca"
- ]
- }
- },
- {
- "nm": "douche",
- "id": "7459fb78fcb171d95688618582101019ef6cc1718be446522a8083e8f5a9d46b",
- "kws": {
- "fr": [
- "douche"
- ]
- }
- },
- {
- "nm": "hélicoptère",
- "id": "657068adf5b1a5bb63367d3adcbf6a29fdde6e1be7ca1c14e8aa93ad81d54517",
- "kws": {
- "fr": [
- "hélicoptère"
- ]
- }
- },
- {
- "nm": "toit",
- "id": "2d3ff2dc29e971254dc6a442fbca44537a94afcbc22220d667fef4d75ebe5fcb",
- "kws": {
- "fr": [
- "toit"
- ]
- }
- },
- {
- "nm": "concierge",
- "id": "d539f14cf9e4d22625525a7b44a714c4d7ffb67bb71729e926b3c236dfcdb7d4",
- "kws": {
- "fr": [
- "concierge"
- ]
- }
- },
- {
- "nm": "chapeau de pirate",
- "id": "d949e4111c281b61ad0a97515a59af748bc78ca54aedef5d31234e8e793bc078",
- "kws": {
- "fr": [
- "chapeau de pirate"
- ]
- }
- },
- {
- "nm": "toujours",
- "id": "781215563c9e338b337ee93ca691435c90d1393fcd55b5e29a0b6f35133b9acf",
- "kws": {
- "fr": [
- "toujours"
- ]
- }
- },
- {
- "nm": "crocodile",
- "id": "2b7b122f769aaff6ea2c63280ed8e80e0b4ac527af31775abb50ff48cf5cf4a2",
- "kws": {
- "fr": [
- "crocodile"
- ]
- }
- },
- {
- "nm": "kinésithérapeute",
- "id": "38e4f2ca42108ab4f0dc56653f1a75e8c5fe4565f6e44e1a9d01831bcc10addb",
- "kws": {
- "fr": [
- "kinésithérapeute"
- ]
- }
- },
- {
- "nm": "paon",
- "id": "048e5a715beb453922c3cbbff90220b4ca98f57a837c7ab98c9a7da5d850d294",
- "kws": {
- "fr": [
- "paon"
- ]
- }
- },
- {
- "nm": "trampoline",
- "id": "b3bbb2eb524d4f449809bb58b85aa597a982c4bfbf6ccbb5f851aa91ee44ae91",
- "kws": {
- "fr": [
- "trampoline"
- ]
- }
- },
- {
- "nm": "publiciter",
- "id": "97acfd06abbdcb168f65ec88935f5eab1bb9b2174e3a84a222961c646ae23763",
- "kws": {
- "fr": [
- "publiciter",
- "publicité",
- "annonces",
- "annonce"
- ]
- }
- },
- {
- "nm": "chimpanzé",
- "id": "a1596feda8694d8cb2e877c4b0b028c2cfeb0ad4816dd69010e4a70a3786733c",
- "kws": {
- "fr": [
- "chimpanzé"
- ]
- }
- },
- {
- "nm": "plan de travail",
- "id": "e77b3b07693eea597a7b65bcafc636b4c7187e06b70c726ae4de9df37e0d1960",
- "kws": {
- "fr": [
- "plan de travail"
- ]
- }
- },
- {
- "nm": "il y a du vent!",
- "id": "c35d0c7da5075009c41a433ef1cff2d3d8c3ac562b98733116a66110c6ae52c2",
- "kws": {
- "fr": [
- "il y a du vent!",
- "le vent souffle!"
- ]
- }
- },
- {
- "nm": "sain esprit",
- "id": "c9f927dc6e3478a57e66a86244529cdcf4feba099a3b3bf87d44f00e1bf06e0a",
- "kws": {
- "fr": [
- "sain esprit"
- ]
- }
- },
- {
- "nm": "jeux olympiques",
- "id": "afdc169015f2d0acf1892256b908de838b8b45b63c0ad93d5b56caed8030fa62",
- "kws": {
- "fr": [
- "jeux olympiques",
- "olympiades",
- "anneaux olympiques"
- ]
- }
- },
- {
- "nm": "aplaudir",
- "id": "358130f4380dd0e608b90850936eec1b032e4cd551746f10bb6c6168c700fed8",
- "kws": {
- "fr": [
- "aplaudir",
- "applaudir"
- ]
- }
- },
- {
- "nm": "savon pour les mains",
- "id": "dcda38300a9887f068b9bc3d31f6410f20866af64cb9f00aea268680b7d263ee",
- "kws": {
- "fr": [
- "savon pour les mains",
- "savon"
- ]
- }
- },
- {
- "nm": "jumelles",
- "id": "971af01ede3104b800149a34da045d95f34ec581b1c3a894ff4194716987f6f1",
- "kws": {
- "fr": [
- "jumelles"
- ]
- }
- },
- {
- "nm": "araignée",
- "id": "dee3f7f84286d8640390c408055f92b5060b6af591f6e07fb2b66de126f9d887",
- "kws": {
- "fr": [
- "araignée"
- ]
- }
- },
- {
- "nm": "caisse de flamenco",
- "id": "98a12278f3e6afac0680c3f37a329ca3a7aea19e426bfc532a6a287f1799637c",
- "kws": {
- "fr": [
- "caisse de flamenco",
- "caisse"
- ]
- }
- },
- {
- "nm": "plonger",
- "id": "00c6f23faa109e14ed440251ccac041bab686e104300c4d25d3354594333b564",
- "kws": {
- "fr": [
- "plonger",
- "se jeter dans l\u0027eau",
- "se jeter"
- ]
- }
- },
- {
- "nm": "iris",
- "id": "73ff11aa5377822e13cfc624fa55b0aed3691bc1c482cfd6b7385a47c9e68f8e",
- "kws": {
- "fr": [
- "iris",
- "arc-en-ciel"
- ]
- }
- },
- {
- "nm": "traverser",
- "id": "c496346ec493f8b7798c8709b1dbb7a88a5b1e82819ada049f22a2afd02b13f0",
- "kws": {
- "fr": [
- "traverser"
- ]
- }
- },
- {
- "nm": "printemps",
- "id": "228cafcb7938c0057d44b9f33138491b7bcade27946cdb89f35a76d0e962f214",
- "kws": {
- "fr": [
- "printemps",
- "gare"
- ]
- }
- },
- {
- "nm": "moniteur d\u0027atelier",
- "id": "c3e0a995532e31bbe29935ec999797ea3cd9c41a3720290e83e7c9e5e258f1c8",
- "kws": {
- "fr": [
- "moniteur d\u0027atelier",
- "moniteur"
- ]
- }
- },
- {
- "nm": "diminuer",
- "id": "33ab15a78b11b669eae8418bab166eeba6ef2b6a5808d94fbfdc59a851ae85f4",
- "kws": {
- "fr": [
- "diminuer",
- "baisser"
- ]
- }
- },
- {
- "nm": "bébé",
- "id": "45d6ef031f5935f2e78a4b89cbf7ddfe117bf90bc8dc6a88e327645aeba07fab",
- "kws": {
- "fr": [
- "bébé"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "c20aff64b03ed334dbba4fdcdbba5668a8f357cd6706748247d7e9981b2256a7",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains sur la tête",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "dix-huit",
- "id": "19f54b48b2dbf8aa4ee27cb786bfd87b8bae70d71e3063bb64c8fac6a74ad175",
- "kws": {
- "fr": [
- "dix-huit",
- "18"
- ]
- }
- },
- {
- "nm": "immeuble",
- "id": "27b2b31565474da59de7ede3d749d1a0bf6a1dad25641fc8f4604eb87168a630",
- "kws": {
- "fr": [
- "immeuble"
- ]
- }
- },
- {
- "nm": "conseiller",
- "id": "b3ebd1973993fa3445be9a6a5dc4102a0087067a201c0d3807dcf981e6e112c3",
- "kws": {
- "fr": [
- "conseiller"
- ]
- }
- },
- {
- "nm": "sortir",
- "id": "72db93407f57cabf864f6f83f545375342d0983923ac1b0687630eb19f09eb15",
- "kws": {
- "fr": [
- "sortir"
- ]
- }
- },
- {
- "nm": "opticien",
- "id": "fe135af8f32608be3fe9782f7776682ab0a3cbf13cafe601c95c5d16bb8e555d",
- "kws": {
- "fr": [
- "opticien"
- ]
- }
- },
- {
- "nm": "zoo",
- "id": "7abc78f4e99795d4764867be6ddfc8a8c710497577f1406ada5bd52d99ac9960",
- "kws": {
- "fr": [
- "zoo",
- "zoologique"
- ]
- }
- },
- {
- "nm": "centre commercial",
- "id": "f878b2fd079384552f0c56a4f72e0ee063639054638f2fef4a9776bc3c8ef0e8",
- "kws": {
- "fr": [
- "centre commercial"
- ]
- }
- },
- {
- "nm": "faim",
- "id": "dbdbe9a327edad6babb5c5fa6dd298c42de26251a16b666cb77bd60033c0bce9",
- "kws": {
- "fr": [
- "faim",
- "avoir faim",
- "affamé"
- ]
- }
- },
- {
- "nm": "ruisseau",
- "id": "d2897e20e331270dda6cfccf5388e0f848c9f8fdfa123f2a76bcb54d30318bf9",
- "kws": {
- "fr": [
- "ruisseau"
- ]
- }
- },
- {
- "nm": "légumes",
- "id": "b204fa167de327837e8dcaa9e41c8c6f51a0083d5481869cdc372af68e37731e",
- "kws": {
- "fr": [
- "légumes"
- ]
- }
- },
- {
- "nm": "cathédrale de saragosse",
- "id": "5377f5b920374b08415a96a2ae0233995f6c87d0c608e9376f29c419431caa61",
- "kws": {
- "fr": [
- "cathédrale de saragosse",
- "cathédrale",
- "château de la seo"
- ]
- }
- },
- {
- "nm": "paire",
- "id": "5d5f2c76c76fb5371fcf9b0442f9fe8569664c02f32a44b7db30d54a49b399fc",
- "kws": {
- "fr": [
- "paire",
- "huit",
- "numéro"
- ]
- }
- },
- {
- "nm": "venir",
- "id": "e40b6da0408e02e5612905ddf0f4ea8a3558fdb4707d7ccb7fcce32c893fbe23",
- "kws": {
- "fr": [
- "venir",
- "aller",
- "arriver"
- ]
- }
- },
- {
- "nm": "séville",
- "id": "6396c4697562c8c36e677b35669f9cdfa64a74eedff165f4bc6f75591a90f9cf",
- "kws": {
- "fr": [
- "séville"
- ]
- }
- },
- {
- "nm": "tenir",
- "id": "2d2c84613ef2a0cd8779b167719e0b1bcfb261da1d93159eb8ca6df69eed35c5",
- "kws": {
- "fr": [
- "tenir",
- "posséder",
- "avoir"
- ]
- }
- },
- {
- "nm": "défricher",
- "id": "075166b2f8d20d954730feb76f9ca59f0b9eaefd87f4f5ce323a28419e7287b4",
- "kws": {
- "fr": [
- "défricher",
- "arracher"
- ]
- }
- },
- {
- "nm": "mp3",
- "id": "f7d9c6202eec9319c59bb23e987fbe37e53b4f0cec6e66fd851a454614141d47",
- "kws": {
- "fr": [
- "mp3"
- ]
- }
- },
- {
- "nm": "pleurer",
- "id": "907ecf520cae22b854407bdd1e7877cbb2986f7bc84dc7c309bc73fb7b12a8c0",
- "kws": {
- "fr": [
- "pleurer",
- "praxie",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "sac de couchage",
- "id": "48187be2e0705bb70ce32bf70ec40d724196a8433210b9f07aa7bcc3d708102e",
- "kws": {
- "fr": [
- "sac de couchage",
- "sac"
- ]
- }
- },
- {
- "nm": "sens",
- "id": "10d00aaeebcb92312101b5bbf9e53e671447a73664ef5fa40071cf5935d0b38b",
- "kws": {
- "fr": [
- "sens",
- "sentir"
- ]
- }
- },
- {
- "nm": "i",
- "id": "e66360d3fcfa4a0163d6d5f597bbeca937e1c2993e19b55cde9b2df36d72ae0a",
- "kws": {
- "fr": [
- "i",
- "lettre"
- ]
- }
- },
- {
- "nm": "thérapie de groupe",
- "id": "8632deca793ed2b9e0b95e56fb1db16995d4c5bcd4091cae4cfafe7ec3f14404",
- "kws": {
- "fr": [
- "thérapie de groupe"
- ]
- }
- },
- {
- "nm": "cavalier",
- "id": "6ef48458cdf0387c972cc684ba65e9b863f3722d397dc10de5fb105be942c20e",
- "kws": {
- "fr": [
- "cavalier",
- "jockey"
- ]
- }
- },
- {
- "nm": "uranus",
- "id": "de456ddce3d19651f8d0cf0eb14a3eb704ac4f9b6c01d559881bd9af410853ed",
- "kws": {
- "fr": [
- "uranus",
- "planète"
- ]
- }
- },
- {
- "nm": "menu",
- "id": "02fc48d0b64772a5d725ce30418be882a49cbdb646e6c1bab145c521887ef62a",
- "kws": {
- "fr": [
- "menu"
- ]
- }
- },
- {
- "nm": "s\u0027asseoir",
- "id": "478dc4d4d93ff2c2c80195eae01a79dfb8d44c5e16d69b87c763e39a30c06dcf",
- "kws": {
- "fr": [
- "s\u0027asseoir",
- "asseoir"
- ]
- }
- },
- {
- "nm": "tatouer",
- "id": "a52bbe42d721bd393f2b175276d05dd46dc2cb44fa9c2b53360f8658cf91bc97",
- "kws": {
- "fr": [
- "tatouer"
- ]
- }
- },
- {
- "nm": "sucre brun",
- "id": "2d63c08db6ee639113cdbdf8fa85840e994439167069852cee497383f5d45c5c",
- "kws": {
- "fr": [
- "sucre brun"
- ]
- }
- },
- {
- "nm": "plongeur",
- "id": "170865bd26b732da0dfe2e641f661683788eb7b395ab7220343350d669d40df9",
- "kws": {
- "fr": [
- "plongeur",
- "plongeuse"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "88f4bcc600cd1764de7502506170b75acb4e2dd84c93a685ce861aa7ba276e09",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains sur le ventre",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "cours de psychomotricité",
- "id": "deb54e7e7b77c9062378c968e90685aa026afb06814fa22d9209a1ff48933afb",
- "kws": {
- "fr": [
- "cours de psychomotricité"
- ]
- }
- },
- {
- "nm": "géosphère",
- "id": "00d4185b81141a55657bf180ba6ae673646bf1e3bc6869f850032e879ad79efd",
- "kws": {
- "fr": [
- "géosphère"
- ]
- }
- },
- {
- "nm": "triceps",
- "id": "7a1616c973cd25e5d5f03b198751ae44c333692b62e16df7038b722a0936432d",
- "kws": {
- "fr": [
- "triceps"
- ]
- }
- },
- {
- "nm": "oiseau",
- "id": "1c4c66f45975ecac739154ffbd927f1629df779df735a47873d7a8091b5613f3",
- "kws": {
- "fr": [
- "oiseau"
- ]
- }
- },
- {
- "nm": "divorce",
- "id": "be5df05aca0220c5772f6dc92ac6a3e80961468c86646ea6ce7d6365a1c559dd",
- "kws": {
- "fr": [
- "divorce"
- ]
- }
- },
- {
- "nm": "sortir",
- "id": "22e8744022da4cd7611c2d11318c42c756b8221832810c9ade6ee90744d6d1f3",
- "kws": {
- "fr": [
- "sortir"
- ]
- }
- },
- {
- "nm": "visiter",
- "id": "e514a0641f54c203d66c4677085a5de056498ee762dc05ff115e2bffb583ea08",
- "kws": {
- "fr": [
- "visiter",
- "accompagner"
- ]
- }
- },
- {
- "nm": "pakistan",
- "id": "0ac6b6d7618a14b52667fbef397c13cd6f320ec2b03946a9cc3707f7cc544a32",
- "kws": {
- "fr": [
- "pakistan"
- ]
- }
- },
- {
- "nm": "elle",
- "id": "2022f8782ed0dd8eb71e042782b1e1505b94cae853e2f8e561ebe27783c210e8",
- "kws": {
- "fr": [
- "elle",
- "ce",
- "se",
- "oui",
- "le"
- ]
- }
- },
- {
- "nm": "se brosser les dents",
- "id": "907e06dd61e7de996a666ba8e08b1987f972cc41c9a1a5daaf4b291d5d7bf1ed",
- "kws": {
- "fr": [
- "se brosser les dents",
- "se laver les dents",
- "laver les dents"
- ]
- }
- },
- {
- "nm": "où habites-tu",
- "id": "92eda2aa31b92a752600950108159c1bd839987f76f3c36f65b830833fcd7c04",
- "kws": {
- "fr": [
- "où habites-tu",
- "quelle est ton adresse"
- ]
- }
- },
- {
- "nm": "jeu du mouchoir",
- "id": "bd9e50d1aa40cfc121ff5e5d9500405ee280f5e570139a2086020cb80d6fbed9",
- "kws": {
- "fr": [
- "jeu du mouchoir"
- ]
- }
- },
- {
- "nm": "monter",
- "id": "f6d95ab2810d5e0f97336946f356b8885e138a4d8682dd3178feb0479d4ed285",
- "kws": {
- "fr": [
- "monter"
- ]
- }
- },
- {
- "nm": "muette",
- "id": "39a17a9393640ede3ca38dc2bf44365f2d4a8fb1114628350a14f225cc8229a0",
- "kws": {
- "fr": [
- "muette"
- ]
- }
- },
- {
- "nm": "maïs grillé",
- "id": "917577f83985a64a3ec238cd77117c88ea2b914a8d7ed619107887638cbf188b",
- "kws": {
- "fr": [
- "maïs grillé",
- "maïs"
- ]
- }
- },
- {
- "nm": "interdit de déranger",
- "id": "d18837c45f989f652ed633f9395b3cd8be08253370c17a0bc31c67613d551e0e",
- "kws": {
- "fr": [
- "interdit de déranger"
- ]
- }
- },
- {
- "nm": "conte",
- "id": "a0a3c2efeecc7ef33f605faa1db448e61af7d9cfd8fcc6383e73e5fbe419e235",
- "kws": {
- "fr": [
- "conte"
- ]
- }
- },
- {
- "nm": "retirer",
- "id": "9b4c4017df988463782e25d3a105ce4074f45ac22a8548ebc136b57b21661b98",
- "kws": {
- "fr": [
- "retirer"
- ]
- }
- },
- {
- "nm": "chaussures à talon",
- "id": "d3f4272b3d855bf270cd4c90ae9eefc82117a02852b02f2925de76c6c8318a3e",
- "kws": {
- "fr": [
- "chaussures à talon",
- "chaussures"
- ]
- }
- },
- {
- "nm": "agiter",
- "id": "ca8e14e6076e7ec57bb04fd73c430135e18a9cede69bb11abff059712c011cc5",
- "kws": {
- "fr": [
- "agiter"
- ]
- }
- },
- {
- "nm": "bouteille vin et verre",
- "id": "0b860f06e69fd390df2b8c7959ffde3eee75fb6877875e0863332346ed7585b8",
- "kws": {
- "fr": [
- "bouteille vin et verre",
- "vin"
- ]
- }
- },
- {
- "nm": "imprimante",
- "id": "5b34eb75cf176223a796a9e8bd209885c63a045b9935c64154f2a56ebfda6a32",
- "kws": {
- "fr": [
- "imprimante"
- ]
- }
- },
- {
- "nm": "couper",
- "id": "6d062e419aa3c93a52f582927572867208e8b733715f6a07f121af705e65e82b",
- "kws": {
- "fr": [
- "couper",
- "se couper les ongles"
- ]
- }
- },
- {
- "nm": "purgatoire",
- "id": "7e554a5d20b2400e67ca0a113c1a96c96e6b4ae18094dcbee175ec74df2727d3",
- "kws": {
- "fr": [
- "purgatoire"
- ]
- }
- },
- {
- "nm": "approuver",
- "id": "b45f4d5fa07be95b70046978cd500839e72d4e2deb890f731df53500984da75f",
- "kws": {
- "fr": [
- "approuver"
- ]
- }
- },
- {
- "nm": "vêtement",
- "id": "4e5c19a967499c4bc5806f290df19535888766bbf841ad9b0c597ed3a19c6a41",
- "kws": {
- "fr": [
- "vêtement",
- "gant"
- ]
- }
- },
- {
- "nm": "projet de vie",
- "id": "be8c7e37210cb493b1909195288ee1d1c5c47d5f739214da6ea7807298b1520b",
- "kws": {
- "fr": [
- "projet de vie"
- ]
- }
- },
- {
- "nm": "autobus",
- "id": "0a1c2dd4ecbf4cd76cf14bedceda1b515e85d901d6fcb1f95babfd4292c90136",
- "kws": {
- "fr": [
- "autobus"
- ]
- }
- },
- {
- "nm": "soupe de poisson",
- "id": "07ce27edd2f8d6ace90b8e7b99a85af19e5129a280d8df483c12dcfe6f7e2a01",
- "kws": {
- "fr": [
- "soupe de poisson",
- "soupe"
- ]
- }
- },
- {
- "nm": "mouton",
- "id": "f3e34f838cc3b0b52d98a0debdfc72c4e7ebd5d149d7b7b938b922ca81dbe3c6",
- "kws": {
- "fr": [
- "mouton"
- ]
- }
- },
- {
- "nm": "autonome",
- "id": "c14ee3e4df66cdf8d19c3182d93b669c7232a5aff3ccfcf10d5ebdc73d9805bb",
- "kws": {
- "fr": [
- "autonome",
- "indépendant"
- ]
- }
- },
- {
- "nm": "carte rouge",
- "id": "c2f87448e700d9d904bcb613e94930bd8afd8cccfba9f9eef6a951cf3e6e5d1d",
- "kws": {
- "fr": [
- "carte rouge"
- ]
- }
- },
- {
- "nm": "pansement",
- "id": "1cc772161123b418e4f0665cbf8bc58b082b114e2d1f3297a7d6596246579fec",
- "kws": {
- "fr": [
- "pansement"
- ]
- }
- },
- {
- "nm": "tousser",
- "id": "fbc6e8dfa60ca60f8d0f2d2453b08472e498fe5e6837f7437922d4005d226ded",
- "kws": {
- "fr": [
- "tousser",
- "toux",
- "crise"
- ]
- }
- },
- {
- "nm": "auxiliaire médical",
- "id": "6de64b951e5d389c4b07708b26daf795648a67b31f316dfd36c6321e6164efe0",
- "kws": {
- "fr": [
- "auxiliaire médical",
- "infirmière"
- ]
- }
- },
- {
- "nm": "tomber",
- "id": "02edfd2cc7feff6d704fc2b2b104d53100e2da46c4d28d2aa47186a43007393b",
- "kws": {
- "fr": [
- "tomber"
- ]
- }
- },
- {
- "nm": "sortir",
- "id": "45f80254f310f88ed97b2dae04172e98471be43148a618646b11713db052465f",
- "kws": {
- "fr": [
- "sortir"
- ]
- }
- },
- {
- "nm": "saluer",
- "id": "92400b7dd9565a502787bd55105b85639d0e6536043dd3104e2ffe309e2080e9",
- "kws": {
- "fr": [
- "saluer",
- "salut"
- ]
- }
- },
- {
- "nm": "fabriquer",
- "id": "cf04497ae5eb0c609aae41a1f1dec7ac8652b893dd4c666be7edea85dca17bfb",
- "kws": {
- "fr": [
- "fabriquer",
- "produire",
- "créer",
- "élaborer",
- "monter"
- ]
- }
- },
- {
- "nm": "voitures tamponneuses",
- "id": "288bb56f81968fbed435bcca7502f73c50c9d1f3168621b106f5763ced5eedea",
- "kws": {
- "fr": [
- "voitures tamponneuses",
- "autos tamponneuses"
- ]
- }
- },
- {
- "nm": "boîte",
- "id": "43d616df22d602bc4b3de82dbe3fb22f4e9fc85a33fb15fd27145a8ab4dc10aa",
- "kws": {
- "fr": [
- "boîte",
- "corps"
- ]
- }
- },
- {
- "nm": "formentera",
- "id": "f5b24c0587e03a56ae118159cd98c65fc8901b28edeb0b3cdd75020c75db10ba",
- "kws": {
- "fr": [
- "formentera"
- ]
- }
- },
- {
- "nm": "nettoyer le derrière",
- "id": "47e6cb9c84b64a24a2330263c84f689163607155c3055d8ac37f1c98d8ce23f3",
- "kws": {
- "fr": [
- "nettoyer le derrière",
- "nettoyer"
- ]
- }
- },
- {
- "nm": "perroquet",
- "id": "ca43964f22766bab604921c290f402cecbfe6918223769affea2c458433526a5",
- "kws": {
- "fr": [
- "perroquet"
- ]
- }
- },
- {
- "nm": "content",
- "id": "117ee80bf7b022665ea6d3ed057662a3ebe4306196732d720ace3f6cd3e1a09d",
- "kws": {
- "fr": [
- "content",
- "heureux"
- ]
- }
- },
- {
- "nm": "collants",
- "id": "d9d46b12fdfeabb08aa220c7c9dd419d7378e11d7a800bb88267a1865146967a",
- "kws": {
- "fr": [
- "collants",
- "collant"
- ]
- }
- },
- {
- "nm": "terrain de hand-ball",
- "id": "c2129dce7da013c76ed2cb14894c4110e3feacbd100a2ee4854d4df7f983ca42",
- "kws": {
- "fr": [
- "terrain de hand-ball"
- ]
- }
- },
- {
- "nm": "chocolat chaud",
- "id": "b64bcf67bdecb9c2745b5374fcfb8196828dc2d6266f69ee5e06444f25c74528",
- "kws": {
- "fr": [
- "chocolat chaud"
- ]
- }
- },
- {
- "nm": "rôtir",
- "id": "9bcf8b97a8a4eeece879f901e9a02654862b9babb48dffcf4f38caad68cc7ffb",
- "kws": {
- "fr": [
- "rôtir"
- ]
- }
- },
- {
- "nm": "embrasser",
- "id": "567c5a56d99538317d2bab97ca5b34f7f3b89d0617ba991964cecffa022348fb",
- "kws": {
- "fr": [
- "embrasser",
- "donner un bisou",
- "baiser"
- ]
- }
- },
- {
- "nm": "voiture de police",
- "id": "6bdbe8e48ae3a3643f2480568507526812af75c48355083079cb3e1656690522",
- "kws": {
- "fr": [
- "voiture de police"
- ]
- }
- },
- {
- "nm": "charrue",
- "id": "eea3488ec54afd96d630ea19f616d471fda7502b8371d3b75e30bee974a145fc",
- "kws": {
- "fr": [
- "charrue"
- ]
- }
- },
- {
- "nm": "gratte-ciels",
- "id": "3e3636bb7b80a02fda5c0415462209f4711851251c46bdf358e5e67534af01cd",
- "kws": {
- "fr": [
- "gratte-ciels"
- ]
- }
- },
- {
- "nm": "totalité",
- "id": "f9a827c2de3635adcd7ef1898f444b5334aa900676539ef63ef3a1ca4ca2bc1a",
- "kws": {
- "fr": [
- "totalité",
- "tous",
- "toute",
- "toutes",
- "tout"
- ]
- }
- },
- {
- "nm": "interrupteur",
- "id": "95dcf9e2891cb685a96d3df888b6d15e92a8edb213757913388836ba9d3ad58e",
- "kws": {
- "fr": [
- "interrupteur"
- ]
- }
- },
- {
- "nm": "atteindre",
- "id": "23066894b69ddb7b3d354bec847f64c0d357abb4ceb5384620680474293320ab",
- "kws": {
- "fr": [
- "atteindre",
- "attraper"
- ]
- }
- },
- {
- "nm": "grand",
- "id": "18be5947c3ef4c9692193b4982b600d2c4f59fa52746bbb48580d8132c77cb94",
- "kws": {
- "fr": [
- "grand"
- ]
- }
- },
- {
- "nm": "corps de profil",
- "id": "c23d90cf66bf93d40044bac459c361507738978d0d262cf6f80acb2d3a41179c",
- "kws": {
- "fr": [
- "corps de profil",
- "profil"
- ]
- }
- },
- {
- "nm": "caissière",
- "id": "1b370f77aabfab7cf0b488eccdcf44f27692ed1b1aa1cae1ca29c97fb7b62d18",
- "kws": {
- "fr": [
- "caissière"
- ]
- }
- },
- {
- "nm": "annuler",
- "id": "5c2e35213ca3a7fb07e427f773e8a189c9848e9f3495c007974ae66ba84cbd94",
- "kws": {
- "fr": [
- "annuler",
- "arrêter"
- ]
- }
- },
- {
- "nm": "moulin à vent",
- "id": "ba54f2cdb1bb731fdfa904a817ea42e042b03e647de788cc07db9cc83411de0e",
- "kws": {
- "fr": [
- "moulin à vent",
- "moulin"
- ]
- }
- },
- {
- "nm": "police municipale",
- "id": "56ddcfbdb821a2daf073db1fbb97a38aff19dfb40237d37ee3d236026b52597b",
- "kws": {
- "fr": [
- "police municipale",
- "police",
- "agent de police municipale",
- "garde"
- ]
- }
- },
- {
- "nm": "petit-fils",
- "id": "460e91969d2f34368384ad77457f2fa5f63850df899d84f5c94898a16a37b6d6",
- "kws": {
- "fr": [
- "petit-fils"
- ]
- }
- },
- {
- "nm": "nuit",
- "id": "cad6217c44848a0f1b64dc7c350cf5007da50312c12df817c72f37590e8fb5cb",
- "kws": {
- "fr": [
- "nuit"
- ]
- }
- },
- {
- "nm": "filet",
- "id": "ff2ff10c70b2f8249ebac75aae962c6fa1a9798472b1371f91c937d2d5ea26e4",
- "kws": {
- "fr": [
- "filet"
- ]
- }
- },
- {
- "nm": "commode",
- "id": "86b87ed416a3bee987e637873a7c889a1e59947c053ae23f46a60bdac40091e1",
- "kws": {
- "fr": [
- "commode"
- ]
- }
- },
- {
- "nm": "trophée",
- "id": "5e8083183d3c473986b6129478aa0d27f5ccf1c6aafcb73073b7a55a2b3c21fe",
- "kws": {
- "fr": [
- "trophée",
- "coupe",
- "prix"
- ]
- }
- },
- {
- "nm": "exporter",
- "id": "3288a180c8e60e1fd8cb563337fd8ffc49299eaeb26dff3a4a42ada125f105d0",
- "kws": {
- "fr": [
- "exporter"
- ]
- }
- },
- {
- "nm": "pêcher",
- "id": "540e18ac5f3b8a6bb5c252d1368f7f88c9f9ecdf3270eacd936e121a51380c08",
- "kws": {
- "fr": [
- "pêcher",
- "mordre"
- ]
- }
- },
- {
- "nm": "hymnaire",
- "id": "69a0e765588c3701b8093a38dd9a886bba95f97b4277613b1615f444b81ff53a",
- "kws": {
- "fr": [
- "hymnaire"
- ]
- }
- },
- {
- "nm": "faire du patin à roulettes",
- "id": "0086f009969a59f31477d8dd8d407af7d2fd0994bf2582706e50748603068467",
- "kws": {
- "fr": [
- "faire du patin à roulettes",
- "faire du patin"
- ]
- }
- },
- {
- "nm": "élastique",
- "id": "ffebce117cc11300125cd4a905c12ee7283769bea4a42c819215c4c41e0629b1",
- "kws": {
- "fr": [
- "élastique"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "f73edc874e8af40a42743cbb40d1ca9924f14b3a468ae97875e59be92783357f",
- "kws": {
- "fr": [
- "communauté autonome",
- "communauté de madrid",
- "madrid"
- ]
- }
- },
- {
- "nm": "livres de sciences naturelles",
- "id": "b0e024ff80a03f4bf5e5507f4113e682cceac8f42f14c2ea8b2e6fee93cf2ac7",
- "kws": {
- "fr": [
- "livres de sciences naturelles"
- ]
- }
- },
- {
- "nm": "prendre",
- "id": "d51f2dbe658f45a9be75bfd1e0351be8df918ba93259bc47224812aa8c4904d7",
- "kws": {
- "fr": [
- "prendre",
- "recevoir",
- "accepter",
- "admettre"
- ]
- }
- },
- {
- "nm": "laisse",
- "id": "24fb2ee8ba4e56958c2e08fab54ab07af11b539e96e15ed4739c8b02c2abe4ef",
- "kws": {
- "fr": [
- "laisse"
- ]
- }
- },
- {
- "nm": "télécommande",
- "id": "d3b8f676af4ddc769af87ca381f7b496f5b2a0ada5f43eea7e4bf8e276a472bf",
- "kws": {
- "fr": [
- "télécommande",
- "commande"
- ]
- }
- },
- {
- "nm": "équilibre",
- "id": "ac7c2b8cd44cb10e7bb3cbf9a939d7b09d95706014f9885703a08d1090293e80",
- "kws": {
- "fr": [
- "équilibre"
- ]
- }
- },
- {
- "nm": "quatre heures pile",
- "id": "4dbed375183e898202bf8094950adb12055bf2fdc3023f1e61423cb07b5ab320",
- "kws": {
- "fr": [
- "quatre heures pile",
- "quatre heures"
- ]
- }
- },
- {
- "nm": "bailler",
- "id": "ba6148af25a48bf8d86eec59476f77b418575cd50d93f0a372ae4ab28d61e391",
- "kws": {
- "fr": [
- "bailler"
- ]
- }
- },
- {
- "nm": "frein à main",
- "id": "56ee5fdc188c125042c4e4fee2cf210b5a09e5f8b93d251f203bf097adf96909",
- "kws": {
- "fr": [
- "frein à main"
- ]
- }
- },
- {
- "nm": "cigare",
- "id": "3d6eb7e031c42fed6e545199f6e38989fb21927e006f565c052107caf830599d",
- "kws": {
- "fr": [
- "cigare"
- ]
- }
- },
- {
- "nm": "conte",
- "id": "6d52d57d62466bb9a36b1cbe55e3b74d97e496a66a8d57880699a697712e23b5",
- "kws": {
- "fr": [
- "conte"
- ]
- }
- },
- {
- "nm": "choc",
- "id": "38c5a38237a0f7a74ca88ca1fc29996eb37ef8aa4432e4ca60183fe819492f2c",
- "kws": {
- "fr": [
- "choc",
- "se cogner",
- "heurter",
- "accident",
- "rencontre"
- ]
- }
- },
- {
- "nm": "hongrie",
- "id": "70abf3d5510030531ccdc08565575c5f6502c534a0fdd7ffda835937455faf81",
- "kws": {
- "fr": [
- "hongrie"
- ]
- }
- },
- {
- "nm": "atelier",
- "id": "59687a9a5058139268b49c3051a6bbdeb810c4e54b85ce230773179eaad9634f",
- "kws": {
- "fr": [
- "atelier"
- ]
- }
- },
- {
- "nm": "direction",
- "id": "d5e6e7a9bc0917aa841df3db1249daa3fc75a6f0ec08aefced3abf470446d443",
- "kws": {
- "fr": [
- "direction"
- ]
- }
- },
- {
- "nm": "carte bancaire",
- "id": "6e7afa01201ccf48894813a72042939e25064ad4990092977e8c5183436c2e5b",
- "kws": {
- "fr": [
- "carte bancaire",
- "carte"
- ]
- }
- },
- {
- "nm": "étaler du dentifrice",
- "id": "568245ab9a32cee0eebb1a6c0a69decdcc68c40d857df5caadb08860b2b90d81",
- "kws": {
- "fr": [
- "étaler du dentifrice",
- "jeter"
- ]
- }
- },
- {
- "nm": "point virgule",
- "id": "744e59c8d8edab53687cfe77b07283f3116c32255cf87dee7d92a170cda531ff",
- "kws": {
- "fr": [
- "point virgule"
- ]
- }
- },
- {
- "nm": "sombre",
- "id": "e5e7f8892ce13c77ad60d2ddff1d2ac77aec2a1269f5d14cdc7c156cf1c8c614",
- "kws": {
- "fr": [
- "sombre"
- ]
- }
- },
- {
- "nm": "appareils auditifs",
- "id": "9758480f427b263233ada2d935e1c52df4e194c7d253c01d493efbcc96725af9",
- "kws": {
- "fr": [
- "appareils auditifs"
- ]
- }
- },
- {
- "nm": "danse",
- "id": "c6cb23ff0d30bb6894c84132f846b60efda33a5f9e230eba9c468aee9de21300",
- "kws": {
- "fr": [
- "danse",
- "danser"
- ]
- }
- },
- {
- "nm": "phoque",
- "id": "2b917f0737f09482e6efef11e1782c87007297db121d4a1dd5aad02ed1c2502e",
- "kws": {
- "fr": [
- "phoque"
- ]
- }
- },
- {
- "nm": "celles-là",
- "id": "ae224226b9e6296e730816db93734ec4704a6cb3e65fe6ad4651dece5b64d443",
- "kws": {
- "fr": [
- "celles-là",
- "ces"
- ]
- }
- },
- {
- "nm": "pincer",
- "id": "94bfed0116abcd0dd800a86d6bbe76fffa2cda0e050c68e1fa47dbee576ef80a",
- "kws": {
- "fr": [
- "pincer"
- ]
- }
- },
- {
- "nm": "mollusques",
- "id": "ba8ebbec678de7d2a8e8828986b1f8f0b2c0ca43efb54f4dd933352a3865ace2",
- "kws": {
- "fr": [
- "mollusques"
- ]
- }
- },
- {
- "nm": "rugueux",
- "id": "8c71bb177b44587be7800268221cd7421fe4781b360457b508bf8f0157c11f8b",
- "kws": {
- "fr": [
- "rugueux"
- ]
- }
- },
- {
- "nm": "entrevue",
- "id": "5a28c60a17e4af7f10b6cbdcb53c7128488af277ac641d62d422371134eaa1d1",
- "kws": {
- "fr": [
- "entrevue",
- "interviewer"
- ]
- }
- },
- {
- "nm": "iraq",
- "id": "296064622b2e56bd5f0136684e6f1815772fe438b8f960c289905d58c655d04c",
- "kws": {
- "fr": [
- "iraq"
- ]
- }
- },
- {
- "nm": "nicaragua",
- "id": "df819ad9b16d148c04af06b6c8d623d96d3df5593b572956907779d12fcf28c9",
- "kws": {
- "fr": [
- "nicaragua"
- ]
- }
- },
- {
- "nm": "jeudi",
- "id": "96d9788f9d3ee6e439ff2140eaeb5512c239a16a14eeb60301717105aa45682b",
- "kws": {
- "fr": [
- "jeudi"
- ]
- }
- },
- {
- "nm": "tomber",
- "id": "88851104a7243d357203795277dbbc17a2ca1cea181ff45f647ab39d3c9578f2",
- "kws": {
- "fr": [
- "tomber"
- ]
- }
- },
- {
- "nm": "pince à linge",
- "id": "43140f45b439149ac3978b34821afba6c1c048912f5fd12959058dfe26a368de",
- "kws": {
- "fr": [
- "pince à linge",
- "pince"
- ]
- }
- },
- {
- "nm": "masque",
- "id": "bee96ebaf9b1d07fadf07b495843cbaa4174168083da4468c804cd31a39fd76b",
- "kws": {
- "fr": [
- "masque"
- ]
- }
- },
- {
- "nm": "équitation",
- "id": "1f0d40cd8c31a2ed50a1cf40b22e5302f921e548918e9e02cf5325a895dabe90",
- "kws": {
- "fr": [
- "équitation",
- "monter"
- ]
- }
- },
- {
- "nm": "cours",
- "id": "b2cc5517d0f8990f3b1e4649c1b031cffd824ecda591f9a55b60fa4da1c1b28f",
- "kws": {
- "fr": [
- "cours",
- "professeur de musique",
- "professeur"
- ]
- }
- },
- {
- "nm": "exposition",
- "id": "da1dcc76a673bda7448983e03afb63b812a8018ac362e0963f6337bce2738976",
- "kws": {
- "fr": [
- "exposition"
- ]
- }
- },
- {
- "nm": "important",
- "id": "bc5747a724abf5571a6dc09903d3f35352a2b18cfc6909fd3216a7b5dc53bd0c",
- "kws": {
- "fr": [
- "important"
- ]
- }
- },
- {
- "nm": "punaise",
- "id": "0378f906baee662960a43c1373615c0f9dd1fff3a40bba2a79f25903b577586b",
- "kws": {
- "fr": [
- "punaise",
- "punaises"
- ]
- }
- },
- {
- "nm": "terrain de tennis",
- "id": "c6448eb5d078d3619dd8b7fdaafcff14c2095ce967163e91b40566b2e8c33f31",
- "kws": {
- "fr": [
- "terrain de tennis"
- ]
- }
- },
- {
- "nm": "céréales",
- "id": "ae668de21d603f2130b3284c17eace2bad6f69699e9d42443c3b329de1c6f750",
- "kws": {
- "fr": [
- "céréales"
- ]
- }
- },
- {
- "nm": "ornement",
- "id": "f3f7a48e6745872935b09087ba93246da45f09ef774ad1adbdb7f52211bb1136",
- "kws": {
- "fr": [
- "ornement",
- "ornementation"
- ]
- }
- },
- {
- "nm": "cd de musique",
- "id": "58d7832cf7d68be02cd3181da5a939f6fa9ae18996ac80a1790373e41eb6be98",
- "kws": {
- "fr": [
- "cd de musique",
- "cd"
- ]
- }
- },
- {
- "nm": "insulter",
- "id": "984db077cffccb07985dd9917cedf493790a599eab6252bd7a3f3bc6ea4693a8",
- "kws": {
- "fr": [
- "insulter"
- ]
- }
- },
- {
- "nm": "tigre",
- "id": "1457114c400c1cf1cad150d4be07ce3694addbccc80894b519a60a43d8bf03fd",
- "kws": {
- "fr": [
- "tigre"
- ]
- }
- },
- {
- "nm": "arrêter",
- "id": "35d3dd2d30f41a8f57196cdfa34bb95ea9980fbae962e133f5dadf646e02f167",
- "kws": {
- "fr": [
- "arrêter"
- ]
- }
- },
- {
- "nm": "chemise de nuit",
- "id": "96445d897c98b0cd9d629aa203364189b2479bb2b3248ce3ace1bac85b45e2d4",
- "kws": {
- "fr": [
- "chemise de nuit"
- ]
- }
- },
- {
- "nm": "oignon",
- "id": "17540f7fe1597e0712fb63b2fd26431e60b5abd3579e6f5943d2f2048596940a",
- "kws": {
- "fr": [
- "oignon"
- ]
- }
- },
- {
- "nm": "oisellerie",
- "id": "9ab0e4ad51d3e61ce45bb63e9a67d8bb6ca6cac83a60a637d54839ef47677417",
- "kws": {
- "fr": [
- "oisellerie",
- "animalerie"
- ]
- }
- },
- {
- "nm": "gramophone",
- "id": "9f569d89c6dc683d7655284bdcc4a4654ecf8e5c749bf5b0720a9b1e7e8f2999",
- "kws": {
- "fr": [
- "gramophone"
- ]
- }
- },
- {
- "nm": "marchand de poulets",
- "id": "86b98f48e96324c14bccf32f0b57629b9916c915ecb581b3881125ba2f79e764",
- "kws": {
- "fr": [
- "marchand de poulets"
- ]
- }
- },
- {
- "nm": "piquer",
- "id": "a7af9167e7b7100113bbec39eff477aeccfe84a62a55c328da95056688639061",
- "kws": {
- "fr": [
- "piquer"
- ]
- }
- },
- {
- "nm": "date de naissance",
- "id": "2b928463d1894ede1661f00bd4a4b0cb24d788c909fa1e766137c5221c4e8d37",
- "kws": {
- "fr": [
- "date de naissance"
- ]
- }
- },
- {
- "nm": "conduire",
- "id": "8b01e0edb75c7c9ae9c955ac99b322ba78015b2606886a90ab08350c7595b688",
- "kws": {
- "fr": [
- "conduire"
- ]
- }
- },
- {
- "nm": "bague",
- "id": "dc1803dc499355912471bfecd9d21a054b8a2bdfe9a6ce42c593f4f0e480f190",
- "kws": {
- "fr": [
- "bague",
- "bijou"
- ]
- }
- },
- {
- "nm": "cymbale",
- "id": "5ac03f4119215bbf40e4cfb7c3b5caf2e108735f405675ace0685c235a7b41de",
- "kws": {
- "fr": [
- "cymbale",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "vipère",
- "id": "5cb9cb13cd42d449099adfaa2861c85933ad736cb647f7ee98b5f906bb7a106a",
- "kws": {
- "fr": [
- "vipère"
- ]
- }
- },
- {
- "nm": "se rincer",
- "id": "4447e63332c5285c522ff89697e2963b4d8a5cf11e7cf0b3ad37b8691b4adcb5",
- "kws": {
- "fr": [
- "se rincer"
- ]
- }
- },
- {
- "nm": "pardon!",
- "id": "48afcb2b56ca3c643e2e24499c113da3b31b3b12fe2ae4606b747521cb05d17b",
- "kws": {
- "fr": [
- "pardon!",
- "pardon",
- "pardonner",
- "je regrette!"
- ]
- }
- },
- {
- "nm": "vestiaires",
- "id": "f4242ccd6c2fe898810a2409cfcbe0ee4883707b4d34073d543301d8f4d9371a",
- "kws": {
- "fr": [
- "vestiaires"
- ]
- }
- },
- {
- "nm": "mal de tête",
- "id": "5e84ba8974e8971e02bff2f07c94553ea70f250de42a01ed887ba5bf2bfbff4c",
- "kws": {
- "fr": [
- "mal de tête"
- ]
- }
- },
- {
- "nm": "étiquette",
- "id": "31ad1cd81855688b07ed3bd682290d21232c4d5efb3767891b4219d444e54097",
- "kws": {
- "fr": [
- "étiquette"
- ]
- }
- },
- {
- "nm": "timbale",
- "id": "e4f7e604a669b9a97fd07e488dd3f9b70498fc7bbab955717fdbeb376161cc62",
- "kws": {
- "fr": [
- "timbale"
- ]
- }
- },
- {
- "nm": "circuit",
- "id": "6a37e109e1fb4bde9d5e9674332c60b800b448b4dbe29d31b5acfd9cfd4acc20",
- "kws": {
- "fr": [
- "circuit"
- ]
- }
- },
- {
- "nm": "standard",
- "id": "cf7bb8409ab064fc7632cd59e0171f0a45834b87866826e9be8e1549221ef599",
- "kws": {
- "fr": [
- "standard"
- ]
- }
- },
- {
- "nm": "brosse",
- "id": "7dfe063ec983adb8f2b7bda73c410f77319ce14051a280419398da6990437e89",
- "kws": {
- "fr": [
- "brosse",
- "pinceau"
- ]
- }
- },
- {
- "nm": "léger",
- "id": "9e077e011e2b2b24a3d9987d7b109458aad6c8c03d8ddca6dd14a4b11a736de7",
- "kws": {
- "fr": [
- "léger",
- "légère"
- ]
- }
- },
- {
- "nm": "incompréhensible",
- "id": "302fc12d34e3c65bcbed63faf26b65863457a133ecf69e232e2c9ae711cc0069",
- "kws": {
- "fr": [
- "incompréhensible",
- "je ne sais pas",
- "je ne sais pas",
- "je ne te comprends pas"
- ]
- }
- },
- {
- "nm": "porte",
- "id": "8cff40a12fb6851bb09f2fc5d88968d16628d684c698f384d55659771691b6c0",
- "kws": {
- "fr": [
- "porte"
- ]
- }
- },
- {
- "nm": "caissier",
- "id": "9be7ab36bad346497d4d4eccf2ece65358eef04609344db1ce26f03a2bcdb1ae",
- "kws": {
- "fr": [
- "caissier"
- ]
- }
- },
- {
- "nm": "ours",
- "id": "68edabf9a67954845783511c8a05d615a13374c611279a01b3d30703368565c9",
- "kws": {
- "fr": [
- "ours"
- ]
- }
- },
- {
- "nm": "couche",
- "id": "71de539fbb46dc39ad528a9363a3f69e2e2d0e0b0ddfcf0fa455f14ffd73e683",
- "kws": {
- "fr": [
- "couche"
- ]
- }
- },
- {
- "nm": "marteau",
- "id": "7384f4ea87dc6806489a8b230ead5f18c67805064c47e8bbd88677f4dc9d074d",
- "kws": {
- "fr": [
- "marteau"
- ]
- }
- },
- {
- "nm": "paire",
- "id": "2289f575759f45ca1389db7c389dc698f9192a70d1b75fa596412444caf03c3e",
- "kws": {
- "fr": [
- "paire",
- "six",
- "numéro",
- "6"
- ]
- }
- },
- {
- "nm": "supermarché",
- "id": "7a3b0cba19fca131af8ce4d0850a4045a480314c244353cb4d921ad71a9e564c",
- "kws": {
- "fr": [
- "supermarché",
- "super",
- "marché"
- ]
- }
- },
- {
- "nm": "galette de maïs",
- "id": "f46a554680615511732e10dd83cb79d262a08945462c943336eece278312d3a9",
- "kws": {
- "fr": [
- "galette de maïs"
- ]
- }
- },
- {
- "nm": "chat",
- "id": "753f8bed28ad9e8bf23bbc339592ff4645f584d7a25195e21d1f91cbdeabff9e",
- "kws": {
- "fr": [
- "chat",
- "minet"
- ]
- }
- },
- {
- "nm": "battre",
- "id": "46a75364e25a713e1df6823ecc4f9ca76d0c8345caa9e14cbffc464dcb27c1f5",
- "kws": {
- "fr": [
- "battre"
- ]
- }
- },
- {
- "nm": "liberté",
- "id": "d46731a1fb65ef04efb1a21d8b18cd49dd6de36fde9864fa851ba2633e0018e8",
- "kws": {
- "fr": [
- "liberté",
- "libération"
- ]
- }
- },
- {
- "nm": "paire",
- "id": "cee41c7bcd728a786aec1cb42b4808ba8b1ebd28507681c4cacd9da8cb67e1c9",
- "kws": {
- "fr": [
- "paire",
- "quatre",
- "numéro",
- "4"
- ]
- }
- },
- {
- "nm": "acte de naissance",
- "id": "01d59888f62977e8716731f0db850bcaf4307cc6bee3991c4673b80085d53390",
- "kws": {
- "fr": [
- "acte de naissance"
- ]
- }
- },
- {
- "nm": "russie",
- "id": "bfda1bd432a7626eb9cb607c5a69e58646962341645bb84f49b08f12a93932dc",
- "kws": {
- "fr": [
- "russie"
- ]
- }
- },
- {
- "nm": "petit",
- "id": "a765c222df1cd7ea579c1444f0349e2d8508478f1d16abf134acad18c93471cd",
- "kws": {
- "fr": [
- "petit"
- ]
- }
- },
- {
- "nm": "fast food",
- "id": "3d247877413d16abfcd0797b6d86de42d97d19c86fcea15d96477f8e31297db2",
- "kws": {
- "fr": [
- "fast food",
- "restaurant"
- ]
- }
- },
- {
- "nm": "pétanque",
- "id": "bd4341c070f502d7afe9e0d301211cad42880d368c45a1e802dea1778afda24c",
- "kws": {
- "fr": [
- "pétanque",
- "jouer à la pétanque"
- ]
- }
- },
- {
- "nm": "incendie",
- "id": "e15c9f3da22bdd82d19c90deb5ad5863324354e61f47589548541b76866c5485",
- "kws": {
- "fr": [
- "incendie"
- ]
- }
- },
- {
- "nm": "poissonnerie",
- "id": "b02516576a5a52e1c2b08248680a51888c7f3c604cb7cb7a26943bb3dca64e1c",
- "kws": {
- "fr": [
- "poissonnerie"
- ]
- }
- },
- {
- "nm": "quincaillerie",
- "id": "5dac4ed903f47330ce051ddcb962c185e9050accd7f4c8405560a10dc14f8dac",
- "kws": {
- "fr": [
- "quincaillerie"
- ]
- }
- },
- {
- "nm": "golfe",
- "id": "03f951fe5557134a72e6a969f54e1c2bb02102af4eca953bb69660b7eb96e8d9",
- "kws": {
- "fr": [
- "golfe"
- ]
- }
- },
- {
- "nm": "croatie",
- "id": "8729a772e278a917a690a4ecd916c3c6865c5f4842939735853c9626ff157bc7",
- "kws": {
- "fr": [
- "croatie"
- ]
- }
- },
- {
- "nm": "mercière",
- "id": "7a490feea518ff64b894691540caba2c80af9340dbf8e587e38b4ace2b6d0120",
- "kws": {
- "fr": [
- "mercière"
- ]
- }
- },
- {
- "nm": "bonne-soeur",
- "id": "21a1d390d712fb9d52b18f73f10125313a1cdffc9efcb7b279c196e25d4370d8",
- "kws": {
- "fr": [
- "bonne-soeur"
- ]
- }
- },
- {
- "nm": "adultes",
- "id": "db2978bceff651babf6c6059e1b8d47b9b8befc724199054d83b19bced4916a7",
- "kws": {
- "fr": [
- "adultes"
- ]
- }
- },
- {
- "nm": "nettoyer la fenêtre",
- "id": "324176db4183a553ca81c5aec3d32cd59a2c64dc0e06390c53321b807d28d9c0",
- "kws": {
- "fr": [
- "nettoyer la fenêtre",
- "nettoyer les fenêtres"
- ]
- }
- },
- {
- "nm": "attraper",
- "id": "f687bee2ccb7a2e3441823c1ca200fc5a0c244e5658b8e7f5cac9b58525f9396",
- "kws": {
- "fr": [
- "attraper",
- "arrêter le ballon",
- "arrêter",
- "guardien de but"
- ]
- }
- },
- {
- "nm": "courriel",
- "id": "46d83d9eb76c8ae1f5d36001165cdb44ca50c0c44f8d4359f4608b862c722b70",
- "kws": {
- "fr": [
- "courriel"
- ]
- }
- },
- {
- "nm": "suisse",
- "id": "db7f71c1fd5ce3c1bb053929d99d6dc46d1edf3d7e34367c0667ef8fc45ac660",
- "kws": {
- "fr": [
- "suisse"
- ]
- }
- },
- {
- "nm": "pays valencien",
- "id": "1452c5619d2273c89ea49888ccfdda345e7a8c7c94f78b2b9785fd6200ac5d81",
- "kws": {
- "fr": [
- "pays valencien",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "patène",
- "id": "282433dd6312d4a395e07b0f489dcdd05376cd1fb55460853a286f6f07f91a7b",
- "kws": {
- "fr": [
- "patène"
- ]
- }
- },
- {
- "nm": "boîte",
- "id": "980531835f3f63e76d8a0b9f8c561f38ae773a7ac1a7b7855ccf152c5058529c",
- "kws": {
- "fr": [
- "boîte",
- "flacon"
- ]
- }
- },
- {
- "nm": "hémisphère nord",
- "id": "18972e92218e2e2d19ce80b9d280f39c129234572006805b58ddd77a4fac4d2a",
- "kws": {
- "fr": [
- "hémisphère nord"
- ]
- }
- },
- {
- "nm": "rayé",
- "id": "b891c985fe4b3b9032e0736dcd348e8dd51c47d9955afaca1ffc60e809bfa312",
- "kws": {
- "fr": [
- "rayé"
- ]
- }
- },
- {
- "nm": "patient",
- "id": "00f2b70f7a1858e305ad5fe44e4d52cff06d198e3c3c89c8a85c03125931e5b4",
- "kws": {
- "fr": [
- "patient",
- "tomber malade",
- "malade",
- "maladie"
- ]
- }
- },
- {
- "nm": "c\u0027est",
- "id": "db8c7afdccd93b223b984ef2950b2dca006e63e132d0773353adb4ddc5c8865f",
- "kws": {
- "fr": [
- "c\u0027est",
- "être"
- ]
- }
- },
- {
- "nm": "embryon",
- "id": "56fc5c0dcca77b6ebdd07ed1143141bbf49785cf2d79f649ee9c1b7957dfe1e0",
- "kws": {
- "fr": [
- "embryon"
- ]
- }
- },
- {
- "nm": "sangria",
- "id": "1578d00d5aacc3d596b9225641f129357e2046728c7b68cdc41626ac31f2f932",
- "kws": {
- "fr": [
- "sangria"
- ]
- }
- },
- {
- "nm": "train",
- "id": "6b8b86231b7fa7028465baa4dda12a81aa65e8b554f89fc5709c4fa9067167a9",
- "kws": {
- "fr": [
- "train",
- "petit train"
- ]
- }
- },
- {
- "nm": "parcours",
- "id": "d655c65515476a4d18803c98c8b6e8ed2907b2c813912eef6172c7d212377d0d",
- "kws": {
- "fr": [
- "parcours",
- "trajet",
- "se déplacer",
- "itinéraire",
- "route"
- ]
- }
- },
- {
- "nm": "chahuter",
- "id": "b8f13c299e48b8ae4bb6a762e65f61748beb1a24db19cfbfa1dda0ef3032515e",
- "kws": {
- "fr": [
- "chahuter",
- "chahut"
- ]
- }
- },
- {
- "nm": "phénomène atmosphérique",
- "id": "db8d9fa9b8a2af1ffecf9b1da368f5ceac52cd18b7512e5b0f69233d4087cee6",
- "kws": {
- "fr": [
- "phénomène atmosphérique",
- "pleuvoir",
- "pluie",
- "pluvieux"
- ]
- }
- },
- {
- "nm": "braille",
- "id": "f959bd679f8f5e1dc1b93fed7901999f0796f16e6e7fea43a4c5e6a474f4d776",
- "kws": {
- "fr": [
- "braille"
- ]
- }
- },
- {
- "nm": "quartier",
- "id": "364f3ea921e39b285ae621a8336f193857a2620ab0a482862ef426d32eb766d4",
- "kws": {
- "fr": [
- "quartier"
- ]
- }
- },
- {
- "nm": "atelier de jardinage a",
- "id": "7dd2004cdd9b68a9a007f1ea078e1f91e79b97e99d8a018b54953e0c1b5da1ba",
- "kws": {
- "fr": [
- "atelier de jardinage a"
- ]
- }
- },
- {
- "nm": "audiophone",
- "id": "63b11127f65abf936ade250e592e05123a2858ef42809469da12cd0895640d35",
- "kws": {
- "fr": [
- "audiophone",
- "sonotone",
- "appareil auditif"
- ]
- }
- },
- {
- "nm": "oiseau",
- "id": "223ff547e8b65b0d26d3fe594d394abc70c87159026aea92ba0e199127ac446a",
- "kws": {
- "fr": [
- "oiseau"
- ]
- }
- },
- {
- "nm": "fiancée",
- "id": "4e669084500a194cb3192b88ce53c1ddd3cab345c79410097a28b1540bdcf59b",
- "kws": {
- "fr": [
- "fiancée"
- ]
- }
- },
- {
- "nm": "pain blanc",
- "id": "e831091958bf661c2679e2ad00fff6fee8a50636967837c13077911df51d954d",
- "kws": {
- "fr": [
- "pain blanc",
- "pain de mie.",
- "pain"
- ]
- }
- },
- {
- "nm": "discothèque",
- "id": "b50504d06758c6270f555520049318cdc06f4939c262aabb490f9e02d8180c30",
- "kws": {
- "fr": [
- "discothèque"
- ]
- }
- },
- {
- "nm": "dix heures pile",
- "id": "c47d5864d4927f7ac31a42a76111f7ff11cc719e098336aa27b0a3923970e7c6",
- "kws": {
- "fr": [
- "dix heures pile",
- "dix heures"
- ]
- }
- },
- {
- "nm": "bande de mesure de glucose",
- "id": "d6c9d397ed5a7e075835052866baf694855c1c5dd0b8df62e79c4e78ff2db6eb",
- "kws": {
- "fr": [
- "bande de mesure de glucose",
- "bande réactive pour glucose"
- ]
- }
- },
- {
- "nm": "sénégal",
- "id": "ff62845e54b7b0770cc2475db9306cc665316cc8c34606e0f07820207e229a14",
- "kws": {
- "fr": [
- "sénégal"
- ]
- }
- },
- {
- "nm": "personne âgée",
- "id": "250b263baa9f6dd758f3f84b3d371e301e36a11c274a109959fc9f19a2d8a391",
- "kws": {
- "fr": [
- "personne âgée",
- "grand-mère"
- ]
- }
- },
- {
- "nm": "chevelure",
- "id": "dfb4ccfb1c4932b94bdba0b78c50a8fe398085828969b6a16f6df70a9eceaf67",
- "kws": {
- "fr": [
- "chevelure"
- ]
- }
- },
- {
- "nm": "classe",
- "id": "c01af3b311a2094d0aaf4fc678a6d4364dd06c30b937e92ccf422035bd120ea8",
- "kws": {
- "fr": [
- "classe",
- "compagnons"
- ]
- }
- },
- {
- "nm": "table électorale",
- "id": "a5cafe36c1df8b5ef072fc1df4901406eab606b5fcfb0550b30bbab236dc060b",
- "kws": {
- "fr": [
- "table électorale"
- ]
- }
- },
- {
- "nm": "feu",
- "id": "9063643ac1ded06e072e0b26058952622109004e62ee956095cfa32c0966b362",
- "kws": {
- "fr": [
- "feu"
- ]
- }
- },
- {
- "nm": "gateau",
- "id": "d7e3d772676d09c42eefae63869d1d84d019b660c4de1a3b9be84ff82d5733c9",
- "kws": {
- "fr": [
- "gateau"
- ]
- }
- },
- {
- "nm": "salle d\u0027assemblée",
- "id": "5463eb497a95c954af6fbf0aa701c0f89ff72abe20d7149c003daaa4ce8313eb",
- "kws": {
- "fr": [
- "salle d\u0027assemblée"
- ]
- }
- },
- {
- "nm": "pain au lait",
- "id": "33280abef304d8d5a226fc1d30ff7cdd3f976c7672bfc1c4adf11b9ef47551df",
- "kws": {
- "fr": [
- "pain au lait"
- ]
- }
- },
- {
- "nm": "nourriture pour poissons",
- "id": "1f4ac41db294ac373704ae7ed309f50a315ea876d13b1806ed1a99f02cdea93e",
- "kws": {
- "fr": [
- "nourriture pour poissons",
- "nourriture"
- ]
- }
- },
- {
- "nm": "lentilles",
- "id": "eedb8bc3831e294e2a323176b5f51143a51090240e84c33043b32b7338cfeecd",
- "kws": {
- "fr": [
- "lentilles",
- "légumes secs"
- ]
- }
- },
- {
- "nm": "poinçon",
- "id": "8200de4a939b77d247261f0edd2fcec66e7f006b5a8aa677d94715e43fcf55a0",
- "kws": {
- "fr": [
- "poinçon"
- ]
- }
- },
- {
- "nm": "coller",
- "id": "5a400064caf7dbc2c7af6dec705d0236ad7bae59b74d301a62052a3f8722b0f6",
- "kws": {
- "fr": [
- "coller",
- "donner des coups de pied",
- "attaquer",
- "donner un coup de pied",
- "donner un coup"
- ]
- }
- },
- {
- "nm": "prison",
- "id": "fe665dbdb19eefdee65d30f2cb36c29cd7823a9bf7860dbca3c9855ad328e473",
- "kws": {
- "fr": [
- "prison"
- ]
- }
- },
- {
- "nm": "antenne",
- "id": "700116fcae0df147caf06d5e709e070b524d2473f5c5416baac7e372d1b08fe1",
- "kws": {
- "fr": [
- "antenne"
- ]
- }
- },
- {
- "nm": "abus sexuel",
- "id": "a3dbea0b0cd9433936415bf27e01edd09ddbd5042b04cb39d8d7ff0bc009671c",
- "kws": {
- "fr": [
- "abus sexuel"
- ]
- }
- },
- {
- "nm": "saxophoniste",
- "id": "0177283e003a2840a11731cecfabcbae250e6bd860e876f2c6bbfa03c743b841",
- "kws": {
- "fr": [
- "saxophoniste"
- ]
- }
- },
- {
- "nm": "vouloir",
- "id": "4463ae56d0e38e53c2a12697c2b333fcb1f228d403c70a7d17610a3c498dbcef",
- "kws": {
- "fr": [
- "vouloir",
- "aimer",
- "amoureuses"
- ]
- }
- },
- {
- "nm": "nationalité",
- "id": "d47102c879c2e5441aef40c5d5461d8aa4e4ed086e3a793433421026763fd1c0",
- "kws": {
- "fr": [
- "nationalité"
- ]
- }
- },
- {
- "nm": "galettes",
- "id": "d4d32f75ed096ef588c9e6db41dbe908004c9a7f4750104110322a386c175953",
- "kws": {
- "fr": [
- "galettes"
- ]
- }
- },
- {
- "nm": "faire du patin à glace",
- "id": "078a78f7fa537099faa03637a7a8876210fe3c46220e7abd8119e2dd8a7008ad",
- "kws": {
- "fr": [
- "faire du patin à glace",
- "faire du patin"
- ]
- }
- },
- {
- "nm": "clair",
- "id": "789ce58d8bf26e6263c538e0ecb38fb77d95ee989008fe125886ff362cbbc0a8",
- "kws": {
- "fr": [
- "clair"
- ]
- }
- },
- {
- "nm": "dernier",
- "id": "69c7e9a27e0eecf09dc05a2e56dcfab591366db1f37526b11ec79085a0c20a7e",
- "kws": {
- "fr": [
- "dernier"
- ]
- }
- },
- {
- "nm": "taché",
- "id": "51073abe0fe4342451ac21d74f634d73e36a8c398562f5a0ed03172e922499ab",
- "kws": {
- "fr": [
- "taché",
- "sale"
- ]
- }
- },
- {
- "nm": "diarrhée",
- "id": "d0ba19b14d013af4e2fc9ae49af7899ceffde247f753544e85e836da41b8ba55",
- "kws": {
- "fr": [
- "diarrhée"
- ]
- }
- },
- {
- "nm": "pièce de puzzle",
- "id": "2e255a12624355c4447d7aeea3bf6e8fc54a1a74bf7eef955c0a533a667edf3c",
- "kws": {
- "fr": [
- "pièce de puzzle"
- ]
- }
- },
- {
- "nm": "réceptionniste",
- "id": "72f53bd7eaad341e2bc6b0f4c81cd8581854394237e4aab9f0dc85274ecde95b",
- "kws": {
- "fr": [
- "réceptionniste"
- ]
- }
- },
- {
- "nm": "promener",
- "id": "d76dbf89c73ed3c307faaa8272b91001bc684d6ba8a7a9189e904991d795922f",
- "kws": {
- "fr": [
- "promener",
- "se promener"
- ]
- }
- },
- {
- "nm": "marais",
- "id": "8b488b7acfeea1f650f362751e7ef0d14f9d36a8f4c053d8dda3b7346156fc0e",
- "kws": {
- "fr": [
- "marais",
- "marécageux"
- ]
- }
- },
- {
- "nm": "comme",
- "id": "99b4a08b92a9bf982b9676a5a0fa474ffd16838681380aa911b7d24c65f5b486",
- "kws": {
- "fr": [
- "comme"
- ]
- }
- },
- {
- "nm": "saut en longueur",
- "id": "6c9b4f81c30e65b1a30c6a839c69f45fae4a4edb564f0c205b76398966456b84",
- "kws": {
- "fr": [
- "saut en longueur"
- ]
- }
- },
- {
- "nm": "éviter",
- "id": "232d678baaf5dd58412083732ee754f491564a36620c0192f21d972f4421d292",
- "kws": {
- "fr": [
- "éviter"
- ]
- }
- },
- {
- "nm": "sciences de la nature",
- "id": "21dd468f9f5360ca84030ca5c92c9f5bc168c46c7fd09df777cc05af85030e89",
- "kws": {
- "fr": [
- "sciences de la nature",
- "sciences naturelles",
- "livre de sciences naturelles",
- "matière"
- ]
- }
- },
- {
- "nm": "glouton",
- "id": "a788bc7ad0ab0a07bde6d49b3091af73d437314f73352472554b57a095547623",
- "kws": {
- "fr": [
- "glouton"
- ]
- }
- },
- {
- "nm": "construction",
- "id": "2e1b85225594d020d545c56b55598cf43d443e493bfeeb40e9722d6f928f111c",
- "kws": {
- "fr": [
- "construction",
- "construire"
- ]
- }
- },
- {
- "nm": "tard",
- "id": "5e34ed4f726179496701403a46585c7840291d8a94666d0df8051ca8fa550ca7",
- "kws": {
- "fr": [
- "tard",
- "après-midi"
- ]
- }
- },
- {
- "nm": "touriste",
- "id": "b10829bb1d1098baf21180f069df71bbee0e153ec48fc79b345216decd610899",
- "kws": {
- "fr": [
- "touriste"
- ]
- }
- },
- {
- "nm": "plate-forme",
- "id": "e6911832d5fd176fc5b3bab31f8c3d846500204dff65e3666ba8892c443656a2",
- "kws": {
- "fr": [
- "plate-forme"
- ]
- }
- },
- {
- "nm": "palais",
- "id": "e2b5e5628d96c70fd1f7ba316a466d542934f8da41b0cc3bd0965e39e5ec7daa",
- "kws": {
- "fr": [
- "palais"
- ]
- }
- },
- {
- "nm": "terrorisé",
- "id": "dd99f8d84ef5b3ef19c47ae4b4dd598c186e52cd1f444a6e7de9407758c3d5bd",
- "kws": {
- "fr": [
- "terrorisé",
- "effrayé",
- "faire peur",
- "avoir peur"
- ]
- }
- },
- {
- "nm": "couteau",
- "id": "f22a14cea8a62e78bd3fcb31b7fb99be09911cb8fc0c3affe62f2a495f40c54b",
- "kws": {
- "fr": [
- "couteau"
- ]
- }
- },
- {
- "nm": "sélectionner",
- "id": "82f7d882c933cfc52d4c5dc350d5f1def67cf925844657028b734b4f1034a20e",
- "kws": {
- "fr": [
- "sélectionner",
- "décider",
- "choisir",
- "préférer"
- ]
- }
- },
- {
- "nm": "interpréter",
- "id": "996eec1d919f3dd33c2891351d170400c719a42ec32153ef6dd02e487471552c",
- "kws": {
- "fr": [
- "interpréter",
- "orquestre"
- ]
- }
- },
- {
- "nm": "brosser",
- "id": "3a094e88991fde57031ecb67a153b531afbac4c304bc4886a39c252e26747a3a",
- "kws": {
- "fr": [
- "brosser"
- ]
- }
- },
- {
- "nm": "centre de récupération",
- "id": "05bfa22741e24cf770f41b441eb097619165c94498a6e8f3688b2393387c99d9",
- "kws": {
- "fr": [
- "centre de récupération",
- "crmf",
- "signalétique"
- ]
- }
- },
- {
- "nm": "raquette de tennis",
- "id": "8a93cd6e5b2d7cfa5a8628d2efb5a8a2db868a1281d12ee20e20301ef207b837",
- "kws": {
- "fr": [
- "raquette de tennis",
- "raquette"
- ]
- }
- },
- {
- "nm": "cartes de poker",
- "id": "272baac107155653dc754ceafacf929444e16bce29d65f149efec7eb2fbbc11f",
- "kws": {
- "fr": [
- "cartes de poker",
- "cartes",
- "jeu de cartes"
- ]
- }
- },
- {
- "nm": "apprendre",
- "id": "6062d8e810214a0d6fb131744557286ddbd85fe8641f74d8bb3e66fc9b4af8fb",
- "kws": {
- "fr": [
- "apprendre"
- ]
- }
- },
- {
- "nm": "pêcher",
- "id": "f0be8e5ebbf113a3ef1d9255bafd8115416dbddaf242b9fe3e54619587d582d4",
- "kws": {
- "fr": [
- "pêcher",
- "arbre fruitier"
- ]
- }
- },
- {
- "nm": "corde",
- "id": "1c5a03671cc505654816a026ad82ac916162823921048a5ceb9269af75519d43",
- "kws": {
- "fr": [
- "corde"
- ]
- }
- },
- {
- "nm": "organisation",
- "id": "7a2a9215444b8b6605624b17574f0a5abc303d30fa5401fa17adbe1e6b128f65",
- "kws": {
- "fr": [
- "organisation",
- "association"
- ]
- }
- },
- {
- "nm": "villes",
- "id": "eb35b83fe0aa85a6565d27c6dba92365989ac0ae38adf8b434229f11c7b16825",
- "kws": {
- "fr": [
- "villes",
- "localités"
- ]
- }
- },
- {
- "nm": "olives noires",
- "id": "1a60545bbf32ec6d6d52a7f4fa88824f8a76e9b9a14a9de5a1c5ea4886347683",
- "kws": {
- "fr": [
- "olives noires",
- "olives"
- ]
- }
- },
- {
- "nm": "diable",
- "id": "125c35ebc51067ea8414f7d051e54c9c45daee72af629d31ec81ac7da8701629",
- "kws": {
- "fr": [
- "diable"
- ]
- }
- },
- {
- "nm": "ouvrir la porte",
- "id": "4c03a3f3bd1745c8b9028c5e2d3c94e8a525fde25e2517d62eaf745b1b76debf",
- "kws": {
- "fr": [
- "ouvrir la porte",
- "ouvrir",
- "tirer"
- ]
- }
- },
- {
- "nm": "camper",
- "id": "840be3f2cd60a21122fff1f3390670af6807e350d4bf28113b43b1a1450317c8",
- "kws": {
- "fr": [
- "camper"
- ]
- }
- },
- {
- "nm": "multiculturalité",
- "id": "b4a262200d55d1d82822232053ac606e22897191e4ac7e5071e4a69ee21911db",
- "kws": {
- "fr": [
- "multiculturalité",
- "interculturalité"
- ]
- }
- },
- {
- "nm": "toilettes pour dames",
- "id": "3f51f3e9e299116c55fe9374858cc9e816e47bbe8583e5ae81a8354a2e5b46d5",
- "kws": {
- "fr": [
- "toilettes pour dames",
- "water",
- "baignoire",
- "salle de bain"
- ]
- }
- },
- {
- "nm": "chapeau de fête",
- "id": "07f884d3ccea1f8b794c736f807dbce6d5f90fb9527448062e774cf6110045f9",
- "kws": {
- "fr": [
- "chapeau de fête",
- "bonnet"
- ]
- }
- },
- {
- "nm": "ji",
- "id": "89bc76704ee7791264c650e65151121ff3c111bf41c8284c72a3bde8476b398c",
- "kws": {
- "fr": [
- "ji",
- "j",
- "lettre"
- ]
- }
- },
- {
- "nm": "vaisseau spatial",
- "id": "18f6292cae6281dc9fc70ceea88449745f536fd74a3d949dd360cc179324507a",
- "kws": {
- "fr": [
- "vaisseau spatial",
- "ferry"
- ]
- }
- },
- {
- "nm": "personne",
- "id": "eaf7dbd607d42608ef87fc26e6631668e99d68185243b0be11a5c2a1c8522b19",
- "kws": {
- "fr": [
- "personne",
- "femme"
- ]
- }
- },
- {
- "nm": "danemark",
- "id": "8b78e46a01f1e86c49a09aceec88f9bd34008ae2a71cbe61534cae9e787eb867",
- "kws": {
- "fr": [
- "danemark"
- ]
- }
- },
- {
- "nm": "dessous",
- "id": "f65da9edcc13d47d7164768d0d99032cd949cba3f17ed9192f53e7d7e6e0844e",
- "kws": {
- "fr": [
- "dessous"
- ]
- }
- },
- {
- "nm": "brique",
- "id": "85e3d7edbecdb97be46a1bc713fdc402b3745f6a59b9b528cf3e14b3d45a64ed",
- "kws": {
- "fr": [
- "brique"
- ]
- }
- },
- {
- "nm": "inclusion",
- "id": "4d507788bba3820e39a41805b3028ecf897a46dc41b5fe898e3d168faab22984",
- "kws": {
- "fr": [
- "inclusion",
- "intégration"
- ]
- }
- },
- {
- "nm": "canapé",
- "id": "3db07efa4e3d63c18c6037372f127bea464a005f89d9cd373aba0d75358f9228",
- "kws": {
- "fr": [
- "canapé",
- "amuse-gueule"
- ]
- }
- },
- {
- "nm": "ouvrir",
- "id": "94dc4ba300206dbb2c45e211da54095d089f502c6dbe0cf966f0bf7ef3f68dad",
- "kws": {
- "fr": [
- "ouvrir"
- ]
- }
- },
- {
- "nm": "pois chiche",
- "id": "4730e07433c55795cfae0b3f73aaf2cb849411a56aa10f5a5b4bf3d33fc3c8b1",
- "kws": {
- "fr": [
- "pois chiche",
- "légume"
- ]
- }
- },
- {
- "nm": "travaux manuels",
- "id": "4027ea545526c24c88cdc1f520ac27aacd07bb9a6c47af891da331cfab945942",
- "kws": {
- "fr": [
- "travaux manuels",
- "travaux manuels",
- "arts plastiques"
- ]
- }
- },
- {
- "nm": "sucreries",
- "id": "a8c9ee0ae2a17c546e8e659903c0a5ef80032cf0850b33cac6b6ecccd68f86be",
- "kws": {
- "fr": [
- "sucreries",
- "friandises"
- ]
- }
- },
- {
- "nm": "porte de palmas",
- "id": "bc800c6c88c336868d66e3e46eee070dcddeb9da6df67885a376a234ef2046e5",
- "kws": {
- "fr": [
- "porte de palmas",
- "badajoz"
- ]
- }
- },
- {
- "nm": "se reposer",
- "id": "9260da432b1f7e41e14d339be4bbb636144085929a93aecf272cb7567d2e6783",
- "kws": {
- "fr": [
- "se reposer",
- "reposer",
- "repos"
- ]
- }
- },
- {
- "nm": "tu as entendu ça",
- "id": "e401c82ab29d72c2517613b1eb7a204d660a8ddc54bd4634a4a245bb2f213c6c",
- "kws": {
- "fr": [
- "tu as entendu ça",
- "tu entends ça",
- "l\u0027as-tu entendu"
- ]
- }
- },
- {
- "nm": "phénomène atmosphérique",
- "id": "be922c75e345eb55f1c28ba1e808e5223d7336bba2576d5671956ca7997f673f",
- "kws": {
- "fr": [
- "phénomène atmosphérique",
- "chaud",
- "astre",
- "soleil"
- ]
- }
- },
- {
- "nm": "corps de dos",
- "id": "a151d838795c373ada64c723a8dd93f30c1e03ce7d3591538712bca3e2c8a585",
- "kws": {
- "fr": [
- "corps de dos",
- "corps"
- ]
- }
- },
- {
- "nm": "coupe de cheveux",
- "id": "c4898912b802d23c44058f849d7e6f0d77a5370e6a4c0750b426166497e43e92",
- "kws": {
- "fr": [
- "coupe de cheveux",
- "couper les cheveux",
- "couper",
- "coupe"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "67cb45fea93926fbba3b46a73657faf6246be043d03ae28e6fb805ef0ad58444",
- "kws": {
- "fr": [
- "praxie",
- "orthophonie",
- "lécher"
- ]
- }
- },
- {
- "nm": "huile en conserve",
- "id": "6f07c09ea17d78d83953ab630159f2fa0fc4c39e938610c033b1b75b602a1d10",
- "kws": {
- "fr": [
- "huile en conserve"
- ]
- }
- },
- {
- "nm": "roseau",
- "id": "0b7ea07a87cdbb14b7376e2b98672af68e0b34ae65236b86bfcb5af8a1b702b1",
- "kws": {
- "fr": [
- "roseau"
- ]
- }
- },
- {
- "nm": "traire",
- "id": "846af679cbf7284d1cc658cdba4af22d83055a787e405fd6632418c497818c7c",
- "kws": {
- "fr": [
- "traire"
- ]
- }
- },
- {
- "nm": "comment",
- "id": "7a6e54794223e4c6e8c0a0b8a76051812a07d16bdfff38a350ff3d137279e9dd",
- "kws": {
- "fr": [
- "comment"
- ]
- }
- },
- {
- "nm": "coton",
- "id": "39ee87720e0fc3c94d19181aabfe4a185a7c0f51bd2889c89eda35f5ab4ffded",
- "kws": {
- "fr": [
- "coton"
- ]
- }
- },
- {
- "nm": "moutarde",
- "id": "89ad92e1514023cb7eabc14d8369cd4953a1bcbe7e182cb2587ee825c170a329",
- "kws": {
- "fr": [
- "moutarde"
- ]
- }
- },
- {
- "nm": "politique",
- "id": "5539030b469744daef3c0ecf049a6c2869229fc619a58e87a35b508dc818e7d3",
- "kws": {
- "fr": [
- "politique"
- ]
- }
- },
- {
- "nm": "clou",
- "id": "3ae4dbe82e0fa43387b06676e1f2b34c09f8e1d5ba549b7e5f326e2f95a7f54e",
- "kws": {
- "fr": [
- "clou"
- ]
- }
- },
- {
- "nm": "fossile",
- "id": "c06ef7c9a8fbdd79ac7dfa7f6531d902faade8ebad11c5dafe347c5c96fa6ee5",
- "kws": {
- "fr": [
- "fossile"
- ]
- }
- },
- {
- "nm": "détergent",
- "id": "77ddf9fcfa14ca9c8d0b1a22549e2463e345fc4f53b3da6c6789e7d07567dc5d",
- "kws": {
- "fr": [
- "détergent",
- "lessive"
- ]
- }
- },
- {
- "nm": "sentir mauvais",
- "id": "de558154e45ea799f2c94c61865638856a40a188bfecff03057942938c46cbdc",
- "kws": {
- "fr": [
- "sentir mauvais"
- ]
- }
- },
- {
- "nm": "battement d\u0027ailes",
- "id": "c73668b6a18759a598a71c5eb9b9abdcdd5fccaa370542b8a4f92b57db2fe034",
- "kws": {
- "fr": [
- "battement d\u0027ailes",
- "battre des ailes"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "413fd1bb56eaf2559246cc63d7a4bf8403335e8e895edff0872c9ec532a662f1",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains sur le ventre",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "éléphant",
- "id": "4e9ca9b12e57fff80a6c275588d191c1e27aecd6c366556a8b24b2fa2ea2f18f",
- "kws": {
- "fr": [
- "éléphant"
- ]
- }
- },
- {
- "nm": "pâtisserie",
- "id": "592046aa98f7eb065a4943334909e0264c51a00bd9d3b414c780a29cfb7584d4",
- "kws": {
- "fr": [
- "pâtisserie"
- ]
- }
- },
- {
- "nm": "crabe",
- "id": "6780e53367abec9c291a878b854ff4400f426687c3946049d618d4757a12ea9e",
- "kws": {
- "fr": [
- "crabe"
- ]
- }
- },
- {
- "nm": "atelier de danse",
- "id": "7ee9f9d81339d7fd5b4f3a4fbd785a700bca01f9ecd0af1d1c61facca345e45a",
- "kws": {
- "fr": [
- "atelier de danse"
- ]
- }
- },
- {
- "nm": "flamenco",
- "id": "50689ff007a9e5b1f4187e42187b5ea2df0ca5dbb0f3bea96d633ed4e2dab99a",
- "kws": {
- "fr": [
- "flamenco"
- ]
- }
- },
- {
- "nm": "bonbon",
- "id": "007395f96873b7f6bd622c9d323c5815e767a31b4cfe616ce94fe6100214e5bc",
- "kws": {
- "fr": [
- "bonbon"
- ]
- }
- },
- {
- "nm": "taxi",
- "id": "5c901d29293bd2e7dd483f2cfd9d3c291878a83d3a7e3ea96a16ffcefdc90b3b",
- "kws": {
- "fr": [
- "taxi"
- ]
- }
- },
- {
- "nm": "agrafes",
- "id": "d33307fd792ebd59958e7a721e4a7eefd600959c6876745b81178428ed429880",
- "kws": {
- "fr": [
- "agrafes"
- ]
- }
- },
- {
- "nm": "ouvrir le robinet",
- "id": "599c424547d33a5edbb806baab7a52eebf538ec73526e5b44bcfa964c451ceab",
- "kws": {
- "fr": [
- "ouvrir le robinet",
- "ouvrir"
- ]
- }
- },
- {
- "nm": "cousine",
- "id": "0975e741d5463df682c26a41b05dd028ea408b1b037f17d3969d8a0ff09aa9b3",
- "kws": {
- "fr": [
- "cousine"
- ]
- }
- },
- {
- "nm": "betterave",
- "id": "0462ee5fb6ea2a8e665b9309cf4a84fa29159f839bafb0329343e680992d12d0",
- "kws": {
- "fr": [
- "betterave"
- ]
- }
- },
- {
- "nm": "parc thématique",
- "id": "8a753ef429d03bb153c5e8d68efda8b66840e2d76a17b156dbc8aa2017b3b827",
- "kws": {
- "fr": [
- "parc thématique"
- ]
- }
- },
- {
- "nm": "ogre",
- "id": "3e4a9a954311abfb1b1c05eea86b1f2bded4960fdbacfa6e66eb64d504173da6",
- "kws": {
- "fr": [
- "ogre"
- ]
- }
- },
- {
- "nm": "déplaire",
- "id": "fe042f3ebbd2ba6242ac46acb280580be0868372aff29dadea7f201e25586a65",
- "kws": {
- "fr": [
- "déplaire",
- "désagréable",
- "antipathique"
- ]
- }
- },
- {
- "nm": "trois",
- "id": "6877d2a358f15399f196be0330a963f2105f1b56e22c14bd1f0646302e3abd08",
- "kws": {
- "fr": [
- "trois",
- "impair",
- "numéro"
- ]
- }
- },
- {
- "nm": "excursionniste",
- "id": "dc6bf6b8aee4b5a95ce117e9c224dc7dc1bd7f637db21cd95a8ecdd7f3d509ee",
- "kws": {
- "fr": [
- "excursionniste"
- ]
- }
- },
- {
- "nm": "canne",
- "id": "887d1937a1e248f3a4019c45077c1dfa8c61bf4ac9a913e89463036ed2ac3f6a",
- "kws": {
- "fr": [
- "canne",
- "houlette"
- ]
- }
- },
- {
- "nm": "broche",
- "id": "97f857813c60ecb74868cd964db9da1e78ebda363427f2da6d18e09c1827403b",
- "kws": {
- "fr": [
- "broche",
- "épingle"
- ]
- }
- },
- {
- "nm": "vouloir",
- "id": "ff0cf30913dc3f6580efda6ae14f034882b8d910a0e46510e37265b62559ec4a",
- "kws": {
- "fr": [
- "vouloir",
- "aimer"
- ]
- }
- },
- {
- "nm": "brosse",
- "id": "674a78a4d97bfaa243b1c553d480132abe610b2d4f3d56b28dc5ab07bbac3231",
- "kws": {
- "fr": [
- "brosse"
- ]
- }
- },
- {
- "nm": "bière",
- "id": "1d3955adbc2de456cc691b1c369545df50d596301ba63a9fe740c9541bbb9969",
- "kws": {
- "fr": [
- "bière"
- ]
- }
- },
- {
- "nm": "camion",
- "id": "3a83d469a9d9a1b65d33e0d594dba7979f976f20741b83e2d465fe185e962d5c",
- "kws": {
- "fr": [
- "camion"
- ]
- }
- },
- {
- "nm": "biceps",
- "id": "b61c61d4fd2f2160539f03d543dc86c70da15457b0f2d964c3dea8dd772f49de",
- "kws": {
- "fr": [
- "biceps"
- ]
- }
- },
- {
- "nm": "buts de rugby",
- "id": "233338f7e3fe61449279df81b27a4d62e4e6b8e39ad2f40c64cbfe3ed322c713",
- "kws": {
- "fr": [
- "buts de rugby",
- "buts"
- ]
- }
- },
- {
- "nm": "verbe",
- "id": "2bcea9c490533c31b5301c23db52fd0836b198156c934f471376de1a6420f317",
- "kws": {
- "fr": [
- "verbe",
- "verbes"
- ]
- }
- },
- {
- "nm": "gilet",
- "id": "510e91f74f1fb09c6adc0e35a870ee5770d4dbc6760955e1aeb9c632003cb965",
- "kws": {
- "fr": [
- "gilet"
- ]
- }
- },
- {
- "nm": "journaliste",
- "id": "7eb4ec7e32d8f61b3d0f26ce9d746f01dbeb02fb70f9abb4a6f29933e867ce6c",
- "kws": {
- "fr": [
- "journaliste"
- ]
- }
- },
- {
- "nm": "pirate",
- "id": "5f6b98dc92f74bb5f3daf21546ad05f5a42ddb9694deba8d5f89941cd4992e39",
- "kws": {
- "fr": [
- "pirate"
- ]
- }
- },
- {
- "nm": "testicules",
- "id": "aa16903aa9e1fc99b6380cfc08af20d8a9246cf783f41580d13644a10c608f12",
- "kws": {
- "fr": [
- "testicules"
- ]
- }
- },
- {
- "nm": "jumeaux",
- "id": "f798af48854069d934b45495758133a0c0a35a2bda00ffd92b8b2d0df990ced9",
- "kws": {
- "fr": [
- "jumeaux"
- ]
- }
- },
- {
- "nm": "tribunal",
- "id": "d1eb9694ad842a64bae13844b26148f5d3d1dd08322bc3a5a53b45d3f6e1e1ff",
- "kws": {
- "fr": [
- "tribunal",
- "juge"
- ]
- }
- },
- {
- "nm": "férule",
- "id": "065b584f6bc6992af7f7b1073de2ef49928dc1386f88e8e505829c563f2dac72",
- "kws": {
- "fr": [
- "férule"
- ]
- }
- },
- {
- "nm": "chaleur",
- "id": "0b5bd32989e280b8e637cd02a10a25f2aadf3a4df8755d2a0fe668a48fea96a4",
- "kws": {
- "fr": [
- "chaleur",
- "chaud",
- "échauffer",
- "bouffées de chaleur"
- ]
- }
- },
- {
- "nm": "couvert",
- "id": "92887f10df304a3d66d8c5e2bad461ce40b20b855862728beefacdd80371c622",
- "kws": {
- "fr": [
- "couvert",
- "nuageux"
- ]
- }
- },
- {
- "nm": "blouson",
- "id": "3b72bc62122d5e436bfed8c4a1b59b3bdc75d599e12efc9b1f865ffd8ade8a24",
- "kws": {
- "fr": [
- "blouson"
- ]
- }
- },
- {
- "nm": "canard",
- "id": "ce233e2617d865157a35ed65d4f4a065e259329ba3d6e11b444f0325571dd89f",
- "kws": {
- "fr": [
- "canard"
- ]
- }
- },
- {
- "nm": "tramway",
- "id": "18221459cc8c7ad151c55ec177be4328642857c12e031c906e40c4b9659e161b",
- "kws": {
- "fr": [
- "tramway"
- ]
- }
- },
- {
- "nm": "obscurité",
- "id": "bca3e9b044112e6501cce990307d3a6d7e10d27b95b3d6048150df8a0897ba40",
- "kws": {
- "fr": [
- "obscurité"
- ]
- }
- },
- {
- "nm": "tulipe",
- "id": "3f08abd27fd5fd9582ac0a741482ce56a6325f1a9445fa4a66cb93ce37d78e3c",
- "kws": {
- "fr": [
- "tulipe",
- "fleur"
- ]
- }
- },
- {
- "nm": "chichis",
- "id": "a08de6860523a91768c44f19a5a2bac8a01fca90d73eb3a767be22c7d0065222",
- "kws": {
- "fr": [
- "chichis"
- ]
- }
- },
- {
- "nm": "brioche de pâque",
- "id": "dfbcf9d650bf4fa8b989f9084bf9d1f57dd6a9064807435958712232c045915c",
- "kws": {
- "fr": [
- "brioche de pâque"
- ]
- }
- },
- {
- "nm": "payer",
- "id": "af1d1f10d07dd4a1b9f91b483b731d34f1950ca4cff7f75c02dbba35341df528",
- "kws": {
- "fr": [
- "payer"
- ]
- }
- },
- {
- "nm": "vivant",
- "id": "6216a83d4f636b655ccbd4ec121170cfa8536cbcf5e14275ebd39a1a1cf8c978",
- "kws": {
- "fr": [
- "vivant"
- ]
- }
- },
- {
- "nm": "envoûter",
- "id": "c9337f78cd4ecad01dbe2bd73e3a330149857b8d78c8460fbcc6fc31f466cc4a",
- "kws": {
- "fr": [
- "envoûter"
- ]
- }
- },
- {
- "nm": "conte",
- "id": "ddd8109c056eaf477b301eb28fe6011911d3ff38800c83a81a71f42270eb7d8a",
- "kws": {
- "fr": [
- "conte"
- ]
- }
- },
- {
- "nm": "pic-nic",
- "id": "1d601789a75c3134cde42bd7974e89964bdd39311b6a2a3837a0908fb87fc551",
- "kws": {
- "fr": [
- "pic-nic"
- ]
- }
- },
- {
- "nm": "long",
- "id": "33a5cfbc9d4d7a27e22d6d560a79024f19a0cb06a294708959aa74a8498bcae8",
- "kws": {
- "fr": [
- "long"
- ]
- }
- },
- {
- "nm": "mal de dos",
- "id": "34cc8feed3644e4aac159cbaede6f8cc8a1f006ae34993ee687870ddeda02cd4",
- "kws": {
- "fr": [
- "mal de dos"
- ]
- }
- },
- {
- "nm": "autre couleur",
- "id": "c86873bfecc943f22922bd719894ad3a7e428813f185377343cc01f008c218ed",
- "kws": {
- "fr": [
- "autre couleur"
- ]
- }
- },
- {
- "nm": "poissonnerie",
- "id": "90389c1578dcf4d02f53feea56c1b0dc021bfb5e734ecdad252d134f5d928932",
- "kws": {
- "fr": [
- "poissonnerie"
- ]
- }
- },
- {
- "nm": "plaquer au sol",
- "id": "ff3e688afc1df73518867856c66ea1cbaa0447069454cebada56f7406a22e375",
- "kws": {
- "fr": [
- "plaquer au sol",
- "s\u0027asseoir par terre",
- "s\u0027asseoir",
- "asseoir"
- ]
- }
- },
- {
- "nm": "jeu vidéo",
- "id": "c02179bc96255ee52cea6bb4298843006a9eba18845f3d85411fe9b3fdadcd5b",
- "kws": {
- "fr": [
- "jeu vidéo"
- ]
- }
- },
- {
- "nm": "faire",
- "id": "1f6d3c88749c7afa94bf493538ca87c51c2552ea4a2490f6ec7053a929a1b976",
- "kws": {
- "fr": [
- "faire"
- ]
- }
- },
- {
- "nm": "paysage",
- "id": "96042aef889505d451ba7c0056271d076b63ee74dc585e6b22112327b14326cf",
- "kws": {
- "fr": [
- "paysage"
- ]
- }
- },
- {
- "nm": "plomberie",
- "id": "e3ddf91b5b14792d5ec83fa3be952c39b0da1bb000a4061e7e1166de56104365",
- "kws": {
- "fr": [
- "plomberie"
- ]
- }
- },
- {
- "nm": "boîte",
- "id": "414a30499c6af07839843af73e21d26b4d18eb9da91219814a03c73a1470df5a",
- "kws": {
- "fr": [
- "boîte",
- "carton"
- ]
- }
- },
- {
- "nm": "valencia",
- "id": "a82f396a7415cbbeb2b13bddd92ef5efd21e3e17886089cb1df412f8cd6a6657",
- "kws": {
- "fr": [
- "valencia"
- ]
- }
- },
- {
- "nm": "toton",
- "id": "33d02960c54ef80a269d76d248162714e25d3e4bc57ea987cc7f60af5bb392bd",
- "kws": {
- "fr": [
- "toton",
- "toupie",
- "toupies"
- ]
- }
- },
- {
- "nm": "poche",
- "id": "81334cc9d5101e15a18ed280bf494751abc2516b10cdfacd44ad660450e878af",
- "kws": {
- "fr": [
- "poche"
- ]
- }
- },
- {
- "nm": "propre",
- "id": "e37f5fe345d6c5097c787f26267350fa6d24b7da7f25de2448db1fd8c3461d9f",
- "kws": {
- "fr": [
- "propre"
- ]
- }
- },
- {
- "nm": "anti-contraceptifs",
- "id": "dbb5295308c6699e91ed3b56eebb27fb128ac31db96384c566a8cdd7becf4a8d",
- "kws": {
- "fr": [
- "anti-contraceptifs"
- ]
- }
- },
- {
- "nm": "âne",
- "id": "ea14cd3e5b5ba3df1488adff4e5c3cb356220b7c330230febd3ed069b8f5eb76",
- "kws": {
- "fr": [
- "âne"
- ]
- }
- },
- {
- "nm": "pilote",
- "id": "7403f0eb7dc334edc4274c4a4dd56a74ba4be7afa6eb07da983e1c4f1d0a0443",
- "kws": {
- "fr": [
- "pilote"
- ]
- }
- },
- {
- "nm": "ustensile de cuisine",
- "id": "a2e1402edd18c446e7d99bedca06b53e86f962f8ceaa7e21a28b80a173a4fe05",
- "kws": {
- "fr": [
- "ustensile de cuisine",
- "spatule de cuisine",
- "spatule"
- ]
- }
- },
- {
- "nm": "baisser",
- "id": "9151e0973bb6efa6c0690d5d3c2c6ca75fdd29fdb54d2754f56cbd545104d183",
- "kws": {
- "fr": [
- "baisser"
- ]
- }
- },
- {
- "nm": "montre",
- "id": "002053986bbbe1d9e22462acf9c84078466e97695a0fd5302ab22b8295facb65",
- "kws": {
- "fr": [
- "montre"
- ]
- }
- },
- {
- "nm": "autonome",
- "id": "45eba6dac9d833f8b421270bca1deb38cc68fe2aa1442597a7abcf5d28437fd6",
- "kws": {
- "fr": [
- "autonome",
- "indépendant"
- ]
- }
- },
- {
- "nm": "velcro",
- "id": "0376f6fd33179b521e01486d6fab72d55125939da3b3d326d4aafa1d97b773e0",
- "kws": {
- "fr": [
- "velcro"
- ]
- }
- },
- {
- "nm": "hub",
- "id": "4a5dd1bb4cbcd42d27ba7ef249e2f96675bcf3b2abaccd40ac6c6ce63598e06f",
- "kws": {
- "fr": [
- "hub"
- ]
- }
- },
- {
- "nm": "tableau",
- "id": "e199df26e5e665e02fe42b5d2d314b22e8ceae66d7d814eae8cd70314ab667e4",
- "kws": {
- "fr": [
- "tableau",
- "carrés",
- "quadrillage"
- ]
- }
- },
- {
- "nm": "mexique",
- "id": "8f76e7f5d744329d50d4a948650543cfa01b450da7359d2afccb0dcbf251fbac",
- "kws": {
- "fr": [
- "mexique"
- ]
- }
- },
- {
- "nm": "pelote",
- "id": "0aa6abb3edb24c59ad025c284bcda51f3cb1376e0297cbb60ce493a0228f5032",
- "kws": {
- "fr": [
- "pelote"
- ]
- }
- },
- {
- "nm": "saupoudrer",
- "id": "a9b14bc5a2db723b8b0d478a96df0dc86f77c739b30ebfcff53dac22c61c9d17",
- "kws": {
- "fr": [
- "saupoudrer"
- ]
- }
- },
- {
- "nm": "france",
- "id": "b81e03e165ac16d183342acfd640629c151935cefbc98aea816d3f13cbcdbb2a",
- "kws": {
- "fr": [
- "france"
- ]
- }
- },
- {
- "nm": "s\u0027asseoir sur les toilettes",
- "id": "a6f8f05157e1c280ed5637bc23699820757025792175623fa60bf009275fd8f0",
- "kws": {
- "fr": [
- "s\u0027asseoir sur les toilettes",
- "s\u0027asseoir"
- ]
- }
- },
- {
- "nm": "exclure",
- "id": "a206d14c8383663a0970915a2985b73ed73a14f804bc49ee34f087b7c995f84a",
- "kws": {
- "fr": [
- "exclure",
- "discriminer"
- ]
- }
- },
- {
- "nm": "mari",
- "id": "79f83c57d1df7762ced53d4c7d93c9cf5edfdfeb4552e7c2f180b37b90edcfc6",
- "kws": {
- "fr": [
- "mari"
- ]
- }
- },
- {
- "nm": "aviron",
- "id": "3ed0cadbc76000e44aef5a01806675e102f28c1b298dd8cfa446c25d3755537b",
- "kws": {
- "fr": [
- "aviron",
- "bateau"
- ]
- }
- },
- {
- "nm": "musicien",
- "id": "2c5d6e14c560c6b9e4b199b77b9a4f40633b878180a3a71c0a2a284945e62156",
- "kws": {
- "fr": [
- "musicien",
- "artiste"
- ]
- }
- },
- {
- "nm": "tétra brik",
- "id": "29b0d1877b85b0c4b065cccbcd0530004b5305dccb8a4e2b508c88a7fe1f6904",
- "kws": {
- "fr": [
- "tétra brik"
- ]
- }
- },
- {
- "nm": "carte",
- "id": "14e5788db8c5aba9d6e62d5f13620e77efb953bcc47f5f3f6ab86de1a0ac2cdd",
- "kws": {
- "fr": [
- "carte"
- ]
- }
- },
- {
- "nm": "césar auguste",
- "id": "5b98731df2ffe290ddd0b7c1d4148b297531f93249b74d455be1e2c777d3c6f9",
- "kws": {
- "fr": [
- "césar auguste"
- ]
- }
- },
- {
- "nm": "houx",
- "id": "ad29e7cb88b8130c80a5991fc400444361d5148532bbb71da43fdb2efd0e71bf",
- "kws": {
- "fr": [
- "houx"
- ]
- }
- },
- {
- "nm": "lettonie",
- "id": "0650cd210f8c691e48ce49f8533ca5d3779a77f63bd30233f2752f0acd1b3370",
- "kws": {
- "fr": [
- "lettonie"
- ]
- }
- },
- {
- "nm": "malte",
- "id": "9253fde6a829154426b985fc9a1bf619f3a9527a4c8c6b57d8529b790b3f0a87",
- "kws": {
- "fr": [
- "malte"
- ]
- }
- },
- {
- "nm": "frère",
- "id": "cc56c35a3831a0b49d60ab6c0348b24fa66980278e99b1284833b9fff2906fdc",
- "kws": {
- "fr": [
- "frère"
- ]
- }
- },
- {
- "nm": "facture",
- "id": "487309a88ed44ad38cf8f7fcf1e5ff4522ba4b8d38959b679f420011ce034270",
- "kws": {
- "fr": [
- "facture",
- "compte"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "cd892cec17cba7f3ba692f8403ff62fc0fc83e2cab08cbe29b330b89e9af5409",
- "kws": {
- "fr": [
- "praxie",
- "surprendre",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "branche",
- "id": "55048e93a02024a135ea02b31614efc05d39ca01bfc78db80e19a54bd5c7c607",
- "kws": {
- "fr": [
- "branche"
- ]
- }
- },
- {
- "nm": "doucher",
- "id": "4612ab3eb7a7da94039b18abc34fce3d2a0ce02245379fe257cdbc68d7a052a1",
- "kws": {
- "fr": [
- "doucher",
- "se doucher"
- ]
- }
- },
- {
- "nm": "se pencher",
- "id": "3357e9d171fce47aea4befc630687100c75cdce2c6af0911bb928472f0d20d8c",
- "kws": {
- "fr": [
- "se pencher",
- "apparaître"
- ]
- }
- },
- {
- "nm": "instrument musical",
- "id": "62bfbf1b581f868dc4818ae95d737457864fe8ac5d3f5f823423817909e977fd",
- "kws": {
- "fr": [
- "instrument musical",
- "guitare électrique",
- "guitare"
- ]
- }
- },
- {
- "nm": "opposition",
- "id": "ec0166207b4bbb6f4383d13e36e0f13579d5b14d9345fb4b10c3471eefea9616",
- "kws": {
- "fr": [
- "opposition"
- ]
- }
- },
- {
- "nm": "sourire",
- "id": "42403d340e9a02a7f3f0cfa46548724212dacbe243f6eec3657da6b6e1a894fc",
- "kws": {
- "fr": [
- "sourire",
- "rire"
- ]
- }
- },
- {
- "nm": "embouteillage",
- "id": "2ab8782c5a8d562056463d31b30c1875341ed80b369cbefa23e1db65d251d3cc",
- "kws": {
- "fr": [
- "embouteillage"
- ]
- }
- },
- {
- "nm": "pelleteuse",
- "id": "b5c2c88147a7b7d8201aa7945a29f83008e231108ad538072c3f5bb4c5d21e52",
- "kws": {
- "fr": [
- "pelleteuse"
- ]
- }
- },
- {
- "nm": "vinaigrier",
- "id": "0bac53cd5c6d8c7ccb05d54b026f7d5490f60161a56a855802f9ae0d19dd9e0f",
- "kws": {
- "fr": [
- "vinaigrier",
- "ornement"
- ]
- }
- },
- {
- "nm": "vouloir",
- "id": "e1b04502a8e9e48ad0b40779a4e935c1600c6e006d41df3ecc2d5e18300757fa",
- "kws": {
- "fr": [
- "vouloir",
- "aimer",
- "amoureux"
- ]
- }
- },
- {
- "nm": "signalétique",
- "id": "d84915f0ce302af64144d704d5cd06733e88ecb232475b0678fbd1fe61501ed3",
- "kws": {
- "fr": [
- "signalétique",
- "salle de musculation",
- "salle"
- ]
- }
- },
- {
- "nm": "école",
- "id": "b3c988699cf37a0186d914303aa01c1accdce79dab1d766a68c096fe29b8bc8c",
- "kws": {
- "fr": [
- "école",
- "collège"
- ]
- }
- },
- {
- "nm": "ampoule",
- "id": "3702af65112b83098e65eb457416f0d54f65b3adeca61b829c467ef7bca5fc55",
- "kws": {
- "fr": [
- "ampoule"
- ]
- }
- },
- {
- "nm": "laque",
- "id": "35a2867bcdf583be8831349bad9ceee18e4e77d9d6822c790e064c9c6b9d89bc",
- "kws": {
- "fr": [
- "laque"
- ]
- }
- },
- {
- "nm": "adam et ève",
- "id": "6280437806d891ba69ffdc3c42dd3562d174cc970b84eb85cdf9925a5aa24924",
- "kws": {
- "fr": [
- "adam et ève"
- ]
- }
- },
- {
- "nm": "pile",
- "id": "7efa7dfb4ac3c5f3bbd1e90907cb264298d8cae392e4b247e55ea02291d21bea",
- "kws": {
- "fr": [
- "pile"
- ]
- }
- },
- {
- "nm": "yacht",
- "id": "44112823062f585987c20e0644aba5548eace2a96020b7df8d134cf406fb14b2",
- "kws": {
- "fr": [
- "yacht"
- ]
- }
- },
- {
- "nm": "caractère",
- "id": "0b40756fdca9eca74488693b53561e8c09de2b981f0848139b28eb38fde7df34",
- "kws": {
- "fr": [
- "caractère",
- "à",
- "lettre"
- ]
- }
- },
- {
- "nm": "prise de courant",
- "id": "700712e0af627804830c33dbf3b1e357eade590f2f7714b8c1aa2addbdc8c852",
- "kws": {
- "fr": [
- "prise de courant"
- ]
- }
- },
- {
- "nm": "garage",
- "id": "42d019ed3fad355dbecb244e338a3c16c169555224a3b24039833505c449a473",
- "kws": {
- "fr": [
- "garage"
- ]
- }
- },
- {
- "nm": "cauchemar",
- "id": "1120f3d26541aee4f123de86322189f1ddfe9842d133aab29e33ce98cafa706d",
- "kws": {
- "fr": [
- "cauchemar"
- ]
- }
- },
- {
- "nm": "école-atelier",
- "id": "69ea973620f04146364abbb8d46cee92724bd3f9f859c113ed39663838594b25",
- "kws": {
- "fr": [
- "école-atelier",
- "atelier pour l\u0027emploi"
- ]
- }
- },
- {
- "nm": "passable",
- "id": "25bb95a8362fc9ae2eb650fbe5c08f6bd53cde3f79ce41e653b0c1ece4e4f869",
- "kws": {
- "fr": [
- "passable",
- "bien !",
- "bien",
- "ok"
- ]
- }
- },
- {
- "nm": "bienvenu",
- "id": "b07783b97d1967b55af2dee556817f419e8baea43bddb4e23f3119703acf78a3",
- "kws": {
- "fr": [
- "bienvenu"
- ]
- }
- },
- {
- "nm": "poterie",
- "id": "32fa01c27ff4fa06f409bb5402c2e4714e250de2e8173e81e3f2d980a187875b",
- "kws": {
- "fr": [
- "poterie"
- ]
- }
- },
- {
- "nm": "demande de divorce",
- "id": "e23d495f72722bfeb775a000d91423d5562e69a179542fe89fad6ca59b34e7bf",
- "kws": {
- "fr": [
- "demande de divorce"
- ]
- }
- },
- {
- "nm": "quel",
- "id": "3608dfce211165d2848059fbfcefa02e4a3f0f585c5b87f03c25d9269fdb3594",
- "kws": {
- "fr": [
- "quel"
- ]
- }
- },
- {
- "nm": "temps libre",
- "id": "99149d6a632cce99a006f464765553f68cb9a5434fdc0d010225c8220e4f4cc7",
- "kws": {
- "fr": [
- "temps libre",
- "loisir",
- "loisirs"
- ]
- }
- },
- {
- "nm": "informaticienne",
- "id": "767ad73eceaaa6059e04e4fc9ee866eedc190fcf056f7e67c507cec6ea5f8ebc",
- "kws": {
- "fr": [
- "informaticienne"
- ]
- }
- },
- {
- "nm": "saint georges",
- "id": "fc9c83505e5744466eb572b5d4efda3260ddae89b04084fbadb4cbe78a4db1fe",
- "kws": {
- "fr": [
- "saint georges"
- ]
- }
- },
- {
- "nm": "croix rouge",
- "id": "d20293367e24f4f6d1c7caf6bd3b07498068215c31df6d253da80685e306d58c",
- "kws": {
- "fr": [
- "croix rouge"
- ]
- }
- },
- {
- "nm": "promener le chien",
- "id": "5c966abccef65c5a6381fb074fd97dc89a5838cfd481087a715b51865cb1e930",
- "kws": {
- "fr": [
- "promener le chien",
- "promener"
- ]
- }
- },
- {
- "nm": "entrée",
- "id": "73c5201843aeccded4fc59c32f9cde9b47959ecce4fc2bfc2d3c321c2e9e9f85",
- "kws": {
- "fr": [
- "entrée"
- ]
- }
- },
- {
- "nm": "description",
- "id": "f96750574737842d98b8802064b809d9c08da6203b285379d2c30fa3a837deb9",
- "kws": {
- "fr": [
- "description"
- ]
- }
- },
- {
- "nm": "hameçon",
- "id": "9ce1cfe9493c9e2478d4361e4565c4fc00888afb38e951bea91350e6af55d41d",
- "kws": {
- "fr": [
- "hameçon"
- ]
- }
- },
- {
- "nm": "monitrice",
- "id": "005287bb48ed851161919517195176a775c84e50033b0e632a9f969a40d3ff2a",
- "kws": {
- "fr": [
- "monitrice",
- "soigneuse"
- ]
- }
- },
- {
- "nm": "lettre",
- "id": "b718c39d565f0121a44b87b4f046514aa655cc719304ae09fe43cf5527853776",
- "kws": {
- "fr": [
- "lettre"
- ]
- }
- },
- {
- "nm": "prendre par la main",
- "id": "33037462e66aa79c7408688391dd2b9f80c8c6181328313b998c6440d103c91c",
- "kws": {
- "fr": [
- "prendre par la main",
- "prendre",
- "accrocher"
- ]
- }
- },
- {
- "nm": "messe",
- "id": "5fbecf42f8691d40b99d45c271629117fedcb5935af8b13db74429c270bf185f",
- "kws": {
- "fr": [
- "messe"
- ]
- }
- },
- {
- "nm": "dent",
- "id": "c492dbe6d30605f3758a8d41d6822b08217b3f26f1b336d4869d81ef9b91e343",
- "kws": {
- "fr": [
- "dent"
- ]
- }
- },
- {
- "nm": "table de ping-pong",
- "id": "53be0356b5abb00b0dacc21955a0598c745faad6d7498d57242ef251670404ca",
- "kws": {
- "fr": [
- "table de ping-pong",
- "table de tennis"
- ]
- }
- },
- {
- "nm": "caca",
- "id": "e314fc37175d8b5b1e4775fe33f9dbe945cdc33b5217f9e035c97443ba7969c7",
- "kws": {
- "fr": [
- "caca",
- "excrément"
- ]
- }
- },
- {
- "nm": "peindre",
- "id": "10a51ac2cbe5ec84847c5930024c11a783e3d72eef50dfd432a17fbc220fc93d",
- "kws": {
- "fr": [
- "peindre"
- ]
- }
- },
- {
- "nm": "bulletin de vote",
- "id": "46f2ab074f10983e719133bf02b9ce7606cb68c4c22f458543e90e48323ec682",
- "kws": {
- "fr": [
- "bulletin de vote",
- "bulletin"
- ]
- }
- },
- {
- "nm": "limonade",
- "id": "417eb28de4a039a2463ec5412bf17f0f4ba1957f1b1b6ee49df0a20185b4d8fa",
- "kws": {
- "fr": [
- "limonade"
- ]
- }
- },
- {
- "nm": "massue",
- "id": "df1bf7f2f5336c4fb50b1addf7d1731e270eaab31b754f5b369ef8624c90a7e5",
- "kws": {
- "fr": [
- "massue"
- ]
- }
- },
- {
- "nm": "persil",
- "id": "a73eb91d79eb4aebe308068ef23b70b91a884d453726f49b4470a68f1a49ff0c",
- "kws": {
- "fr": [
- "persil"
- ]
- }
- },
- {
- "nm": "domino",
- "id": "f3b83af4650f9e63d420c21b0809a3b1056da4b6d7159ab2fa78008ac13f45d6",
- "kws": {
- "fr": [
- "domino"
- ]
- }
- },
- {
- "nm": "président",
- "id": "20e8694c9557adb1e8dd5f5d064ae59f825f493e0c5b121e2b536b187555b91c",
- "kws": {
- "fr": [
- "président",
- "gouvernement"
- ]
- }
- },
- {
- "nm": "entreprise",
- "id": "670f7c95191f6b2d2a3ad0ad86f62445af3e37ed17847a650ea5da1573b445ee",
- "kws": {
- "fr": [
- "entreprise",
- "usine"
- ]
- }
- },
- {
- "nm": "brûlure",
- "id": "1243c49cbb54376a9c0de4e1fe173f6ce7a2388202384c025ef50e84b195dd23",
- "kws": {
- "fr": [
- "brûlure"
- ]
- }
- },
- {
- "nm": "promener",
- "id": "6bc70413a699d4a1bb35aa16d72c0425c136fe2108488469a81e6c33b7b8835d",
- "kws": {
- "fr": [
- "promener",
- "se promener"
- ]
- }
- },
- {
- "nm": "baleine",
- "id": "edb85b785f919fffa31d2f0ebbd44ffc3b34ce8ab142b5a79dad6beb0b8e46ec",
- "kws": {
- "fr": [
- "baleine"
- ]
- }
- },
- {
- "nm": "appuyer",
- "id": "d684d4083bcb654c3ceacc911b88d2f5f18b28068743013d3c878b2f3a0dee7b",
- "kws": {
- "fr": [
- "appuyer"
- ]
- }
- },
- {
- "nm": "bible",
- "id": "2b24a0065bb12121de0f37ebc9bc34e807481382d627e7aeff48ae57e7d10b63",
- "kws": {
- "fr": [
- "bible"
- ]
- }
- },
- {
- "nm": "cousin",
- "id": "4f6db5339f4c2a4a9476f09b45b207c5c06d3a9036703cb637cf48cf38985ec6",
- "kws": {
- "fr": [
- "cousin"
- ]
- }
- },
- {
- "nm": "danser",
- "id": "607aaadc6cfa7906eea9e18c612db702e3fac41b4d292a8e187167603655e69d",
- "kws": {
- "fr": [
- "danser",
- "danseur"
- ]
- }
- },
- {
- "nm": "entrée",
- "id": "a4bb6a0442b9a4b41b1c14fa398d834420aabc43fbfa1f0ffe42374f8dbaa5df",
- "kws": {
- "fr": [
- "entrée"
- ]
- }
- },
- {
- "nm": "sérum",
- "id": "4320e4dcd9795591a9c67893451c13f718b8ca06268d512ea2a0ed5f4020176e",
- "kws": {
- "fr": [
- "sérum",
- "poche de sérum"
- ]
- }
- },
- {
- "nm": "colin-maillard",
- "id": "867ae7dfb9326ecbc0eb5732d3dbe7a8979bd1626f2c99debd4d84203f951697",
- "kws": {
- "fr": [
- "colin-maillard"
- ]
- }
- },
- {
- "nm": "savoir",
- "id": "e428bc8f24b6418266e72b746297d47326b8ae7bc021b7426036183210040cb8",
- "kws": {
- "fr": [
- "savoir"
- ]
- }
- },
- {
- "nm": "traverser",
- "id": "20f666d2629b6cf95d45acd314537ae7d05ab11c3f933d261e3e013b5a9ca812",
- "kws": {
- "fr": [
- "traverser"
- ]
- }
- },
- {
- "nm": "tranche de pain",
- "id": "abd69217f89c7f720b0b25d244485b0eb965f2bb67387756da6285312b7c75ab",
- "kws": {
- "fr": [
- "tranche de pain",
- "tranche"
- ]
- }
- },
- {
- "nm": "entasser",
- "id": "39f1cb903981d37fcfd5032991d21b5d4cfd782fee8c67dbd7fee4c50bb06340",
- "kws": {
- "fr": [
- "entasser"
- ]
- }
- },
- {
- "nm": "opposition",
- "id": "d5d82028ec52e2a9c6ff4b1a93ab5219684cd728f189d390b3c019dd6719bc64",
- "kws": {
- "fr": [
- "opposition",
- "s\u0027opposer"
- ]
- }
- },
- {
- "nm": "effacer",
- "id": "8bb27c7292df81708ab72fca5a2fc5f787c3f8020e43b553bd06c48714d3b295",
- "kws": {
- "fr": [
- "effacer"
- ]
- }
- },
- {
- "nm": "frire",
- "id": "3380a642ffd79765ffb5900cfee375d0148bcee0e3aef2162a757303b2158dc1",
- "kws": {
- "fr": [
- "frire"
- ]
- }
- },
- {
- "nm": "crevettes épluchées",
- "id": "44e0ad825a60b9d3557f33e24457cb38c74039e0d7bb0a7c13e4c7ccfba1befc",
- "kws": {
- "fr": [
- "crevettes épluchées",
- "crevettes"
- ]
- }
- },
- {
- "nm": "se sucer le doigt",
- "id": "4630fe43801c7eab78467bcb3f717c4cd03663f351a3bdcf55ee1dbbe3da35e0",
- "kws": {
- "fr": [
- "se sucer le doigt"
- ]
- }
- },
- {
- "nm": "boîte à surprise",
- "id": "de40991d5570d3918f41715bc249083f075b91a243d84973336127041bfb0fec",
- "kws": {
- "fr": [
- "boîte à surprise",
- "surprise"
- ]
- }
- },
- {
- "nm": "pierres",
- "id": "78d6705f5f08d53f85e92e7261717d985479d3b9229f44b9ba32951fd4e3a5ae",
- "kws": {
- "fr": [
- "pierres"
- ]
- }
- },
- {
- "nm": "cuenca",
- "id": "0f8dc7e6a6878521ef19b746aac2503480afa890ef55260bb1af896c6e1c7ae3",
- "kws": {
- "fr": [
- "cuenca"
- ]
- }
- },
- {
- "nm": "tirer la chasse d\u0027eau",
- "id": "9c7923fa33711e2c28adda2598a3e30d9679eef4a818868afcabd4fded9ea966",
- "kws": {
- "fr": [
- "tirer la chasse d\u0027eau",
- "étirer",
- "jeter"
- ]
- }
- },
- {
- "nm": "coucher",
- "id": "d882e96f9ea84557af516100166a8ff7ddf18dacb77437cbb29e11abb47d801c",
- "kws": {
- "fr": [
- "coucher",
- "se coucher dans le lit",
- "se coucher"
- ]
- }
- },
- {
- "nm": "plomberie",
- "id": "c530150a455c28a7c3e72329ec7e3373f16ad09578eb7c06719d3166a8183b8a",
- "kws": {
- "fr": [
- "plomberie"
- ]
- }
- },
- {
- "nm": "participation",
- "id": "37c7b792c3d7b0f992034d7eee19ef63c556d670c1ee45241a10e328f9d27ac5",
- "kws": {
- "fr": [
- "participation"
- ]
- }
- },
- {
- "nm": "savonner",
- "id": "35075d2b24c21586d368b3e4ceefa43cb124e07320585525e66980aebc4c8adf",
- "kws": {
- "fr": [
- "savonner",
- "se savonner"
- ]
- }
- },
- {
- "nm": "cuivre",
- "id": "5349ad5e6145d96d44b18dbebfb92c51b9a7a03f9de79a7fd8004f8c95f1f116",
- "kws": {
- "fr": [
- "cuivre"
- ]
- }
- },
- {
- "nm": "mie",
- "id": "ac352e930f60edb02897790021b2ae73223826e1e5205ae15f056b9ae6a24c29",
- "kws": {
- "fr": [
- "mie",
- "mies"
- ]
- }
- },
- {
- "nm": "perdre",
- "id": "73713b3f0053b47cf4b48b12b406d39ab261d3eba5a46f90b43f68712d214ece",
- "kws": {
- "fr": [
- "perdre"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "6a1ad24491c2dfcea574dcc0e9e0c3f8dda029925a0269310a79341318c6a92e",
- "kws": {
- "fr": [
- "communauté autonome",
- "andalousie"
- ]
- }
- },
- {
- "nm": "glace",
- "id": "2947b7362ab3bc90f986d8e7b64c786e619872b74945a2d8e300bd0eca04b027",
- "kws": {
- "fr": [
- "glace"
- ]
- }
- },
- {
- "nm": "ouvrir",
- "id": "485331d4fae48f4d21b130a6dfde4caf34b26ea1c5913b6087ea0b3619777b18",
- "kws": {
- "fr": [
- "ouvrir"
- ]
- }
- },
- {
- "nm": "citronnier",
- "id": "3eed63a079d0850aad1fcb4d5d16127915acc3998a3efc23bd1a32153d563c7b",
- "kws": {
- "fr": [
- "citronnier",
- "citron"
- ]
- }
- },
- {
- "nm": "chemise à anneaux",
- "id": "2f042ced5b0c090a9e957e93432c6ff53537653c7e9999a62928ee9039b95621",
- "kws": {
- "fr": [
- "chemise à anneaux"
- ]
- }
- },
- {
- "nm": "y",
- "id": "d02da7c7bf88b471e9b25c879d472ef3ee2d63595a7c534c7de5c71144895a32",
- "kws": {
- "fr": [
- "y",
- "lettre"
- ]
- }
- },
- {
- "nm": "casque de cycliste",
- "id": "f602e6c7ab36dfd8e786df532270b5b2ec55c9f42a2bd71245e3f038953863eb",
- "kws": {
- "fr": [
- "casque de cycliste",
- "casque"
- ]
- }
- },
- {
- "nm": "fruits",
- "id": "7b1e025e1095022ca27d3fb6484dd5631a68110a20c55e733a999acea735d132",
- "kws": {
- "fr": [
- "fruits",
- "fruit"
- ]
- }
- },
- {
- "nm": "tenir",
- "id": "bdab90054d153ad0964af4e4a80b4ee17889ab3f7f5c74a53eff01dcdc3c1035",
- "kws": {
- "fr": [
- "tenir",
- "prendre",
- "accrocher",
- "saisir"
- ]
- }
- },
- {
- "nm": "gérone",
- "id": "99129a8f8bb5a62d211680f19ba149e6ac36a5a5d24bf6395da83bf76b26cd8b",
- "kws": {
- "fr": [
- "gérone"
- ]
- }
- },
- {
- "nm": "éclipse de lune",
- "id": "6b38273eaf0f246e4991c612020b2f16b6da61989d6cd2617fe0b8a5b23cc262",
- "kws": {
- "fr": [
- "éclipse de lune",
- "éclipse"
- ]
- }
- },
- {
- "nm": "retirer",
- "id": "f7c106c083827665588f3eb3f54b363e7ff75f7ffd5dcea18511bbf8b0fb5c54",
- "kws": {
- "fr": [
- "retirer"
- ]
- }
- },
- {
- "nm": "modeler",
- "id": "e239664db96ecfbdc68b7c473c6ebdca3b4678f7ee1cdbaf175852fe7671c55d",
- "kws": {
- "fr": [
- "modeler"
- ]
- }
- },
- {
- "nm": "tissu",
- "id": "703d4487cf30b4827fa88ed78defc0b78c1e02950c2a4033115f860dfa022b16",
- "kws": {
- "fr": [
- "tissu"
- ]
- }
- },
- {
- "nm": "bronchite",
- "id": "c380b63e66d6156729e9ae82115d81f0d56ba8dcf15f52f7c7e4e2e19b9a259f",
- "kws": {
- "fr": [
- "bronchite"
- ]
- }
- },
- {
- "nm": "petit pain",
- "id": "02d1aef44e883aa6588ee660f0dc053b90f069b76389bea21c8fee7bb01a832d",
- "kws": {
- "fr": [
- "petit pain"
- ]
- }
- },
- {
- "nm": "banc",
- "id": "148647df61ea044f8f5e3944538e58eac5b446e865929e8e54890ede20a82ede",
- "kws": {
- "fr": [
- "banc"
- ]
- }
- },
- {
- "nm": "cacahuète",
- "id": "fbebb0d859852caf765c7f125bc242e5af21b58b7d471b2e67c3de74eed2f41f",
- "kws": {
- "fr": [
- "cacahuète",
- "fruits secs"
- ]
- }
- },
- {
- "nm": "un demi citron",
- "id": "fd25227b86ddb90c7ac95277c8e888642db3a7f7bbc06ba1614e1d3b77b58246",
- "kws": {
- "fr": [
- "un demi citron"
- ]
- }
- },
- {
- "nm": "e",
- "id": "9a11f7a6d874941ceffab64cdefa47de999338031da8533b7246d3fb127643ab",
- "kws": {
- "fr": [
- "e",
- "lettre"
- ]
- }
- },
- {
- "nm": "lottes",
- "id": "eb7dc2d731cd7cc133e8ce2caf5ab3789073a648a8a0232903beaba297b62f1d",
- "kws": {
- "fr": [
- "lottes"
- ]
- }
- },
- {
- "nm": "noir",
- "id": "5bc5b035572d74fd60ec03d63b3661071f652290e6fe8a2babd5f07cfb9c762a",
- "kws": {
- "fr": [
- "noir"
- ]
- }
- },
- {
- "nm": "boissons",
- "id": "642ec23ca95de014258827b2cd4c7bd51d918e49b2f2e29e82c3d90e79f46c82",
- "kws": {
- "fr": [
- "boissons",
- "boisson"
- ]
- }
- },
- {
- "nm": "bras en croix",
- "id": "ef88ea0414efea85a728a4f9ea3fb1eb1b0054a6dd9b3ddb55ecf0c2da4fc648",
- "kws": {
- "fr": [
- "bras en croix",
- "faire de l\u0027exercice",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "footballeur",
- "id": "89e8c587b8b6b64d2d424259c1a55b94786dcfed75007c9329548949274c94d9",
- "kws": {
- "fr": [
- "footballeur",
- "football"
- ]
- }
- },
- {
- "nm": "plateau four",
- "id": "4d9e7d6ce93cce6c9dcb81c18941887a5aad4c5e16224261d98766bbc424088f",
- "kws": {
- "fr": [
- "plateau four",
- "plateau"
- ]
- }
- },
- {
- "nm": "sens",
- "id": "e0f5a704ec8f199992e84a49fe6e528d69c5c50dff47811396a300f3ae2f0814",
- "kws": {
- "fr": [
- "sens"
- ]
- }
- },
- {
- "nm": "bander",
- "id": "c71e0e021826752777c803158dd897ec6ee72ed0d20c26aefd4f541892460b17",
- "kws": {
- "fr": [
- "bander"
- ]
- }
- },
- {
- "nm": "avenue",
- "id": "2d6999dd03145d96fcbda6b65032562bea123e7c9ed343364351851ce5453c37",
- "kws": {
- "fr": [
- "avenue",
- "rue"
- ]
- }
- },
- {
- "nm": "terminal point de vente",
- "id": "546b0f6a02f7edcbed02948b651b1e5abd0edbf8617f756a7074f97db28100e2",
- "kws": {
- "fr": [
- "terminal point de vente",
- "tpv",
- "coffre"
- ]
- }
- },
- {
- "nm": "neveu",
- "id": "11c7d576f823d01dfbef97e9e5f8def2af899dcdccb388ff611f786a0eed28ef",
- "kws": {
- "fr": [
- "neveu"
- ]
- }
- },
- {
- "nm": "coupe de cheveux",
- "id": "f753714a59b22da092a56a227705feefb9f117c7ef7ad775f0bf7344a7bed8e4",
- "kws": {
- "fr": [
- "coupe de cheveux",
- "couper les cheveux",
- "couper",
- "coupe"
- ]
- }
- },
- {
- "nm": "mordre",
- "id": "255f72e806d425b076ffff2f867030f84308147ac8a65852b0eaf1048fbe4287",
- "kws": {
- "fr": [
- "mordre"
- ]
- }
- },
- {
- "nm": "cône",
- "id": "b4c553731e169db99cd622f3fcef7a5c5e335e199fd0939bb09c208abe2323a5",
- "kws": {
- "fr": [
- "cône"
- ]
- }
- },
- {
- "nm": "dimanche",
- "id": "39d8c5363ef2f63d9393f0a9843ec80ca82e280af2f49fc5d24b9c04cb386f7a",
- "kws": {
- "fr": [
- "dimanche"
- ]
- }
- },
- {
- "nm": "motocyclette",
- "id": "642c50dc89621cf3189089428bb608d7793f1dcfb902a972fd05b92c43b4f320",
- "kws": {
- "fr": [
- "motocyclette",
- "moto"
- ]
- }
- },
- {
- "nm": "quincaillerie",
- "id": "61f8a7de9840180a0f18914134ea2abf2577d6dd125c4df4e9659fc2bab95606",
- "kws": {
- "fr": [
- "quincaillerie"
- ]
- }
- },
- {
- "nm": "premier",
- "id": "6bf7e89f3af20aa8c7fb26ebb5a23e3ce319a90974c59644f151208d9eb6ef8e",
- "kws": {
- "fr": [
- "premier",
- "première"
- ]
- }
- },
- {
- "nm": "pays",
- "id": "e6c7e5300fd3e10e78e9117bec0b20608a5bf36e766f1d8b3259544d39afa3c3",
- "kws": {
- "fr": [
- "pays",
- "chine"
- ]
- }
- },
- {
- "nm": "croisière",
- "id": "76b4c0c86f75779192cdd957d1c8d91f58f5b6bdae5f84f6fd718172a35f8b45",
- "kws": {
- "fr": [
- "croisière"
- ]
- }
- },
- {
- "nm": "magicienne",
- "id": "70bb704a62e725ab01d0e18b4e090f1612913cba1877122e807d31cf32e1c2f0",
- "kws": {
- "fr": [
- "magicienne",
- "artiste"
- ]
- }
- },
- {
- "nm": "unicef",
- "id": "641155513a5b324f45daa58f07695452ee8458f95ad47e706c55dc0718be1a6a",
- "kws": {
- "fr": [
- "unicef"
- ]
- }
- },
- {
- "nm": "communauté éducative",
- "id": "47c7d8ab0d98b4716317f775cbb80e80cb87ca110e60cfd626283ebc2f0becaf",
- "kws": {
- "fr": [
- "communauté éducative"
- ]
- }
- },
- {
- "nm": "passer",
- "id": "54c45d9f76ae912f2e50c96f880e7990e28db92f80af29a4c9ab7b1d89189faf",
- "kws": {
- "fr": [
- "passer"
- ]
- }
- },
- {
- "nm": "moi",
- "id": "a7f4167f5c8da4a395fe0690da7a66083cc70af5588588d9983c1ad902d27b06",
- "kws": {
- "fr": [
- "moi",
- "je",
- "me"
- ]
- }
- },
- {
- "nm": "agence de voyage",
- "id": "da7707cd7486680af1bcddb9e76c12e7674221756db8195c4d72414451a83674",
- "kws": {
- "fr": [
- "agence de voyage"
- ]
- }
- },
- {
- "nm": "parabolique",
- "id": "9a3436c16007f892c72ab8542d3e5025c730e609d50a216e35f17de1fcac2366",
- "kws": {
- "fr": [
- "parabolique",
- "antenne parabolique",
- "antenne"
- ]
- }
- },
- {
- "nm": "dé",
- "id": "25171a3c9276c13796b54304ba381b2260fe9e1a7b738c3b6362f00c5ee5a8c2",
- "kws": {
- "fr": [
- "dé"
- ]
- }
- },
- {
- "nm": "craie et brosse",
- "id": "7c6271b776683c2359f4b22686938383fc9737bbba0af492b2b8ebd50e34f656",
- "kws": {
- "fr": [
- "craie et brosse"
- ]
- }
- },
- {
- "nm": "ouest",
- "id": "54bdf4bfffb9560b9393712c759540fc2e34532dde8db1f456f920512d3d5eb2",
- "kws": {
- "fr": [
- "ouest"
- ]
- }
- },
- {
- "nm": "nez de clown",
- "id": "923cc88ba71219b9a5f5f09e7dc22c1390e7c000a5c76abc78ef1b455ad4c9e8",
- "kws": {
- "fr": [
- "nez de clown"
- ]
- }
- },
- {
- "nm": "toxique",
- "id": "96efe87d7017d652e63eb764c217b28c9123d911eaa16840f91bd6377dde80e8",
- "kws": {
- "fr": [
- "toxique",
- "venin"
- ]
- }
- },
- {
- "nm": "étendoir",
- "id": "eb4069a9db3ef0c8c90d55935c4a6864bf520ed227255bb4956a6ef0e82870eb",
- "kws": {
- "fr": [
- "étendoir"
- ]
- }
- },
- {
- "nm": "banque",
- "id": "3f77048b67c947cecdba78672b7cc2d31a2306ba25687369bcdd93b640648e25",
- "kws": {
- "fr": [
- "banque"
- ]
- }
- },
- {
- "nm": "coffre",
- "id": "610d9c7c73f18e470e02ec3326801c44fef08714302c268855b0cc0c2868e563",
- "kws": {
- "fr": [
- "coffre",
- "malle"
- ]
- }
- },
- {
- "nm": "paquets de spaghettis",
- "id": "06980ca3782ceec23c81f3b29a44fd77af94dfd19d4451203c4626bc6b2c641d",
- "kws": {
- "fr": [
- "paquets de spaghettis"
- ]
- }
- },
- {
- "nm": "conversation",
- "id": "4e3731e650b8e83d9ef5eb8798144738438ac34632ed84c588809afa65cbcf81",
- "kws": {
- "fr": [
- "conversation",
- "discussion",
- "réunion entre amis"
- ]
- }
- },
- {
- "nm": "fécondation",
- "id": "5466b5d9603215bcaaed9c1d1bb3dd495beb4ed6b10e22d4af7ba09c1f4397eb",
- "kws": {
- "fr": [
- "fécondation"
- ]
- }
- },
- {
- "nm": "pigeon",
- "id": "87975cd8e65c8fd925bcc061ae32eb784a088eaf733611ca38b47e46706f0248",
- "kws": {
- "fr": [
- "pigeon"
- ]
- }
- },
- {
- "nm": "préparée",
- "id": "3b319608fe3aa4e9c5c6663d96886b15660752f8e0d7bbc6fc931c70329cc378",
- "kws": {
- "fr": [
- "préparée",
- "se préparer",
- "liste"
- ]
- }
- },
- {
- "nm": "avila",
- "id": "849b3efd5451a4c4fc6c1498d34a32478f5c5d8da5d319e3c465f7f4b77a6db0",
- "kws": {
- "fr": [
- "avila"
- ]
- }
- },
- {
- "nm": "marionnette",
- "id": "bcb94c9135bce0e48eecc140b239d66671d9a8b8e447cb2a2c7523dc22c17066",
- "kws": {
- "fr": [
- "marionnette"
- ]
- }
- },
- {
- "nm": "vendeur",
- "id": "ab688357e1f24a333330690995080f57f3c79d95732496da5dea3b1d247ddb19",
- "kws": {
- "fr": [
- "vendeur",
- "marchand de journaux"
- ]
- }
- },
- {
- "nm": "société",
- "id": "02def511f916ec5b2c9903eb59ead166940f64fa21d3d9b830f91aaed5888526",
- "kws": {
- "fr": [
- "société"
- ]
- }
- },
- {
- "nm": "boccia",
- "id": "cba10c0a82d6064ea6781315ca7b71314ba31b3fa900c81e9dacc989540403b1",
- "kws": {
- "fr": [
- "boccia"
- ]
- }
- },
- {
- "nm": "translucide",
- "id": "abe21fb8a54bad7721667045e43941146a669874b30e7ce5fb263319aa21715f",
- "kws": {
- "fr": [
- "translucide"
- ]
- }
- },
- {
- "nm": "brun",
- "id": "c0a0a3787847e15d38d1b17c64a8d343eeb4a88cc36a1fa32657626e2a9b0b21",
- "kws": {
- "fr": [
- "brun",
- "brune"
- ]
- }
- },
- {
- "nm": "répéter",
- "id": "0c93c226ac4f3527659fe34256777b112eff8563b0564fbd6712c04bc83b17df",
- "kws": {
- "fr": [
- "répéter"
- ]
- }
- },
- {
- "nm": "euros",
- "id": "3d15e121a92283041b750c8489763a876718084588a7d66adcea4d39b45bd22b",
- "kws": {
- "fr": [
- "euros",
- "billet",
- "10 euros",
- "argent"
- ]
- }
- },
- {
- "nm": "entrer",
- "id": "519d069e6b3517560c232d6bc10c7309abbee704f3354330b0b9f4ea8388daa8",
- "kws": {
- "fr": [
- "entrer",
- "accéder"
- ]
- }
- },
- {
- "nm": "carnaval",
- "id": "4f0010f09ee65ba7947add4350b76029097669e6b7858f4117acbeab0a4aafff",
- "kws": {
- "fr": [
- "carnaval"
- ]
- }
- },
- {
- "nm": "égout",
- "id": "645472244aa51bb0555d2e0bdfe2756584ca70be967d277eda09e6d1a51e07b4",
- "kws": {
- "fr": [
- "égout"
- ]
- }
- },
- {
- "nm": "papaye",
- "id": "5756ec88c7c462fd18715e9976d8621bf4129423346d774f9d733b4eee4b0f92",
- "kws": {
- "fr": [
- "papaye"
- ]
- }
- },
- {
- "nm": "boules de l\u0027arbre de noël",
- "id": "aa10795e26962fe356850b0a3ce1a05d29b2308c5b9debd5a1a1ffe5447bf3e9",
- "kws": {
- "fr": [
- "boules de l\u0027arbre de noël"
- ]
- }
- },
- {
- "nm": "transexualité",
- "id": "8fd9a219a276141cfc33bfeee5602342401ce73fc4e98d6eb45ae5c42f72c4ac",
- "kws": {
- "fr": [
- "transexualité",
- "transexuel"
- ]
- }
- },
- {
- "nm": "athée",
- "id": "e18c43829b3ef41c90ad7c984763a301080412f8fd95e5761345f790becd7d82",
- "kws": {
- "fr": [
- "athée"
- ]
- }
- },
- {
- "nm": "essence",
- "id": "94902e75d2a2eea53798848cc176079bfb0878c9c226671192446cab1850a304",
- "kws": {
- "fr": [
- "essence",
- "bidon d\u0027essence"
- ]
- }
- },
- {
- "nm": "stylo à plume",
- "id": "9b2a4198883e10176c2a0f310bd935ce422fb63c57acbfaf0dd8924cd011b1b4",
- "kws": {
- "fr": [
- "stylo à plume"
- ]
- }
- },
- {
- "nm": "four",
- "id": "82beda85d056b70b535cab072cebf04fde2cb0e588781ed6920d06ab65763690",
- "kws": {
- "fr": [
- "four"
- ]
- }
- },
- {
- "nm": "psychologue",
- "id": "2bcd1318aed74b86821067f51fed0a202cb5c0f9d5dc262bd9080debcc2a540c",
- "kws": {
- "fr": [
- "psychologue"
- ]
- }
- },
- {
- "nm": "chaîne hi-fi",
- "id": "7bdce85a1cb3fd7d87018890cb0c9a8a32cba240ab5b8f3b6a22b7812ef9b260",
- "kws": {
- "fr": [
- "chaîne hi-fi"
- ]
- }
- },
- {
- "nm": "travaux manuels",
- "id": "3837e4390cb9189fb958fbffb811bdfbda4f22435e2f2c0f3f28b6f0c2718b1c",
- "kws": {
- "fr": [
- "travaux manuels",
- "travaux manuels",
- "arts graphiques"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "70b05a5bcd80f6de50c0bf86f6e813da09dfeee28bb86a3a2f87b5a08b7d7014",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains sur les pieds",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "casbah de malaga",
- "id": "108412e52abf5fac59ddd7ee2f60167afdcd5f677e8f2d6e97adb6edc2f1a230",
- "kws": {
- "fr": [
- "casbah de malaga",
- "casbah",
- "château"
- ]
- }
- },
- {
- "nm": "u",
- "id": "389fa99b167adaac64b8f531e58895a6552043e0481c0ea6bde0e5e721ddfd1e",
- "kws": {
- "fr": [
- "u",
- "lettre"
- ]
- }
- },
- {
- "nm": "pérou",
- "id": "8bc4afc24c0a71a637e94fc2d0e26954dc3bd4c9f21145fa54c8c31dc2b6ad90",
- "kws": {
- "fr": [
- "pérou"
- ]
- }
- },
- {
- "nm": "minorque",
- "id": "c010e975bbca7b9f1e147eee61d13f99a1638baf904c3a903808248e7d4361f4",
- "kws": {
- "fr": [
- "minorque"
- ]
- }
- },
- {
- "nm": "béquilles",
- "id": "b3a7254d383b0de6930d2e7b5d4dbd1b00fd48d2e7e95172db30d2ff3169f3df",
- "kws": {
- "fr": [
- "béquilles",
- "produit de soutien",
- "aides"
- ]
- }
- },
- {
- "nm": "transport",
- "id": "d9579796ea3dede1bb8aa0919ab0a7ecc223d5136087d989c52d026cbd5e84ae",
- "kws": {
- "fr": [
- "transport",
- "transports",
- "véhicule",
- "véhicules",
- "moyen de locomotion",
- "moyens de locomotion"
- ]
- }
- },
- {
- "nm": "allumer la lumière",
- "id": "7e88e37bb2bf47e617a53991c9b879a52071a51d51e809a9525a2bfc59231e5c",
- "kws": {
- "fr": [
- "allumer la lumière",
- "allumer"
- ]
- }
- },
- {
- "nm": "dompteur",
- "id": "f8265f0dc9781efda4a34175a39f4eff7adeb751d470bbbfa344d1a878e0bf12",
- "kws": {
- "fr": [
- "dompteur"
- ]
- }
- },
- {
- "nm": "résidence pour handicapés",
- "id": "0e4a806df0a078515126c1780ecb3a3590d01a6a4a428ab1b722feb1932a0710",
- "kws": {
- "fr": [
- "résidence pour handicapés"
- ]
- }
- },
- {
- "nm": "centimes",
- "id": "454413bdfc46375a8421db0fd2429fa1a1bfe07c7ee3cfbcfe3bed2ad789cc31",
- "kws": {
- "fr": [
- "centimes",
- "2 centimes"
- ]
- }
- },
- {
- "nm": "plomberie",
- "id": "01009700c87024022a87c65b85c178ef4dbd34b88ceb243ed120997697ed584e",
- "kws": {
- "fr": [
- "plomberie"
- ]
- }
- },
- {
- "nm": "aller chercher",
- "id": "ce4ed803d66d265f31d1aa8a6182efc5976695f733ee41847b25deb2ae000da5",
- "kws": {
- "fr": [
- "aller chercher"
- ]
- }
- },
- {
- "nm": "charcuterie",
- "id": "c2532c63dbc120a5c87eeaa7bd091aeb2406c7fd8a6a476678443b6dae114a75",
- "kws": {
- "fr": [
- "charcuterie",
- "jambon blanc",
- "jambon"
- ]
- }
- },
- {
- "nm": "instrument musical",
- "id": "59ce2fe2fba1090302b2bf63aa498d3c8d49b98c5b7ee1976983be308dc2f53d",
- "kws": {
- "fr": [
- "instrument musical",
- "flûte"
- ]
- }
- },
- {
- "nm": "s\u0027opposer",
- "id": "3e77544b3a0ade614fd30d9348f04e6bfc5730fd652074d680063e7cedd202a2",
- "kws": {
- "fr": [
- "s\u0027opposer"
- ]
- }
- },
- {
- "nm": "danser",
- "id": "ce56508c7361601a5f4ac422ef601445735b4d7d6f2e8d88af5e83e2c7666f52",
- "kws": {
- "fr": [
- "danser",
- "danseuse"
- ]
- }
- },
- {
- "nm": "manche",
- "id": "077600b1d2775fdd8012610e54e35793561932fc5c6906ff414cd3947ccd8eab",
- "kws": {
- "fr": [
- "manche"
- ]
- }
- },
- {
- "nm": "légumes",
- "id": "a28f8e5fc5bbec770c726db905b6be3c9cf4e35026b33714c0b2f13c08aeedc5",
- "kws": {
- "fr": [
- "légumes"
- ]
- }
- },
- {
- "nm": "centre de jour",
- "id": "67b8ff693debe5f7fcb915aed18db7e6b39dcb59965cc025b9a94b75fe64ebcb",
- "kws": {
- "fr": [
- "centre de jour"
- ]
- }
- },
- {
- "nm": "cheveux blancs",
- "id": "03a71ffce9636fbc445b781b740da316c7514a31fe7053f60c9b3e566ac898f4",
- "kws": {
- "fr": [
- "cheveux blancs",
- "grisonnant"
- ]
- }
- },
- {
- "nm": "le salvador",
- "id": "25de3a78b5f71b20828d6b40e149ec56f5ae5e8a4a39fb14f20cc47fad6764bf",
- "kws": {
- "fr": [
- "le salvador"
- ]
- }
- },
- {
- "nm": "écrivain",
- "id": "495f4e3237f68847c74e7b477b7fee6b28b2e041413fff2dbc6ebaeb24e86783",
- "kws": {
- "fr": [
- "écrivain"
- ]
- }
- },
- {
- "nm": "parcours",
- "id": "e273c93de3d887ed809ddd9e6104770356558ed386f1afdbc3966474a1178604",
- "kws": {
- "fr": [
- "parcours",
- "trajet",
- "voyage",
- "itinéraire",
- "route"
- ]
- }
- },
- {
- "nm": "eau potable",
- "id": "c313a718a460b64b1ec9da602f3a666664a7a0cf09527c279e4171dc6f4d214a",
- "kws": {
- "fr": [
- "eau potable"
- ]
- }
- },
- {
- "nm": "enfant",
- "id": "0c69825c927c189d6b8c4f75ba2824d28aaa190e12e5d876b7b0a27c7da71e52",
- "kws": {
- "fr": [
- "enfant",
- "personne",
- "petit garçon",
- "garçon"
- ]
- }
- },
- {
- "nm": "il était un fois",
- "id": "5c8075f30bd376a381a19dfdbde3455a05b1e61dfa895ee9bd7b7f80d77829aa",
- "kws": {
- "fr": [
- "il était un fois"
- ]
- }
- },
- {
- "nm": "phrase",
- "id": "8039c89a23055dcf50120a9621b084c294ed9763a6a02a139cf0f45fc21e74e4",
- "kws": {
- "fr": [
- "phrase"
- ]
- }
- },
- {
- "nm": "magasin de chaussures",
- "id": "d8bfe139ea894c7f4c1757e1c35a99087842a41509cecdf48a20cd4873d10d3c",
- "kws": {
- "fr": [
- "magasin de chaussures"
- ]
- }
- },
- {
- "nm": "promener le chien",
- "id": "6591ccb7bf79b34ed49478199597838a2a75347624f80c77a12719c773d47413",
- "kws": {
- "fr": [
- "promener le chien",
- "promener"
- ]
- }
- },
- {
- "nm": "yoga",
- "id": "04fa43bce9495cf7d3116a87ffe8344b83b9f0e4ada59fdf02775736e6c037b8",
- "kws": {
- "fr": [
- "yoga"
- ]
- }
- },
- {
- "nm": "promouvoir",
- "id": "372b85f21a9326364639126caf884bd20a231c8ca7303060b72fe21438d6e54d",
- "kws": {
- "fr": [
- "promouvoir"
- ]
- }
- },
- {
- "nm": "température",
- "id": "37c691686434935525a5542ff9b3da903863d3a2c3217e6836ad1b569d38db40",
- "kws": {
- "fr": [
- "température",
- "climat",
- "quel temps fait-il"
- ]
- }
- },
- {
- "nm": "chauffeur de taxi",
- "id": "11579262a2fd6b05f0aee9c0a3d2b028823bf9f4dcd8d3b08bd37b1decc32d83",
- "kws": {
- "fr": [
- "chauffeur de taxi"
- ]
- }
- },
- {
- "nm": "souris",
- "id": "9a964c7af603e3ce38468a47e80e3eb47f6cfa12d2bb3b2efc0f8779090dc268",
- "kws": {
- "fr": [
- "souris"
- ]
- }
- },
- {
- "nm": "commerce",
- "id": "6889654d4c22829e2d25f2e2af1744b38ab51b311095315732be8b834acbfa6f",
- "kws": {
- "fr": [
- "commerce",
- "établissement",
- "étal",
- "magasin"
- ]
- }
- },
- {
- "nm": "fêter",
- "id": "a8e15a7be961a3b508dd73f50df63c47c0bdc457bbb2ea5c18b9c3ac11078096",
- "kws": {
- "fr": [
- "fêter"
- ]
- }
- },
- {
- "nm": "ambulance",
- "id": "f25cc5e35653eab36378363b014a21f8e0982efddb3b0d57fc243011df82f047",
- "kws": {
- "fr": [
- "ambulance"
- ]
- }
- },
- {
- "nm": "souffler",
- "id": "1f63923c5316bdf093c107b2873859769be2a9c13a5b15a319229ad4aec68e88",
- "kws": {
- "fr": [
- "souffler"
- ]
- }
- },
- {
- "nm": "centime",
- "id": "3a1f0aec1cbdb64ff13ea5e7a50a591c0ba6713263a32fe2fcc91f079c80c91d",
- "kws": {
- "fr": [
- "centime",
- "1 centime"
- ]
- }
- },
- {
- "nm": "balle de base-ball",
- "id": "e257cde39936986de5bea2063ca20760da399a2ace55bb8aae39bfdcb2b0866f",
- "kws": {
- "fr": [
- "balle de base-ball"
- ]
- }
- },
- {
- "nm": "dessert",
- "id": "35542312f6b0a276b44d6bea1d116a2e7822ce9a3b3079873e1a6479759f0161",
- "kws": {
- "fr": [
- "dessert"
- ]
- }
- },
- {
- "nm": "apprendre",
- "id": "e0831edba980d22b75843e6e3c9c64171d9c2a08061317f680383552f827478a",
- "kws": {
- "fr": [
- "apprendre"
- ]
- }
- },
- {
- "nm": "charcuterie de dinde",
- "id": "706616cc629d1aabe547dba855bd6ffc941a58cb9a24776771865181704c2754",
- "kws": {
- "fr": [
- "charcuterie de dinde"
- ]
- }
- },
- {
- "nm": "miel",
- "id": "b999272748e9a38916d5f66770525aaf26f1aa12c6ccdf7c3cc3717b0bb28bf5",
- "kws": {
- "fr": [
- "miel"
- ]
- }
- },
- {
- "nm": "ananas",
- "id": "89bda83f2881876d10ca341d9f115c6f50464b36d8530839f472428035651c88",
- "kws": {
- "fr": [
- "ananas"
- ]
- }
- },
- {
- "nm": "vos",
- "id": "405f02fd881987e96ae710cdb59e183279949bc3ff44a994b77a26802feffcbd",
- "kws": {
- "fr": [
- "vos",
- "vôtres"
- ]
- }
- },
- {
- "nm": "eczéma",
- "id": "368a80075ecc54e9fbfde5b732cd731e014e060ee3bf120b72828d43fb8d71f5",
- "kws": {
- "fr": [
- "eczéma",
- "éruption cutanée"
- ]
- }
- },
- {
- "nm": "shooter",
- "id": "873ccba28242a0b23d42308cfb8c2679e9713a25eed9afcbd80cbce1860171ff",
- "kws": {
- "fr": [
- "shooter"
- ]
- }
- },
- {
- "nm": "entraîneur",
- "id": "83bdea4197d6ffdccd265eace779778973529f50d29f23c9c5ed169862c2b920",
- "kws": {
- "fr": [
- "entraîneur"
- ]
- }
- },
- {
- "nm": "connaître",
- "id": "5057fa63c4ff53f749821486fe34027f1cb6aa1c84c231b01884a8931c468b3c",
- "kws": {
- "fr": [
- "connaître"
- ]
- }
- },
- {
- "nm": "instrument musical",
- "id": "cdf1f4099e8d6b8a0b4c71cd58449129dcbb39bd984d3e72bca24f4f15e1bdfe",
- "kws": {
- "fr": [
- "instrument musical",
- "bongo"
- ]
- }
- },
- {
- "nm": "corde à sauter",
- "id": "2598b86512ff81cfcdc9fd4db341d8847911d4952ef5a050d9319a915b3b7361",
- "kws": {
- "fr": [
- "corde à sauter",
- "sauter à la corde",
- "sauter"
- ]
- }
- },
- {
- "nm": "cousine",
- "id": "573f363079566f06b4e39f3cc7a14deac29c0f0138298d7a888bed259970a348",
- "kws": {
- "fr": [
- "cousine"
- ]
- }
- },
- {
- "nm": "mamy",
- "id": "c05c197389d136cccaff1673cc6ac522036179320d8521a1fcd0c46d3f920572",
- "kws": {
- "fr": [
- "mamy",
- "grand-mère"
- ]
- }
- },
- {
- "nm": "caceres",
- "id": "39b410875f9cf51973fab5423c4fd272ef89e1baa90a8a8b18cf11899c5e58e3",
- "kws": {
- "fr": [
- "caceres"
- ]
- }
- },
- {
- "nm": "monarchie",
- "id": "cd5b747dfade89eacd935d32b379cae60b482db2206d014ab6b3a596a4a18938",
- "kws": {
- "fr": [
- "monarchie",
- "monarque",
- "impératrice",
- "roi",
- "majesté"
- ]
- }
- },
- {
- "nm": "étrangère",
- "id": "4ebf9f4c2f527a71fcdbf7707a90484353b912773b52eb1eba08367d7345b515",
- "kws": {
- "fr": [
- "étrangère",
- "hindou"
- ]
- }
- },
- {
- "nm": "blanche-neige",
- "id": "5955476d7ae3af512444e09c247f5a49f5d42ffd8fb317ac6182ac78bfd162c6",
- "kws": {
- "fr": [
- "blanche-neige"
- ]
- }
- },
- {
- "nm": "boîte aux lettres d\u0027escalier",
- "id": "826c4ad309c44e1f2cf5b64750ac2c23fe772a526883cdff208bd870be2fa68e",
- "kws": {
- "fr": [
- "boîte aux lettres d\u0027escalier",
- "boîte à lettres"
- ]
- }
- },
- {
- "nm": "jouer au football",
- "id": "ae60c8b294ac7067ed64b776a9f384566ce123f6bddc271efe10013743874f41",
- "kws": {
- "fr": [
- "jouer au football",
- "football"
- ]
- }
- },
- {
- "nm": "cerceau",
- "id": "927b39cc6337854bea1b829bd0ba2b1f331e20a3477144bf12208ff25c6eecf7",
- "kws": {
- "fr": [
- "cerceau"
- ]
- }
- },
- {
- "nm": "pomme",
- "id": "e444c3bf6de587976da8bfc2681818aa720bace590ea6f9b966b7bddedfb91a3",
- "kws": {
- "fr": [
- "pomme"
- ]
- }
- },
- {
- "nm": "excursion",
- "id": "74c84924397fcf9108363fa55919d2c59286a98b23aab0e77e5855ecf6c9513e",
- "kws": {
- "fr": [
- "excursion",
- "voyager",
- "aller en excursion en autobus",
- "aller"
- ]
- }
- },
- {
- "nm": "sucer",
- "id": "e5183e25808979814d37ccb3c5a536a00159ba2d1d66c5f6330f1e7cc9dcafff",
- "kws": {
- "fr": [
- "sucer"
- ]
- }
- },
- {
- "nm": "anorak",
- "id": "9f5b6592f4643bf390d5b7577f8784b59bfb9f5101666fc01c41c2c4c9cfef6b",
- "kws": {
- "fr": [
- "anorak"
- ]
- }
- },
- {
- "nm": "conseiller d\u0027orientation professionnel",
- "id": "95c919dd08ac5db2f2677a30aad164b935a3c788407ecf6cd16fcf2c3e427239",
- "kws": {
- "fr": [
- "conseiller d\u0027orientation professionnel"
- ]
- }
- },
- {
- "nm": "est-ce- nuageux",
- "id": "7bf31187b13c2a24633a3aefd3c9e90588bd9992476cfe0b9f99bbbb2a1e113f",
- "kws": {
- "fr": [
- "est-ce- nuageux"
- ]
- }
- },
- {
- "nm": "pays",
- "id": "295536c5f105cd73d16fcb9167196aeb23f5aad342ce60c83527d11fd739e132",
- "kws": {
- "fr": [
- "pays",
- "belgique"
- ]
- }
- },
- {
- "nm": "première communion",
- "id": "0e1dd438cbb3684472c968329f85c633f090d7d78a4a5c49f8dd122ccebadce9",
- "kws": {
- "fr": [
- "première communion",
- "communier",
- "communion"
- ]
- }
- },
- {
- "nm": "dîners",
- "id": "0f24a813d6461ac61deacbb2a66bbfcd12e992efb7e9333208d1c6fa1edfc32a",
- "kws": {
- "fr": [
- "dîners"
- ]
- }
- },
- {
- "nm": "rater",
- "id": "6c6ef5573cc11db543c315fd1dcdbd5e00dac2e497c87ac8288290613a9b0e0d",
- "kws": {
- "fr": [
- "rater"
- ]
- }
- },
- {
- "nm": "repasser",
- "id": "96d89aa8f3f4ac459c6c9f0de8a4018b85d7304f4d178310f8d4fce29e56999f",
- "kws": {
- "fr": [
- "repasser"
- ]
- }
- },
- {
- "nm": "peigne de mantille",
- "id": "98459f507c308855424f68112d483b79bbf5525dd673a2bb7aca0691d00ff90b",
- "kws": {
- "fr": [
- "peigne de mantille"
- ]
- }
- },
- {
- "nm": "s\u0027asseoir",
- "id": "940530036e26a611d2eb00255138a687a2a416f5ae26184bb793533b138c015f",
- "kws": {
- "fr": [
- "s\u0027asseoir",
- "asseoir"
- ]
- }
- },
- {
- "nm": "serre",
- "id": "6df7c31879d14c3931e260fa25173cc33132286a13e3174f2f0b636e9f31e0ec",
- "kws": {
- "fr": [
- "serre"
- ]
- }
- },
- {
- "nm": "balle thérapeutique",
- "id": "a0b39922b95e3c4c56c6dd338fdbc504f6d1f5b18267068922d9617ccb1798ba",
- "kws": {
- "fr": [
- "balle thérapeutique"
- ]
- }
- },
- {
- "nm": "iran",
- "id": "7b78794d9209e761d595f66426962d3bbecd0b05be01ab0a62816da78efb5fc6",
- "kws": {
- "fr": [
- "iran"
- ]
- }
- },
- {
- "nm": "autobus",
- "id": "b1da1f4d48bea0014f43f16466ff8941dea942a3b4c7e09e70a6ccefa837696e",
- "kws": {
- "fr": [
- "autobus"
- ]
- }
- },
- {
- "nm": "amuse-gueule",
- "id": "539c2c92e776475f114b5bab0b6d4ebb92466ad667a3596ac025ad9fde1cf60a",
- "kws": {
- "fr": [
- "amuse-gueule"
- ]
- }
- },
- {
- "nm": "obligation",
- "id": "ecbced4eaae7d5bfbad3fd21e0f8d9b384c4d74d31d8f733911314d9e5392c3f",
- "kws": {
- "fr": [
- "obligation"
- ]
- }
- },
- {
- "nm": "finaliste",
- "id": "4e66468e0c0bcc1d56b5d1f7a92f2b6b0d4e29ed8ecffb3dcf2e67d7790fb3c6",
- "kws": {
- "fr": [
- "finaliste"
- ]
- }
- },
- {
- "nm": "thym",
- "id": "57667c799a957eb3aabe7d01feebd255d462bee107ee015575d19ae66500fe8a",
- "kws": {
- "fr": [
- "thym",
- "plante"
- ]
- }
- },
- {
- "nm": "petra",
- "id": "38b17ac6fdba9e9c2cc4b6c8e120bca8f0e179a2e42067a8bb881aa9347a2f51",
- "kws": {
- "fr": [
- "petra",
- "jordanie"
- ]
- }
- },
- {
- "nm": "baisser la température",
- "id": "19bef469f50d14205912d7a11c4727865f2d154be4a70cddd5b8efada20ac541",
- "kws": {
- "fr": [
- "baisser la température"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "519edaa26c5bffd9d94f3b3448b6336f6056d730f39b4df543c49fd1a8ce94f6",
- "kws": {
- "fr": [
- "communauté autonome",
- "la rioja"
- ]
- }
- },
- {
- "nm": "claviériste",
- "id": "4d699887f47f0dd6fa0c5197907b5a1498f897dced8d3a20de3a650e30b8e2eb",
- "kws": {
- "fr": [
- "claviériste"
- ]
- }
- },
- {
- "nm": "consoler",
- "id": "fb0e644afc5e802cba439f63ef159a07e69fba59ba93dcb0aa2f0e4e5ca9fa93",
- "kws": {
- "fr": [
- "consoler"
- ]
- }
- },
- {
- "nm": "aisselle",
- "id": "f7af5b71515c04051b9d9ea658db92bcf9eb5f42ca3f4257193897c19fbd7544",
- "kws": {
- "fr": [
- "aisselle"
- ]
- }
- },
- {
- "nm": "cours",
- "id": "a2265d73c3dda7a02b9e37eb88c9cf5f215e9b8585615cf3aa9e80001f1e6e6c",
- "kws": {
- "fr": [
- "cours",
- "professeur d\u0027éducation physique",
- "professeur"
- ]
- }
- },
- {
- "nm": "favori",
- "id": "a4c38dae45e337ad35d25120fa2531361c1da2f9d120b4230061cc3c75cb3566",
- "kws": {
- "fr": [
- "favori"
- ]
- }
- },
- {
- "nm": "château de loarre",
- "id": "8f27f6f87c1aa1eb24490fb7d8f8687bb30c85e4885d3b6a4d35844ec7ab17ac",
- "kws": {
- "fr": [
- "château de loarre",
- "château",
- "loarre"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "5daaaee25087437006c297dc30bb3a67c48ae1be22ef6c3afb2ad5834bf55d95",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains aux épaules",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "célèbre",
- "id": "067261a5a5f27431ea055b46ce7ce59303c09c6337579e3121f405c0c2a38c57",
- "kws": {
- "fr": [
- "célèbre"
- ]
- }
- },
- {
- "nm": "couleur",
- "id": "4c88c46c2cdb0667f4cc251b1241007e5268b3d565b30bef179c8ad211d7e904",
- "kws": {
- "fr": [
- "couleur",
- "couleurs"
- ]
- }
- },
- {
- "nm": "chèvre",
- "id": "4bac0348a94382fcff5ba078c19f5d415de7503aa9a98a006ed73b7f54a155b2",
- "kws": {
- "fr": [
- "chèvre"
- ]
- }
- },
- {
- "nm": "envoyer",
- "id": "5ff62cae1864ecf1b40f518cbd40b0ee842a2c2f3f0b488db6e0339447d5b072",
- "kws": {
- "fr": [
- "envoyer",
- "expédier"
- ]
- }
- },
- {
- "nm": "monitrice",
- "id": "ecaeb12eb8c2eb1330bd852fb27a2b22f99a3593c9d610d0dc0a7f2ec870dfaa",
- "kws": {
- "fr": [
- "monitrice",
- "soigneuse"
- ]
- }
- },
- {
- "nm": "coin de lecture",
- "id": "f604b9df6f66af2d02afed92f2955f4e5fdcf5ab0c2e7abc17c2a59989dd3c06",
- "kws": {
- "fr": [
- "coin de lecture"
- ]
- }
- },
- {
- "nm": "voir la télé crème renversée",
- "id": "4d313815e4cab4d6e48ca28c910076f7379f8f6cbdee748d25e1c3e35f642ab0",
- "kws": {
- "fr": [
- "voir la télé crème renversée",
- "clinique",
- "hôpital"
- ]
- }
- },
- {
- "nm": "se déshabiller",
- "id": "6154a2284fba25032f90f2580a9f1e66304ca359504b11cede7f64c4b8188210",
- "kws": {
- "fr": [
- "se déshabiller",
- "baisser le pantalon",
- "baisser"
- ]
- }
- },
- {
- "nm": "tableau",
- "id": "4f6504c2aa4bc2bce4d3149fc8c87306354987375e57117b55beaf1449f80b9a",
- "kws": {
- "fr": [
- "tableau"
- ]
- }
- },
- {
- "nm": "losange",
- "id": "7f5f5caaf289df5c13d7a53004b409c4c6f59d886e408526da529a052d97af7e",
- "kws": {
- "fr": [
- "losange"
- ]
- }
- },
- {
- "nm": "égoïste",
- "id": "f2410533b2e8a4114be573ccc44c55f298de02f0fc97dc6dff2ce7618cdc14a0",
- "kws": {
- "fr": [
- "égoïste"
- ]
- }
- },
- {
- "nm": "zéro",
- "id": "be39b640dffe26f6b951034bf574f49485f303f8808662d7886b7904e14b49e2",
- "kws": {
- "fr": [
- "zéro"
- ]
- }
- },
- {
- "nm": "contrebasse",
- "id": "3b24e26c75f8a1ab67594042a3684f28f42618ed4db69d3f4f442d3fdbb46e2c",
- "kws": {
- "fr": [
- "contrebasse",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "lever le couvercle",
- "id": "a1886b333bec57aecf0b82addb7bf5d44db423c91bcc6677397f17aa3acc1cf1",
- "kws": {
- "fr": [
- "lever le couvercle",
- "lever"
- ]
- }
- },
- {
- "nm": "lundi",
- "id": "d8341b08c2b6550551760c90f73f7e235f74ddbf8bb1a36256580af1f88d6dc3",
- "kws": {
- "fr": [
- "lundi"
- ]
- }
- },
- {
- "nm": "commander",
- "id": "52391cbc0fbb159e1cf9743fca108ff73d46d791a022795b6cc21162f6d3d9e6",
- "kws": {
- "fr": [
- "commander"
- ]
- }
- },
- {
- "nm": "joueur de hand-ball",
- "id": "1fb8d8800cd53df14cdb1b4d8355c81f821a8fa9722c09690b803e0e384d00a0",
- "kws": {
- "fr": [
- "joueur de hand-ball",
- "joueur"
- ]
- }
- },
- {
- "nm": "cannelloni",
- "id": "4dc1648827f2f2be2589f726e7478c811f7d1585aa7e20c04705da851234e59a",
- "kws": {
- "fr": [
- "cannelloni"
- ]
- }
- },
- {
- "nm": "potelé",
- "id": "57cb2a99edf91c71fe9415fbd2970607fe6d4d0a2cca9a32ebfb42e456622a33",
- "kws": {
- "fr": [
- "potelé",
- "obèse",
- "rondelet",
- "gros"
- ]
- }
- },
- {
- "nm": "boucles",
- "id": "643c6783b2ee4f93cac415e7d8de6bb3d1e2a7b53f57480fb9baf5aad2f357c1",
- "kws": {
- "fr": [
- "boucles"
- ]
- }
- },
- {
- "nm": "violet",
- "id": "a43e1afeff30d8369e656fd14ea5c6d41b0483e76182c07ee19f7756203e085f",
- "kws": {
- "fr": [
- "violet"
- ]
- }
- },
- {
- "nm": "donner du temps",
- "id": "2aedb90375a1fdd98955f755ccfa8c5e6e35cd6814689af2eb8816a0ba2ae3d0",
- "kws": {
- "fr": [
- "donner du temps"
- ]
- }
- },
- {
- "nm": "hockey",
- "id": "9dd0660ee25a4acce11486a657ab44dd23012ef302041f7b28512c8ccf12ba7c",
- "kws": {
- "fr": [
- "hockey",
- "jouer au hockey"
- ]
- }
- },
- {
- "nm": "passer l\u0027aspirateur",
- "id": "f692e6b7f36be3808952961c1d8df71d79b14cd2e0c5f523773f516646d69357",
- "kws": {
- "fr": [
- "passer l\u0027aspirateur",
- "aspirer"
- ]
- }
- },
- {
- "nm": "tuba",
- "id": "500ecc455a965dde293e5145aab9d373ee03d7b96effe35adcaf1d13eadb0a2d",
- "kws": {
- "fr": [
- "tuba",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "prendre conscience",
- "id": "4d61fc031db537ba41f910aed48b5a1f24849f4a8c601c6df94f8c2c293f3d3b",
- "kws": {
- "fr": [
- "prendre conscience"
- ]
- }
- },
- {
- "nm": "éboueur",
- "id": "dd7202f8ccc1d7075b8c2843014e3d0333cfa41718f7cb2814a2b00c731f2d5a",
- "kws": {
- "fr": [
- "éboueur"
- ]
- }
- },
- {
- "nm": "lama",
- "id": "dd00e0696be7d7ded3ecff690bae9026a059bbe0291dd28c44c5f96fc8f927e6",
- "kws": {
- "fr": [
- "lama"
- ]
- }
- },
- {
- "nm": "cahier",
- "id": "98591daa142bd91eb059c0d4220d5263ce87730436eb3c05b45c3876e33118ae",
- "kws": {
- "fr": [
- "cahier"
- ]
- }
- },
- {
- "nm": "département de saragosse",
- "id": "eba6e65b625a4bd8bbc9294e01ebb6d99f1bb76fad72b492309861b8ceeedbdd",
- "kws": {
- "fr": [
- "département de saragosse",
- "saragosse province",
- "saragosse"
- ]
- }
- },
- {
- "nm": "allumer",
- "id": "5974e74223beaaf6189d28ccc936a1e92f06b58864977dd21feeb537cb7899ba",
- "kws": {
- "fr": [
- "allumer"
- ]
- }
- },
- {
- "nm": "opération",
- "id": "f34d20153b9a078443c4ff1cf33af69639174ed3d5dfbcef6ff371f13c259862",
- "kws": {
- "fr": [
- "opération"
- ]
- }
- },
- {
- "nm": "mordre",
- "id": "40a6f63f00ebe60293954e770d3746e195538d01ac55b8bac6dfc93156a9999c",
- "kws": {
- "fr": [
- "mordre"
- ]
- }
- },
- {
- "nm": "déchirer",
- "id": "f4e4b8bedad71b013debc150aacdaf6a45d8af434718fd56161c393e6f049260",
- "kws": {
- "fr": [
- "déchirer"
- ]
- }
- },
- {
- "nm": "crécelle",
- "id": "c29d1f0d1919c49d69906a8f6cfbcce5e6faa4c615106d470356ae077befc49a",
- "kws": {
- "fr": [
- "crécelle"
- ]
- }
- },
- {
- "nm": "espadrilles",
- "id": "761c97795ea7213531a6a2b9e29b59f0d8e4b105dee420cc55e25bbaac96adcc",
- "kws": {
- "fr": [
- "espadrilles"
- ]
- }
- },
- {
- "nm": "ticket",
- "id": "91e87cd4db362d46a1abb4932fbb7e739199c29ab38370666656f75677067134",
- "kws": {
- "fr": [
- "ticket",
- "place",
- "billet"
- ]
- }
- },
- {
- "nm": "coup de tonnerre",
- "id": "a7c536394a9bde5c6f5c56289c3a4ba86c5e1fd6f4b832fdb71473cc67cc0633",
- "kws": {
- "fr": [
- "coup de tonnerre"
- ]
- }
- },
- {
- "nm": "jugement de divorce",
- "id": "7c294b0fe03cceaa9dfec2bea52351f86962d1fe0175e1e11979a9c4d3e6ae3b",
- "kws": {
- "fr": [
- "jugement de divorce"
- ]
- }
- },
- {
- "nm": "mante",
- "id": "ef99533e9063c5025106da0357be7e3859c8be600177d41d11efeddb3f25675a",
- "kws": {
- "fr": [
- "mante"
- ]
- }
- },
- {
- "nm": "gérant",
- "id": "8fb41d3c4e42f551d18ef772a2d37b70f19cea703fc99e993a8ee70b23d2ae8e",
- "kws": {
- "fr": [
- "gérant"
- ]
- }
- },
- {
- "nm": "casque",
- "id": "126eb5203231426cca827b3f95bec6185ecefe2967b339b559ac31c90cb798dc",
- "kws": {
- "fr": [
- "casque"
- ]
- }
- },
- {
- "nm": "chat",
- "id": "3457bf774821a14624e8616d030df729600b2264b9be43aedc9e5f835b91a14a",
- "kws": {
- "fr": [
- "chat"
- ]
- }
- },
- {
- "nm": "jeter",
- "id": "8ecb2c9dbb88cd4d4552406ee0a9691130b7919c564a221cec33bb25159f0bff",
- "kws": {
- "fr": [
- "jeter",
- "lancer"
- ]
- }
- },
- {
- "nm": "tige",
- "id": "8fd9fbfa6f2786c21707e31343080876e11e8bb3d4035e269a25d80c309c8bd4",
- "kws": {
- "fr": [
- "tige"
- ]
- }
- },
- {
- "nm": "corée du sud",
- "id": "446ae3dc864da0976e62c00e6406935f0a711f7a6291ab8c4e360d3452e48beb",
- "kws": {
- "fr": [
- "corée du sud"
- ]
- }
- },
- {
- "nm": "devoirs",
- "id": "4e8470af5fe4eecc5ec8b291406dfc84445d2d2a205d2a9c6bc9b210906ed5d7",
- "kws": {
- "fr": [
- "devoirs"
- ]
- }
- },
- {
- "nm": "savon pour les mains",
- "id": "048aa8c60ec1b4ba7523f9200cc1cc1ef1c4b3c779e0a166163af7c1f44a850b",
- "kws": {
- "fr": [
- "savon pour les mains",
- "savon"
- ]
- }
- },
- {
- "nm": "collants",
- "id": "74f540ab07faa437de9f714e4ab06e8db5f9714b46ca26eac59f3a965d097fb7",
- "kws": {
- "fr": [
- "collants"
- ]
- }
- },
- {
- "nm": "casse-tête",
- "id": "50217f220b8992230b80ee5f65175031e09b27bbfee6a878482fa26e239feb7c",
- "kws": {
- "fr": [
- "casse-tête"
- ]
- }
- },
- {
- "nm": "tongs",
- "id": "e3f97f1e5714877e7e66eaca31bdcd2e19618f8a05abf5f73d9456a4bbab2fbb",
- "kws": {
- "fr": [
- "tongs",
- "chaussures",
- "savates"
- ]
- }
- },
- {
- "nm": "tableau d\u0027affichage",
- "id": "eee21f5b1c690abcea5de8510599cf9dda3d2c15449d9c483307516455ca7e15",
- "kws": {
- "fr": [
- "tableau d\u0027affichage",
- "résultat"
- ]
- }
- },
- {
- "nm": "boîte de conserve d\u0027asperges",
- "id": "d6aeff3fceacd6772e9e108f28799968cdbfa2177dd5c80526334ce0561b9530",
- "kws": {
- "fr": [
- "boîte de conserve d\u0027asperges"
- ]
- }
- },
- {
- "nm": "iceberg",
- "id": "ae88d4a2fa74079b08919aae4ffd0e28bd3b93118a14a20c23cee08f145baeea",
- "kws": {
- "fr": [
- "iceberg"
- ]
- }
- },
- {
- "nm": "mal de gorge",
- "id": "23bdc6290401ebe72f7c8abb4719ec14199b2d35ed87b1c83ae4844c842247ce",
- "kws": {
- "fr": [
- "mal de gorge"
- ]
- }
- },
- {
- "nm": "technicienne d\u0027administration",
- "id": "d51236fc30a05aabc34408ad0159105f5030c7f3ebc6e5430cb363a9f37b4de7",
- "kws": {
- "fr": [
- "technicienne d\u0027administration",
- "administration"
- ]
- }
- },
- {
- "nm": "léopard",
- "id": "62fb0b4466e1187266d0154b89b2fc08a9935851ebb87b963c81d40193478d8a",
- "kws": {
- "fr": [
- "léopard"
- ]
- }
- },
- {
- "nm": "artichaut",
- "id": "da711e61ada02795ea2110202e4ff23042724b4c81d08015b4c197fe021a023e",
- "kws": {
- "fr": [
- "artichaut"
- ]
- }
- },
- {
- "nm": "mille-pattes",
- "id": "eb3c595f2d748d85d768eb28d44e98702c6c57eb964272fc55b0bf7f10061523",
- "kws": {
- "fr": [
- "mille-pattes"
- ]
- }
- },
- {
- "nm": "cousine",
- "id": "162c75bb45bf0e237a0fe214ebbc51e464926534539d8323fd431f0e04794fe8",
- "kws": {
- "fr": [
- "cousine"
- ]
- }
- },
- {
- "nm": "faire la liste",
- "id": "26c3254371cb003ee42215f965c172d3e9f24a518d8ba7a600c8a1895bff079d",
- "kws": {
- "fr": [
- "faire la liste"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "709ea3958b6a9058defe220bb15f580a7d73278ec1d11fc6e5c812e3cbe4f5b3",
- "kws": {
- "fr": [
- "communauté autonome",
- "melilla"
- ]
- }
- },
- {
- "nm": "roue",
- "id": "a669f3e010779796a865af71f5736fe48f7921acf41d59487b3f8b7e438b562b",
- "kws": {
- "fr": [
- "roue"
- ]
- }
- },
- {
- "nm": "visiter",
- "id": "6a19f6606cae10912b3ae845194891cd5a9ff44c2bf7e855428f48819082e670",
- "kws": {
- "fr": [
- "visiter",
- "visite"
- ]
- }
- },
- {
- "nm": "quartier",
- "id": "3366e29b607384a953a3c36f4d55d6b0356bd3d8189384fabdd9acb1e6311a86",
- "kws": {
- "fr": [
- "quartier"
- ]
- }
- },
- {
- "nm": "molaire",
- "id": "31907e8a0dfecb39b188365bdad1dc2503c64856856846db9740fc0e6b69d4ee",
- "kws": {
- "fr": [
- "molaire"
- ]
- }
- },
- {
- "nm": "premier de l\u0027an",
- "id": "445bd880d59ada0e6173cff11f6c3d5dd36b63be3c968394f86c385b85e22158",
- "kws": {
- "fr": [
- "premier de l\u0027an",
- "nouvelle année"
- ]
- }
- },
- {
- "nm": "volet",
- "id": "e83f5cb440088c8d1ccca5620f838df41e4be8d8b50be583ad84d3ce7134ae67",
- "kws": {
- "fr": [
- "volet"
- ]
- }
- },
- {
- "nm": "parfumerie",
- "id": "30e8187f3c9118d60ea4f962de55a72491447bbeec6ec69603184c76378a40d7",
- "kws": {
- "fr": [
- "parfumerie"
- ]
- }
- },
- {
- "nm": "tableau électrique",
- "id": "e3d09d7adeb751b981eb51d3e6abb9dfb5b6b030bc6222a6f679411b4ca46de2",
- "kws": {
- "fr": [
- "tableau électrique"
- ]
- }
- },
- {
- "nm": "beignet",
- "id": "9a81bafd80a216438ff66a9556697992af687212aa55dff45e010270e3c06be4",
- "kws": {
- "fr": [
- "beignet"
- ]
- }
- },
- {
- "nm": "ouverture",
- "id": "0a3ec01fbae1fa357cd329e2ba5e97bf58ba19cb113ea9815f782ab098a78e3d",
- "kws": {
- "fr": [
- "ouverture",
- "ouvrir"
- ]
- }
- },
- {
- "nm": "neige",
- "id": "fa824ed947c822069866a58f8fd89b20219df30201378d22ba4678b7f9c2eb66",
- "kws": {
- "fr": [
- "neige"
- ]
- }
- },
- {
- "nm": "douçaine",
- "id": "9c7648291ee71d2761b5e87df9f98d908fe62b76bfcf6eba198f4496ea8f8eeb",
- "kws": {
- "fr": [
- "douçaine",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "répondre",
- "id": "2c545fbfe0ae95a4819542020f5f9c4124001aeb3c11c1795bacf9db01b738fa",
- "kws": {
- "fr": [
- "répondre"
- ]
- }
- },
- {
- "nm": "taches de rousseur",
- "id": "377129c71313e043193efc2c81033a83bc1fa433a2f7458b8f633b6257e33332",
- "kws": {
- "fr": [
- "taches de rousseur"
- ]
- }
- },
- {
- "nm": "confession",
- "id": "f3066f0dba80fde3c5f597187d93c8c85842cb2ff2509c3029a7e1e93534e6f5",
- "kws": {
- "fr": [
- "confession"
- ]
- }
- },
- {
- "nm": "attirer",
- "id": "b1b32237ea41911e72148a97cf14561eff3166965961d39ad0fd9694196b85ec",
- "kws": {
- "fr": [
- "attirer"
- ]
- }
- },
- {
- "nm": "offrande de fleurs",
- "id": "2f2f55f2b70d6197a30f29fa62d1a3d294606d22d2f51858d5e914e760dfcb84",
- "kws": {
- "fr": [
- "offrande de fleurs",
- "offrande"
- ]
- }
- },
- {
- "nm": "piscine",
- "id": "93831f8d37fd7f2ddc21c71b4eaec886324bc31c1a01333a4238734dcd97b411",
- "kws": {
- "fr": [
- "piscine"
- ]
- }
- },
- {
- "nm": "se sécher",
- "id": "e8136fd0ec1d0882c1bdaab18fdfa71d00b1521eae1cd57be4ab4d9f36da22ce",
- "kws": {
- "fr": [
- "se sécher",
- "sécher"
- ]
- }
- },
- {
- "nm": "croatie",
- "id": "d669d44bb036fb0b4b223d30c53a753f675e8127143d4ccca9d5f14598611eb4",
- "kws": {
- "fr": [
- "croatie"
- ]
- }
- },
- {
- "nm": "carotte",
- "id": "267a76674ed2e7256773114bb4de6e9193dc9af8fc69a5c47444e1f916da5167",
- "kws": {
- "fr": [
- "carotte"
- ]
- }
- },
- {
- "nm": "vêtement",
- "id": "188435fed25878556bd977dd3175769ee07a161e5b4cece108758a1584157909",
- "kws": {
- "fr": [
- "vêtement",
- "survêtement"
- ]
- }
- },
- {
- "nm": "conduire",
- "id": "e8851d97b70cbf7b3ab3e8f6e2789dfef8ba99d8c150f960194bd1229cba3001",
- "kws": {
- "fr": [
- "conduire"
- ]
- }
- },
- {
- "nm": "se baigner",
- "id": "1488462d664e4f4246e241c39934cdf3f698c1943e893677c279d9ad24e9ba10",
- "kws": {
- "fr": [
- "se baigner"
- ]
- }
- },
- {
- "nm": "évanouir",
- "id": "28ee46ce36b8db33f0dd7ddb99b58472e40228c851b51acc7245df3bc70f5a1e",
- "kws": {
- "fr": [
- "évanouir",
- "évanouissement",
- "s\u0027évanouir"
- ]
- }
- },
- {
- "nm": "pêche",
- "id": "22c0ad8ff06c161d11fa5e04267472b443c56c48d643cc855038dc3436b70727",
- "kws": {
- "fr": [
- "pêche"
- ]
- }
- },
- {
- "nm": "cour",
- "id": "6bc8bebb96b22a51c82bdfd522bd6c84034d6947def212fa23a86cd1b9842815",
- "kws": {
- "fr": [
- "cour",
- "récréation"
- ]
- }
- },
- {
- "nm": "recettes",
- "id": "b7066979c68d02ccd7bc3494313dc71a1042801682189f050e9b173c989e6f95",
- "kws": {
- "fr": [
- "recettes",
- "livre de cuisine",
- "livre de recettes"
- ]
- }
- },
- {
- "nm": "peintre",
- "id": "2474bf18a6f48e5b3356c145e181a1019ca7b15cb252c6692685d187a5cf6d57",
- "kws": {
- "fr": [
- "peintre"
- ]
- }
- },
- {
- "nm": "dessiner le patron",
- "id": "e1bf0ceab3f30d3a06e2b320373aacbe6f15219711f53d0c35d3ed285ad34a49",
- "kws": {
- "fr": [
- "dessiner le patron",
- "dessiner",
- "marquer"
- ]
- }
- },
- {
- "nm": "parcourir",
- "id": "dab4a8250f5cf5de9addac84cb49f3c68e1e5d4f56fd2845104364bf819581af",
- "kws": {
- "fr": [
- "parcourir",
- "voyager"
- ]
- }
- },
- {
- "nm": "moniteur",
- "id": "1e1afa561d56561e9fc4fb8d1cfbc1733e08f862631d0dddb934b11eb36e67d6",
- "kws": {
- "fr": [
- "moniteur"
- ]
- }
- },
- {
- "nm": "filet",
- "id": "91e7be2ac16c5d8ebb49e5e4960730196db1bdaf34c1d151b31c0a89dcd0a6fb",
- "kws": {
- "fr": [
- "filet"
- ]
- }
- },
- {
- "nm": "service d\u0027orientation",
- "id": "29554f2c36d7cbbb8b923640d36e6d67c21c0538c1993c0f08bc54cf495d9a37",
- "kws": {
- "fr": [
- "service d\u0027orientation",
- "service",
- "signalétique",
- "salle"
- ]
- }
- },
- {
- "nm": "attention",
- "id": "7f5fc530ce5ee35094af34240821d1d4632f97e05279285f48d3dca22da62be3",
- "kws": {
- "fr": [
- "attention",
- "s\u0027occuper"
- ]
- }
- },
- {
- "nm": "sanglier",
- "id": "af4ea54db149dd017e485c8db2f0969c087f2b0d563dff26bc1797cc6193f5db",
- "kws": {
- "fr": [
- "sanglier"
- ]
- }
- },
- {
- "nm": "sucrier",
- "id": "3602c2dbbd4ed0fe580ec2703f05c40df5a9658fe71cd2662424278d0d93b3b6",
- "kws": {
- "fr": [
- "sucrier"
- ]
- }
- },
- {
- "nm": "attraper",
- "id": "e299b9b292c4f2f1528184e69d9b98c1286e88ca1cbc0b2096c9fff83aed9d2e",
- "kws": {
- "fr": [
- "attraper",
- "obtenir"
- ]
- }
- },
- {
- "nm": "cosmétique",
- "id": "c334499bfd0a108d1e829ae2828ddf1a7ff4a4fc110e8e3cc3912f92b16be226",
- "kws": {
- "fr": [
- "cosmétique",
- "maquillage"
- ]
- }
- },
- {
- "nm": "opticienne",
- "id": "b154a03d7fac024ae8e364ac265d26877d47451cb5b7ca978797dc47f8077727",
- "kws": {
- "fr": [
- "opticienne"
- ]
- }
- },
- {
- "nm": "étroit",
- "id": "10ad8389ee1525923fdad24ef02a11cb7053b720c30889369467c073454bbeb4",
- "kws": {
- "fr": [
- "étroit"
- ]
- }
- },
- {
- "nm": "métronome",
- "id": "f6416c083d08e2b7636f999f372f4ac852a6d3f0966fcc49bcd39c53e546fea5",
- "kws": {
- "fr": [
- "métronome"
- ]
- }
- },
- {
- "nm": "plante",
- "id": "017bb44c16de60418d2cd05c376b717653fc1d6738e15e1d731bc9e2665ce324",
- "kws": {
- "fr": [
- "plante",
- "romarin"
- ]
- }
- },
- {
- "nm": "ponceuse électrique",
- "id": "b66e74fc90edab87b805f93e5067f0a0a5aa875f3067cf1f5bfe2dc709f7ba45",
- "kws": {
- "fr": [
- "ponceuse électrique",
- "ponceuse"
- ]
- }
- },
- {
- "nm": "psychologue",
- "id": "0e03e791cea295e01d7c8aed9ed1b3acfb99ca714a127ce7cbed26531ec7d25e",
- "kws": {
- "fr": [
- "psychologue"
- ]
- }
- },
- {
- "nm": "méchant loup",
- "id": "e1694914713dd96a2f279c46a24b16d620baadc619302ad2e6c33df0959f764c",
- "kws": {
- "fr": [
- "méchant loup"
- ]
- }
- },
- {
- "nm": "invalidité",
- "id": "302dc6b5049bb1102d5e8e7ce303a56d7cc29f67ed809b722d4c49eb0c3addb1",
- "kws": {
- "fr": [
- "invalidité"
- ]
- }
- },
- {
- "nm": "décrocher",
- "id": "a64e8a09cfdb9442c259a2e471c5be400094ad2fd3ecbfbb285069858c6c2eff",
- "kws": {
- "fr": [
- "décrocher"
- ]
- }
- },
- {
- "nm": "pantoufles",
- "id": "6eaac0854f3c90ab0f0e55e470fc9e73d0172959ba8230ff83f437c4d3840f06",
- "kws": {
- "fr": [
- "pantoufles"
- ]
- }
- },
- {
- "nm": "jeunesse",
- "id": "d811680477a65144819581d822835bc5c09dbca404e9595d03d65f1a75fb0263",
- "kws": {
- "fr": [
- "jeunesse",
- "adolescence"
- ]
- }
- },
- {
- "nm": "danger",
- "id": "4dee7a99b5791106b41f1c330a678e12b5ef03405bf03d3dd90b9c0a00ac41ed",
- "kws": {
- "fr": [
- "danger",
- "risque"
- ]
- }
- },
- {
- "nm": "être assise",
- "id": "fdb795e1b8089aa98e0fcfe2f4098b5fa424eb2ec1f5277ee4076817fa3ac4f8",
- "kws": {
- "fr": [
- "être assise"
- ]
- }
- },
- {
- "nm": "se sentir supérieur",
- "id": "caf459671bb94675c85d0304f4885a5477e070639cbafa92518acccf632767b1",
- "kws": {
- "fr": [
- "se sentir supérieur",
- "mépriser",
- "supériorité",
- "abus",
- "mal traiter",
- "maltraitance"
- ]
- }
- },
- {
- "nm": "déranger",
- "id": "0ecefa5724564c75449d0a036855ec61c92b2f4d71ba9de2b53beeb425003142",
- "kws": {
- "fr": [
- "déranger"
- ]
- }
- },
- {
- "nm": "endive",
- "id": "adc09d61eb6c309ecd0ba4af66312d0cd1e4bedee2d1fb56ea845b1d66bcaf33",
- "kws": {
- "fr": [
- "endive"
- ]
- }
- },
- {
- "nm": "voie",
- "id": "98497feddf2b5ab3556b455f2597c6ffce653841025e9afb57102ebc4039d89b",
- "kws": {
- "fr": [
- "voie"
- ]
- }
- },
- {
- "nm": "attendre",
- "id": "f0d912cf43f7b7e322a87d8c94fb72b8c1e77a47a343086e4e03cc3c6723ea91",
- "kws": {
- "fr": [
- "attendre"
- ]
- }
- },
- {
- "nm": "instrument musical",
- "id": "f4eb76cc4275054030bf2f4d0275e0cd15ab0c764c4cc35e86f8ee15f542cd5c",
- "kws": {
- "fr": [
- "instrument musical",
- "accordéon"
- ]
- }
- },
- {
- "nm": "papier hygiénique",
- "id": "d185800ee68815359e11d2180eab997c2074c58b19b22cf0a112c744ebd28779",
- "kws": {
- "fr": [
- "papier hygiénique"
- ]
- }
- },
- {
- "nm": "équateur",
- "id": "11ae86bc3ec0482bc3267fc2a190b3add04235af9d509d422eccb49f9b939100",
- "kws": {
- "fr": [
- "équateur"
- ]
- }
- },
- {
- "nm": "toilettes pour hommes",
- "id": "2a7663189c7701e8f3e1f2cf70f16fe6228593943076475f83e2a4ac4aeba39b",
- "kws": {
- "fr": [
- "toilettes pour hommes",
- "toilettes",
- "water",
- "baignoire",
- "salle de bains"
- ]
- }
- },
- {
- "nm": "coller",
- "id": "db19274834abab4a61f1443397c13e2094ab797fac4fe6d78b977231732bf924",
- "kws": {
- "fr": [
- "coller"
- ]
- }
- },
- {
- "nm": "mini-brochette",
- "id": "bb92e5894e97e2f62cf8ca959706dded1a4b88b07b1c2554effa5d00f5a4ccf3",
- "kws": {
- "fr": [
- "mini-brochette"
- ]
- }
- },
- {
- "nm": "ustensile de cuisine",
- "id": "05b02ec6cd7ba4ff673e4d5917ab740d62b391c17026eb11de3eced02f4eec21",
- "kws": {
- "fr": [
- "ustensile de cuisine",
- "louche"
- ]
- }
- },
- {
- "nm": "cinq",
- "id": "2c79fc094b5c6a3f757f4566eb3e39d8d596a4a0f9ef3c01f7206e3ea0083c18",
- "kws": {
- "fr": [
- "cinq",
- "5 dé",
- "5"
- ]
- }
- },
- {
- "nm": "navire marchand",
- "id": "c66f14ced60c427d3068381355531c2448bc80b3e52739cf878ae012bc89541c",
- "kws": {
- "fr": [
- "navire marchand",
- "navire",
- "marchand"
- ]
- }
- },
- {
- "nm": "paix",
- "id": "03c4dcfbb22eac6eb47e710ceb7710ec8ffc567314da816e553df39cf6c99037",
- "kws": {
- "fr": [
- "paix"
- ]
- }
- },
- {
- "nm": "congrès",
- "id": "9110637ad6ec6f10c400ac8657f52352ea5f4129a960cc3e51c11094e918f193",
- "kws": {
- "fr": [
- "congrès"
- ]
- }
- },
- {
- "nm": "chronométrer",
- "id": "5cbc23b2696632694231e39df87eaeded28be57ff7f2d651dee5fe45c60ad3fe",
- "kws": {
- "fr": [
- "chronométrer"
- ]
- }
- },
- {
- "nm": "vieux",
- "id": "9ffb23658b23d27585724f399ddfae973a1d7da0a41eaa18d854b54694a1d533",
- "kws": {
- "fr": [
- "vieux",
- "grand-père"
- ]
- }
- },
- {
- "nm": "handicapés",
- "id": "611b1488a9c42cd04abe11a30079fb73c72e1cad5b4fa94459de498745ad80cb",
- "kws": {
- "fr": [
- "handicapés"
- ]
- }
- },
- {
- "nm": "déclouer",
- "id": "a08a9adbd8e75d793d1b055e3d5b8d6eb2c438fdf5e45f479fa886ecbe414c95",
- "kws": {
- "fr": [
- "déclouer",
- "enlever les clous",
- "enlever"
- ]
- }
- },
- {
- "nm": "lampadaire",
- "id": "280e8c283c477f9f0b142db6bac15e6e49ab2c42c765277a8d8fcba95f29ff44",
- "kws": {
- "fr": [
- "lampadaire",
- "lampe"
- ]
- }
- },
- {
- "nm": "juillet",
- "id": "051ef94972c2ef9b9beb63639fa842ea01c0f8519c302e5e416f15a19f2e567e",
- "kws": {
- "fr": [
- "juillet"
- ]
- }
- },
- {
- "nm": "rallonge",
- "id": "44d95eaa0fc41523814afd0bc84be445415aba9b382d535f6e1a54b953ba8064",
- "kws": {
- "fr": [
- "rallonge"
- ]
- }
- },
- {
- "nm": "laboratoire d\u0027eaux",
- "id": "8e221988d932b353f384b1e5025292d2619cf4d9eee419088069dae208346008",
- "kws": {
- "fr": [
- "laboratoire d\u0027eaux"
- ]
- }
- },
- {
- "nm": "loto",
- "id": "97ce777abeff70f3c4fff1601cc297916adfd94fa56232da5a20cf44b00d5047",
- "kws": {
- "fr": [
- "loto"
- ]
- }
- },
- {
- "nm": "spermatozoïde",
- "id": "6ad7d7138991eafea88de801c1b554efda18ac843e0d45bb2c9e15e51b54eefe",
- "kws": {
- "fr": [
- "spermatozoïde"
- ]
- }
- },
- {
- "nm": "plaquer au sol",
- "id": "03d247933fc28d74eee033eb8e1624f73e1ca74850fb69acd178552691996cb8",
- "kws": {
- "fr": [
- "plaquer au sol",
- "s\u0027asseoir par terre"
- ]
- }
- },
- {
- "nm": "roue de vélo",
- "id": "2845a11a735a48daa51c48288e0d6d64afae2b044c73ad75cb15cd6264041a64",
- "kws": {
- "fr": [
- "roue de vélo",
- "roue"
- ]
- }
- },
- {
- "nm": "lit",
- "id": "b1570a8546e4d3b7c70cb0f1a0e4e29414c350f0de5fd959d2b4714db442ee30",
- "kws": {
- "fr": [
- "lit"
- ]
- }
- },
- {
- "nm": "espadon",
- "id": "b96195e60219ab72cbd7a0bbe9c7181831d8167e5eb1807a78fe462ea92759d4",
- "kws": {
- "fr": [
- "espadon"
- ]
- }
- },
- {
- "nm": "centrale nucléaire",
- "id": "99c21926028eae8060617115eaf0dafaf9a2b93a246686966b33ca7120fb1d04",
- "kws": {
- "fr": [
- "centrale nucléaire"
- ]
- }
- },
- {
- "nm": "cuisse",
- "id": "edcbcda0b7f163186fe0110a0ccb7c433f50a6cbd3143ed2022301f3e0a8afe8",
- "kws": {
- "fr": [
- "cuisse"
- ]
- }
- },
- {
- "nm": "soulever",
- "id": "acc01b9b8613e8f75ad279d32c366fb77613a5ad11cd97e0c8a345bcc4eb0a1e",
- "kws": {
- "fr": [
- "soulever",
- "levier"
- ]
- }
- },
- {
- "nm": "compteur kilométrique",
- "id": "d13595caf939ab3b2ade8d117e02ba19b88e4e064c725ff8a8698313b252b4aa",
- "kws": {
- "fr": [
- "compteur kilométrique"
- ]
- }
- },
- {
- "nm": "vomir",
- "id": "254d7463fa7c5b82131cb6b8c217b7f42802f53b275ff4f90d4bb600a9b69e80",
- "kws": {
- "fr": [
- "vomir"
- ]
- }
- },
- {
- "nm": "chargeur",
- "id": "986ff12cbddee1e2a932612e1861337c020e9f7aa577229dd99849b884d66e4b",
- "kws": {
- "fr": [
- "chargeur"
- ]
- }
- },
- {
- "nm": "télé",
- "id": "f6e54c1656f1032f2cfb7db868487c6c74390f9a1f646aefc0805675a313b988",
- "kws": {
- "fr": [
- "télé",
- "téléviseur",
- "télévision",
- "écran lcd",
- "écran"
- ]
- }
- },
- {
- "nm": "bénédiction",
- "id": "7bd17b0df6adee056f9e4fd889515823614e363681dee53e1e6f9b0ebc364d85",
- "kws": {
- "fr": [
- "bénédiction"
- ]
- }
- },
- {
- "nm": "connaissance du milieu",
- "id": "f4a63caa56aa285641ea95a707097c317b1721856705b492f087a5c245d74028",
- "kws": {
- "fr": [
- "connaissance du milieu"
- ]
- }
- },
- {
- "nm": "égalité des chances",
- "id": "e16ab77355185bcc6a9d4abbd428552d794cd4104babbc09936b07d745f292ef",
- "kws": {
- "fr": [
- "égalité des chances"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "a01a5d2368ec9307c1ffe0964430c815f16079e5ed01fa53d9f9ec38004af922",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains à la taille",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "mince",
- "id": "c075621e20e09704af84a54d9f10583f66a0ee422278ddc027f505038f86dd24",
- "kws": {
- "fr": [
- "mince",
- "maigre"
- ]
- }
- },
- {
- "nm": "traitement",
- "id": "8dd41216b12ecaff162dd8ae60096d8b763e88d99153e6ddeb0cb97cbbf11d79",
- "kws": {
- "fr": [
- "traitement",
- "médecine",
- "médicaments"
- ]
- }
- },
- {
- "nm": "mort",
- "id": "706480f55c1115aef9c9b62deb4aeeaad330917da52db6222bec37411e263b16",
- "kws": {
- "fr": [
- "mort"
- ]
- }
- },
- {
- "nm": "se sucer le doigt",
- "id": "a6900f1da9d433839c1cd61df8795d7a8c3c795f49fb0bbd80a9f2b26531a20d",
- "kws": {
- "fr": [
- "se sucer le doigt",
- "sucer"
- ]
- }
- },
- {
- "nm": "harpe",
- "id": "cd3b5c9a0366d103b7aae7a5fa8a2feb585e4bf25cbaa11aaf8de02cf0ece6d1",
- "kws": {
- "fr": [
- "harpe",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "téléopératrice",
- "id": "dfca01f052f0d695a5672fb7cdc78474e2376c1e6b2043467498b34081913a4f",
- "kws": {
- "fr": [
- "téléopératrice",
- "opérateur"
- ]
- }
- },
- {
- "nm": "escaliers",
- "id": "54495ce5f49bda199cd79415a31393cfba50cb96406ed8d0d936e43ad8e180a1",
- "kws": {
- "fr": [
- "escaliers",
- "escalier"
- ]
- }
- },
- {
- "nm": "charriot",
- "id": "0bad0fce5daca96fc324b1e46e8b38df20d8036a966928666a1a6fe8812e8169",
- "kws": {
- "fr": [
- "charriot"
- ]
- }
- },
- {
- "nm": "o",
- "id": "fd38d490127da7650559184f7e0f9d10c026e3c0d55bf1470d746a158e71dd10",
- "kws": {
- "fr": [
- "o",
- "lettre"
- ]
- }
- },
- {
- "nm": "dedans",
- "id": "d997477a206dbe9f98b1544e954e98bce19cc2468b215e9963b84581444f9c6c",
- "kws": {
- "fr": [
- "dedans",
- "contenu"
- ]
- }
- },
- {
- "nm": "examiner",
- "id": "2bac3dd0f869e2004f6fd1d6ad86c212216fe942b815c4359296ad7aa6111abd",
- "kws": {
- "fr": [
- "examiner",
- "ausculter"
- ]
- }
- },
- {
- "nm": "rotation",
- "id": "092a0d92f23dbcfc2d80dbc11e25b82bee14fe104b25f5482b7c45d2c038fe39",
- "kws": {
- "fr": [
- "rotation"
- ]
- }
- },
- {
- "nm": "diamètre",
- "id": "b6a38f8e5d0a2e339c74500fe51e921359be1e6597c717e000667aa1bb36853a",
- "kws": {
- "fr": [
- "diamètre"
- ]
- }
- },
- {
- "nm": "magasin de jouets",
- "id": "a4465f7ecb045dee1f51bf7686b2e79a8218a06b21e3edf9fe2c43186b28a3e6",
- "kws": {
- "fr": [
- "magasin de jouets"
- ]
- }
- },
- {
- "nm": "calendrier",
- "id": "dc033190d721e33b4be96110d8f9d961d2e15d7dc46f227e1a9c3a048d8e806f",
- "kws": {
- "fr": [
- "calendrier",
- "almanach",
- "annuaire"
- ]
- }
- },
- {
- "nm": "important",
- "id": "dba8474fb804f7873c0307f6fd4bf6df1752c3aeb735d773357e602864e69fc2",
- "kws": {
- "fr": [
- "important",
- "admirer",
- "meilleur"
- ]
- }
- },
- {
- "nm": "bronzer",
- "id": "6ec4a0e857c4ddec32151b4f6fa3b6eab5dd077ca40d23256f611204aaec9094",
- "kws": {
- "fr": [
- "bronzer"
- ]
- }
- },
- {
- "nm": "claquer des paumes sur ses genoux",
- "id": "ff5669dc73ce9c606aa718e6d7f8086cbd9fa938ddf43574681492696c9e8651",
- "kws": {
- "fr": [
- "claquer des paumes sur ses genoux"
- ]
- }
- },
- {
- "nm": "soûl",
- "id": "b1ec593ddecb8e5f3fd080c88e427198e25ea439fba4856d8e647af6e2878204",
- "kws": {
- "fr": [
- "soûl"
- ]
- }
- },
- {
- "nm": "faire un massage",
- "id": "29b24a9dc8735756b06725864dc8f9c8f3d2d979260234295ce57fc2406b3142",
- "kws": {
- "fr": [
- "faire un massage",
- "massage corporel",
- "massage"
- ]
- }
- },
- {
- "nm": "instrument musical",
- "id": "d70dc075086068b11878af2aeb5069ce823340aef705a361e7935da3da774b0e",
- "kws": {
- "fr": [
- "instrument musical",
- "soucoupe"
- ]
- }
- },
- {
- "nm": "pincer",
- "id": "c345f724149c4a9ca13e5ef013303a3e965e30ae64d43e9213cc106515932967",
- "kws": {
- "fr": [
- "pincer"
- ]
- }
- },
- {
- "nm": "se moucher le nez",
- "id": "7618e9c314623a0413788e4fb5efc5968ca83817edb9fcc7ed103e9db29bfcc2",
- "kws": {
- "fr": [
- "se moucher le nez",
- "se moucher",
- "moucher"
- ]
- }
- },
- {
- "nm": "sentir",
- "id": "3c124e5730d706324ef0d935e4d5e13a188c1dabe8a0a10a80728a9eb591d690",
- "kws": {
- "fr": [
- "sentir",
- "odeur",
- "odorat"
- ]
- }
- },
- {
- "nm": "faire des courses",
- "id": "d18796a32a1044a9ec5f064aa772022e158ade0706d356ce928f76f00080938f",
- "kws": {
- "fr": [
- "faire des courses",
- "faire les courses",
- "acheter"
- ]
- }
- },
- {
- "nm": "séparer",
- "id": "144d0ab9d98d5aba1751b15b0b2e589b6dbe827d4355a62cfb8c00ed763a6d55",
- "kws": {
- "fr": [
- "séparer",
- "éloigner",
- "s\u0027éloigner"
- ]
- }
- },
- {
- "nm": "sauter à pieds joints",
- "id": "2ed8d33a7cad7c6ba6903922bf53dc648baa64594c522983263ce8494c4295a1",
- "kws": {
- "fr": [
- "sauter à pieds joints",
- "sauter"
- ]
- }
- },
- {
- "nm": "trottinette",
- "id": "9bd5f4c767df9996c1127d5d5ca632a17c3f37815511d21f9b6e5353f67d8b7d",
- "kws": {
- "fr": [
- "trottinette"
- ]
- }
- },
- {
- "nm": "thermomètre",
- "id": "86730d6f4a5f0151ea1ea5b39394d20e886c1a9af5da2e7cbb27cfd68ab39db7",
- "kws": {
- "fr": [
- "thermomètre"
- ]
- }
- },
- {
- "nm": "matière première",
- "id": "c18502e9feb3e6aa3d3e26e3bd2f9b7189c21eda59212d73113aacaca2bd412a",
- "kws": {
- "fr": [
- "matière première"
- ]
- }
- },
- {
- "nm": "tueur",
- "id": "c4524431b87e9ea4a055fffda66611f0ca4e7d04ba786c823e8a8f9eafa36aa8",
- "kws": {
- "fr": [
- "tueur",
- "cow-boy"
- ]
- }
- },
- {
- "nm": "bébé",
- "id": "aeb58960a7c13dffae7903a0976e385b6709f886940771d9b2bf4427922143cd",
- "kws": {
- "fr": [
- "bébé",
- "personne"
- ]
- }
- },
- {
- "nm": "kinésithérapie",
- "id": "1a7917edf7b761f689090da5965c9742ab3b1f112c9df21cff17daad0e8f9272",
- "kws": {
- "fr": [
- "kinésithérapie"
- ]
- }
- },
- {
- "nm": "volant de badminton",
- "id": "ba3381b56855d676eff176f5b93b5f7b018173f5841b38a4581f8716ab344a97",
- "kws": {
- "fr": [
- "volant de badminton",
- "volant",
- "badminton"
- ]
- }
- },
- {
- "nm": "fauteuil motorisé",
- "id": "4a59b4750c4ed4001e96b4c3393f19e2b445515c67f89d9af073f91108058687",
- "kws": {
- "fr": [
- "fauteuil motorisé",
- "fauteuil roulant motorisé",
- "fauteuil roulant à moteur",
- "fauteuil roulant électrique",
- "fauteuil roulant",
- "produit de soutien"
- ]
- }
- },
- {
- "nm": "toilettes adaptées",
- "id": "6476c1e1c3863ed57fe17bb31612501c66de3b98b384a239ea8ebf95397f8bf0",
- "kws": {
- "fr": [
- "toilettes adaptées",
- "toilettes pour dames",
- "toilettes",
- "salle de bains"
- ]
- }
- },
- {
- "nm": "entrée",
- "id": "28f60f74d256934bca5d4eb8653dbb32f911d055ca1593d70da676ff1560626c",
- "kws": {
- "fr": [
- "entrée",
- "hall"
- ]
- }
- },
- {
- "nm": "sachets de biscuits apéritif",
- "id": "ae6aff96d61f181e847c28331dc951c9a134b9e23093ee94a8803da8afb5c982",
- "kws": {
- "fr": [
- "sachets de biscuits apéritif"
- ]
- }
- },
- {
- "nm": "o",
- "id": "58994716bfb7b43bff16abe2ab860128810ba0031db44d9b0f48772649d69bc8",
- "kws": {
- "fr": [
- "o",
- "lettre"
- ]
- }
- },
- {
- "nm": "écouteur",
- "id": "004c68d258686fc3582e53786915186441d4b0f9fbce9507e90a255e68f7b800",
- "kws": {
- "fr": [
- "écouteur"
- ]
- }
- },
- {
- "nm": "pingouin empereur",
- "id": "19b9e9fb522a1458d4a887b1b7e1cf57dc9674b8025057640f80e9313b809a61",
- "kws": {
- "fr": [
- "pingouin empereur",
- "pingouin"
- ]
- }
- },
- {
- "nm": "vendeurs",
- "id": "3dfef2d8917dd445fa1ba614b1c6fb9344606aba91b79ec940539ba85be58a3d",
- "kws": {
- "fr": [
- "vendeurs",
- "vendeur",
- "vendeuses",
- "vendeuse"
- ]
- }
- },
- {
- "nm": "claquer",
- "id": "a1f2450cbe035ab34e58ca6e9504d683ef9f29da1752b4ccf6377894b159443b",
- "kws": {
- "fr": [
- "claquer"
- ]
- }
- },
- {
- "nm": "cette histoire es finie",
- "id": "575697c8d9059c1007dd3e74198c868e3f90f7e79e0e71d392319303cf5bbb71",
- "kws": {
- "fr": [
- "cette histoire es finie"
- ]
- }
- },
- {
- "nm": "oeuvre",
- "id": "b4179d482fb71919558391e8e3e195a61a2721888f48156f4e9f13dbb1d3a910",
- "kws": {
- "fr": [
- "oeuvre"
- ]
- }
- },
- {
- "nm": "sucrer",
- "id": "dda9e792f9293b743956740b64e71d9f54f59fc81f8f9306bdadbb3ac3f3a589",
- "kws": {
- "fr": [
- "sucrer"
- ]
- }
- },
- {
- "nm": "tramway",
- "id": "95caf8787fb538d49226cc5f3d341f2761e69dcf84d5a2ceb9f66a7703a0cf7c",
- "kws": {
- "fr": [
- "tramway"
- ]
- }
- },
- {
- "nm": "partie",
- "id": "4f725c5e5c13f37815d0d4fa2f13fed6bd1369d276e3973f5620c685e780658f",
- "kws": {
- "fr": [
- "partie",
- "une partie",
- "pièce",
- "morceau",
- "1-4",
- "fraction"
- ]
- }
- },
- {
- "nm": "joueur de football américain",
- "id": "85abf3640e5fbe2a67523f546f517fcc13516418e361756578550527dfda79c7",
- "kws": {
- "fr": [
- "joueur de football américain"
- ]
- }
- },
- {
- "nm": "mondial",
- "id": "522706c880b502d6dc29d5722f7e68b2579a883a1753be45d380f4412e70cd0c",
- "kws": {
- "fr": [
- "mondial"
- ]
- }
- },
- {
- "nm": "végétarien",
- "id": "8a96326f5286a9b9f7cb04a900729422f3fed3fba8bad42cd62135c70cd839f2",
- "kws": {
- "fr": [
- "végétarien"
- ]
- }
- },
- {
- "nm": "flotter",
- "id": "9b32028654b2097bf1a7688b2fcb61813c2201beea7a52ef989628482da13c4d",
- "kws": {
- "fr": [
- "flotter"
- ]
- }
- },
- {
- "nm": "dix",
- "id": "a15093f814a179518b299388cc2ae54fbbbfba66f05a9b379c061db72d8709ad",
- "kws": {
- "fr": [
- "dix",
- "10"
- ]
- }
- },
- {
- "nm": "décoiffé",
- "id": "c398d3117c33ca5f2a19313001b71f3ee806bd6de6f4d16025052b1bd8a661fb",
- "kws": {
- "fr": [
- "décoiffé"
- ]
- }
- },
- {
- "nm": "parler",
- "id": "a9b12f472b5761c6529ca4872fd22a28961d6fbb1bab8a2b5704a48d719a57c2",
- "kws": {
- "fr": [
- "parler",
- "causer",
- "conversation",
- "dialoguer",
- "dialogue",
- "discussion",
- "discuter"
- ]
- }
- },
- {
- "nm": "poste",
- "id": "33a91c604fd41ba5982b753f8b1b18cc72e67eaebdcd5118ccc839e159f702b5",
- "kws": {
- "fr": [
- "poste"
- ]
- }
- },
- {
- "nm": "décharge",
- "id": "06e44f913abfe2d2f0157a79378c6ec574bba5df812f81b1940202a93d49b4fe",
- "kws": {
- "fr": [
- "décharge",
- "dépotoir"
- ]
- }
- },
- {
- "nm": "cylindre",
- "id": "b9fb55f232bc72020506c24ede3c4631402ea772b7317962d2f85dca76e29a44",
- "kws": {
- "fr": [
- "cylindre"
- ]
- }
- },
- {
- "nm": "coiffeur",
- "id": "9f11ed3642192f6e0654c042849ff6bb0756e979c3e19dab2c272d945f914ded",
- "kws": {
- "fr": [
- "coiffeur"
- ]
- }
- },
- {
- "nm": "émigrant",
- "id": "6b75340420a4b9e9555c05fa44bab1dc48786504126dbdaac26588c1a7e371b5",
- "kws": {
- "fr": [
- "émigrant",
- "émigrer",
- "immigrant"
- ]
- }
- },
- {
- "nm": "se lever du lit",
- "id": "b53fe80c927262c082d29804b4d412c374c1d47568cb5288fa738767ca0f0549",
- "kws": {
- "fr": [
- "se lever du lit",
- "se lever",
- "lever"
- ]
- }
- },
- {
- "nm": "t",
- "id": "1c551f4a026a3f2144c0361338333092aab1e4cc3ee66316715c3ff6e088da96",
- "kws": {
- "fr": [
- "t",
- "lettre"
- ]
- }
- },
- {
- "nm": "pluriels",
- "id": "e175feec9f3b36758a5cbe7a72365ce1492ccdd50b39410ef43bd4cd10a8df0e",
- "kws": {
- "fr": [
- "pluriels",
- "pluriel"
- ]
- }
- },
- {
- "nm": "information",
- "id": "576789098a1289bf416b8760a8cbedc0f6e3c63975631dd010274563233f563e",
- "kws": {
- "fr": [
- "information"
- ]
- }
- },
- {
- "nm": "dinde",
- "id": "0e76f107728b6ad5399841f60eb42289190780723bedc86428fac0a3fdec36ae",
- "kws": {
- "fr": [
- "dinde"
- ]
- }
- },
- {
- "nm": "diable",
- "id": "361db1b9f015f941d959b95ef779886c24df654dd02260f4a6f108241848c1a2",
- "kws": {
- "fr": [
- "diable"
- ]
- }
- },
- {
- "nm": "changer",
- "id": "88aa10058fb8cbf952d64cd497d110fa0c0e212a1448d0919c21b4937f147ca4",
- "kws": {
- "fr": [
- "changer",
- "échanger"
- ]
- }
- },
- {
- "nm": "unité centrale",
- "id": "2e64e72d2f2f5e5cda04097ac2ed88f5e2af1ce88974d9df29491a9400b213ed",
- "kws": {
- "fr": [
- "unité centrale"
- ]
- }
- },
- {
- "nm": "machine à coudre",
- "id": "e8b8476d082c87bb5f339aa89cc1c8691e7a08a7e0095c4315a912af9bf2a4d7",
- "kws": {
- "fr": [
- "machine à coudre"
- ]
- }
- },
- {
- "nm": "centimes",
- "id": "61a5a07cb3637c38430e30e679e9ae879dc61793b8f78828bec15f23accb3805",
- "kws": {
- "fr": [
- "centimes",
- "10 centimes",
- "argent"
- ]
- }
- },
- {
- "nm": "mur",
- "id": "9c93bc3eb4377d052678083fdef6b9922476e037199ee3f1bac020484e28544b",
- "kws": {
- "fr": [
- "mur"
- ]
- }
- },
- {
- "nm": "passage piétons",
- "id": "07d78610a0aa7723ddd2cad5ae7faf90cc5aa1912c2038771e0e23d0366cd8a0",
- "kws": {
- "fr": [
- "passage piétons",
- "passage piéton"
- ]
- }
- },
- {
- "nm": "chambre",
- "id": "20460db6064b7bd54aa4bcb9cb04a163d678fcceb16b2732496906dbca1782de",
- "kws": {
- "fr": [
- "chambre",
- "signalétique",
- "salon"
- ]
- }
- },
- {
- "nm": "wc adapté",
- "id": "dc0daa222fbf93305dd6914ae7e57ee886eb34eda083a88f1d53a208b059a168",
- "kws": {
- "fr": [
- "wc adapté",
- "baignoire",
- "salle de bain adaptée"
- ]
- }
- },
- {
- "nm": "matelas à vibration",
- "id": "75feafaffe1d16699c003ea99b11e5d6d2747e8484318d0d2ff5de053fb3485e",
- "kws": {
- "fr": [
- "matelas à vibration"
- ]
- }
- },
- {
- "nm": "grande canarie",
- "id": "e26aa84a8aa171483b985cd8065b8aab9b774b47948fdcb538b634b95ef47db4",
- "kws": {
- "fr": [
- "grande canarie"
- ]
- }
- },
- {
- "nm": "brancard",
- "id": "859a9643a2a9959bc605c423037713195fc5793d3d4ffd47280d1caf143bb58f",
- "kws": {
- "fr": [
- "brancard"
- ]
- }
- },
- {
- "nm": "mercerie",
- "id": "b4039b79c695d54282913f162e721d324606099d06c19916f9e3aaf2ab230447",
- "kws": {
- "fr": [
- "mercerie"
- ]
- }
- },
- {
- "nm": "trousse de secours",
- "id": "3e27a841d00d3ad95343c47f07438c6897e32c9af36a68be33ea054a62e6f0b8",
- "kws": {
- "fr": [
- "trousse de secours"
- ]
- }
- },
- {
- "nm": "nez",
- "id": "d6b1e2871a4ba9ad0cc2950f6fd55646116a557b0aaaac566b37e2e705759506",
- "kws": {
- "fr": [
- "nez"
- ]
- }
- },
- {
- "nm": "fermer",
- "id": "1bfec5ec9779a7fd014adf1dae06b4e7539f0ef6928fd96c7f901af71917e563",
- "kws": {
- "fr": [
- "fermer",
- "pousser"
- ]
- }
- },
- {
- "nm": "brûler",
- "id": "0c403546e56feca51fbe59426ad5567f2e51edfc9aab42b1e06328755764c143",
- "kws": {
- "fr": [
- "brûler",
- "feu de joie"
- ]
- }
- },
- {
- "nm": "cruche",
- "id": "1f24d7752d306c20853f890402e69edde86bb0d252dcf12c5c980ffcafd741b7",
- "kws": {
- "fr": [
- "cruche"
- ]
- }
- },
- {
- "nm": "éventer",
- "id": "94c0b39360a48cd7bb2c9feb2762c41bcaac0df0871854f174311c30643aca99",
- "kws": {
- "fr": [
- "éventer",
- "être éventé"
- ]
- }
- },
- {
- "nm": "moulin",
- "id": "863127706f044bfdfacbfe89c16a1be6da7a30f93b06143467dd0418374d25ff",
- "kws": {
- "fr": [
- "moulin"
- ]
- }
- },
- {
- "nm": "vendeur",
- "id": "622affde9e1e95be6ed1d7f997b7119c59771bed6d2d41f90dd25bd5ced10228",
- "kws": {
- "fr": [
- "vendeur",
- "boulanger"
- ]
- }
- },
- {
- "nm": "grillade",
- "id": "cc248f321d5ec38f51c4ba259a576b49abb92d9f0c9ed689bb70cf50a1fb42c0",
- "kws": {
- "fr": [
- "grillade"
- ]
- }
- },
- {
- "nm": "fille",
- "id": "270286d1f23422f70100402fa523523b21cf2040b6d9e5c2f8b24a0468bfd689",
- "kws": {
- "fr": [
- "fille"
- ]
- }
- },
- {
- "nm": "internet",
- "id": "ade89c3287719dfa9078c18530d763d42c0327225bb52fcb8fb21b6cee773d9e",
- "kws": {
- "fr": [
- "internet"
- ]
- }
- },
- {
- "nm": "lecture",
- "id": "d46ba29270005b33b05bf6fb667306c123ace1cbb21a907390d1a60774a0d2bb",
- "kws": {
- "fr": [
- "lecture",
- "lire"
- ]
- }
- },
- {
- "nm": "personne autiste",
- "id": "cf134b3889193fd9d0f097038a2291ebba0ce9bc9486e62a6304a957b1a6295e",
- "kws": {
- "fr": [
- "personne autiste"
- ]
- }
- },
- {
- "nm": "victoire",
- "id": "73d4283d8c619fcc952bbcc99b4547b5d6af283ed3cbcbeecbfffc8c01b31296",
- "kws": {
- "fr": [
- "victoire",
- "succès"
- ]
- }
- },
- {
- "nm": "torchon",
- "id": "acfc7fb17985d960ef2b9478a73ef56ff959058fea6764be3346bff44557d836",
- "kws": {
- "fr": [
- "torchon",
- "chiffon"
- ]
- }
- },
- {
- "nm": "rétroviseur intérieur",
- "id": "3e7008b6a4526976edb06397558022ef66cec0007f45fae24dc429a15e6b7f74",
- "kws": {
- "fr": [
- "rétroviseur intérieur",
- "rétroviseur"
- ]
- }
- },
- {
- "nm": "poulet rôti",
- "id": "ea2d02ef3456c5a6405fd2c1c157a3a5bb2431a8469f3392b1d3a6d6b7b14141",
- "kws": {
- "fr": [
- "poulet rôti",
- "poulet"
- ]
- }
- },
- {
- "nm": "parasite",
- "id": "e6aeb7e255135500bac0b5799ae6b2ec826ab6f480b8eab56083902897626b78",
- "kws": {
- "fr": [
- "parasite",
- "pou",
- "lente"
- ]
- }
- },
- {
- "nm": "ceci",
- "id": "5d7bd6848f756d12bad5099b42436aa395947bd867c1201fffd0beb2ad5cf6e5",
- "kws": {
- "fr": [
- "ceci",
- "celle-ci",
- "celui-ci"
- ]
- }
- },
- {
- "nm": "baltasar",
- "id": "709e25aec4a2fea35b80107357322e547b9da2d34816f7c7997e5d154f841721",
- "kws": {
- "fr": [
- "baltasar"
- ]
- }
- },
- {
- "nm": "chargé de magasin",
- "id": "bf943da066f8e3d2a9c0263e6243a0f41ad0ba8dec6a9075cb741da6846e8709",
- "kws": {
- "fr": [
- "chargé de magasin",
- "responsable",
- "magasinier"
- ]
- }
- },
- {
- "nm": "janvier",
- "id": "60ba266a717643138b8956806962154487e3003fdfa1856d0a1c4cd3d0f81c5d",
- "kws": {
- "fr": [
- "janvier"
- ]
- }
- },
- {
- "nm": "essuyer les mains",
- "id": "cc6f24eb64447721224c120076a60762253d503edd178a640b6bb6c145a84f31",
- "kws": {
- "fr": [
- "essuyer les mains",
- "sécher"
- ]
- }
- },
- {
- "nm": "seringue",
- "id": "284f399df9fcb0f4496bb1d9de4c53d93713bd315a5716e44d55d16803826db9",
- "kws": {
- "fr": [
- "seringue"
- ]
- }
- },
- {
- "nm": "cerveau",
- "id": "6425615451b22c7367bd59e7b9003601898470f6a843355c80e30a05fe1ef786",
- "kws": {
- "fr": [
- "cerveau",
- "cervelle"
- ]
- }
- },
- {
- "nm": "les 3 rois mages",
- "id": "075a32e953f034f426f18fe02c3f7867b465f7a5c9232ee0af9564db4552b6bf",
- "kws": {
- "fr": [
- "les 3 rois mages",
- "rois mages"
- ]
- }
- },
- {
- "nm": "sauter",
- "id": "4060c847a2c4a3a508f195cd74de59025d6b5e31b8d578775f14b0ad82c33064",
- "kws": {
- "fr": [
- "sauter"
- ]
- }
- },
- {
- "nm": "taj mahal",
- "id": "2b116440ff98f71e1be7cc1fa53ff759094be99b5628740d981657394982b485",
- "kws": {
- "fr": [
- "taj mahal",
- "inde"
- ]
- }
- },
- {
- "nm": "facture",
- "id": "80daa640c5054387b305d7f4a4fef20d8f1d5ce84ff94f65b9403530c4d1409d",
- "kws": {
- "fr": [
- "facture",
- "compte"
- ]
- }
- },
- {
- "nm": "table",
- "id": "03f51be910dadae7f0110e5c1d7c7001fbdc055b34c6aa19c14bcc67b8b1ada1",
- "kws": {
- "fr": [
- "table"
- ]
- }
- },
- {
- "nm": "passé",
- "id": "9c063048c76b54629e8f7db9ecca93e46ad872cd8bcf492dfe27953dc0a9aeb6",
- "kws": {
- "fr": [
- "passé",
- "derrière"
- ]
- }
- },
- {
- "nm": "cimetière",
- "id": "e3d3b981fa39f2c7c311583b1b30113a86241ea4f927d4dc3cadd63f0edf4ec8",
- "kws": {
- "fr": [
- "cimetière"
- ]
- }
- },
- {
- "nm": "crosse hockey",
- "id": "7e0ded039d0b05454212f9b94741c5dc4a17108176fcfd862a96cdfe8ce66977",
- "kws": {
- "fr": [
- "crosse hockey"
- ]
- }
- },
- {
- "nm": "chaise",
- "id": "513d6716e38c638cd18736e06ca5594ada1d13d778c578de87b65d6bd6a17205",
- "kws": {
- "fr": [
- "chaise",
- "siège"
- ]
- }
- },
- {
- "nm": "visser",
- "id": "67583ada955840f648b8333b297e1a360bc004fc666a8340461d80e11005f218",
- "kws": {
- "fr": [
- "visser"
- ]
- }
- },
- {
- "nm": "exprimer",
- "id": "2da9f5683c0079306f5288186fa7b1bd1acf1edc52f522e99c1e8976a3a83a25",
- "kws": {
- "fr": [
- "exprimer",
- "dire"
- ]
- }
- },
- {
- "nm": "salle d\u0027entretiens",
- "id": "a16335320e254b45b51debd4ca15970fa6dc9110fab361255b615eb654b081ee",
- "kws": {
- "fr": [
- "salle d\u0027entretiens"
- ]
- }
- },
- {
- "nm": "marqueur",
- "id": "96aec18978b21f43472598dbd532e7fc90b549fbbf44a165317c9334ed8fdbd0",
- "kws": {
- "fr": [
- "marqueur"
- ]
- }
- },
- {
- "nm": "podologue",
- "id": "60c385d878b559c7f2837e2675e1d09ffc5aa8518643fbc65bd025dc9d516c36",
- "kws": {
- "fr": [
- "podologue"
- ]
- }
- },
- {
- "nm": "prendre",
- "id": "e9655b5d85ebe019ce6467ba646a4f1a16524b6f67d84adc58350f8a540d31ad",
- "kws": {
- "fr": [
- "prendre",
- "boire"
- ]
- }
- },
- {
- "nm": "diarrhée",
- "id": "6d093dfd5935f222503592fe13eda3d30b77ea1d71c92d956b57bf893b56489c",
- "kws": {
- "fr": [
- "diarrhée"
- ]
- }
- },
- {
- "nm": "rhinocéros",
- "id": "fecd8727b434b18011789bf03d1bf7ada0e557442f050d3c923730be243df33a",
- "kws": {
- "fr": [
- "rhinocéros"
- ]
- }
- },
- {
- "nm": "sport",
- "id": "f93f8e80f1572714bdd8874be8930a70393ae049e1260432e1596cdfdedf0aab",
- "kws": {
- "fr": [
- "sport"
- ]
- }
- },
- {
- "nm": "cohérente",
- "id": "ffe1b7ce416e1bc147806a36848254a132cf4dd0e5e12c60adcf365f5f647639",
- "kws": {
- "fr": [
- "cohérente",
- "responsable"
- ]
- }
- },
- {
- "nm": "expression",
- "id": "9f13153e2ace2b64d596ac9b764a502f6a538c85165c48c985deb9fa6e39b436",
- "kws": {
- "fr": [
- "expression",
- "content",
- "heureux",
- "joie",
- "joyeux",
- "réjouir"
- ]
- }
- },
- {
- "nm": "patineur sur glace",
- "id": "7b6fbd6f6958b4bb587bed4145c680d17dd4165ac720f2aea351178bdca5e3d0",
- "kws": {
- "fr": [
- "patineur sur glace",
- "faire du patin à glace",
- "faire du patin"
- ]
- }
- },
- {
- "nm": "enlever",
- "id": "c794b083ca29a06ea3e9b778848a76789c72b5595fb9f627da316f27616842ad",
- "kws": {
- "fr": [
- "enlever"
- ]
- }
- },
- {
- "nm": "colonie",
- "id": "372ee419fd5249b455a27a3f391fc9cbe0a9fd6528062e7249d522dcd8d40f96",
- "kws": {
- "fr": [
- "colonie"
- ]
- }
- },
- {
- "nm": "tamis",
- "id": "5389869000a72b2bb0b16abfb2b294c44825d9079daf7c6ea1ee44e638f272da",
- "kws": {
- "fr": [
- "tamis",
- "crible"
- ]
- }
- },
- {
- "nm": "maladies",
- "id": "b5d4be36f8ce9f22b03432fc67a9ae00aa56ce4a75b679e89ee414412deb3c40",
- "kws": {
- "fr": [
- "maladies"
- ]
- }
- },
- {
- "nm": "couverts",
- "id": "ebb9b5bee4bea47b8348a5635c30a9cc09f0c0a2e3cb2f675c3fef7751209837",
- "kws": {
- "fr": [
- "couverts"
- ]
- }
- },
- {
- "nm": "c",
- "id": "15c643bbb71bc41b3080b8f3064d6600965569593cad5e56c3e0c97603fa4ac5",
- "kws": {
- "fr": [
- "c",
- "lettre"
- ]
- }
- },
- {
- "nm": "pauvre",
- "id": "e3a2619575e9c42a48323e518d50c24a4eb54467df909f46fa9a42ae269d7dfc",
- "kws": {
- "fr": [
- "pauvre",
- "demander",
- "indigent",
- "mendiant"
- ]
- }
- },
- {
- "nm": "escalier",
- "id": "16faf15296382888791346fe5fc34d28ab84a3e8d1a2b0cefc3f0f5d2b5bd97c",
- "kws": {
- "fr": [
- "escalier",
- "escaliers"
- ]
- }
- },
- {
- "nm": "avril",
- "id": "ed974603344f8e1a594b7cf38438c2f4c215038741b1e7860e7274d73544ada3",
- "kws": {
- "fr": [
- "avril"
- ]
- }
- },
- {
- "nm": "suède",
- "id": "107b1fc50bdb469905080df35c46a6d5e82dc29b1deac0ae5ae783f40ba03630",
- "kws": {
- "fr": [
- "suède"
- ]
- }
- },
- {
- "nm": "trente-et-un",
- "id": "e010b8f944d30f6f48d9d7f45e79ac53ea1b1328f86118e94cb1a48c8f4b4dba",
- "kws": {
- "fr": [
- "trente-et-un",
- "31"
- ]
- }
- },
- {
- "nm": "scruter",
- "id": "b4832609e9b0b09d1d1c118ee2e2ba0e661b69d745d5f12d9389fdddc9d790f4",
- "kws": {
- "fr": [
- "scruter",
- "surveiller"
- ]
- }
- },
- {
- "nm": "poulet rôti",
- "id": "2ac73d49e518898c4f9adf29dd3f505dcf12379a8c6fea0300688292c32cb115",
- "kws": {
- "fr": [
- "poulet rôti",
- "poulet"
- ]
- }
- },
- {
- "nm": "batte de base-ball",
- "id": "014ace15c23635a15fefc8786d74a455cf4c8ab2ee2dd4e56fe631f6cf579e39",
- "kws": {
- "fr": [
- "batte de base-ball",
- "batte"
- ]
- }
- },
- {
- "nm": "tomber malade",
- "id": "9684be017452b26628d31893e3c67d3e3c21876c8f4912839069164d1905fddb",
- "kws": {
- "fr": [
- "tomber malade",
- "être malade",
- "maladie"
- ]
- }
- },
- {
- "nm": "sans gluten",
- "id": "af1a1d23cd2c3833357c5ca63f8c1f7a74c41a466e86558b8de58e9a18b68d06",
- "kws": {
- "fr": [
- "sans gluten"
- ]
- }
- },
- {
- "nm": "feuille verte",
- "id": "1aa7d63460b698de53f7ae31143671e1f0348be0a32901d0bc368ce0e568a423",
- "kws": {
- "fr": [
- "feuille verte",
- "feuille"
- ]
- }
- },
- {
- "nm": "information",
- "id": "0241b252a8b56f4d8f5695d2c784cf3caa3ed95a514d45b65023cded362b5801",
- "kws": {
- "fr": [
- "information",
- "office de tourisme"
- ]
- }
- },
- {
- "nm": "reproducteur dvd",
- "id": "1a4d95c92d392a585abb72f3c9d5cd8065e7251a0b7ae072f9849f722e3735f7",
- "kws": {
- "fr": [
- "reproducteur dvd"
- ]
- }
- },
- {
- "nm": "arche de noé",
- "id": "0b2bb940a676035415adfe6c22bcbfcbb00b6186a46e9b01f647613c3f328e55",
- "kws": {
- "fr": [
- "arche de noé"
- ]
- }
- },
- {
- "nm": "blouse",
- "id": "1d63a058c7fa97e4e5d42744d2ef840025349bd07f0bc33923c97f3ab74fb1b0",
- "kws": {
- "fr": [
- "blouse"
- ]
- }
- },
- {
- "nm": "penser",
- "id": "e41941714ab20256ad571ce0f987cd1a5a4fe4e3bb2dab90dc1ed5ab5e88bcd0",
- "kws": {
- "fr": [
- "penser"
- ]
- }
- },
- {
- "nm": "table adaptée",
- "id": "835d5e494dbd0c767daf88b586bc1ba5fb47f1488079c02add5f1a4af62e5a16",
- "kws": {
- "fr": [
- "table adaptée"
- ]
- }
- },
- {
- "nm": "magasin de volailles",
- "id": "4073be024d1e8f12d94a211710b9ae7d425af91337fc137432a67dbfc3fbd29f",
- "kws": {
- "fr": [
- "magasin de volailles"
- ]
- }
- },
- {
- "nm": "infirmerie",
- "id": "4e4de40e6cb4874f27b6b97fa4895ff1589c56bc3ef0301d2f0738178ea3f5ba",
- "kws": {
- "fr": [
- "infirmerie"
- ]
- }
- },
- {
- "nm": "n",
- "id": "8fca8fa8d43371eda9623af4f8a15b2e4ad87d33b1990d5c42ff9bfe44a530de",
- "kws": {
- "fr": [
- "n",
- "lettre"
- ]
- }
- },
- {
- "nm": "récréation",
- "id": "9e3eb44bf5c517debcafe97ad2f8449825ba57adbdb055d908f28c47253c4fcc",
- "kws": {
- "fr": [
- "récréation"
- ]
- }
- },
- {
- "nm": "foulards aragonais",
- "id": "4ea6eaa0492260437076cabc969c6202dfda1310b980bfb19187031a2778f657",
- "kws": {
- "fr": [
- "foulards aragonais",
- "foulards"
- ]
- }
- },
- {
- "nm": "fumer",
- "id": "dd16751685c06158a6de9024f7f33b48d9105203753aaa8173ece7ab2a39321f",
- "kws": {
- "fr": [
- "fumer"
- ]
- }
- },
- {
- "nm": "pique de gymnastique",
- "id": "706f9835e36321476569d1b621855d10cc890ab7840d923406658da34f5c5250",
- "kws": {
- "fr": [
- "pique de gymnastique",
- "pique"
- ]
- }
- },
- {
- "nm": "signal",
- "id": "c2f37b8a973abe711e11c41b76e6cee2cab0e2bafe97116c5a1f95dd2b971589",
- "kws": {
- "fr": [
- "signal",
- "stop"
- ]
- }
- },
- {
- "nm": "miauler",
- "id": "453f4cbfa3bff39f7c20c72ca4301e08341e57f60f99fe6fcef06a8a7e23d56f",
- "kws": {
- "fr": [
- "miauler"
- ]
- }
- },
- {
- "nm": "lézard",
- "id": "2cc06eb001a3b890d5672982770bb3207953a1b1efaa5a19fe75737bde110011",
- "kws": {
- "fr": [
- "lézard"
- ]
- }
- },
- {
- "nm": "étirer",
- "id": "4c935f9409987b3a351a46b8e5901551c86d8cd6a550a840b392e75a8d6d61d0",
- "kws": {
- "fr": [
- "étirer",
- "attaquer",
- "jeter",
- "maltraiter"
- ]
- }
- },
- {
- "nm": "eau non potable",
- "id": "21dada82927ea91cf5122e72376d6180df38d8491f58a0c8c60a1995af1e9d65",
- "kws": {
- "fr": [
- "eau non potable"
- ]
- }
- },
- {
- "nm": "phases",
- "id": "b769857b473a408bf0e7e1bc3f341d00ef538101a5321b828a9a944d633bd880",
- "kws": {
- "fr": [
- "phases",
- "cycle"
- ]
- }
- },
- {
- "nm": "emboîtable",
- "id": "6d2d105588175c5998f20fe646f9053b4830ad34a9eb911842d5caa3de870384",
- "kws": {
- "fr": [
- "emboîtable",
- "emboîter"
- ]
- }
- },
- {
- "nm": "endroit",
- "id": "2a131eabeb3b76ee123ec0489b891eef5c95d3545003e0dfa32b5a54bfeb1baf",
- "kws": {
- "fr": [
- "endroit",
- "place"
- ]
- }
- },
- {
- "nm": "centre",
- "id": "3eca6b3ecdf98802d725d9d3032bce6dc49875537f6db174438aed398cbeda38",
- "kws": {
- "fr": [
- "centre"
- ]
- }
- },
- {
- "nm": "chaussures",
- "id": "217a48c10ec11d14404f994470a6273d8d3c496b16d97db06b7d18e8fefda8b9",
- "kws": {
- "fr": [
- "chaussures"
- ]
- }
- },
- {
- "nm": "pollution",
- "id": "52ff106b77c7a52c7d552fc2d5c61f8a3f248eb67338efb006693dbd916590b4",
- "kws": {
- "fr": [
- "pollution",
- "contaminer",
- "résidus"
- ]
- }
- },
- {
- "nm": "téter",
- "id": "fcf47cd5fd35a76407f68d4cd095165d444286155fc68218a548e765dec70991",
- "kws": {
- "fr": [
- "téter",
- "nourrisson",
- "allaiter"
- ]
- }
- },
- {
- "nm": "beau",
- "id": "432179eb4b6cfa2c00c4436cb0811ea577cf28aaebecfe130eb1897edc3303a4",
- "kws": {
- "fr": [
- "beau"
- ]
- }
- },
- {
- "nm": "terrain",
- "id": "d3fcc729719df27ccb261c37d144bb74d055e3be232617bb8c444467b2b7a974",
- "kws": {
- "fr": [
- "terrain",
- "pavillon",
- "salle omnisports"
- ]
- }
- },
- {
- "nm": "champ",
- "id": "251af2f3f9e4a0f7df897523e8d85599c2bf64c45ff50702864dfbfbbabf07f3",
- "kws": {
- "fr": [
- "champ"
- ]
- }
- },
- {
- "nm": "convention",
- "id": "8b87de98f896447e0fc27f414fd2cd2d566340fa857ff4b7e96342c698906836",
- "kws": {
- "fr": [
- "convention"
- ]
- }
- },
- {
- "nm": "enlever",
- "id": "dbbac8d59ec3e4dcbd5be0255351d1a05eb7a49d698068e0cb485f3a34907100",
- "kws": {
- "fr": [
- "enlever"
- ]
- }
- },
- {
- "nm": "jardinière",
- "id": "c8a878d3f443faa51bff2d4c41c4c1ed55173df1dce40f043d122e1154bd6f7c",
- "kws": {
- "fr": [
- "jardinière"
- ]
- }
- },
- {
- "nm": "sucer",
- "id": "bcca902ee4d3fd72edfc66bdfd7c17c46846a0063f24af2e686c0afa8886c95a",
- "kws": {
- "fr": [
- "sucer"
- ]
- }
- },
- {
- "nm": "écrire",
- "id": "ed45f867931c0c632977f1e12b59244b9c3fa7e8d6da3b6fb057898cfdf456f5",
- "kws": {
- "fr": [
- "écrire",
- "écriture"
- ]
- }
- },
- {
- "nm": "cartes",
- "id": "03c80e5c9b92ad9a4c1e860680c51ee71a5e26a2c9df66342bbe82aa8b714d91",
- "kws": {
- "fr": [
- "cartes",
- "jeu de cartes"
- ]
- }
- },
- {
- "nm": "soigner",
- "id": "b7e342bbd347f43c1ee5b9004d85b134ce994e70f429a1ba9cb9f06dcf1bc722",
- "kws": {
- "fr": [
- "soigner",
- "guérir"
- ]
- }
- },
- {
- "nm": "effrayant",
- "id": "bd0c1fe394d5595a65537921e44c09e3b60f9e324872225c797ae66a9b1c0073",
- "kws": {
- "fr": [
- "effrayant",
- "peureux"
- ]
- }
- },
- {
- "nm": "homosexualité",
- "id": "08edd48025df4cdc10cf8179cf5b83832caf3e326accb586726b4a2f1ddca868",
- "kws": {
- "fr": [
- "homosexualité",
- "homosexuel",
- "homosexuels",
- "gay",
- "gays"
- ]
- }
- },
- {
- "nm": "soupe",
- "id": "17b161210d10268501684be77ea26fb1bf7f184224b82d5ee2f0bcbf2e8b327e",
- "kws": {
- "fr": [
- "soupe"
- ]
- }
- },
- {
- "nm": "égoïste",
- "id": "3f995dd52c9ebd5d0598e96e85218bc552664a5ce868e2f7fa8e0b6f0476a755",
- "kws": {
- "fr": [
- "égoïste"
- ]
- }
- },
- {
- "nm": "presser",
- "id": "35925d45e6af873068b99feb01c04bc459e828b3b923426c551b718c92c7d629",
- "kws": {
- "fr": [
- "presser"
- ]
- }
- },
- {
- "nm": "planète",
- "id": "92bf8bdc70e196c31a7388b6bdcddf6c689ac5a0e03013d8ec700d99bcb50cf9",
- "kws": {
- "fr": [
- "planète",
- "vénus"
- ]
- }
- },
- {
- "nm": "dalles",
- "id": "24d5c3d2198e216188c7d91e20c25f4931641c3b958550029a335099bc06664e",
- "kws": {
- "fr": [
- "dalles"
- ]
- }
- },
- {
- "nm": "nettoyage",
- "id": "45a390c0c810b90aad67c9af434575d94c94ff54ccfebdecef9118b2a463672e",
- "kws": {
- "fr": [
- "nettoyage"
- ]
- }
- },
- {
- "nm": "gagner",
- "id": "83bbeb1983a70497efc7a05801a2bd2de735ad0bfc9a0ec128dec29d78f8889c",
- "kws": {
- "fr": [
- "gagner",
- "résultat"
- ]
- }
- },
- {
- "nm": "maladie",
- "id": "4d6325ab9eab8d41f686da50c61c31a13a388b16ab8d534a99606e12a390ceea",
- "kws": {
- "fr": [
- "maladie"
- ]
- }
- },
- {
- "nm": "bulletin d\u0027informations",
- "id": "bfc03c1d511eb20ce44dd1285ece8eee64d6c723f2b8a61126f65cf9a0a6d623",
- "kws": {
- "fr": [
- "bulletin d\u0027informations",
- "bulletin informatif",
- "programme",
- "nouvelles",
- "journal télévisé",
- "journal"
- ]
- }
- },
- {
- "nm": "hamburger",
- "id": "76e2d5d66d48cf06cf398eb5b093cc5495bcb312b181f47816295703e627ef18",
- "kws": {
- "fr": [
- "hamburger"
- ]
- }
- },
- {
- "nm": "paire",
- "id": "dd0d7f9271330baa2034dda9565020e0d88bbffb40e8b65253748d0b27ca1761",
- "kws": {
- "fr": [
- "paire",
- "deux",
- "numéro"
- ]
- }
- },
- {
- "nm": "propriété intellectuelle",
- "id": "042fb4e6339b549b4b272ecd69e44ca6c84fe7694064399965d0b328c60c4515",
- "kws": {
- "fr": [
- "propriété intellectuelle"
- ]
- }
- },
- {
- "nm": "utiliser",
- "id": "bd5b4dfa5acebc04fc4ec5bd991cf7e42cdeca09858b50fa17a5aebdbe495fcd",
- "kws": {
- "fr": [
- "utiliser"
- ]
- }
- },
- {
- "nm": "douche",
- "id": "e569ceb87fc8bcf0b1fea387ec6d4a0248c6413a2bc5f2b30f8a00ae516ee264",
- "kws": {
- "fr": [
- "douche"
- ]
- }
- },
- {
- "nm": "les 3 rois mages",
- "id": "a1673cd491ccbb5b139395b3f254a4233f22b070693a5219c60e398fe213c41c",
- "kws": {
- "fr": [
- "les 3 rois mages",
- "rois mages"
- ]
- }
- },
- {
- "nm": "déguisé",
- "id": "3e29dba7525e76390a5dbfbcc4e80a177f2f636273cbe849824bac4463324ad6",
- "kws": {
- "fr": [
- "déguisé"
- ]
- }
- },
- {
- "nm": "moncayo",
- "id": "0b21a92a948cb3f1d4440222f6df12591128c4f361dc896f53dfcdc0ea9420ca",
- "kws": {
- "fr": [
- "moncayo",
- "montagne",
- "mont"
- ]
- }
- },
- {
- "nm": "bisexualité",
- "id": "447ec7ce3635f68db461a6f371ee41dcf1c1152e6b783e29cc32049c91156b17",
- "kws": {
- "fr": [
- "bisexualité",
- "bisexuel"
- ]
- }
- },
- {
- "nm": "couper",
- "id": "ec2599daee53ce2607e1e7c0527a0aeed70af42aa4650f39e0fe203de019ee3e",
- "kws": {
- "fr": [
- "couper"
- ]
- }
- },
- {
- "nm": "déboutonner",
- "id": "0b2091cc42abf4e6bdcf8cc6417bf68024bcf315f8a5b96646cbb4344432d944",
- "kws": {
- "fr": [
- "déboutonner",
- "défaire"
- ]
- }
- },
- {
- "nm": "lit",
- "id": "ea04d3e894ff27653de32d7c2a89028b14fd90135659c59313c1bebb051dbbca",
- "kws": {
- "fr": [
- "lit"
- ]
- }
- },
- {
- "nm": "guide",
- "id": "a03249268628f50428573d06be9036fd214e8530bb9dc0dd4bd2843fb98f7487",
- "kws": {
- "fr": [
- "guide"
- ]
- }
- },
- {
- "nm": "canapé",
- "id": "6dba6e542205c2126559c06bc44a56bd40dcf6e5b1f7dcdc8107faaf520d5922",
- "kws": {
- "fr": [
- "canapé"
- ]
- }
- },
- {
- "nm": "chargée de magasin",
- "id": "971f3dbfcbd69742b1257c3761d6f0efbe29a73260010445bb5bfee770b7e96e",
- "kws": {
- "fr": [
- "chargée de magasin",
- "chargée"
- ]
- }
- },
- {
- "nm": "cousin",
- "id": "a6d836c1f68b514b579d146714a37e4a15af01377fad607fa2727c54c9ea79e3",
- "kws": {
- "fr": [
- "cousin"
- ]
- }
- },
- {
- "nm": "fauteuil roulant",
- "id": "397c0d47ca502846936891a9c3b4abe377bb5fc1499dd17e8ac3dc49162bd2a3",
- "kws": {
- "fr": [
- "fauteuil roulant",
- "produit de soutien"
- ]
- }
- },
- {
- "nm": "plante",
- "id": "050d7d3ce9366954c2bb88ed48031949fb7d09f1b54931a6fb345bd69a37ac5e",
- "kws": {
- "fr": [
- "plante",
- "lavande"
- ]
- }
- },
- {
- "nm": "tétraèdre",
- "id": "af0c434e098362c349aa3d0e6bce24e6f97e36b3cbff0d41251079c6a025513e",
- "kws": {
- "fr": [
- "tétraèdre",
- "cube"
- ]
- }
- },
- {
- "nm": "examiner",
- "id": "b756d70c5e59d190c6825f51569a7d128ad8e8a3b0e7401bb7cde346a7919b43",
- "kws": {
- "fr": [
- "examiner",
- "ausculter"
- ]
- }
- },
- {
- "nm": "capturer",
- "id": "085cbd92237de434091b4c330a08c833b21bb766947c71502606e2adc85db703",
- "kws": {
- "fr": [
- "capturer",
- "arrêter"
- ]
- }
- },
- {
- "nm": "cousine",
- "id": "26fa28b6fa67b3543d5d13a0c83cf9bddd8fe4435f2f428d361196369c5d6e79",
- "kws": {
- "fr": [
- "cousine"
- ]
- }
- },
- {
- "nm": "translation",
- "id": "a21b5b1f8305cf5e6daa236b6832f840cbbaf599590d0dc9bf57d1d73388349a",
- "kws": {
- "fr": [
- "translation",
- "mouvement de translation"
- ]
- }
- },
- {
- "nm": "responsable",
- "id": "f404ba57fa526cf20aec896d1353c88d80e373a563ea25bd27150a62be9da7fc",
- "kws": {
- "fr": [
- "responsable"
- ]
- }
- },
- {
- "nm": "patinoire",
- "id": "fe3b5374c9b709ea95b7cf26ad07a5d8ca09b6bec222973342e8e3aadac457a5",
- "kws": {
- "fr": [
- "patinoire",
- "piste"
- ]
- }
- },
- {
- "nm": "plonger",
- "id": "80e4cddd2ed972ee5c3b41a72a2c1957d3b2a684589687062a5c165e349ebcc8",
- "kws": {
- "fr": [
- "plonger",
- "immersion",
- "submergée"
- ]
- }
- },
- {
- "nm": "pomme",
- "id": "08c779045d7b9e01031ef0d49fa4cc647b10766fbe1cedd02a9d75dfa6683189",
- "kws": {
- "fr": [
- "pomme"
- ]
- }
- },
- {
- "nm": "planète",
- "id": "ea78fd49a42329669dde5fc9e978a35e630f68b42dcf8c6588d209acbc640384",
- "kws": {
- "fr": [
- "planète",
- "mars"
- ]
- }
- },
- {
- "nm": "distraire",
- "id": "128b3ef9dbb2e04110a218fcb4f0c67b9acac8fa3b686df309ec566d78a7afca",
- "kws": {
- "fr": [
- "distraire",
- "distrait",
- "s\u0027égarer"
- ]
- }
- },
- {
- "nm": "se retrouver seul",
- "id": "fdf4432ac670cc2c29678050751f509d7b7e3cd9d60196c652480f23613306e0",
- "kws": {
- "fr": [
- "se retrouver seul"
- ]
- }
- },
- {
- "nm": "célibataire",
- "id": "a6a438930e107abc7e2c07e9abd2f50994dbb3d0467eff850d3efdbf982d7422",
- "kws": {
- "fr": [
- "célibataire"
- ]
- }
- },
- {
- "nm": "cartons",
- "id": "59149dd8c397c5b8fe60a00db8ae3054c7c454da80ac42237829010ddb574ebc",
- "kws": {
- "fr": [
- "cartons"
- ]
- }
- },
- {
- "nm": "encorner",
- "id": "01886eb7d319d3b6aa3ff4be73bac0364217f0cd4dff887b41e8362192595029",
- "kws": {
- "fr": [
- "encorner",
- "renverser"
- ]
- }
- },
- {
- "nm": "attaquer",
- "id": "4639f8c11f74b23df48b355fd7611204583b248fbf59b324b6156856672d48d6",
- "kws": {
- "fr": [
- "attaquer",
- "maltraiter",
- "griffer"
- ]
- }
- },
- {
- "nm": "pièces",
- "id": "ce2770a6ec6a2a2d6348df060f7c8c891afa4b9f45bf4541beed68db52717aad",
- "kws": {
- "fr": [
- "pièces"
- ]
- }
- },
- {
- "nm": "romantique",
- "id": "a5dddefc1b4f2c0efd2ded25e9f36dbd29cb2c6a69f6716cc7601c18a09c918f",
- "kws": {
- "fr": [
- "romantique"
- ]
- }
- },
- {
- "nm": "neveu",
- "id": "dcabd54e4aaccab1ea4ac758762a4826cd46de9e7be79335090de69434e3bc8e",
- "kws": {
- "fr": [
- "neveu"
- ]
- }
- },
- {
- "nm": "brosse à dent",
- "id": "84de9b745fc386a19382bbb325b5e5a7d151525285b06e58b8f8f7ee19552d9b",
- "kws": {
- "fr": [
- "brosse à dent",
- "brosse à dents",
- "brosse"
- ]
- }
- },
- {
- "nm": "tombée du jour",
- "id": "75c12ba38d445a1996efce52eaa6e4eb53471391a7a9e90b350cb67d56b9ab1f",
- "kws": {
- "fr": [
- "tombée du jour",
- "crépuscule"
- ]
- }
- },
- {
- "nm": "pédale",
- "id": "896f63155f40b9ead7e380b909c8f2188af694dbae649cfdb8b5e1387a8cbaa8",
- "kws": {
- "fr": [
- "pédale"
- ]
- }
- },
- {
- "nm": "dragon",
- "id": "c7ef3e20c679c9683e6303e4d302db0700a0f9db0bec4e8f746ba41de7930f98",
- "kws": {
- "fr": [
- "dragon"
- ]
- }
- },
- {
- "nm": "peintures de couleurs",
- "id": "365566c754569738cef82562625c5a26968f5f20c88b417289c65a47776669c0",
- "kws": {
- "fr": [
- "peintures de couleurs",
- "peintures à bois",
- "crayons de couleurs"
- ]
- }
- },
- {
- "nm": "zamora",
- "id": "1db85ba0eca2f7ccc6452dd1c2b2a776e1c43634655a482a1ec145932968dc34",
- "kws": {
- "fr": [
- "zamora"
- ]
- }
- },
- {
- "nm": "capitole",
- "id": "0dd61e813c9d3daa1c103066091804d1c785a7546b7518cc8d82fb715bad00e8",
- "kws": {
- "fr": [
- "capitole"
- ]
- }
- },
- {
- "nm": "douane",
- "id": "a447db4fbe439b9745ab4b4e8d0d6e6a953bec451a36e3ba1fb72bf5ffc5a3f9",
- "kws": {
- "fr": [
- "douane"
- ]
- }
- },
- {
- "nm": "bûcheron",
- "id": "b7bb73b2ca5c8249d2cf73528857755e7c2b55fe0116ac8819035fb21e210c33",
- "kws": {
- "fr": [
- "bûcheron"
- ]
- }
- },
- {
- "nm": "cortès d\u0027aragon",
- "id": "09acbf5e666e4bf7d7ca92501566880e3c9856ddf77a4dc4bf723c6911f326d8",
- "kws": {
- "fr": [
- "cortès d\u0027aragon",
- "château de la aljaferia",
- "château",
- "l\u0027alfajería"
- ]
- }
- },
- {
- "nm": "tétraèdre",
- "id": "14e2a6ce0f362782569df0e47e645e7ce2e006544a7e327b7893099b13a5f156",
- "kws": {
- "fr": [
- "tétraèdre",
- "cube"
- ]
- }
- },
- {
- "nm": "vétérinaire",
- "id": "28dfc370d19dbbabfa5e236e3d2c4835542ad9ca1f9a444e9e7c21e5635183e2",
- "kws": {
- "fr": [
- "vétérinaire"
- ]
- }
- },
- {
- "nm": "balance",
- "id": "a0a9d4011d597ef045756b67854647bc0a3d316df4be97001cb0dc588506e55c",
- "kws": {
- "fr": [
- "balance",
- "bascule"
- ]
- }
- },
- {
- "nm": "surfeur",
- "id": "e5968ea74e3b9a42d59a48e979bc6bef80ebd2a930fb59c569d300fcabecb80c",
- "kws": {
- "fr": [
- "surfeur"
- ]
- }
- },
- {
- "nm": "pâtissier",
- "id": "949cc41036069f7ca14adb3e2cf6fb0a91960b82135cd00876ac8eb4c528f298",
- "kws": {
- "fr": [
- "pâtissier"
- ]
- }
- },
- {
- "nm": "caverne",
- "id": "e9b0374d48b2dab5cbe2c9636ceaea4d0d4c3692b1815846fef6f1baf0a6bb35",
- "kws": {
- "fr": [
- "caverne",
- "grotte"
- ]
- }
- },
- {
- "nm": "toilettes",
- "id": "35c8d0da4c8e4f75e5c90eb978c5ebf4503c73320ef20e101578d3be52b5c9e9",
- "kws": {
- "fr": [
- "toilettes",
- "water",
- "baignoire",
- "salle de bains"
- ]
- }
- },
- {
- "nm": "relation",
- "id": "5c0a31ee3465a1caa5863f8b00626c51c37f14fdc0cb778d383fe8958bfbe0be",
- "kws": {
- "fr": [
- "relation",
- "amitié"
- ]
- }
- },
- {
- "nm": "ramasser",
- "id": "f1c94eecc07ca79f2ebffd7cc7fe30869bebb937331b4c56947a1d238048959c",
- "kws": {
- "fr": [
- "ramasser"
- ]
- }
- },
- {
- "nm": "switch",
- "id": "15737aced3129e74e82e47ac883db5865557419c5e3419820a6dd9968809ccbc",
- "kws": {
- "fr": [
- "switch"
- ]
- }
- },
- {
- "nm": "tourisme",
- "id": "fd1b04131edc6765a041d4ee396428f389b75b3b3a1057e0794ef702c97a07b1",
- "kws": {
- "fr": [
- "tourisme",
- "voiture",
- "véhicule"
- ]
- }
- },
- {
- "nm": "annonces",
- "id": "4684f4fba8dd31e5c87054d4ddd22144595576cc9eda6c03b673251030e0eed8",
- "kws": {
- "fr": [
- "annonces"
- ]
- }
- },
- {
- "nm": "aller",
- "id": "691ff6641fd15b719c461a608fa0a9d6e14b9cf4dab5648e9d14c2f33120d1bd",
- "kws": {
- "fr": [
- "aller"
- ]
- }
- },
- {
- "nm": "augmenter",
- "id": "783318eb5dca058ea010c6fa4fb4bc77ea0167fa73567124942325b9390bcf01",
- "kws": {
- "fr": [
- "augmenter",
- "agrandir"
- ]
- }
- },
- {
- "nm": "constellation",
- "id": "e9b4b781f7c6c6c53b85d0dcc7997c594552c5e500cce0a85ad65e40aab1a593",
- "kws": {
- "fr": [
- "constellation"
- ]
- }
- },
- {
- "nm": "préparé",
- "id": "21deae741786d301956a8d9353a08e975995547d962a189aa58c2d6cbfddc847",
- "kws": {
- "fr": [
- "préparé",
- "prêt",
- "se préparer"
- ]
- }
- },
- {
- "nm": "lumières de noël",
- "id": "138fee48965462628430d6f08f0f78e68c458c2381a2e2f7d1957e71f240f2a3",
- "kws": {
- "fr": [
- "lumières de noël",
- "lumières"
- ]
- }
- },
- {
- "nm": "humérus",
- "id": "7218a7886b9c9dc401bddb14420a0716b76dcdec47e894ccf2922a7502edfacc",
- "kws": {
- "fr": [
- "humérus"
- ]
- }
- },
- {
- "nm": "mari",
- "id": "59d3387e098613937919f51520e0c38a63a8e91c432bafa4414eaa1140e97f0f",
- "kws": {
- "fr": [
- "mari"
- ]
- }
- },
- {
- "nm": "vendanger",
- "id": "42a05804cc2e30a9dedb45ce036d5dba7414b90a51925ddacc5d963aca8ecfd9",
- "kws": {
- "fr": [
- "vendanger",
- "récolter"
- ]
- }
- },
- {
- "nm": "pelvis",
- "id": "e02e982bac6d1609f560feeaa5f13ac267e62c206b645bfbf4f3b8cd6f90d461",
- "kws": {
- "fr": [
- "pelvis"
- ]
- }
- },
- {
- "nm": "enfourner",
- "id": "3622454969950ad10a412c218b8d289554a9fe6b38c460a541cd4a80b2e0af81",
- "kws": {
- "fr": [
- "enfourner"
- ]
- }
- },
- {
- "nm": "chambre à coucher",
- "id": "a29ca2737b20db9262d65ad7b555e5e7f7ef5c54992e0fb2c8ae20a036019366",
- "kws": {
- "fr": [
- "chambre à coucher",
- "chambre",
- "signalétique"
- ]
- }
- },
- {
- "nm": "jeune",
- "id": "6ddedde28a894247de83b485d08d3c196b71f32012ed4bbc471dfd8a9939a6d5",
- "kws": {
- "fr": [
- "jeune"
- ]
- }
- },
- {
- "nm": "faire caca",
- "id": "c2bd0d54c7acf8c170042becb17587ed707a3faa3246b7c35eeb1c16ed868102",
- "kws": {
- "fr": [
- "faire caca",
- "chier",
- "évacuer"
- ]
- }
- },
- {
- "nm": "grenouille",
- "id": "5c8476cd3315587031c7342f1524328eaaa14f1b12a5e31a0bb140593e81efd9",
- "kws": {
- "fr": [
- "grenouille"
- ]
- }
- },
- {
- "nm": "cacher",
- "id": "738b837d8cd3ec997a5b5392df151cf7d4a34ef447f528dcddb2ffdae57a242e",
- "kws": {
- "fr": [
- "cacher",
- "disparaitre"
- ]
- }
- },
- {
- "nm": "douche",
- "id": "db4e0625b43e8ae228e36718eed9a8162a582dd59fcbf2730474899dc672e78e",
- "kws": {
- "fr": [
- "douche"
- ]
- }
- },
- {
- "nm": "procession",
- "id": "c64c718bc9cf2c98404811e8282dd8258e4a55272a216865086e5a3e1f99dd01",
- "kws": {
- "fr": [
- "procession"
- ]
- }
- },
- {
- "nm": "israël",
- "id": "a92468592a972f8e235cdb6b4d2bd70b01f5b9d40dd6ce57ec590665fb1bc864",
- "kws": {
- "fr": [
- "israël"
- ]
- }
- },
- {
- "nm": "moment",
- "id": "30e0511a41de07491bb1e2bce8a96450717bf75e9627ecd7ce8f7da1b58c30f6",
- "kws": {
- "fr": [
- "moment"
- ]
- }
- },
- {
- "nm": "moto de course",
- "id": "9d01bfa79c7822b6c40489d0341ee3ff465bbe0fc424205acc239dff5faef599",
- "kws": {
- "fr": [
- "moto de course",
- "moto"
- ]
- }
- },
- {
- "nm": "employée de ménage",
- "id": "b5e2b0c0f335fda1ead32568f97fcef14a5f8cf54358d49305ce0c3d2c203049",
- "kws": {
- "fr": [
- "employée de ménage"
- ]
- }
- },
- {
- "nm": "suite",
- "id": "fbd0cacb70eb9decbd6a73c380a7e5904c7894e7b89d5e16281457a6a195344b",
- "kws": {
- "fr": [
- "suite"
- ]
- }
- },
- {
- "nm": "boîte de conserve d\u0027olives",
- "id": "d478be7cacb7d79bb378409d7a5237d64bc5b586f2f55515d4ed6206dbea5c5a",
- "kws": {
- "fr": [
- "boîte de conserve d\u0027olives",
- "boîtes de conserve d\u0027olives noires"
- ]
- }
- },
- {
- "nm": "engrenage",
- "id": "4dacc85e7c8fdd81804c26859bbeefc4c9ce0c4423f5e31e671f0194da3d4fcc",
- "kws": {
- "fr": [
- "engrenage"
- ]
- }
- },
- {
- "nm": "étagère",
- "id": "6fa9db944194f60c1c8ef71229a63ce56dac617107fd476200371ce0a6c87c87",
- "kws": {
- "fr": [
- "étagère"
- ]
- }
- },
- {
- "nm": "chater",
- "id": "1c68b70a0f952c3b893b977b69901b9350dc93b5b3eef0c27ed8ef2bbc79d53f",
- "kws": {
- "fr": [
- "chater"
- ]
- }
- },
- {
- "nm": "pharmacien",
- "id": "be0a1f6f01ed45d71772824c8d3d324fe99dce963979f99daa6bdd8dafa55b08",
- "kws": {
- "fr": [
- "pharmacien"
- ]
- }
- },
- {
- "nm": "sécurité",
- "id": "333d3c623c7560a01b9d1c88afea6f691cc7bb4ae352ead755001c0f9e6299eb",
- "kws": {
- "fr": [
- "sécurité",
- "protection"
- ]
- }
- },
- {
- "nm": "paëlla",
- "id": "b945573322cfcf66911ff3761a4b1bb5b5314824e0c2cb448409c4b20303d7ff",
- "kws": {
- "fr": [
- "paëlla"
- ]
- }
- },
- {
- "nm": "laveur de vitres",
- "id": "807279472fea8c251092e095d834d3ce27099ee9cfc84b5600085db9bcfd7b17",
- "kws": {
- "fr": [
- "laveur de vitres"
- ]
- }
- },
- {
- "nm": "quand",
- "id": "eee2b077b4a5e83447b129adbea194238cf3db6ebe68a0d01ca6f5d3eb464e0e",
- "kws": {
- "fr": [
- "quand"
- ]
- }
- },
- {
- "nm": "tirer à l\u0027arc",
- "id": "26efad37542a5b4b879b62a5d4b29c12178eaa209e79df25fd2123498ee8426d",
- "kws": {
- "fr": [
- "tirer à l\u0027arc"
- ]
- }
- },
- {
- "nm": "charcuterie",
- "id": "6b74827a80a3b9da2610e827050d540122048e315462b402c17c2e2a38f5ba9f",
- "kws": {
- "fr": [
- "charcuterie"
- ]
- }
- },
- {
- "nm": "jugement de divorce",
- "id": "154f0e819d9533b1572aac70e2bd8b945b3f6ebc340cc0c52c644039d73f4307",
- "kws": {
- "fr": [
- "jugement de divorce"
- ]
- }
- },
- {
- "nm": "arbitre",
- "id": "927be1cb61d31920694a2c8e01c7413070b2f5f2ba1b5b18358500c4a2832578",
- "kws": {
- "fr": [
- "arbitre"
- ]
- }
- },
- {
- "nm": "parapluie",
- "id": "f936e1f6970dfd1cd6704355d845797d81c291e7c325d6cec4552a0bf2f43051",
- "kws": {
- "fr": [
- "parapluie"
- ]
- }
- },
- {
- "nm": "neveu",
- "id": "a4d166460d9c3008d38f48e231ccc993f50099f272eef5bcd828ee175ee5cdf2",
- "kws": {
- "fr": [
- "neveu"
- ]
- }
- },
- {
- "nm": "parcours",
- "id": "cb4b802f34f4536b3b2d852796ce3327b8edb9ac5d339391dfa465498598b8ef",
- "kws": {
- "fr": [
- "parcours"
- ]
- }
- },
- {
- "nm": "crème liquide",
- "id": "9e66bd3ba634b5a11784b78ee4cf1c3a37d79e1a0861e98b9ac2a832e0d743f4",
- "kws": {
- "fr": [
- "crème liquide"
- ]
- }
- },
- {
- "nm": "stade de football",
- "id": "4a7ca36c40276e76827a43a5a81146744a2f41f32a3b81944592e425dd5bd11b",
- "kws": {
- "fr": [
- "stade de football",
- "stade",
- "football"
- ]
- }
- },
- {
- "nm": "gressin",
- "id": "eb069954df3a7e7eda4ed2909fa823d15c0e6aa2668cf64a3a993faaa13cec0c",
- "kws": {
- "fr": [
- "gressin"
- ]
- }
- },
- {
- "nm": "papier",
- "id": "33ce82b5a3ce05720fa9c53912dd706b16e395860e0c7cb3ab7356904888f554",
- "kws": {
- "fr": [
- "papier",
- "feuilles"
- ]
- }
- },
- {
- "nm": "choisir",
- "id": "d2e8f429d6a9f8cbf633048631ab68111466321f2f11dcc389766029d57b957a",
- "kws": {
- "fr": [
- "choisir"
- ]
- }
- },
- {
- "nm": "purée",
- "id": "6af577b0ed08bf95372b3e31e0880ad1ccdd4c5914260c42a226f49f4f798b73",
- "kws": {
- "fr": [
- "purée"
- ]
- }
- },
- {
- "nm": "astronome",
- "id": "56f976becc91eb0f6c5d332575b19512804494b84bf4576654c5ef19a28d383e",
- "kws": {
- "fr": [
- "astronome"
- ]
- }
- },
- {
- "nm": "cédez le passage",
- "id": "73da6d64bd714dbc92d7e0355d413aabca8b598f87828aae3bf0ab96b1eb91b5",
- "kws": {
- "fr": [
- "cédez le passage"
- ]
- }
- },
- {
- "nm": "piolet",
- "id": "fef25ca72400aafe1559e400868987bd2d87f3841d007633b7ef55febea3597b",
- "kws": {
- "fr": [
- "piolet"
- ]
- }
- },
- {
- "nm": "guêpe",
- "id": "3fbdcd19270f3f220f76e02a17bb26ecd5d9017a085022f84cec60c7ba3992a7",
- "kws": {
- "fr": [
- "guêpe"
- ]
- }
- },
- {
- "nm": "guide de voyage",
- "id": "43447bc1d5df91ac1d5530264c5f1827058d49e62b5f63ad775a222f05734ad9",
- "kws": {
- "fr": [
- "guide de voyage",
- "guide touristique",
- "guide"
- ]
- }
- },
- {
- "nm": "entendre",
- "id": "00daea18b9c42be458263f0a562f4e6ac1b056b8181bceaceac3cc3db11a29f1",
- "kws": {
- "fr": [
- "entendre",
- "écouter",
- "auditeur"
- ]
- }
- },
- {
- "nm": "imperméable",
- "id": "322fae2be8789edb730dc805092f127e8fdf7dcbf2a34622e5836d3300a5cb79",
- "kws": {
- "fr": [
- "imperméable"
- ]
- }
- },
- {
- "nm": "sauter",
- "id": "6543bc6c3dcfddc3de51fa14508625a2418c485c12687cb3e404dc8a9ea3c50e",
- "kws": {
- "fr": [
- "sauter"
- ]
- }
- },
- {
- "nm": "bacon",
- "id": "4144d8e9a6419854d3018ce3f445cfe4ad12565f2c5c41e39b27373ce1daa730",
- "kws": {
- "fr": [
- "bacon",
- "lard fumé",
- "lard"
- ]
- }
- },
- {
- "nm": "balance",
- "id": "3b615e124c61f0c010a8a89efa0406180ef45b532e630ffa94a0f23b7ce738eb",
- "kws": {
- "fr": [
- "balance"
- ]
- }
- },
- {
- "nm": "photocopie",
- "id": "d03ffa4d5c1c4fd734c79b64b84002a835cbaa087b7e758ab8561f499683029f",
- "kws": {
- "fr": [
- "photocopie"
- ]
- }
- },
- {
- "nm": "émietter",
- "id": "6b2011e123a79301d765e410a46834fd270e92bd3f19ec5a6ec2d0d50b39c903",
- "kws": {
- "fr": [
- "émietter"
- ]
- }
- },
- {
- "nm": "assurance santé",
- "id": "49269199b145ac2d56d21afd19d335682a65f6d2ad011a6ad0963a692e7318a5",
- "kws": {
- "fr": [
- "assurance santé",
- "assurance"
- ]
- }
- },
- {
- "nm": "traîneau du père noël",
- "id": "1cbb9cca9de8e8be6d2b1ea33367519fcb3a900dba3590ea38e10099138f6d7e",
- "kws": {
- "fr": [
- "traîneau du père noël",
- "luge"
- ]
- }
- },
- {
- "nm": "cours d\u0027éducation artistique",
- "id": "f699d1425750c0091d76a540fdb7dd898fed226bb6fb3b16de38e66c49bb540e",
- "kws": {
- "fr": [
- "cours d\u0027éducation artistique",
- "éducation artistique",
- "matière"
- ]
- }
- },
- {
- "nm": "pilote",
- "id": "de0d9e397d885bc6e06681d21732c91872748c9d23260adaa8f9e6bc46c0d904",
- "kws": {
- "fr": [
- "pilote"
- ]
- }
- },
- {
- "nm": "professeur",
- "id": "68d388d4236972a718fade9d46731cfc4f9ec0995537833fb57ee62f92742fac",
- "kws": {
- "fr": [
- "professeur",
- "maître"
- ]
- }
- },
- {
- "nm": "jusqu\u0027à",
- "id": "bbd352bd03a27853938c30943a629b9193a7e72cd96f5f2bc88d7c8f7f43a8d9",
- "kws": {
- "fr": [
- "jusqu\u0027à"
- ]
- }
- },
- {
- "nm": "cours de mathématiques",
- "id": "b3f17824db8f39a29123fd3c7094e106bb7fd024f46ecd6165f16e648e1ce863",
- "kws": {
- "fr": [
- "cours de mathématiques",
- "mathématiques",
- "matière"
- ]
- }
- },
- {
- "nm": "paquet de sucre",
- "id": "0768a612c21f00e0240ac1b3c95d7aade9e3d33e52f459b9899ed2fa0c76c72f",
- "kws": {
- "fr": [
- "paquet de sucre",
- "sucre"
- ]
- }
- },
- {
- "nm": "xylophone",
- "id": "c881c8c5db12bfd34a6b0e8d6205944b188e717cddf11cbc0ea6076560bcbb16",
- "kws": {
- "fr": [
- "xylophone"
- ]
- }
- },
- {
- "nm": "cuite",
- "id": "d8b52ea8f81ae0fcf0d501ab31f9b9855dd73399254db9ea86675e44274c8814",
- "kws": {
- "fr": [
- "cuite",
- "se soûler"
- ]
- }
- },
- {
- "nm": "mètre",
- "id": "1deda10a3cb57a81333c3f1b3be186bbe42c3f61c7afda14d71ea13d8b236453",
- "kws": {
- "fr": [
- "mètre"
- ]
- }
- },
- {
- "nm": "melchor",
- "id": "3b3952a456999175695031b1decc7bfebb7599d36cbead02518d5808f0681177",
- "kws": {
- "fr": [
- "melchor"
- ]
- }
- },
- {
- "nm": "escargot",
- "id": "50bee86a004697fc2faf9b3f22493ae115f71f4467c2b0368f7a9f48b6051680",
- "kws": {
- "fr": [
- "escargot"
- ]
- }
- },
- {
- "nm": "que regardes-tu",
- "id": "85ff8b2c01d4e600f0a29c65e420e0d46ec5b3bac2413d318b6e45695215ec28",
- "kws": {
- "fr": [
- "que regardes-tu"
- ]
- }
- },
- {
- "nm": "cave",
- "id": "954e030818f176c2ab882a52da73f55b174456f0094b76943ca7424dd7dccf96",
- "kws": {
- "fr": [
- "cave"
- ]
- }
- },
- {
- "nm": "verre de lait",
- "id": "4a99ce46f4f2d22ba0a20d0457f699c0e81114df7392bd3d8f21d73cbcf7c333",
- "kws": {
- "fr": [
- "verre de lait",
- "verre"
- ]
- }
- },
- {
- "nm": "arriver",
- "id": "1bcb2742ced522faa1411ebc251dc3b9d33105d0e6c60c82d7e859fbc072f4e5",
- "kws": {
- "fr": [
- "arriver"
- ]
- }
- },
- {
- "nm": "embrasser",
- "id": "1ec4381f33a7cdd79b3b0c90dd3edbf20f89ecb4a003c92cb5fa1c94d896d518",
- "kws": {
- "fr": [
- "embrasser",
- "donner un bisou",
- "baiser"
- ]
- }
- },
- {
- "nm": "papilles gustatives",
- "id": "b6bd6db4189e6517a0279888c8282d065490d8986c76dfc457d407c784bd8518",
- "kws": {
- "fr": [
- "papilles gustatives",
- "papilles"
- ]
- }
- },
- {
- "nm": "pipe",
- "id": "cce4a57f9d6431fd3175a6b4f342cf422bcf8e16748bd4bbf8f01ca768d5a7bd",
- "kws": {
- "fr": [
- "pipe"
- ]
- }
- },
- {
- "nm": "t-shirt à bretelles",
- "id": "a31cf5459fcc5e13d5a5df2cfbb67e6c76c85379d976954df31159dedd7f29d7",
- "kws": {
- "fr": [
- "t-shirt à bretelles",
- "tee-shirt",
- "vêtement"
- ]
- }
- },
- {
- "nm": "spiderman",
- "id": "922ae04d65ba9257dd52ef5d04e4fc06640ba9e5497831c0630d106bc284060a",
- "kws": {
- "fr": [
- "spiderman"
- ]
- }
- },
- {
- "nm": "charcutier",
- "id": "c29148146556625c4f2cf01fea6876acee48d9037f0bb612951350deecda1617",
- "kws": {
- "fr": [
- "charcutier"
- ]
- }
- },
- {
- "nm": "fao",
- "id": "d21615bba9034157b42455925a4602da6d4d6df0c2477a03fd7ff6fd350372ff",
- "kws": {
- "fr": [
- "fao"
- ]
- }
- },
- {
- "nm": "bijou",
- "id": "2bfeeb5aeb948704fd098547333e7604ee7d045f2912d00570f2a421d0bf6f44",
- "kws": {
- "fr": [
- "bijou",
- "boucle d\u0027oreille",
- "anneau"
- ]
- }
- },
- {
- "nm": "centre",
- "id": "cdc629e0cc6d4155ff2b07205d49850ad761673dfcc2f9736203435e54148891",
- "kws": {
- "fr": [
- "centre"
- ]
- }
- },
- {
- "nm": "angine",
- "id": "ae5db29a8a5304e1f40d0a51002966f6310097d38321e425ae52fe0ae39a1c31",
- "kws": {
- "fr": [
- "angine"
- ]
- }
- },
- {
- "nm": "avertir",
- "id": "d493e0e3b829ff583f8d1175b2cd7a772e17a68ca1f21a1cc5761e808d1673fc",
- "kws": {
- "fr": [
- "avertir"
- ]
- }
- },
- {
- "nm": "butin",
- "id": "c890535499a3707b059034fc0874ccd9acfbd492bb0037eae63a0023bf4c2ff6",
- "kws": {
- "fr": [
- "butin"
- ]
- }
- },
- {
- "nm": "crabe",
- "id": "1f7ebca791a8fe6f62777726696f4c99dcd9ed1b558a082e3fd5daf940241b89",
- "kws": {
- "fr": [
- "crabe"
- ]
- }
- },
- {
- "nm": "homme loup",
- "id": "9c87faf775263675c8a9df3122a9f2390b96564cdfb9b96bcba0c962996a5be6",
- "kws": {
- "fr": [
- "homme loup"
- ]
- }
- },
- {
- "nm": "cuba",
- "id": "fb426145cf60b107f8b5ef3538426d6d5d016a809c18d54b3c6c724f5c4e1a4e",
- "kws": {
- "fr": [
- "cuba"
- ]
- }
- },
- {
- "nm": "train",
- "id": "5f956c5d383f0e245853178cf614fb1d3d32d2d95bf16b778817222deb0ce621",
- "kws": {
- "fr": [
- "train"
- ]
- }
- },
- {
- "nm": "surpris",
- "id": "d6eba7dd4658a71803e9a2adcd811b57e0577a7cd27b115b8949bd23e461b4f4",
- "kws": {
- "fr": [
- "surpris"
- ]
- }
- },
- {
- "nm": "salle informatique",
- "id": "257c070a9b9b8451540d82407c519f8b1d70377551c14dbf4153682ac6923bec",
- "kws": {
- "fr": [
- "salle informatique"
- ]
- }
- },
- {
- "nm": "personnes autistes",
- "id": "8857c9ddb7997b0e196f63145a907de6a9dbb4ffb42dd88b97b147cdd61c9eb8",
- "kws": {
- "fr": [
- "personnes autistes"
- ]
- }
- },
- {
- "nm": "boxe",
- "id": "604860504f2f591ad4179197588e11da263f66915fc26fc5ca118ee907fbba3b",
- "kws": {
- "fr": [
- "boxe",
- "boxer"
- ]
- }
- },
- {
- "nm": "vivre",
- "id": "4d617c240502c08d8e4465ebf554ea81420fda4dd00167604e3141f00e0ada94",
- "kws": {
- "fr": [
- "vivre",
- "résider",
- "habiter"
- ]
- }
- },
- {
- "nm": "office de tourisme",
- "id": "dc8de6ab44fd9bed31229f07eb077d67d8a299cd05fe58867ce8370168a62e3f",
- "kws": {
- "fr": [
- "office de tourisme"
- ]
- }
- },
- {
- "nm": "jardin botanique",
- "id": "4998bc22387b6faf8cd6613f85042db356ab4c4c30acc9dc9ba33a5082b284ff",
- "kws": {
- "fr": [
- "jardin botanique"
- ]
- }
- },
- {
- "nm": "faire un clin d\u0027oeil",
- "id": "cd2350373e50ee6a5ae9ab53dff5fe22665a97ead448acf268b11746c3a8d14f",
- "kws": {
- "fr": [
- "faire un clin d\u0027oeil",
- "praxie",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "5dcd465756dd8d9d7b30cf7ea6fd2cdfb64d0411625d29922fa8f34add11d503",
- "kws": {
- "fr": [
- "praxie",
- "orthophonie",
- "gonfler un ballon",
- "gonfler"
- ]
- }
- },
- {
- "nm": "enfants autistes",
- "id": "7045760376c6711abb7bdb31ae920690c1a9902d6696fcb1c323d3aa6af33b7a",
- "kws": {
- "fr": [
- "enfants autistes"
- ]
- }
- },
- {
- "nm": "boulanger",
- "id": "42ad7396e8824061421d007d90c2e34b4673cf724e7ded273436bafaefe2623f",
- "kws": {
- "fr": [
- "boulanger"
- ]
- }
- },
- {
- "nm": "violette",
- "id": "32af5a3467bfba2f35f29ceb67b96900f62e44820c0582dfd49242e6bc3194a8",
- "kws": {
- "fr": [
- "violette",
- "fleur"
- ]
- }
- },
- {
- "nm": "ustensile de cuisine",
- "id": "d7797aec6cc36ed5d67c37aff615cfb428e387a14072dd54b855c77da75998f4",
- "kws": {
- "fr": [
- "ustensile de cuisine",
- "cuillère"
- ]
- }
- },
- {
- "nm": "brosse électrique",
- "id": "4939c5ac0227490adbb7ac3a69e2b1fef2d42c83f035f513c9ca92ed1eed6f3e",
- "kws": {
- "fr": [
- "brosse électrique"
- ]
- }
- },
- {
- "nm": "planète",
- "id": "95d11fce9ac7f93e86c02e78c1d32567d2d1f60466d8a3b08b17148430c5bd09",
- "kws": {
- "fr": [
- "planète",
- "pluton"
- ]
- }
- },
- {
- "nm": "porte de brandebourg",
- "id": "5aab748a5cc29bd049a92cc1e02bb52400544cac19d77bc011a2337bd4229b94",
- "kws": {
- "fr": [
- "porte de brandebourg"
- ]
- }
- },
- {
- "nm": "ornithorynque",
- "id": "abd374266b7a40d646d3c0ef00a8a669cf8e4e47bbc9eb0874b11ee7bdaccea6",
- "kws": {
- "fr": [
- "ornithorynque"
- ]
- }
- },
- {
- "nm": "vestiaires",
- "id": "3927733ad0630234ba07300475bd3f3d073e0d38fdf542ece41848200e0915f4",
- "kws": {
- "fr": [
- "vestiaires"
- ]
- }
- },
- {
- "nm": "vingt-six",
- "id": "4b03765b7d6d80855240a641a171d133ff4e553866280ef5ea653d7919f201c0",
- "kws": {
- "fr": [
- "vingt-six",
- "26"
- ]
- }
- },
- {
- "nm": "ventre",
- "id": "ca28b6003deca227304c7b345e67a5a57184a8c8d40e960b85f36a6470ab5508",
- "kws": {
- "fr": [
- "ventre"
- ]
- }
- },
- {
- "nm": "e",
- "id": "f17bcc4dcad718f249f562a9b27a604ecca6b3f0f1dd64f331608a572af6ef37",
- "kws": {
- "fr": [
- "e",
- "lettre"
- ]
- }
- },
- {
- "nm": "donner l\u0027aumône",
- "id": "3a23419d904933af59b730d17f70b2a009b4caeb415ed903423d039f4d4b6bea",
- "kws": {
- "fr": [
- "donner l\u0027aumône"
- ]
- }
- },
- {
- "nm": "ensuite",
- "id": "4d10ed2ab8668e239e6611e3fd5cffc971acf62c8acdc87a78bad32f4deaa609",
- "kws": {
- "fr": [
- "ensuite",
- "après"
- ]
- }
- },
- {
- "nm": "fleur de lotus",
- "id": "2a3f53b171a7ad1758b5deadb230ce3083e2b90cb624ae2bb486bd410ceb488a",
- "kws": {
- "fr": [
- "fleur de lotus",
- "fleur"
- ]
- }
- },
- {
- "nm": "guatemala",
- "id": "07623c0f643550ce7fda56b9cba724237aa1d35197849cea645d9dd7ba15785b",
- "kws": {
- "fr": [
- "guatemala"
- ]
- }
- },
- {
- "nm": "éteindre",
- "id": "1aa27ba6cd0142e9b40f73e57ea9e2e95a677b1385d6295f1ac8559cc049dd90",
- "kws": {
- "fr": [
- "éteindre"
- ]
- }
- },
- {
- "nm": "radius",
- "id": "9c7bfca9083a60dbfe78da562a1e49bc08124fed54c9e52cc3bb91b385bda8b8",
- "kws": {
- "fr": [
- "radius"
- ]
- }
- },
- {
- "nm": "poignée",
- "id": "3c35c474b87f9246ef769672baab8fa42fe66b54f00b462800dd39f451df44d8",
- "kws": {
- "fr": [
- "poignée",
- "manette"
- ]
- }
- },
- {
- "nm": "nièce",
- "id": "a6acc2d004dff9cd8c82a4f72c031d1f13357bcf88d0e1e27734e0ab81b9eda5",
- "kws": {
- "fr": [
- "nièce"
- ]
- }
- },
- {
- "nm": "boulangerie",
- "id": "937565e86460e4bde69231f145bd0477f75605ec43d4fd38bbf4031a6c010cb3",
- "kws": {
- "fr": [
- "boulangerie"
- ]
- }
- },
- {
- "nm": "flan",
- "id": "f83ac790c1c4515bd28406091fc5bd4c41adf1cc9697104ef76b1abb069ec0d3",
- "kws": {
- "fr": [
- "flan"
- ]
- }
- },
- {
- "nm": "vendeuse",
- "id": "350a1176a911ef43335e61a863bb1b293e60d40597f2d83ecd7cb1dfec80017a",
- "kws": {
- "fr": [
- "vendeuse",
- "fruitière"
- ]
- }
- },
- {
- "nm": "fleur",
- "id": "caddf35aebf0d3c6c139f30ea8b50a000dafb406e2d89943cfad8880bd211347",
- "kws": {
- "fr": [
- "fleur",
- "marguerite",
- "marguerites"
- ]
- }
- },
- {
- "nm": "fort",
- "id": "afdf3b95b830b9015f44325df135cb1f0c6127cc7f7b7fbcbe566cd39ca156ee",
- "kws": {
- "fr": [
- "fort"
- ]
- }
- },
- {
- "nm": "cor",
- "id": "038c07cfe7b53a2fa4bfbda3120bfac5e3209a55f2b7cb233a4fa878242a0717",
- "kws": {
- "fr": [
- "cor",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "se moucher le nez",
- "id": "a59f72820842d8296674a492a567dd2888fc76b1f9432951cf0a729c40eddc22",
- "kws": {
- "fr": [
- "se moucher le nez",
- "se moucher",
- "moucher"
- ]
- }
- },
- {
- "nm": "perruche",
- "id": "c3ec5f7c41ebd807b56b451c79fb3a2327cd5f195b4cc8957c2fadda29d93ea3",
- "kws": {
- "fr": [
- "perruche"
- ]
- }
- },
- {
- "nm": "je peux t\u0027aider",
- "id": "c2762920d67ef18c5ba427f682ee8ca5e39ee308a99e40e9e0709b4ac7ac7581",
- "kws": {
- "fr": [
- "je peux t\u0027aider",
- "as-tu besoin d\u0027aide"
- ]
- }
- },
- {
- "nm": "glousser",
- "id": "3e84ae7dab3768fd8f1789e79c6c794f4f60b627ff43f392801d43ac4a532ce3",
- "kws": {
- "fr": [
- "glousser"
- ]
- }
- },
- {
- "nm": "dispensateur",
- "id": "f613434f8f3f533247e5cc4efb5805b3cd18132c2e9bd14e3379f642d4d8662a",
- "kws": {
- "fr": [
- "dispensateur"
- ]
- }
- },
- {
- "nm": "hutte",
- "id": "c652bac8758f9ebc6fe0bbc64e004b026d6c8514456177e7d99f37bc4b5fc3eb",
- "kws": {
- "fr": [
- "hutte"
- ]
- }
- },
- {
- "nm": "bonbons",
- "id": "7a6e80ca6df633a7ec1c183ccde18f6769f57b614784c5323543bb4694672fa2",
- "kws": {
- "fr": [
- "bonbons"
- ]
- }
- },
- {
- "nm": "camion des éboueurs",
- "id": "cf3eb27559afcc547efd2a9f646cad7189da0f73b9d578fff5af8f38c2faf88c",
- "kws": {
- "fr": [
- "camion des éboueurs"
- ]
- }
- },
- {
- "nm": "certain",
- "id": "6e42e9aace34dca4c1b6b3fb61a7bdab29dd9b228a61075cd9d36f53fea9ebc7",
- "kws": {
- "fr": [
- "certain",
- "vrai",
- "vraie",
- "vérité"
- ]
- }
- },
- {
- "nm": "cabochard morico",
- "id": "458944dffd16c81a840456655ce2cb653bf451b70078a1c6b8cd336d1662a05f",
- "kws": {
- "fr": [
- "cabochard morico",
- "cabochard"
- ]
- }
- },
- {
- "nm": "concierge",
- "id": "2d6a7ada520834c9fe41ce7c7668eb1c7e19afb771a8d930e3095b250552b52c",
- "kws": {
- "fr": [
- "concierge"
- ]
- }
- },
- {
- "nm": "sortie",
- "id": "54351f7861e8d920def4d422438db344e1e76852bc7a72b460a8648aa43fd200",
- "kws": {
- "fr": [
- "sortie"
- ]
- }
- },
- {
- "nm": "vendeur de châtaignes",
- "id": "87623305a24469d23061cb78cebd0a7fb8cd203b0a7866d1271a2a9f8a7dda10",
- "kws": {
- "fr": [
- "vendeur de châtaignes",
- "fête de la châtaigne en galice",
- "fête de la châtaigne"
- ]
- }
- },
- {
- "nm": "kangourou",
- "id": "a7a80aef06902f93f505b04d4547a6709383b38ef0a8f0eae65d5d570fc830fc",
- "kws": {
- "fr": [
- "kangourou"
- ]
- }
- },
- {
- "nm": "taché",
- "id": "31c309291a8a40005736ea6db2d138625e58117697c765cfa879757a4da91d3b",
- "kws": {
- "fr": [
- "taché",
- "sale"
- ]
- }
- },
- {
- "nm": "rangée",
- "id": "4cbc180a9f4a162a069946c35bdc54b3e456c4f59497c9e1aa6d9621c66480de",
- "kws": {
- "fr": [
- "rangée"
- ]
- }
- },
- {
- "nm": "vêtement",
- "id": "0ca5fe63ebfddf5df07fbf19b3cf7ec2fd017b59fdbcf5787762e09ed2b9b73c",
- "kws": {
- "fr": [
- "vêtement",
- "gants"
- ]
- }
- },
- {
- "nm": "amis",
- "id": "9eea072a11c729afb4bce56a55eae8e2bfa846a37efe0356460142a804ecab80",
- "kws": {
- "fr": [
- "amis"
- ]
- }
- },
- {
- "nm": "faire du patin",
- "id": "526d676fa78027d4d4be1ef4be60261f05a4346c53c9498d05471d5b02decc34",
- "kws": {
- "fr": [
- "faire du patin"
- ]
- }
- },
- {
- "nm": "grève",
- "id": "15b9ab08316488ad33674dfb18b4fb8fff9d2ba71a937d9ecbb49cb826f39d8b",
- "kws": {
- "fr": [
- "grève"
- ]
- }
- },
- {
- "nm": "blouson",
- "id": "7c873e1ad61879823f23c850e6190e39b40a934eb2c23ef881b17478568417b0",
- "kws": {
- "fr": [
- "blouson"
- ]
- }
- },
- {
- "nm": "clavier",
- "id": "8d1250e0d2a5e900d7dda2f6b748f15bb2e9a04f0491e9814dbc8dd43ee3deb8",
- "kws": {
- "fr": [
- "clavier"
- ]
- }
- },
- {
- "nm": "nettoyer",
- "id": "db2e5b47894d62c3a280e77a1f64966f7f651d49778fdb0e1a2c48c0f61e5c67",
- "kws": {
- "fr": [
- "nettoyer"
- ]
- }
- },
- {
- "nm": "moyen",
- "id": "4d04634c3dccbf0f0f77162dd6e919d4e26ead53c103d3ab60936261d989cbd5",
- "kws": {
- "fr": [
- "moyen"
- ]
- }
- },
- {
- "nm": "bricolage",
- "id": "7db931c1744ab86d89ac1e194c60cfbed66e21536dfa20362e2ebc151271525f",
- "kws": {
- "fr": [
- "bricolage",
- "programme de bricolage",
- "programme"
- ]
- }
- },
- {
- "nm": "réchauffer",
- "id": "6b751fa98eadce70378bd97e7166018594c271a301260f7a45e4a74abfbef31f",
- "kws": {
- "fr": [
- "réchauffer"
- ]
- }
- },
- {
- "nm": "hiéroglyphe",
- "id": "a9501a67b68fcb34e71bcfa17a32e41ba7779d64ad6e6a0f7d24c05a5aa60de3",
- "kws": {
- "fr": [
- "hiéroglyphe"
- ]
- }
- },
- {
- "nm": "chercher",
- "id": "ce98f7e20c78a99d9feac4e84a837dede4ce10eeac7ddf3166e73c5bfdab9199",
- "kws": {
- "fr": [
- "chercher"
- ]
- }
- },
- {
- "nm": "tétine",
- "id": "0d2aac959c0004225ba85c017d675414ffffdc1d0ad97a7a84eb1703d476d7c7",
- "kws": {
- "fr": [
- "tétine"
- ]
- }
- },
- {
- "nm": "danseur de flamenco",
- "id": "2161ceac55a1653fd5f7df17c89691507fee206447f9298713a19bbaa5d92334",
- "kws": {
- "fr": [
- "danseur de flamenco",
- "danseur"
- ]
- }
- },
- {
- "nm": "saucisse",
- "id": "6d251b3baeb8958dea37912e0764f6eaccc9ed9cb615dc4f084922eb030a3cff",
- "kws": {
- "fr": [
- "saucisse"
- ]
- }
- },
- {
- "nm": "entrepôt",
- "id": "ca5040bcb4b300390eacbadd1270add0bd4cc0e58ad42f80fc0a8c6aca0901d5",
- "kws": {
- "fr": [
- "entrepôt",
- "signalétique",
- "magasin alimentaire"
- ]
- }
- },
- {
- "nm": "oms",
- "id": "062b740d3857fee22a5d6d9bab67018d291a4c8b1fe6bdf7f3033f3dc0e75d24",
- "kws": {
- "fr": [
- "oms"
- ]
- }
- },
- {
- "nm": "berger",
- "id": "7a371ed5c63ae2e68f771b5a8bf83da4af3c2519992f746a840f7c86f69c5444",
- "kws": {
- "fr": [
- "berger"
- ]
- }
- },
- {
- "nm": "dîner",
- "id": "89ba1b6b7af79cb8ef70dbb5cb5cd6824f1812392adddadb4ff4f4134c79b919",
- "kws": {
- "fr": [
- "dîner"
- ]
- }
- },
- {
- "nm": "bobine et fil",
- "id": "8d622b63e15ec19fc82699ad378f904b705521ec1019b51cc46e87c696756b54",
- "kws": {
- "fr": [
- "bobine et fil",
- "fil"
- ]
- }
- },
- {
- "nm": "qu\u0027est-ce que c\u0027est",
- "id": "e266fdf06ff92d1ac3060c2d8334fc5a8d553aece47b54854aacb7c67f7d49a9",
- "kws": {
- "fr": [
- "qu\u0027est-ce que c\u0027est",
- "qui est-elle",
- "qui",
- "inconnue"
- ]
- }
- },
- {
- "nm": "danseurs",
- "id": "09998c585f08c8d4cf64824278f01e5e12b86bfa5abaa7e23de3b8055f626a2f",
- "kws": {
- "fr": [
- "danseurs",
- "flamenco"
- ]
- }
- },
- {
- "nm": "momie",
- "id": "7408c702f83c1b8ffd89c683999c4085ec87dc27c6d128fcd1f4dcecc1846b12",
- "kws": {
- "fr": [
- "momie",
- "sarcophage"
- ]
- }
- },
- {
- "nm": "photocopieuse",
- "id": "a7faacd9a7d733d474d34b805c00c84482b8268842f83171a6e0b37dce1b9022",
- "kws": {
- "fr": [
- "photocopieuse"
- ]
- }
- },
- {
- "nm": "classe",
- "id": "177bb6c01557ce0f3400aabb48fe027aae05353ac5b0799af38d2cd94cabdd60",
- "kws": {
- "fr": [
- "classe",
- "compagnons"
- ]
- }
- },
- {
- "nm": "intestin",
- "id": "93b7fc0df94b6d6c5f2bb835e19aa95f0b807e8fb0bc2f122b4ff9b9eb9f470f",
- "kws": {
- "fr": [
- "intestin"
- ]
- }
- },
- {
- "nm": "neveu",
- "id": "4b432f64e1d2af87774b4319e7fcd3885a90cfae969d3d14bd5a08bab49ab250",
- "kws": {
- "fr": [
- "neveu"
- ]
- }
- },
- {
- "nm": "fauteuil roulant",
- "id": "458e10eb19aa81999a3a25127837a757b53caa68b73d34b34981a020d8304bdf",
- "kws": {
- "fr": [
- "fauteuil roulant",
- "produit de soutien"
- ]
- }
- },
- {
- "nm": "vaporisateur",
- "id": "15dafc0c376d3f725aa3de6e1e1eabbff8805bcc1c7fa359a3eb0a505708754f",
- "kws": {
- "fr": [
- "vaporisateur"
- ]
- }
- },
- {
- "nm": "balancer",
- "id": "a29fc1db8905d6c9f224403175d693f6029fb635fa5ed9d02edafe70f2aa0888",
- "kws": {
- "fr": [
- "balancer"
- ]
- }
- },
- {
- "nm": "moniteur",
- "id": "e5db7f332de3f8e6fccc7ffbb995af97a93e64338dc0533d5051bfdd3947c9b9",
- "kws": {
- "fr": [
- "moniteur",
- "soigneur"
- ]
- }
- },
- {
- "nm": "nettoyer le derrière",
- "id": "8d709508d568c91ec2b28e1376cb7e9189d9e31efc42b97a5f95e66b63f18367",
- "kws": {
- "fr": [
- "nettoyer le derrière",
- "nettoyer"
- ]
- }
- },
- {
- "nm": "relief côtier",
- "id": "3db652889e742713f7579f44e010cc053cf3af8be97291ea1b045840b63ea200",
- "kws": {
- "fr": [
- "relief côtier"
- ]
- }
- },
- {
- "nm": "cousine",
- "id": "ec0e98f604cde7928dce412cd66d9958f016f797abb427bfd1a30f4abe235367",
- "kws": {
- "fr": [
- "cousine"
- ]
- }
- },
- {
- "nm": "passer",
- "id": "61cb9c87b34a17d7a19d447a9acc682c205e6f3ab3ccfdf9cda209c47ee871f8",
- "kws": {
- "fr": [
- "passer"
- ]
- }
- },
- {
- "nm": "caractère",
- "id": "006f3b50e5ee32c54dd74b8c5f8af745b1ce6a5cb9c5a944596cdcb4e0522501",
- "kws": {
- "fr": [
- "caractère",
- "a",
- "lettre"
- ]
- }
- },
- {
- "nm": "se brosser les dents",
- "id": "04c6e8741f915dee44a45f9c7223a737ade147e071fe89e7c377a66235bef7da",
- "kws": {
- "fr": [
- "se brosser les dents",
- "se laver les dents",
- "laver les dents"
- ]
- }
- },
- {
- "nm": "nuque",
- "id": "91f27014532570c3efc6f2d06600e5b2eb492f41dec81d6c6e55bfca0ccaaa30",
- "kws": {
- "fr": [
- "nuque"
- ]
- }
- },
- {
- "nm": "laver",
- "id": "60647a0193c6c96c6723b2022f1b74f54474fada3665675dbcce6cb9d07db723",
- "kws": {
- "fr": [
- "laver"
- ]
- }
- },
- {
- "nm": "signe barre (-)",
- "id": "c48d3080194b6705ab14eabd1346f41668b28ab690539f68385fc400a6fbaae2",
- "kws": {
- "fr": [
- "signe barre (-)"
- ]
- }
- },
- {
- "nm": "match",
- "id": "133fc0916027f5fed90a9a2605414ea48fe45ebbc5797d471ab510cf2772aa4f",
- "kws": {
- "fr": [
- "match"
- ]
- }
- },
- {
- "nm": "cours de langues",
- "id": "5b6bec97d8f120177f3265c4cec995ea4a6be4deaf34b2fd54531d55b6c9f0c5",
- "kws": {
- "fr": [
- "cours de langues"
- ]
- }
- },
- {
- "nm": "colin-maillard",
- "id": "13b59e5e04d803c6f2f669f19dbdb685b2a393130671c097c6eafbe440f66f74",
- "kws": {
- "fr": [
- "colin-maillard"
- ]
- }
- },
- {
- "nm": "salon de coiffure",
- "id": "6a4ecfe7d93775e1f622049511221201fe7c4acdc5dfc97eb701147805443a3a",
- "kws": {
- "fr": [
- "salon de coiffure"
- ]
- }
- },
- {
- "nm": "fleur",
- "id": "862da20c535c49b0e404be6e79c7776d61741b71cf9de56a662296e63c34b8b7",
- "kws": {
- "fr": [
- "fleur"
- ]
- }
- },
- {
- "nm": "école de familles",
- "id": "07b26084d1e319ca827ab65677fcd198b3f7b36259d8c7e2a8678bed97266c8c",
- "kws": {
- "fr": [
- "école de familles"
- ]
- }
- },
- {
- "nm": "porte-monnaie",
- "id": "c06c7032ae23dbc65b18712e7ccb49b3bd0c5b3259394a2c7ad331b8e953648d",
- "kws": {
- "fr": [
- "porte-monnaie"
- ]
- }
- },
- {
- "nm": "secouriste",
- "id": "2721b7aa10f4c2e644f3878523ccfeaa5ecb1a43fc8a005d674623c87c84ef2c",
- "kws": {
- "fr": [
- "secouriste"
- ]
- }
- },
- {
- "nm": "guichetier",
- "id": "a61d58e8992e707b82f5fe91de6fcfb7f14cca27d0409a56c7cfeb046c1d20be",
- "kws": {
- "fr": [
- "guichetier"
- ]
- }
- },
- {
- "nm": "imam",
- "id": "69792f311903d1a73beb56693619f1be839dbae9a9c92d611b7e70255536856f",
- "kws": {
- "fr": [
- "imam"
- ]
- }
- },
- {
- "nm": "sac",
- "id": "f0956cabd07c4dbc46d5f7e8585ad42b017919753feabbb891c387fe2968774a",
- "kws": {
- "fr": [
- "sac"
- ]
- }
- },
- {
- "nm": "passager",
- "id": "4273b586a4549f83d07995fb116e90630ec4af127740bc521b9ff3f7fa407b3d",
- "kws": {
- "fr": [
- "passager",
- "voyageur"
- ]
- }
- },
- {
- "nm": "débarrasser la table",
- "id": "da80b1d1a8ad416323b6bcbba230c50e67933170317b71d2a43a076a502ae00c",
- "kws": {
- "fr": [
- "débarrasser la table"
- ]
- }
- },
- {
- "nm": "carte graphique",
- "id": "12e2ff02a3a9e05171833a0e55cb3b988eccdf57b7f82fd05f411d5fec380c0f",
- "kws": {
- "fr": [
- "carte graphique"
- ]
- }
- },
- {
- "nm": "lutin",
- "id": "9e2fa1910165e6f566800c6c422f6ec4fe2d333ae32ab3d5e12a8456f7f1e121",
- "kws": {
- "fr": [
- "lutin"
- ]
- }
- },
- {
- "nm": "catalogne",
- "id": "ae27b7a9321723b15f37c339dde3d342875baaa25ff38b45e59bc5f5c7cea8b5",
- "kws": {
- "fr": [
- "catalogne",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "moitié",
- "id": "f7ed00b3ec64a5f68d0d2d1a3e5c4a46fa246b87d925dc5d3f11e9dd5f00d1b1",
- "kws": {
- "fr": [
- "moitié",
- "moyenne",
- "moyen",
- "1-2"
- ]
- }
- },
- {
- "nm": "poulies",
- "id": "70f96dc6f708600e4adf87fc0405a76ca189b001747b5e758e24234928c3c463",
- "kws": {
- "fr": [
- "poulies"
- ]
- }
- },
- {
- "nm": "recycler",
- "id": "ed98b80f61f935542d26b5427df9afe3954ee839060c9cc61b6019e59849bfdb",
- "kws": {
- "fr": [
- "recycler"
- ]
- }
- },
- {
- "nm": "poser",
- "id": "1ee986eba9845195285b3dea02c7d58d0a02f0fddfacf45f88811af8018c82fe",
- "kws": {
- "fr": [
- "poser"
- ]
- }
- },
- {
- "nm": "gouttes d\u0027eau",
- "id": "0ee3bda2f2a502ffbc2fcc71d9e96553e0958ebbc6cbe7307fd0479958e1fc6e",
- "kws": {
- "fr": [
- "gouttes d\u0027eau",
- "goutttes"
- ]
- }
- },
- {
- "nm": "billets",
- "id": "a24d83dcc3d0b93daa8ccf4578e764075c33fc96ae70eb8163c4a67ac736474c",
- "kws": {
- "fr": [
- "billets",
- "argent"
- ]
- }
- },
- {
- "nm": "oui !",
- "id": "37c1ef09ac58011e0940a4454d08ae9d84282392f3aab03b1ed3becd39a460ec",
- "kws": {
- "fr": [
- "oui !",
- "oui",
- "affirmer"
- ]
- }
- },
- {
- "nm": "vol",
- "id": "1abf7a9a82251537e1e27deee24a82d40b61b06e8e9650ad03e08c9e88656cc5",
- "kws": {
- "fr": [
- "vol",
- "voler",
- "soustraire",
- "agresser"
- ]
- }
- },
- {
- "nm": "partir",
- "id": "2fcc1c9c1acee10d8013b4d856f54cefd78e908911c514da64348975b47cfaa3",
- "kws": {
- "fr": [
- "partir",
- "casser",
- "diviser"
- ]
- }
- },
- {
- "nm": "opposition",
- "id": "f19d2975d47dd59548f9f2afc61d9bc4f9ba517edf86059aa0ef91de8a43dac4",
- "kws": {
- "fr": [
- "opposition"
- ]
- }
- },
- {
- "nm": "saint valentin",
- "id": "beea076292df6398e4fd94db4e1ab004cb77bcd6efabe0c56fb0b561a00e0703",
- "kws": {
- "fr": [
- "saint valentin",
- "saint-valentin"
- ]
- }
- },
- {
- "nm": "bouteille d\u0027oxygène",
- "id": "70097806c04c8fac3c8111c40673d97cd43be0e04d8ed2ed3ac042a7ab4e56e8",
- "kws": {
- "fr": [
- "bouteille d\u0027oxygène",
- "oxygène"
- ]
- }
- },
- {
- "nm": "seize",
- "id": "10615ee42f65339ec0a564b194f2965d5b0f2922915dafa97d955667a648252d",
- "kws": {
- "fr": [
- "seize",
- "16"
- ]
- }
- },
- {
- "nm": "circuler",
- "id": "1e040774469d5e00ce69a117d4b5533e35a2fb98e1d404595c30939acd6496e3",
- "kws": {
- "fr": [
- "circuler"
- ]
- }
- },
- {
- "nm": "distance",
- "id": "380d5ab22fd5c9c49f3d09ae322342a7e117f4624f7524d7cea3d28a22146aed",
- "kws": {
- "fr": [
- "distance"
- ]
- }
- },
- {
- "nm": "enfants",
- "id": "8a60d017e7d4e3d2a46e36a50bc81c50ffdd35bdbcd1c01b384ed6320af96121",
- "kws": {
- "fr": [
- "enfants",
- "garçons"
- ]
- }
- },
- {
- "nm": "sept heures pile",
- "id": "67554e9f44e48db5c57011403f64f799b4b4aebb9fefae7662bd52c3fdbd2f3c",
- "kws": {
- "fr": [
- "sept heures pile",
- "sept heures"
- ]
- }
- },
- {
- "nm": "légume",
- "id": "1229599dbae395e7f37718c5b608168a4da5ac73c4aa8a9f6d4aaec45f1b1fbb",
- "kws": {
- "fr": [
- "légume",
- "légumes"
- ]
- }
- },
- {
- "nm": "bâton de pluie",
- "id": "6ce5c69d240bfce0cd7419030326c939730e68f3b165a122605a5e93552e484b",
- "kws": {
- "fr": [
- "bâton de pluie",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "jeu du mouchoir",
- "id": "e17685b68caf2d2ed3fd0311e2405677ed1d1981b14a0f9d9d6198cfff86a6b2",
- "kws": {
- "fr": [
- "jeu du mouchoir"
- ]
- }
- },
- {
- "nm": "thon",
- "id": "057d21c9f93a65cb63896edef404679cf0cc6afd9f83a072c505756c164fc7d1",
- "kws": {
- "fr": [
- "thon"
- ]
- }
- },
- {
- "nm": "dictionnaire",
- "id": "186da926cd51efd04350a4b80b44c5590f23c29fa233e5135a9067e6d0b23fb4",
- "kws": {
- "fr": [
- "dictionnaire"
- ]
- }
- },
- {
- "nm": "voisin",
- "id": "b2b2379de6a39649a41869e3b1ffb2c19aa027a32d1f7736f4c2692523b6d8b8",
- "kws": {
- "fr": [
- "voisin"
- ]
- }
- },
- {
- "nm": "balcon",
- "id": "d3faa9d6493e90c65cae0f849cee730d833f4f7f0400a326d171ceae4e4c09ca",
- "kws": {
- "fr": [
- "balcon"
- ]
- }
- },
- {
- "nm": "mourir",
- "id": "761fb91ed6dae3cc700127a1a8081fec60e596402e79c5eece8c7a1ef3cf25e8",
- "kws": {
- "fr": [
- "mourir"
- ]
- }
- },
- {
- "nm": "écouter de la musique",
- "id": "9b347299acdae37ec920948b698712b1b5df436c6b56567a43418e90f4886561",
- "kws": {
- "fr": [
- "écouter de la musique"
- ]
- }
- },
- {
- "nm": "fauteuil motorisé",
- "id": "e9947abcc634397dc6bf48c2848c571c9b38865a37de4f8cbc6cc34cbdfe3271",
- "kws": {
- "fr": [
- "fauteuil motorisé",
- "fauteuil roulant motorisé",
- "fauteuil roulant à moteur",
- "fauteuil roulant électrique",
- "fauteuil roulant",
- "produit de soutien"
- ]
- }
- },
- {
- "nm": "poney",
- "id": "f9bd98a6469c2cbb913d25ab2f28e7a7bbf1d6ea5a5c114d513b9524dbad2f21",
- "kws": {
- "fr": [
- "poney"
- ]
- }
- },
- {
- "nm": "péter",
- "id": "9b4198dedf613ce4add6b4ea8fa81cecb4a1535de1bbc3cc4d9c47428e45c0cc",
- "kws": {
- "fr": [
- "péter",
- "se perdre",
- "avoir des vents"
- ]
- }
- },
- {
- "nm": "penser",
- "id": "54ec240ae9f89da25fa10bed3a077e62cb8e6547b49bd8c8afba5bbe1b19c456",
- "kws": {
- "fr": [
- "penser"
- ]
- }
- },
- {
- "nm": "faire caca",
- "id": "03f57e7cd569643ea1248e29ee25d046c49fd09a7ee77d6518f125250c03513d",
- "kws": {
- "fr": [
- "faire caca",
- "chier",
- "évacuer"
- ]
- }
- },
- {
- "nm": "se lever de la chaise",
- "id": "16f3f4f15da2b4de50fddafaedb3a36d4f4960782fc90e472ad9d9d8467f068e",
- "kws": {
- "fr": [
- "se lever de la chaise",
- "se lever",
- "lever"
- ]
- }
- },
- {
- "nm": "blanc",
- "id": "e0491f60132ff1f2aa23fc9d350ec97d89e460e8e1a549db0e37befbccff6f41",
- "kws": {
- "fr": [
- "blanc"
- ]
- }
- },
- {
- "nm": "inhalateur",
- "id": "c3a5d7d9a450be02d7354da3afd77d06c3d34c4b03992c9c3654adceee748564",
- "kws": {
- "fr": [
- "inhalateur"
- ]
- }
- },
- {
- "nm": "siffler",
- "id": "38c40cd61c268b9ea8dbcdf9be443fe4a9170fe5b6e45c9b6d409b74eec7d1e1",
- "kws": {
- "fr": [
- "siffler"
- ]
- }
- },
- {
- "nm": "lait au cacao",
- "id": "449523dc5353d3a416a86aac793d80e232f2fe9c6bfc1cb88d3fe1e6091cd85f",
- "kws": {
- "fr": [
- "lait au cacao"
- ]
- }
- },
- {
- "nm": "pâte à modeler",
- "id": "1d55ceda0d1bab998cbb8476219be9be66738f3d550d270b88ac7b43140c38cb",
- "kws": {
- "fr": [
- "pâte à modeler"
- ]
- }
- },
- {
- "nm": "inférieur à",
- "id": "90f3fba804bcbdb72033ec1b338bb4cf9eb74e16ebd0a42b19d52cff46b92758",
- "kws": {
- "fr": [
- "inférieur à",
- "inférieur"
- ]
- }
- },
- {
- "nm": "danser",
- "id": "7fca1db47fd7171dd21ffa045052511f4373fec634aff91d54f68fe7ecb44398",
- "kws": {
- "fr": [
- "danser",
- "danse"
- ]
- }
- },
- {
- "nm": "oublier",
- "id": "656dac38d2721b4399ba11cd8fd235c707cc347ef3d104796a51de4a521915d6",
- "kws": {
- "fr": [
- "oublier"
- ]
- }
- },
- {
- "nm": "amoureux",
- "id": "54faf51d4fe0009e5f6331b41f9c02d59f1464b1463e7bf92a365a57eea6e88d",
- "kws": {
- "fr": [
- "amoureux"
- ]
- }
- },
- {
- "nm": "tomate",
- "id": "50903911c6add633f128ccb5c30e4eb764ddc2b0f921f144b0e1e594dc9f7887",
- "kws": {
- "fr": [
- "tomate"
- ]
- }
- },
- {
- "nm": "je ne comprends pas",
- "id": "b518853f4f716421145dae92bafa1197c7af6cab84615aa354e5ce7999962acc",
- "kws": {
- "fr": [
- "je ne comprends pas"
- ]
- }
- },
- {
- "nm": "pistolet",
- "id": "86ce395374689a895c951e84604a9a8890de59314bffe53d2cf57a2c924caef0",
- "kws": {
- "fr": [
- "pistolet"
- ]
- }
- },
- {
- "nm": "casserole",
- "id": "783b4b2d3fa5fae5484e67797ccafffe365b1291695c69b391b8a7a03d67edc0",
- "kws": {
- "fr": [
- "casserole"
- ]
- }
- },
- {
- "nm": "manger",
- "id": "1e001a985d4f0b1de837e6412407334b7733116c1dd1954173ce49ac52ea4ca2",
- "kws": {
- "fr": [
- "manger"
- ]
- }
- },
- {
- "nm": "interdit de jeter des papiers",
- "id": "10dc1760222e284aef1eb6411e5f4651ce127f5896b2dadcbc97b4650dc83671",
- "kws": {
- "fr": [
- "interdit de jeter des papiers"
- ]
- }
- },
- {
- "nm": "grèce",
- "id": "280f90776397207a312c232b689bb526a1fb9cfdbd09f2de21348f6ccf0bb29d",
- "kws": {
- "fr": [
- "grèce"
- ]
- }
- },
- {
- "nm": "euros",
- "id": "65eaad530899f0f102ebdb4e84cf4e64ced3f6d6d0eb6753b48488703800c5f1",
- "kws": {
- "fr": [
- "euros",
- "billet",
- "100 euros",
- "argent"
- ]
- }
- },
- {
- "nm": "roux",
- "id": "1bb60f32bc2ab45fd0f3af2fab3e32d63fbb12ee953f5b0252d9ebb145b22886",
- "kws": {
- "fr": [
- "roux"
- ]
- }
- },
- {
- "nm": "pierre",
- "id": "9be70cc95c0f6f550642a209693446cd8a613ad8085efde893253e54281adf16",
- "kws": {
- "fr": [
- "pierre",
- "roche"
- ]
- }
- },
- {
- "nm": "épingles",
- "id": "8c1e8a63847753874aac2e3f02b1bde7b9a2373eb8cff15b64087bda99726ae0",
- "kws": {
- "fr": [
- "épingles"
- ]
- }
- },
- {
- "nm": "nouvelles",
- "id": "5fb9da5f6036953f32e23fb4e1ea99ff3e8ba48bde756d5f38625ce13ac20199",
- "kws": {
- "fr": [
- "nouvelles"
- ]
- }
- },
- {
- "nm": "fromage en portion",
- "id": "c1fabe706f14be2b1925dfe7d45573d57e86663a5a8b5ee12d0513a8715472c9",
- "kws": {
- "fr": [
- "fromage en portion"
- ]
- }
- },
- {
- "nm": "un",
- "id": "54fb1559b9bc2be1529abb5ab3be910524845abbe271af420bbbc5e7049e2418",
- "kws": {
- "fr": [
- "un",
- "1 dé",
- "1"
- ]
- }
- },
- {
- "nm": "tsunami",
- "id": "8b9601037c0953aef540a8f673b0837653a643841ddc7d24324ca259966ef987",
- "kws": {
- "fr": [
- "tsunami",
- "inondation"
- ]
- }
- },
- {
- "nm": "vih",
- "id": "87bd8ffcca777a43cc8ccc3677b10c70941872d6e7157f92ed15aa2eba960e62",
- "kws": {
- "fr": [
- "vih",
- "sida"
- ]
- }
- },
- {
- "nm": "régime",
- "id": "23167727d58825148d30bf5cf8ccebc6c5e311c899a855c83ea1062ef1bb088e",
- "kws": {
- "fr": [
- "régime"
- ]
- }
- },
- {
- "nm": "étrangère",
- "id": "97d8053242927c3f31d89644840507080e5c1f047b6a65d038db854a693ce85d",
- "kws": {
- "fr": [
- "étrangère",
- "noire"
- ]
- }
- },
- {
- "nm": "allumettes",
- "id": "4aea8d1255d8f69ebfb7ab6ec1d2c4f4dec926d6c7c17bb42e8cf87626e1ab74",
- "kws": {
- "fr": [
- "allumettes"
- ]
- }
- },
- {
- "nm": "rosaire",
- "id": "f6ff762c20c7ecdc49cb10fc82608c554fc608c7942958f590d35387183d3618",
- "kws": {
- "fr": [
- "rosaire"
- ]
- }
- },
- {
- "nm": "morve",
- "id": "c00a1df370753fc848c0c8842a997e254db8963ed4cd9aa95b6667cac5be6756",
- "kws": {
- "fr": [
- "morve"
- ]
- }
- },
- {
- "nm": "filets de porc mariné",
- "id": "4bb0b0a5205927dbbf6950b9dc59a121d0cd988492fbe00ef8e8bbd69744afcd",
- "kws": {
- "fr": [
- "filets de porc mariné"
- ]
- }
- },
- {
- "nm": "chrysalide",
- "id": "fc819e5d51828353ef6f4f9d24e0a911281eb8c1f150792ebc7d4c7b0ad6b5d5",
- "kws": {
- "fr": [
- "chrysalide"
- ]
- }
- },
- {
- "nm": "jeu de devinettes",
- "id": "a1f1d8c6456d8bf0b7123bdd3d8c545075a89d692273389004c046839a796577",
- "kws": {
- "fr": [
- "jeu de devinettes"
- ]
- }
- },
- {
- "nm": "voisin",
- "id": "b25ba0d166a5bd536b33657ba756acfc8655377c639e0cb96828d0804eebe2d8",
- "kws": {
- "fr": [
- "voisin"
- ]
- }
- },
- {
- "nm": "verticalisateur",
- "id": "b3ef8947f818a1aa6bbb1d7c462e7b4eea68db0b01670f49a891bd046ad23167",
- "kws": {
- "fr": [
- "verticalisateur"
- ]
- }
- },
- {
- "nm": "petit cheval",
- "id": "f5934cb41931ad5af1751ade6d9227316030916a2a9fb9bdbaaef49533de5819",
- "kws": {
- "fr": [
- "petit cheval",
- "cheval balançoire",
- "cheval de bois"
- ]
- }
- },
- {
- "nm": "boîte de conserve de thon",
- "id": "205bbaf642b2cdbf9b04d8948309d3666a7fa5376a7fe5cdad7365f712fd1b0b",
- "kws": {
- "fr": [
- "boîte de conserve de thon"
- ]
- }
- },
- {
- "nm": "fermer le robinet",
- "id": "2188c089f9e17e8708057b298b924af29b37bde4b6dc144b100922354e9c950d",
- "kws": {
- "fr": [
- "fermer le robinet",
- "fermer"
- ]
- }
- },
- {
- "nm": "se refléter",
- "id": "0a55433496469ed82bbf1d24a6057d11d2c2373bd7874eb2a4508734baa3059b",
- "kws": {
- "fr": [
- "se refléter",
- "refléter"
- ]
- }
- },
- {
- "nm": "peindre",
- "id": "98333a082cec648963f70ee76f596e8eb139b16d9e9f94b896b424db765324af",
- "kws": {
- "fr": [
- "peindre"
- ]
- }
- },
- {
- "nm": "jeter",
- "id": "2dc50284e585601f5f428d2e7156c226498d852866b65b7f78081332ac1d86bf",
- "kws": {
- "fr": [
- "jeter",
- "rejeter"
- ]
- }
- },
- {
- "nm": "onze heures pile",
- "id": "e05aef87a742eb4487336abd292abf1071320595ed99aafa031b23e0bcbd45cb",
- "kws": {
- "fr": [
- "onze heures pile",
- "onze heures"
- ]
- }
- },
- {
- "nm": "visage",
- "id": "8bd4c3d88d55db9ec42e1522f3aa87e16e9ac2f80e855c1e0b82c8a241bb918c",
- "kws": {
- "fr": [
- "visage",
- "figure"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "e86cdbe4acbc8359e35dcb10fbac3ba129530641b6c93fbb5149692eed078ec2",
- "kws": {
- "fr": [
- "praxie",
- "bailler",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "empiler",
- "id": "cc31849edc254292c636f4762f97117724bb8aa4cddc434933c8e0e339bb9d5c",
- "kws": {
- "fr": [
- "empiler",
- "placer"
- ]
- }
- },
- {
- "nm": "géant",
- "id": "3867060939fd2fb480b16dda8adce36e22b1502cde031920de029278f261e9c8",
- "kws": {
- "fr": [
- "géant"
- ]
- }
- },
- {
- "nm": "enlever la poussière",
- "id": "eefd9e029baed1e4667474500ad9f08567ae19a4b26182d88091ed5169b9d396",
- "kws": {
- "fr": [
- "enlever la poussière",
- "nettoyer"
- ]
- }
- },
- {
- "nm": "islande",
- "id": "664092d9ff7e1a4274ab01aa335c4723b35757af4f4a3bff564014c3252a157c",
- "kws": {
- "fr": [
- "islande"
- ]
- }
- },
- {
- "nm": "lac",
- "id": "bb03f3a251ae4c933b48afd629d2120f9f2b9e5fc1c197c9e9e250bd8fc7d013",
- "kws": {
- "fr": [
- "lac"
- ]
- }
- },
- {
- "nm": "bon appétit!",
- "id": "d3ccbfbe18b1c7409e2ea1743104c79e2cf49fa8591fb03baf192fb02465f7e3",
- "kws": {
- "fr": [
- "bon appétit!"
- ]
- }
- },
- {
- "nm": "fossile",
- "id": "a9128bd553bff54e45fa961d92d51390209fda2525a2019d195a3ceec53f995d",
- "kws": {
- "fr": [
- "fossile",
- "ammonite"
- ]
- }
- },
- {
- "nm": "citron vert",
- "id": "b3ee5c45e18772ad76e147849e0f125cc9b78a43ea0a6f5b3f5726d742d1c0b5",
- "kws": {
- "fr": [
- "citron vert"
- ]
- }
- },
- {
- "nm": "moineau",
- "id": "1bed0e740392bd7847e86c8c835f9eda3a3e37a754e54a0305a1d51180bdb760",
- "kws": {
- "fr": [
- "moineau"
- ]
- }
- },
- {
- "nm": "vis",
- "id": "2b211c84574a42fe4afec301894cc681517736c99f1f0f14706e69bea8444c11",
- "kws": {
- "fr": [
- "vis"
- ]
- }
- },
- {
- "nm": "service de nettoyage",
- "id": "5bbc53b51ac539697487eb73e8b9ab086ef643fdb1f9139a84639010651e65e7",
- "kws": {
- "fr": [
- "service de nettoyage",
- "service",
- "signalétique"
- ]
- }
- },
- {
- "nm": "nièce",
- "id": "0b134cbc062523740f0c99ce7947898e7e9640180ca487e2764d2f378cbf13ad",
- "kws": {
- "fr": [
- "nièce"
- ]
- }
- },
- {
- "nm": "cyclisme",
- "id": "f33d76ef889cdf2163ea168dfe334d361cf445b172465b771907d9af7942cc67",
- "kws": {
- "fr": [
- "cyclisme",
- "cyclistes"
- ]
- }
- },
- {
- "nm": "veuf",
- "id": "0c0eded00585d7c17abf478e943d35866c8e5e049babe0208688bac9de059130",
- "kws": {
- "fr": [
- "veuf"
- ]
- }
- },
- {
- "nm": "entrepôt",
- "id": "1f59dc0af2e2fa80ff7804d7778122d65281d3087984c60dfe2f26705663eee8",
- "kws": {
- "fr": [
- "entrepôt",
- "signalétique",
- "magasin de vêtements"
- ]
- }
- },
- {
- "nm": "se déshabiller",
- "id": "f27facc3d8abce28bb682c317a884dc2db427b57560a85c1035d785c3a138b9c",
- "kws": {
- "fr": [
- "se déshabiller",
- "baisser le caleçon",
- "baisser"
- ]
- }
- },
- {
- "nm": "service d\u0027orientation",
- "id": "290f53d08f26e2c3cfc536b3ec03b9d55ce1517bd25d7628b827bd6c609e6a01",
- "kws": {
- "fr": [
- "service d\u0027orientation",
- "service",
- "signalétique",
- "salle"
- ]
- }
- },
- {
- "nm": "examiner",
- "id": "e215a973e99999591939734ed4b828bda9229f02b49dc58ae7a1763939bffb34",
- "kws": {
- "fr": [
- "examiner",
- "ausculter"
- ]
- }
- },
- {
- "nm": "chapeau en tissu",
- "id": "58b3b586c88352acf4fa38415158f4c82da7e7554a98f80347d8faf25e0e51f7",
- "kws": {
- "fr": [
- "chapeau en tissu",
- "chapeau"
- ]
- }
- },
- {
- "nm": "bible",
- "id": "60e0814dd1ff54693ed2d6dd99d307c15bf900cf26d97896115ad2c94755b14f",
- "kws": {
- "fr": [
- "bible"
- ]
- }
- },
- {
- "nm": "ennuyer de l\u0027",
- "id": "a27435d34811b0ddcdb9cf9a7fe6aebdaccb20f3300ff68fa861e5d17332b6d9",
- "kws": {
- "fr": [
- "ennuyer de l\u0027",
- "voir",
- "regarder la télévision"
- ]
- }
- },
- {
- "nm": "dossier médical",
- "id": "f68e1e9dae6e80680e375c11dc14a7a81711c5bb66c3ce94f992bd00fb214c1e",
- "kws": {
- "fr": [
- "dossier médical"
- ]
- }
- },
- {
- "nm": "élever",
- "id": "f2a4e2eb7927796f3ebbaa19700fe35af49f7d233168a8f27e97fe9505766c9b",
- "kws": {
- "fr": [
- "élever"
- ]
- }
- },
- {
- "nm": "dormir",
- "id": "aa39ef8329f8104dfb1ca61f51a0d0097396485b226208aa4434b5d9c372fb2b",
- "kws": {
- "fr": [
- "dormir"
- ]
- }
- },
- {
- "nm": "palais",
- "id": "18a4e75cba145d2b23883fdaedb8abd7642f1b0782b71b6eda360ff2f7376bfe",
- "kws": {
- "fr": [
- "palais"
- ]
- }
- },
- {
- "nm": "limace",
- "id": "0d96e305490985d0da39f2ec85b49104a98fcce089e39221fa2db12c54b75134",
- "kws": {
- "fr": [
- "limace"
- ]
- }
- },
- {
- "nm": "embrasser",
- "id": "1eae44069d886308550500292a1bc5fa17b4e9aa642c8b604018ee9dc518aeb2",
- "kws": {
- "fr": [
- "embrasser",
- "donner un bisou",
- "baiser"
- ]
- }
- },
- {
- "nm": "mouillé",
- "id": "b53abf733705005c47101601cd72d73696433a3150a264df563404ec6e83b193",
- "kws": {
- "fr": [
- "mouillé",
- "mouillée"
- ]
- }
- },
- {
- "nm": "magasin de fleurs",
- "id": "fc54d31535cd127dc6aedd0839b73c92b9ba740191232985177a0ada20878756",
- "kws": {
- "fr": [
- "magasin de fleurs"
- ]
- }
- },
- {
- "nm": "cabochard",
- "id": "87c00c5617aa547fabfdf720ead44642f2993d1a052753d111a7be422b8d3f52",
- "kws": {
- "fr": [
- "cabochard",
- "borgne"
- ]
- }
- },
- {
- "nm": "ouvrière",
- "id": "967515acf86e93e946aa39792953ae6b154640464f7e0eeba35f47869f181ba0",
- "kws": {
- "fr": [
- "ouvrière",
- "mineuse"
- ]
- }
- },
- {
- "nm": "coq",
- "id": "4324fe9f177ea2c5c75b4301d4a28bf951002b414b369fd5be9884e758ec9832",
- "kws": {
- "fr": [
- "coq"
- ]
- }
- },
- {
- "nm": "salade",
- "id": "31d4990277c019f8cf63a05c9065619159fb5c9ea69c9ef3584c964d21574e36",
- "kws": {
- "fr": [
- "salade"
- ]
- }
- },
- {
- "nm": "mairesse",
- "id": "78492d8b3215152457d5b87125c5766d6cd49d8cbedef266d70f6c08b09876de",
- "kws": {
- "fr": [
- "mairesse",
- "mairie"
- ]
- }
- },
- {
- "nm": "mètre métallique",
- "id": "0095ef5e53080e6d9811220d4da752c2ee146c22ef926c210b2b2f94d8e54df3",
- "kws": {
- "fr": [
- "mètre métallique",
- "mètre"
- ]
- }
- },
- {
- "nm": "sourcil",
- "id": "e7a993bfe225df8910e81265f763b9bd14ba3236978600b6b9e8ff7d44f2754c",
- "kws": {
- "fr": [
- "sourcil"
- ]
- }
- },
- {
- "nm": "parcourir",
- "id": "54fbf623ce2e8dad5d352102b0899a7f0d49167152823cca55717f0692030ab8",
- "kws": {
- "fr": [
- "parcourir",
- "voyager"
- ]
- }
- },
- {
- "nm": "examiner",
- "id": "9b01f14a2c3d44cf21ad108a0ee963c86a930d4f6b4a2fa29ec1affcb75d1bfd",
- "kws": {
- "fr": [
- "examiner",
- "ausculter"
- ]
- }
- },
- {
- "nm": "glisser",
- "id": "e5f7d9adcbb88770714c8605f5ab8c6db9915f881c48e9ba5df7453538275e8f",
- "kws": {
- "fr": [
- "glisser"
- ]
- }
- },
- {
- "nm": "sécher la table",
- "id": "ee597e32c5ceb9509863f4510c3580a64da9dfd2a9cc01a5bb932fe7ff7bff61",
- "kws": {
- "fr": [
- "sécher la table",
- "sécher"
- ]
- }
- },
- {
- "nm": "chaise",
- "id": "8b611f6dbaaaa11d21234ac6cc793f0808e7b33c58ae9e002b5a5eeb33de653f",
- "kws": {
- "fr": [
- "chaise",
- "siège"
- ]
- }
- },
- {
- "nm": "concert",
- "id": "4b50df6e7130d6c9c9df4c9f7eeaf45af4f11c1d88e29ca0969f5f52512a4460",
- "kws": {
- "fr": [
- "concert"
- ]
- }
- },
- {
- "nm": "pêcheur",
- "id": "95b16f9560c4d4f929636e9607c1f7af4df994a9d4752f5b77deaa2c304c0728",
- "kws": {
- "fr": [
- "pêcheur",
- "pêche"
- ]
- }
- },
- {
- "nm": "petit chaperon rouge",
- "id": "cbf7e4fd4075d2fae6b3c090c7a3b9d4c19dea7312a0fae7bb06932d4d244456",
- "kws": {
- "fr": [
- "petit chaperon rouge",
- "chaperon"
- ]
- }
- },
- {
- "nm": "colombie",
- "id": "443f972a3741e8ba17839e7b473cd94046fba963a1cf9c12c500b17cdec80c92",
- "kws": {
- "fr": [
- "colombie"
- ]
- }
- },
- {
- "nm": "éteindre la télévision",
- "id": "02c166e6c28ea6d63f2b4001fcd5a2a02d61f2b43f6a9b554bb6ae042ca9cc9f",
- "kws": {
- "fr": [
- "éteindre la télévision",
- "éteindre le moniteur",
- "éteindre",
- "éteint la télévision"
- ]
- }
- },
- {
- "nm": "biscuit",
- "id": "862b22e746072effe8e919a40fd591bc613386f6aec56eafd711aae021bda8a2",
- "kws": {
- "fr": [
- "biscuit"
- ]
- }
- },
- {
- "nm": "sac",
- "id": "49857c55f4b8bd9eb1e54e52844c48a9dfddf51b7a4dd9b63715e1f3fd2c09d4",
- "kws": {
- "fr": [
- "sac"
- ]
- }
- },
- {
- "nm": "brouette",
- "id": "352c15d1f2213623d237314b3ed503890e3606aea26dfe5f56d86e8d178fefbd",
- "kws": {
- "fr": [
- "brouette"
- ]
- }
- },
- {
- "nm": "bossu",
- "id": "ec2a88eba33413dadd37a9817c600b90a0c995c0213040c0da8239fcd8773c46",
- "kws": {
- "fr": [
- "bossu"
- ]
- }
- },
- {
- "nm": "revue",
- "id": "a6b317e1a74d1645345e805ad24e77b9140857314ad9d9c8cee48228b7e4859e",
- "kws": {
- "fr": [
- "revue"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "b364f38d8833290e6bfcebfedf21b8d8eeb1fae0742374961e639f69a251e479",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains derrière la tête",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "premier",
- "id": "5308c2d86661c6930a3fd1ebcb15a1dc31cfa4aa1707c020832d0cf993951897",
- "kws": {
- "fr": [
- "premier"
- ]
- }
- },
- {
- "nm": "géant",
- "id": "94b68e6c0595f196869392af20c1adef924f78f0f5bad091c5487134e78ce9cb",
- "kws": {
- "fr": [
- "géant"
- ]
- }
- },
- {
- "nm": "anneau dentaire",
- "id": "36438dc919b324d5e38f2037ef257730afe6124125f6a6676381d5859014ae6e",
- "kws": {
- "fr": [
- "anneau dentaire"
- ]
- }
- },
- {
- "nm": "couteau adapté",
- "id": "3bff3032bc7f3c19a5109c70b6de6bd06a997942047b0d7776c81c0a5e051c7c",
- "kws": {
- "fr": [
- "couteau adapté",
- "couteau"
- ]
- }
- },
- {
- "nm": "entretemps",
- "id": "4c7e306facf6175c592bc23d3ce3006c9940355086784da37e63f96365a7bc32",
- "kws": {
- "fr": [
- "entretemps",
- "pendant"
- ]
- }
- },
- {
- "nm": "temple",
- "id": "fd77c3de5b728b6d45855672361c43af5fa86fff831cc3d70b17b2eaecaa56be",
- "kws": {
- "fr": [
- "temple",
- "église"
- ]
- }
- },
- {
- "nm": "mosquée",
- "id": "38db742d45f89f2f4d384d8f2efbb8ee4f717cc9bced65b5c2f411452ae5d82b",
- "kws": {
- "fr": [
- "mosquée"
- ]
- }
- },
- {
- "nm": "cours",
- "id": "4d9ffec5575ec6ebe3ac3e461ebb4b04e0f6c6e865bdaae3e1a141ea8f675160",
- "kws": {
- "fr": [
- "cours",
- "professeur d\u0027atelier",
- "professeur"
- ]
- }
- },
- {
- "nm": "épée laser",
- "id": "a6f8bb3b08c2ec27c4b72b5efe51dc3a1cada1f25926cb41c8046c16a0a92d96",
- "kws": {
- "fr": [
- "épée laser"
- ]
- }
- },
- {
- "nm": "canard",
- "id": "0526bf06f60f95854f330fdde7e7575248831016587377acc6880e999a6b0ccd",
- "kws": {
- "fr": [
- "canard"
- ]
- }
- },
- {
- "nm": "vingt-quatre",
- "id": "1860f3ad28065419b4242315caf23a4450f77159c075bae27e2ccad79bfbeaac",
- "kws": {
- "fr": [
- "vingt-quatre",
- "24"
- ]
- }
- },
- {
- "nm": "drapeau espagnol",
- "id": "4f323020b5fcb4975dddca0554f3ea0dcbeec74ed917acb99fee2b237395dd9e",
- "kws": {
- "fr": [
- "drapeau espagnol",
- "pays",
- "espagne"
- ]
- }
- },
- {
- "nm": "brèche",
- "id": "9a8168e7b1eaaba3c0838c6f711c8b9120e14d54fe3afb127461d4225a1efe3c",
- "kws": {
- "fr": [
- "brèche"
- ]
- }
- },
- {
- "nm": "poisson en sauce verte",
- "id": "4f2a39791232edef0916b05b2060e8bedc2ea11dcf9512fda287b4938b62ae00",
- "kws": {
- "fr": [
- "poisson en sauce verte",
- "poisson",
- "rondelle de merlu",
- "rondelle",
- "merlu"
- ]
- }
- },
- {
- "nm": "porte-parapluie",
- "id": "a5298d4d095a0890a6a6fbf733ea24db33e1e4fa396f759966840690a11e4222",
- "kws": {
- "fr": [
- "porte-parapluie"
- ]
- }
- },
- {
- "nm": "lettre",
- "id": "bf9b8c66626758dec83ad1bf3688f2a9ed53ffcb58bbc83e9476e27834dab70b",
- "kws": {
- "fr": [
- "lettre",
- "s"
- ]
- }
- },
- {
- "nm": "ski",
- "id": "9c99b6b764256577c725b5ea66221996a917d4e82ae1b3415ff0f14072780822",
- "kws": {
- "fr": [
- "ski",
- "skier",
- "skieur"
- ]
- }
- },
- {
- "nm": "poncer",
- "id": "add90ad91a350d54e471c80e603eebffc4cb66a591a80bd9c3b12e4854ca2657",
- "kws": {
- "fr": [
- "poncer"
- ]
- }
- },
- {
- "nm": "tension",
- "id": "10273d480af3c93131aa61353a1c63f5c4f6171dd17bbcb1b26f3907288b9f64",
- "kws": {
- "fr": [
- "tension",
- "prendre la tension"
- ]
- }
- },
- {
- "nm": "indien",
- "id": "cad2ede550e283ea3f9c1652eca2a8cc9bcb2e2effe8b38594e9c9b07736af0b",
- "kws": {
- "fr": [
- "indien"
- ]
- }
- },
- {
- "nm": "sécher les cheveux",
- "id": "2cdcc0a6771baf72c23062a0c0665cd1c2afd1ca4d6c0979c7ac0b52c57267a3",
- "kws": {
- "fr": [
- "sécher les cheveux",
- "sécher"
- ]
- }
- },
- {
- "nm": "cantabrie",
- "id": "1d7732a7a7288e9cb39d3529d8cfd7dbc46c054d4d4fa5f9d2eccaab09044553",
- "kws": {
- "fr": [
- "cantabrie",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "pâte d\u0027amandes",
- "id": "38b00a1bd680843c5ac4f5e7e95421ebcb2364b355b6791e5789a65b7e82c41f",
- "kws": {
- "fr": [
- "pâte d\u0027amandes"
- ]
- }
- },
- {
- "nm": "voir",
- "id": "f4d795cc3715d3f7bf6b398218e1afbc2ae08be3f9bfeba88e609f07b3d07196",
- "kws": {
- "fr": [
- "voir",
- "miroir",
- "se refléter",
- "se regarder dans la glace",
- "se voir"
- ]
- }
- },
- {
- "nm": "lait",
- "id": "c8ff8889765ab1292ba0b2a40583c1673c2a03ce2c845beb7c23e3b1ca23b186",
- "kws": {
- "fr": [
- "lait"
- ]
- }
- },
- {
- "nm": "expulser",
- "id": "dd077449755f1162a8729ccde507da25264695f96619bed81c75bb07cecf5cd8",
- "kws": {
- "fr": [
- "expulser",
- "expulsion",
- "congédier"
- ]
- }
- },
- {
- "nm": "ne pas vouloir",
- "id": "4dce943246800e9bc4a184532efd1bdb315fd8073b8097581f1d28538380eece",
- "kws": {
- "fr": [
- "ne pas vouloir",
- "je ne veux pas"
- ]
- }
- },
- {
- "nm": "radio portable",
- "id": "2c3cc89358ed74fb00cd4f47e420c3531e6527265bcf73d351e0e5ab8994bf29",
- "kws": {
- "fr": [
- "radio portable",
- "radio"
- ]
- }
- },
- {
- "nm": "découper",
- "id": "eac9b53419afa16ff5d4d38dcd5ba0ea7ed9372e7ec655097030ccfb26f862b8",
- "kws": {
- "fr": [
- "découper"
- ]
- }
- },
- {
- "nm": "corde à sauter",
- "id": "3a1698c42e2444c0a81481abd41d1ba4c960289974de72b6f5dc617a1654de51",
- "kws": {
- "fr": [
- "corde à sauter",
- "corde à sauter"
- ]
- }
- },
- {
- "nm": "panthère",
- "id": "f5133b239ab5292521f70f12e7f99c28113fab79a780bdd5ef597308af40897a",
- "kws": {
- "fr": [
- "panthère"
- ]
- }
- },
- {
- "nm": "de lait",
- "id": "320a2fb4ca705fb12e074a89c08bd1e66e7220afec60358da25ec06ecb4d9b57",
- "kws": {
- "fr": [
- "de lait",
- "agneau"
- ]
- }
- },
- {
- "nm": "fils",
- "id": "fd6188d5798d5aaaa30100f5dad3054856ef366127b9f3632c6bb79d2f314e66",
- "kws": {
- "fr": [
- "fils"
- ]
- }
- },
- {
- "nm": "compte",
- "id": "59fb7e8c28281e11ba0f9e33a6b1fe444c02391bd951c09583bc641c9735cfc2",
- "kws": {
- "fr": [
- "compte",
- "multiplication",
- "multiplier",
- "opération"
- ]
- }
- },
- {
- "nm": "voilier",
- "id": "f181b439588b20f99a040180725cbf5d894799004be7b534db5d8f5cdd96f55a",
- "kws": {
- "fr": [
- "voilier",
- "bateau"
- ]
- }
- },
- {
- "nm": "agréable",
- "id": "2f7151b8535208762d76c33e839978081ffe177263b2dd4a98a1b007999d8bd5",
- "kws": {
- "fr": [
- "agréable"
- ]
- }
- },
- {
- "nm": "astérisque",
- "id": "5dcc87ad48909c880ed6d5e88c2875b3ded5965cba47cec40b2d66f172724e8b",
- "kws": {
- "fr": [
- "astérisque"
- ]
- }
- },
- {
- "nm": "semaine de pâque",
- "id": "468f7a0b6a7a8da4de5d357a7ba6715585f1260ebaf03f42ec0cafb8a9efe423",
- "kws": {
- "fr": [
- "semaine de pâque"
- ]
- }
- },
- {
- "nm": "esquimau",
- "id": "ebb6462579cab8d635175334f2277635f527e5976166665371c6a201cd23ab23",
- "kws": {
- "fr": [
- "esquimau",
- "étrangère"
- ]
- }
- },
- {
- "nm": "avoir soif",
- "id": "9248757206d07f13849e2831596b675346b344ec3fe55584a317bf76254d4181",
- "kws": {
- "fr": [
- "avoir soif",
- "soif",
- "assoiffé"
- ]
- }
- },
- {
- "nm": "censure",
- "id": "acad274d8fa4fbec33145544a65022372f35d916d94224217fbf97dd8b490589",
- "kws": {
- "fr": [
- "censure"
- ]
- }
- },
- {
- "nm": "espagne",
- "id": "06c59fc34c95ac4dfd8394d0b752f8f75725dea3e5e2cbc025c51860c4b1737c",
- "kws": {
- "fr": [
- "espagne"
- ]
- }
- },
- {
- "nm": "paresseux",
- "id": "53173f598a2f93b2b2d454efe0750bedc055b2a32c50f8c8676340b5230c71f7",
- "kws": {
- "fr": [
- "paresseux"
- ]
- }
- },
- {
- "nm": "écureuil",
- "id": "3e3661490c8f61992b85c7b14b080adf807207e36add12d9a25fb1401311f7bd",
- "kws": {
- "fr": [
- "écureuil"
- ]
- }
- },
- {
- "nm": "pantins",
- "id": "a3bf7f66b884f80cc49cd0b0241aa60f6ccac72ad9d97799d5743cff6ebbd7f7",
- "kws": {
- "fr": [
- "pantins",
- "théâtre de marionnettes",
- "spectacle de marionnettes",
- "marionettes"
- ]
- }
- },
- {
- "nm": "lave-vaisselle",
- "id": "7483eada388356c40fb692ad421a2bed03d00f140ce929125c0e0b820d94f6a6",
- "kws": {
- "fr": [
- "lave-vaisselle"
- ]
- }
- },
- {
- "nm": "domestique",
- "id": "05773c1a2cbb7d35bc87e61865b0b754387630a9a730ee3598125134081a7a58",
- "kws": {
- "fr": [
- "domestique"
- ]
- }
- },
- {
- "nm": "sacs",
- "id": "b9baa8cca71139a96be13667ac2465d6f4872e4ef397c13b74adbbec164c034f",
- "kws": {
- "fr": [
- "sacs"
- ]
- }
- },
- {
- "nm": "périscope",
- "id": "1087c0898b8799ec38a62c25b3940c3841e6bcde7e16e56f3b8621aa5cfad652",
- "kws": {
- "fr": [
- "périscope"
- ]
- }
- },
- {
- "nm": "tanque",
- "id": "15c6477e7381e88e447e6385095733642744690121487aedfa922cfb8de12806",
- "kws": {
- "fr": [
- "tanque"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "e1adbba3020a7174465076149129b8d35c77f135bcd9967e7640b9ed2d242b6e",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains en haut",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "sentir mauvais",
- "id": "50bf140564e9ed1b816dfaf713bc0b76a05713f8944c44bc595eb65d5fe2827d",
- "kws": {
- "fr": [
- "sentir mauvais"
- ]
- }
- },
- {
- "nm": "restaurant",
- "id": "1827eb140a37410eb91bff79e8e2aef5abb1c43d1b78ef42ef117542976e6df9",
- "kws": {
- "fr": [
- "restaurant"
- ]
- }
- },
- {
- "nm": "bureau de tabac",
- "id": "f7c27790e21a6d6239ab93d640a11c3aeb62d795a4c437f2703381eb59db9d4a",
- "kws": {
- "fr": [
- "bureau de tabac"
- ]
- }
- },
- {
- "nm": "guatemala",
- "id": "a92b00ef476781e818544f2ba0f7f2a2111641d8bd034b352d48079ae02ebeaf",
- "kws": {
- "fr": [
- "guatemala"
- ]
- }
- },
- {
- "nm": "personne",
- "id": "cf0cca4c260139aa0e919af15c47c44c8e4e8da1e931bd1a954e7d8eed62f78a",
- "kws": {
- "fr": [
- "personne",
- "aucun",
- "aucune"
- ]
- }
- },
- {
- "nm": "vouloir",
- "id": "e9f3f61858a2ba5e10e8e818634327d533d0e42195141afb0b06463909915b54",
- "kws": {
- "fr": [
- "vouloir",
- "aimer",
- "amoureux"
- ]
- }
- },
- {
- "nm": "papillon",
- "id": "5f964d94e07c75344cdeeb172be6c158f0a22483cafdc44ba4e5d1db6fe4fb14",
- "kws": {
- "fr": [
- "papillon"
- ]
- }
- },
- {
- "nm": "parasite",
- "id": "68a253cd628525394a8bf8db7983739ccb4dfbdc2eaf54b910d7eb112599c3a5",
- "kws": {
- "fr": [
- "parasite",
- "puce"
- ]
- }
- },
- {
- "nm": "se baisser",
- "id": "9d2d7a18dc94b66c3e3a4fbc628ffb6278cfd3679fdd8ca68cde5b078b15368b",
- "kws": {
- "fr": [
- "se baisser",
- "baisser"
- ]
- }
- },
- {
- "nm": "litre",
- "id": "84790889fd5446ab14978955252c6bebe8568c936dc89de94dd7b291e2865d70",
- "kws": {
- "fr": [
- "litre"
- ]
- }
- },
- {
- "nm": "écailles",
- "id": "07d179a9cc450f43bb784a4289fe8a92b209afa9a70286f341b017b33a2c7994",
- "kws": {
- "fr": [
- "écailles"
- ]
- }
- },
- {
- "nm": "se sécher",
- "id": "a5920ea12eaf399fc6f59c3e4869ce9d1d4198db053fde9cf6079cf94ab1f84c",
- "kws": {
- "fr": [
- "se sécher",
- "sécher"
- ]
- }
- },
- {
- "nm": "masque",
- "id": "58ef64ab542e80aeadf4e7e6cb0adf45f6a2d5329cda42d1c8f7ded154c24b5a",
- "kws": {
- "fr": [
- "masque"
- ]
- }
- },
- {
- "nm": "électricien",
- "id": "6974946ea978c8d3b4199d6f6a715a68b531852c9f99b8aea3141c4bda2b7c52",
- "kws": {
- "fr": [
- "électricien"
- ]
- }
- },
- {
- "nm": "tarragone",
- "id": "664e3820bc35299ab48460804457cec2d2a57fcedf52ceb9113aab90d6f8bb30",
- "kws": {
- "fr": [
- "tarragone"
- ]
- }
- },
- {
- "nm": "instrument musical",
- "id": "97a132139d94d84e6d33194addff138f94dd74c15494810c2ce5a40fbce82cc2",
- "kws": {
- "fr": [
- "instrument musical",
- "organe"
- ]
- }
- },
- {
- "nm": "note de musique",
- "id": "57d4464d4195d5652cef3e79563ff1e5c1f63ed7ab092c77ae9b98d25698f6bd",
- "kws": {
- "fr": [
- "note de musique",
- "note",
- "blanche"
- ]
- }
- },
- {
- "nm": "œufs à la poêle",
- "id": "04d1f89e332bdca76abf7a8699dfdc45e9d4f73eee3ef240abb476737f08bb61",
- "kws": {
- "fr": [
- "œufs à la poêle"
- ]
- }
- },
- {
- "nm": "ruban adhésif",
- "id": "51796d217b128a202a61c36a87d5081618070ab4a333725a8b3443b3dcfea834",
- "kws": {
- "fr": [
- "ruban adhésif"
- ]
- }
- },
- {
- "nm": "voter",
- "id": "43039c93952178f5f25e4d7f760449abd9645cd76c7c5ffd9c001ae4beb033a5",
- "kws": {
- "fr": [
- "voter"
- ]
- }
- },
- {
- "nm": "ver",
- "id": "be43836ac2107cb896948063eabd42cc62f73b757792365d08926486a4c96104",
- "kws": {
- "fr": [
- "ver"
- ]
- }
- },
- {
- "nm": "dessous",
- "id": "8facabe724bd592c2455560e04abe8a575570b854d96a59f027900f2fada9705",
- "kws": {
- "fr": [
- "dessous"
- ]
- }
- },
- {
- "nm": "tenaille",
- "id": "aec952ad213ea00d447ee23095e17624cf6d748d32f4d5849d5d967e856a6f26",
- "kws": {
- "fr": [
- "tenaille",
- "tenailles"
- ]
- }
- },
- {
- "nm": "se retrouver seul",
- "id": "1d81f53c0b89d94d1cf28446177d24c34dc654f5d21c7cac49e5c3e5d9fdaa9d",
- "kws": {
- "fr": [
- "se retrouver seul",
- "abus",
- "rester se",
- "maltraitance"
- ]
- }
- },
- {
- "nm": "masturbation",
- "id": "db27adb73649476a0287f23999ae794d31c3c4147e1974ad820fddad860468b5",
- "kws": {
- "fr": [
- "masturbation"
- ]
- }
- },
- {
- "nm": "ovule",
- "id": "956f6a95fff0f8ea0b3915e4889550d5645724e58b36cea8a7f3d818375dab60",
- "kws": {
- "fr": [
- "ovule"
- ]
- }
- },
- {
- "nm": "suicide",
- "id": "2afc0062a53824e1e54d97e9af59de4546b4443a802dd656672aff7f04a019d9",
- "kws": {
- "fr": [
- "suicide"
- ]
- }
- },
- {
- "nm": "bureau des représentants",
- "id": "22e8acfa738e476cf85d86ac467043abe8bc4b7653ca30f2c9b1848825adeab5",
- "kws": {
- "fr": [
- "bureau des représentants",
- "signalétique"
- ]
- }
- },
- {
- "nm": "pièce",
- "id": "22cc9c7676f1f8514d9f88798e251c3fe575a2fb9b9101748731f3da5b20e525",
- "kws": {
- "fr": [
- "pièce",
- "signalétique",
- "salle du personnel soignant"
- ]
- }
- },
- {
- "nm": "papa ours",
- "id": "c7c378f829047b1b7a44a1c5a45ed1b09f38138a21b80439908505aefe7ba33b",
- "kws": {
- "fr": [
- "papa ours"
- ]
- }
- },
- {
- "nm": "donner un coup",
- "id": "8170bc527a958ba72c1a0e19ca3bd98ed2e696a1c5af9fc2a4350f943b67c5fd",
- "kws": {
- "fr": [
- "donner un coup",
- "joueur de tennis",
- "frapper avec une raquette"
- ]
- }
- },
- {
- "nm": "balle",
- "id": "e00823807f4d145a83f0648f0976c13e336de4950124cc35e7b3ca894dd0cb10",
- "kws": {
- "fr": [
- "balle"
- ]
- }
- },
- {
- "nm": "cette histoire est finie",
- "id": "45422b58d0996560b99af5f4c1a620abc36f0a7b157267d52588d447c590dea3",
- "kws": {
- "fr": [
- "cette histoire est finie"
- ]
- }
- },
- {
- "nm": "abeille",
- "id": "c7f8dc7448b716d87ae3b921e781bcf846147ef79089ee2ca709e8d936eef0ba",
- "kws": {
- "fr": [
- "abeille"
- ]
- }
- },
- {
- "nm": "plein",
- "id": "1f10861c66d5288741b97b071307c98f872b5b7e38f6ee5e8db2c197f13eed53",
- "kws": {
- "fr": [
- "plein"
- ]
- }
- },
- {
- "nm": "palais des congrès",
- "id": "20211d89c70769b4cc1b3efa1cbfe92fbf8804ccf78ef6230a0058d2abcef297",
- "kws": {
- "fr": [
- "palais des congrès",
- "palais des foires et des congrès de malaga",
- "malaga"
- ]
- }
- },
- {
- "nm": "mélangeur",
- "id": "88078590ecacb88529fd2cd1184c3de7af34b781de78997fe0e8b748326e401f",
- "kws": {
- "fr": [
- "mélangeur",
- "robinet mitigeur",
- "robinet"
- ]
- }
- },
- {
- "nm": "égoutter",
- "id": "8e55db077c3ede3cd88b7b020932f1b86fc98ef4d5ee316e45ee8cbad5bb1411",
- "kws": {
- "fr": [
- "égoutter"
- ]
- }
- },
- {
- "nm": "égalité des chances",
- "id": "4efc2fd3745794d3c9c5cb5207cd055fb6926837ab098415ac8f2e8a82df574b",
- "kws": {
- "fr": [
- "égalité des chances"
- ]
- }
- },
- {
- "nm": "huelva",
- "id": "346b7206bd027951251edcf51860eee0c5572bc180a0955e95d5960a4bf73780",
- "kws": {
- "fr": [
- "huelva"
- ]
- }
- },
- {
- "nm": "sin traduccion",
- "id": "88a71f7b38c072e5d9e767da8436932bf94857abc3b994790f609fd27ecec824",
- "kws": {
- "fr": [
- "sin traduccion",
- "malaga"
- ]
- }
- },
- {
- "nm": "pharaon",
- "id": "4a526b1947619bd350da942ce694d56a00dcba1e1f909bdddb04b9b7b9b89679",
- "kws": {
- "fr": [
- "pharaon"
- ]
- }
- },
- {
- "nm": "afghanistan",
- "id": "05a5e0be1de89010d071c2593e39e80088fd071ac58b9d7af586f2efc36e11e9",
- "kws": {
- "fr": [
- "afghanistan"
- ]
- }
- },
- {
- "nm": "entrepôt",
- "id": "2b34a62915700d03f5bd80eba586d23ab628fec4caab45fd0afcb4d9a0549a6c",
- "kws": {
- "fr": [
- "entrepôt",
- "signalétique"
- ]
- }
- },
- {
- "nm": "moulin à café",
- "id": "fdbe7b31c447fb8a7ce0107f36a26ae055947600fac5358b9da901e40b56520c",
- "kws": {
- "fr": [
- "moulin à café"
- ]
- }
- },
- {
- "nm": "ballon prisonnier",
- "id": "92820711842497c0f0a0731cb76bd41e329b8aee0816c229f603b57fdb68ca20",
- "kws": {
- "fr": [
- "ballon prisonnier"
- ]
- }
- },
- {
- "nm": "mauve",
- "id": "9a5510850f8bf1c40f2b47fa77d2daec2a5aef4bbbe1d706c8f7ecaa6c40a125",
- "kws": {
- "fr": [
- "mauve"
- ]
- }
- },
- {
- "nm": "soupe",
- "id": "7d651b5b7182e178228e7ad5586570afaec07408f5831ba3eace4b6c0b759ff8",
- "kws": {
- "fr": [
- "soupe",
- "bouillon de volaille"
- ]
- }
- },
- {
- "nm": "projecteur",
- "id": "046421453acd5e7f04ec96fbc0a159e88b54388d39100c374667747904404a40",
- "kws": {
- "fr": [
- "projecteur"
- ]
- }
- },
- {
- "nm": "ranger",
- "id": "a43aac9885d42c1275ec5681e403f4663cc1e786eb87769763fa286cc8348c42",
- "kws": {
- "fr": [
- "ranger"
- ]
- }
- },
- {
- "nm": "pantalon",
- "id": "a7a0f6513fe90a1cb1dd6b63cc49207c230cca0e2ee0b3e274d27b189d27c959",
- "kws": {
- "fr": [
- "pantalon"
- ]
- }
- },
- {
- "nm": "droite",
- "id": "046d3ba39b2501d1045452fc40f9ac5dcafd96ed9dd8153685cf7a5572323711",
- "kws": {
- "fr": [
- "droite",
- "droitier",
- "droitière",
- "main droite"
- ]
- }
- },
- {
- "nm": "aiguille",
- "id": "8f4f4fc8af150d1fe68d21a4a6da50f7f870e906456b3face2ac14dd2336ae35",
- "kws": {
- "fr": [
- "aiguille"
- ]
- }
- },
- {
- "nm": "aiguille à tricoter",
- "id": "53a26e81bdb30f909616d3f6e4799ee3bbaff37fd27a66030b068f874bdaeccf",
- "kws": {
- "fr": [
- "aiguille à tricoter",
- "aiguilles"
- ]
- }
- },
- {
- "nm": "mousqueton",
- "id": "0cc24ba4db0056c482d76c410336bf25592514168ef2caae99a99aaba95abef3",
- "kws": {
- "fr": [
- "mousqueton"
- ]
- }
- },
- {
- "nm": "cuir",
- "id": "eeaaada868d434d45ca6e403b590635a3b89566a57dd76adb3101b3e5a1b7771",
- "kws": {
- "fr": [
- "cuir"
- ]
- }
- },
- {
- "nm": "brosse électrique",
- "id": "e66d8931c9099f6d4b8dc081fc3469eb959310f0c9ad6295362a8ed47fbf4a75",
- "kws": {
- "fr": [
- "brosse électrique"
- ]
- }
- },
- {
- "nm": "sucer",
- "id": "b1e28a430121b26af742cda9bd690b2d643e386c0bcfd1bdffdee4c5482b7412",
- "kws": {
- "fr": [
- "sucer"
- ]
- }
- },
- {
- "nm": "dessinateur",
- "id": "aae594a9c73786a6eec72888dbb35391f512c70b60b4e345574ca09e0716cdd5",
- "kws": {
- "fr": [
- "dessinateur"
- ]
- }
- },
- {
- "nm": "piquer",
- "id": "581339653a2dbf3f302843d868987a8247547a1c7a4190c7c4aefca78eae794f",
- "kws": {
- "fr": [
- "piquer",
- "vaccination",
- "vacciner",
- "vaccin",
- "se faire vacciner",
- "injecter"
- ]
- }
- },
- {
- "nm": "gants",
- "id": "842ec030479b74e06bbd16861dc372e68ebb4b9d2c57ae6649a3b538e9e0e9fe",
- "kws": {
- "fr": [
- "gants"
- ]
- }
- },
- {
- "nm": "électroencéphalogramme",
- "id": "d4215540242a59978cf2554c57a1444cbbc85484163b84a1d47fc5eca41a73ee",
- "kws": {
- "fr": [
- "électroencéphalogramme",
- "éléctro"
- ]
- }
- },
- {
- "nm": "mettre la table",
- "id": "f8cd761c02c61f669efbc5e47e6836c85fd2c2fc3a845a8408cbe5a756437b24",
- "kws": {
- "fr": [
- "mettre la table",
- "mettre"
- ]
- }
- },
- {
- "nm": "jus de raisin",
- "id": "6713879bc40644b9b02c90af7d222433383c00da4334174040f94f0b2598a7b8",
- "kws": {
- "fr": [
- "jus de raisin"
- ]
- }
- },
- {
- "nm": "ingénieure",
- "id": "f2260284813d9846aa36f6b932dd48042b1d6ff4def947f2b5354d4b79b5fadf",
- "kws": {
- "fr": [
- "ingénieure"
- ]
- }
- },
- {
- "nm": "voiture de course pour enfants",
- "id": "8f7b33087effbcecba88e77b9e47257c7e965469ce101f878236398fe261ce11",
- "kws": {
- "fr": [
- "voiture de course pour enfants",
- "voiture de formule 1",
- "bolide",
- "formule 1"
- ]
- }
- },
- {
- "nm": "reptile",
- "id": "0ec7c76b35e68a6cf918bbe5a2adc1252854b5c98f3801126d47c82e26698dca",
- "kws": {
- "fr": [
- "reptile",
- "reptiles"
- ]
- }
- },
- {
- "nm": "chariot",
- "id": "a0f4e86f8a7e41a5c0873b298ae597b0d0d2c842aedbf3794f00ab6c33328445",
- "kws": {
- "fr": [
- "chariot"
- ]
- }
- },
- {
- "nm": "journaliste",
- "id": "d12bc9bbbc246b3518cab35f5bff8bb3f38ff9b3f9b0b5fb734ef254db5d71d3",
- "kws": {
- "fr": [
- "journaliste"
- ]
- }
- },
- {
- "nm": "ustensile de cuisine",
- "id": "9be0fcdc57565c36636525962e9f471b6ebaf309517e3f61ee0ca044a3d567d1",
- "kws": {
- "fr": [
- "ustensile de cuisine",
- "louche"
- ]
- }
- },
- {
- "nm": "coin",
- "id": "2b249e1bdfe6ee491698e89025c4e9ef4d8e048f4859a900f0e2004b8f4a4bf4",
- "kws": {
- "fr": [
- "coin"
- ]
- }
- },
- {
- "nm": "tour",
- "id": "49f487bf8483c997c4d2dbc1c2c6b7ccefb1dcc786f5b94fe42ea0c82941c85f",
- "kws": {
- "fr": [
- "tour",
- "revenir"
- ]
- }
- },
- {
- "nm": "vampire",
- "id": "b40ac90870139da7391b28785e463551558813b80d7aaad988a0c8ae527cb9d1",
- "kws": {
- "fr": [
- "vampire"
- ]
- }
- },
- {
- "nm": "siège",
- "id": "7baac2196fc0ca08eef40e96e32e77e96d11dff13b711fe45c8e71c4e5c01887",
- "kws": {
- "fr": [
- "siège"
- ]
- }
- },
- {
- "nm": "réfrigérateur",
- "id": "6209a9f84679f25350ad271605cb0d828e6fa5c5d3e3afba9eef6d11ea33412a",
- "kws": {
- "fr": [
- "réfrigérateur"
- ]
- }
- },
- {
- "nm": "gouvernante",
- "id": "e8343ee22aa36b660b61b911cff1371c0a494d46c315b9a9050163f6112f33f5",
- "kws": {
- "fr": [
- "gouvernante"
- ]
- }
- },
- {
- "nm": "pâtisserie",
- "id": "0ae701f1a6bd0b0072399c2aa0f9a87a2b04d839366d91002666abfe33c9987e",
- "kws": {
- "fr": [
- "pâtisserie"
- ]
- }
- },
- {
- "nm": "cassette vidéo",
- "id": "e84372a4058bc96b09772f4438051d53ad0c9bcff8068e4aac695596ddabb54b",
- "kws": {
- "fr": [
- "cassette vidéo"
- ]
- }
- },
- {
- "nm": "signer",
- "id": "39e817628f4b812d2131fa1a1f7144d8c3efe4ea3dd72efe7df50d9f7c7755cc",
- "kws": {
- "fr": [
- "signer"
- ]
- }
- },
- {
- "nm": "tarte",
- "id": "ba09dcdcba934dc0d9be756097b8078d3a135bdf703c4e395295332ca6d40734",
- "kws": {
- "fr": [
- "tarte",
- "gâteau de noce"
- ]
- }
- },
- {
- "nm": "cause",
- "id": "d0c480369acddbb9b7119f3fa8c340e9597e15da8ae9db86e1335b2d37052fb9",
- "kws": {
- "fr": [
- "cause",
- "pourquoi",
- "origine"
- ]
- }
- },
- {
- "nm": "nourrir",
- "id": "856f1548a7b0ffd9c33a2067241df6cdfa47d2b32e46aa2e064d473297561990",
- "kws": {
- "fr": [
- "nourrir"
- ]
- }
- },
- {
- "nm": "dard",
- "id": "dfa690f61e55a6f1816536b8ea476442cd08ceefd7bebcecbb5f579479ea983b",
- "kws": {
- "fr": [
- "dard"
- ]
- }
- },
- {
- "nm": "confidentialité",
- "id": "9a5849fa58624682cf8f046549f462b59a8097407cebc7eda423a16ea7eb54f5",
- "kws": {
- "fr": [
- "confidentialité"
- ]
- }
- },
- {
- "nm": "donner un coup",
- "id": "aa8550aa5da8be029eeb032e9aab789c4077d94529e46ed121c4130a667f6796",
- "kws": {
- "fr": [
- "donner un coup",
- "se frapper"
- ]
- }
- },
- {
- "nm": "chambre",
- "id": "4a1fdf86b63441ed149a819828739c5e675e36606d8056076eac6cf2651a84a8",
- "kws": {
- "fr": [
- "chambre",
- "cuisine",
- "signalétique"
- ]
- }
- },
- {
- "nm": "oculiste",
- "id": "ccc529204d385ab1ccd3268ed423075dfa6b7771dabda4bda82f3b48f5505818",
- "kws": {
- "fr": [
- "oculiste",
- "ophtalmologue"
- ]
- }
- },
- {
- "nm": "avertir",
- "id": "cb355b4dd1f57299379db3555ec800c6b24afbd8fe85729dc5e47b8e7bc54728",
- "kws": {
- "fr": [
- "avertir"
- ]
- }
- },
- {
- "nm": "vêtement",
- "id": "696dec4cd645642f872fbd5e978a8c3ec65bd12effd38b614cf66969c731a00a",
- "kws": {
- "fr": [
- "vêtement",
- "manteau"
- ]
- }
- },
- {
- "nm": "pantalon",
- "id": "ec0fd11e60e630d504ed0ea5ec02685296e3921e046c09b982cc133268efe054",
- "kws": {
- "fr": [
- "pantalon",
- "vêtement"
- ]
- }
- },
- {
- "nm": "station essence",
- "id": "bd925026b0f0d8536d4d2b3488457cd2cac35e0718fa9178c9b302f3c4ec799f",
- "kws": {
- "fr": [
- "station essence"
- ]
- }
- },
- {
- "nm": "morceau de fromage",
- "id": "7b753abd7e35929728836bfc49e1089f06b6e48f8da1f9dec0df423bb85bd8d9",
- "kws": {
- "fr": [
- "morceau de fromage",
- "fromage"
- ]
- }
- },
- {
- "nm": "gilet de sauvetage",
- "id": "aff3e1e0b0cc1fe83a1de22cf2eabdf743c1e38376d14212bcb0665d51072edd",
- "kws": {
- "fr": [
- "gilet de sauvetage"
- ]
- }
- },
- {
- "nm": "vinyle",
- "id": "08ae2d8ed118c90babfded875581cb19566a7c2a074dc48fbcbe2192ba245f66",
- "kws": {
- "fr": [
- "vinyle",
- "disque de vinyle",
- "disque"
- ]
- }
- },
- {
- "nm": "cube de rubik",
- "id": "3b7097b603e602f07cc9009209a6e45fd4528899fa3c61eb08bbd9429fcdeaa3",
- "kws": {
- "fr": [
- "cube de rubik"
- ]
- }
- },
- {
- "nm": "hostie",
- "id": "e8b8229904d468fed0bd36cae1b3aa68cfbc7c4dfaca8c86e62dbb17f0cf02d8",
- "kws": {
- "fr": [
- "hostie"
- ]
- }
- },
- {
- "nm": "biberon",
- "id": "1abfd0f0fc9d0742d61105289bbb5ff9b1b55301a88047c2933ebff544668a3e",
- "kws": {
- "fr": [
- "biberon"
- ]
- }
- },
- {
- "nm": "impair",
- "id": "19784d1d2e73daf0e9158287a9268dfd5d4b30fe86c61697bd163eb41fc19b0a",
- "kws": {
- "fr": [
- "impair",
- "neuf",
- "numéro"
- ]
- }
- },
- {
- "nm": "fromage en tranches",
- "id": "f0534c6f0e0d63f55a5d91e62b984a7f3c426dc68f15f02ddc040fc6ecc87af1",
- "kws": {
- "fr": [
- "fromage en tranches",
- "fromage"
- ]
- }
- },
- {
- "nm": "ouvre-bouteilles",
- "id": "52b9b56e93742fda7c00f432589a4167611552c663793c26ed069a868b4544a2",
- "kws": {
- "fr": [
- "ouvre-bouteilles"
- ]
- }
- },
- {
- "nm": "passer l\u0027aspirateur",
- "id": "034715f7fd573a77bd4b8fa0b83fe3021d1e22c5c379277d921f5dd85c603a84",
- "kws": {
- "fr": [
- "passer l\u0027aspirateur",
- "aspirer"
- ]
- }
- },
- {
- "nm": "lampe d\u0027architecte",
- "id": "d3d273e81d469df97d3f8044889be3cd8b29df5ca728a4d15804e4d84cad0b06",
- "kws": {
- "fr": [
- "lampe d\u0027architecte"
- ]
- }
- },
- {
- "nm": "plongeons",
- "id": "72942f51428c32d2db1daf4eac1309b8f4953b42f41ad5b56b8f24a60563410c",
- "kws": {
- "fr": [
- "plongeons",
- "se jeter dans l\u0027eau",
- "sauter dans l\u0027eau"
- ]
- }
- },
- {
- "nm": "cœur",
- "id": "087a84953fff3854fc1f64ab978a7579cc8766e730274af47f121ec3e5481c58",
- "kws": {
- "fr": [
- "cœur"
- ]
- }
- },
- {
- "nm": "je",
- "id": "b69973c7434b1737bc0bfb2a3932c0ad8c5944de9e9d0b3eb0ba3407676a7409",
- "kws": {
- "fr": [
- "je",
- "me"
- ]
- }
- },
- {
- "nm": "encercler",
- "id": "7e13fd55b0119447d6331137a0576c60a2f6a90a36f41d16114da13b7c6bd3b0",
- "kws": {
- "fr": [
- "encercler",
- "clôturer"
- ]
- }
- },
- {
- "nm": "espagnol",
- "id": "2f716cb80156475f2867f93b6b2e325d72f504fa57c60b40e2f0e04770ebe2f0",
- "kws": {
- "fr": [
- "espagnol"
- ]
- }
- },
- {
- "nm": "terrain de golf",
- "id": "a76bb76f1987a611353e0fba33ec582cabc2a06e9ddc4d649968af011ba83efa",
- "kws": {
- "fr": [
- "terrain de golf"
- ]
- }
- },
- {
- "nm": "campagne",
- "id": "50680afa47d1f4fba53ed1e749eeef51d47744bc51d90a2d5f7f6c261e8c362d",
- "kws": {
- "fr": [
- "campagne"
- ]
- }
- },
- {
- "nm": "équipe",
- "id": "f2fb435474077d9a4e4872d811dec94866a3dfd83015ca661495c1ea93dba232",
- "kws": {
- "fr": [
- "équipe"
- ]
- }
- },
- {
- "nm": "rateau",
- "id": "9231cd7b6e42f8568a3df0b9e58f32f3388e95f17dc53644a2f566352e83c6bd",
- "kws": {
- "fr": [
- "rateau",
- "râteau"
- ]
- }
- },
- {
- "nm": "se jeter dans l\u0027eau",
- "id": "489136eeb35108e31dd64bba2621f9eda4cd630ea14349a0b5d4c24dc738e3f8",
- "kws": {
- "fr": [
- "se jeter dans l\u0027eau",
- "sauter dans l\u0027eau"
- ]
- }
- },
- {
- "nm": "pédiatre",
- "id": "98cb73fa1b1b6742c317e10abd5ece6108f4ca1cbd5f2373d8d6a66d99a88d61",
- "kws": {
- "fr": [
- "pédiatre"
- ]
- }
- },
- {
- "nm": "bétonnière",
- "id": "a7f863d005b29ec1715f07b552e569d1f70947d28097610012feca40689a8374",
- "kws": {
- "fr": [
- "bétonnière",
- "fourmillière"
- ]
- }
- },
- {
- "nm": "précaution",
- "id": "9d27c342b23f4695de99c52302691ac43893754ccacb419da5f63e44c1d9accb",
- "kws": {
- "fr": [
- "précaution",
- "danger",
- "attention",
- "avertissement",
- "avis",
- "signal",
- "risque"
- ]
- }
- },
- {
- "nm": "caméra vidéo",
- "id": "8064620555b323ddf9a469516859f0a7e57cec64f48e8b5c5bf5b345ed4ea7f8",
- "kws": {
- "fr": [
- "caméra vidéo",
- "caméscope"
- ]
- }
- },
- {
- "nm": "savonner",
- "id": "6984275ed3bae173fbdbf2bfd29e656489165bb9dab3750bbb35164ffe6d8215",
- "kws": {
- "fr": [
- "savonner",
- "se laver",
- "laver les mains",
- "laver"
- ]
- }
- },
- {
- "nm": "v",
- "id": "ef23d72ea0869c09d85bdc06fc4b3747d47f7b88245be1a4a44763c6aee821d2",
- "kws": {
- "fr": [
- "v",
- "lettre"
- ]
- }
- },
- {
- "nm": "raconter",
- "id": "8422671963151eeab19518ce8251c808f55bf30bb10653f249ce0ceafdc62ada",
- "kws": {
- "fr": [
- "raconter"
- ]
- }
- },
- {
- "nm": "espagnole",
- "id": "44d331b3d9a8d96d9921d1aa2b1a5547226fe3eb6f7ce214261d4728306f5c5f",
- "kws": {
- "fr": [
- "espagnole"
- ]
- }
- },
- {
- "nm": "bourrache",
- "id": "92eca2e6ee89e2b8b94d577fec7b4e21fb4a91a8279ac2cd2f88e4a70831aa36",
- "kws": {
- "fr": [
- "bourrache"
- ]
- }
- },
- {
- "nm": "tranche de citron",
- "id": "22f09da7970542669b447f460c74afd04ba5a1ba0d12436784fd59848b3d180f",
- "kws": {
- "fr": [
- "tranche de citron",
- "rondelle"
- ]
- }
- },
- {
- "nm": "famille",
- "id": "d5d284242a6b017b926c41c2595bce35aa37a1a027f327a0506ef7c76936122e",
- "kws": {
- "fr": [
- "famille"
- ]
- }
- },
- {
- "nm": "démolir",
- "id": "1e82d7392d7e3ed776021131e031ef85f406616a6b4d7dd4edbb68631f80746d",
- "kws": {
- "fr": [
- "démolir",
- "abattre"
- ]
- }
- },
- {
- "nm": "trapèze",
- "id": "5d90294de798b94e242ebc5ac71f04280b378f5f793cfbf9330f2898c04bb885",
- "kws": {
- "fr": [
- "trapèze"
- ]
- }
- },
- {
- "nm": "estampiller",
- "id": "34e384cd7e14de0325c0d5f1fd15b9a433f38c0657c5aa11f2a1aef9c3e415fb",
- "kws": {
- "fr": [
- "estampiller"
- ]
- }
- },
- {
- "nm": "aventurier",
- "id": "03b1a50948a9d5a311278f86b5ee75b5d81739a4db4bfac468c28f6a757ded7a",
- "kws": {
- "fr": [
- "aventurier"
- ]
- }
- },
- {
- "nm": "champignons",
- "id": "abb633b1e32557975458c5e632acd6b952e2b0e622337ae7e05a218ff6a45bb7",
- "kws": {
- "fr": [
- "champignons"
- ]
- }
- },
- {
- "nm": "norvège",
- "id": "8c3d89e37866e9774d8baf3f4e94a75f6933dbda02ea853a9b2eb343e844a07e",
- "kws": {
- "fr": [
- "norvège"
- ]
- }
- },
- {
- "nm": "accueil du public",
- "id": "3c1ac397939b687f06bb4f3939fd7191fd33eb15fc5687d64fa429436b5b4498",
- "kws": {
- "fr": [
- "accueil du public"
- ]
- }
- },
- {
- "nm": "masturbation",
- "id": "52788dd01841690d30d97e9fe57342efad59ff6101c7c039f359090f0ab3e478",
- "kws": {
- "fr": [
- "masturbation"
- ]
- }
- },
- {
- "nm": "prendre",
- "id": "1c307a627a377f7f406e634aee43ee2b95fa9567f017d6a15978e712bdb2d6d4",
- "kws": {
- "fr": [
- "prendre",
- "manger"
- ]
- }
- },
- {
- "nm": "forge",
- "id": "1c530503c6342e6c898d7304ba9d832dc5cf9c8e8c804b689c92c8fc9f95b820",
- "kws": {
- "fr": [
- "forge"
- ]
- }
- },
- {
- "nm": "tonner",
- "id": "0d7e2c78921ad8077b17d750221aa9fbd7fa04792e40db6bd2447bd89cd31431",
- "kws": {
- "fr": [
- "tonner"
- ]
- }
- },
- {
- "nm": "douilles",
- "id": "31c10709a64d1259fba690835e416dc2c542153da2d638dcdc8d05b01867d6bf",
- "kws": {
- "fr": [
- "douilles"
- ]
- }
- },
- {
- "nm": "perdre",
- "id": "2bbbd0dd5a94afdc6ca4447f97e932aaa243d83295398b6f669b57c778db0b51",
- "kws": {
- "fr": [
- "perdre",
- "résultat"
- ]
- }
- },
- {
- "nm": "ennuyer de l\u0027",
- "id": "f11f38d8889b3c644800a3ac15d9b072061bd8152cebf3b2ae7e60e71b91d063",
- "kws": {
- "fr": [
- "ennuyer de l\u0027",
- "regarder la télévision"
- ]
- }
- },
- {
- "nm": "donut",
- "id": "04a27613184e5aac1452309ce983a0e302299d5cc80e79ede8f72685f8fb97da",
- "kws": {
- "fr": [
- "donut",
- "donuts"
- ]
- }
- },
- {
- "nm": "équerre",
- "id": "e11331497d3272f9741521f162e1f35de7adeac1eb78f10a6dea615b72e3d7ce",
- "kws": {
- "fr": [
- "équerre"
- ]
- }
- },
- {
- "nm": "chant de noël",
- "id": "8a2197004ce064e7432d149fab80d9eb5f256deff5c887ddf473b4d748d2c3af",
- "kws": {
- "fr": [
- "chant de noël",
- "chanter des chants de noël",
- "chants de noël"
- ]
- }
- },
- {
- "nm": "cabinets de toilette",
- "id": "0d1df024eaf8de67eda5e3d90b2fb5f61a255d29093561e9ce8cc5be23ab7fcc",
- "kws": {
- "fr": [
- "cabinets de toilette",
- "toilettes",
- "salles de bains"
- ]
- }
- },
- {
- "nm": "pelouse",
- "id": "7a7bd87869aa8e278af75b8e31a31dba1d4ecc383cb51e1d478edd3c482bccab",
- "kws": {
- "fr": [
- "pelouse",
- "herbe"
- ]
- }
- },
- {
- "nm": "s\u0027allonger",
- "id": "501c5e1b465415d4be6f48e1aaf6fa4695e9ee52ed58e1574326b80c8c9a8f24",
- "kws": {
- "fr": [
- "s\u0027allonger"
- ]
- }
- },
- {
- "nm": "demande",
- "id": "99ecc1e42307734d00d0e0dcfce3ac90cc3ca8949e6406dc55acb35b6a6c6af3",
- "kws": {
- "fr": [
- "demande"
- ]
- }
- },
- {
- "nm": "jeux paralympiques",
- "id": "329a9e7e6dfb6fb2376acac18dbae9a6345f2f376f1d8c0dd498cabf073e9b4c",
- "kws": {
- "fr": [
- "jeux paralympiques"
- ]
- }
- },
- {
- "nm": "pot de chambre",
- "id": "c4f3509a07e5076f38e2590df3b4dbaf45b38e5a3340eedca7f6482f2f383a20",
- "kws": {
- "fr": [
- "pot de chambre"
- ]
- }
- },
- {
- "nm": "boutonner",
- "id": "d5011cac0f86674f99449c913c3c705eea3f7134e8c5b443c2787a71cccc1c83",
- "kws": {
- "fr": [
- "boutonner",
- "attacher"
- ]
- }
- },
- {
- "nm": "cracher",
- "id": "1ca11735cac05e72a7c154bd605e66789e87f29f58ec1017b1ad0613a0ad8a28",
- "kws": {
- "fr": [
- "cracher"
- ]
- }
- },
- {
- "nm": "atelier de mémoire",
- "id": "bd6f31583cb63bd899ab6d4bfc888d08722fce966a7887d3591183a3805b0bcd",
- "kws": {
- "fr": [
- "atelier de mémoire"
- ]
- }
- },
- {
- "nm": "carabine",
- "id": "daac146eddbcd48582b9a0ad74073431d874e6941b152d6f71d70ff8eb05f557",
- "kws": {
- "fr": [
- "carabine",
- "fusil",
- "arme"
- ]
- }
- },
- {
- "nm": "nichée",
- "id": "c36709ad09142b296bcd91bb9d7abc3236c7fa24543f3df0e51ce346e6890ffb",
- "kws": {
- "fr": [
- "nichée"
- ]
- }
- },
- {
- "nm": "donner un cadeau",
- "id": "ac6571c7cc99885f4ae5c7bccf2eb25bf7873b2dcf28d1a14df87852d957d261",
- "kws": {
- "fr": [
- "donner un cadeau",
- "offrir"
- ]
- }
- },
- {
- "nm": "tonner",
- "id": "83ad5aebc94963964b4b6cbf6a123e69f4726db307da0e9c0558ef5357ddcffe",
- "kws": {
- "fr": [
- "tonner"
- ]
- }
- },
- {
- "nm": "s\u0027allonger sur le ventre",
- "id": "c3bdd00742a2582ebec7fb354993af75fc6e8aff1b75b499947479450ad1defa",
- "kws": {
- "fr": [
- "s\u0027allonger sur le ventre",
- "s\u0027allonger"
- ]
- }
- },
- {
- "nm": "pays-bas",
- "id": "16fd4a18afb478419dcc96522510962e1ec84356e19739944cba31d3d15356a6",
- "kws": {
- "fr": [
- "pays-bas",
- "hollande"
- ]
- }
- },
- {
- "nm": "macaronis",
- "id": "6ca5f432a12926e02689e68244300babf29783685158b17ef6b506ecb5412739",
- "kws": {
- "fr": [
- "macaronis"
- ]
- }
- },
- {
- "nm": "caisse chinoise",
- "id": "5c5b64acffa3c19c1b626884428721eb27c617be3e3117da2c7b54969e43f97d",
- "kws": {
- "fr": [
- "caisse chinoise"
- ]
- }
- },
- {
- "nm": "claquette",
- "id": "72cd8f15e015d44ea91cb00c3b0380160626e65e7147a2965b56bd218e40b76c",
- "kws": {
- "fr": [
- "claquette"
- ]
- }
- },
- {
- "nm": "ouvrir",
- "id": "521972a3c53de5b7d652e8b63b1d8a4d3b3371742d384538aa2e8f81641010bd",
- "kws": {
- "fr": [
- "ouvrir"
- ]
- }
- },
- {
- "nm": "s\u0027allonger sur le dos",
- "id": "a04b8347e82ff1871e1fc2557a9c0e35399b4d48263a686bc0a3f1aa23f50a63",
- "kws": {
- "fr": [
- "s\u0027allonger sur le dos",
- "s\u0027allonger"
- ]
- }
- },
- {
- "nm": "ami",
- "id": "6efd59dd56bfbe48e171022433e136743d69a25d055240ac25c7e5eb9fb8f569",
- "kws": {
- "fr": [
- "ami"
- ]
- }
- },
- {
- "nm": "éructer",
- "id": "6df73fb5b9f055b1e47dc8564e692a34e5f7abbe0b2a64760190e309b238f45b",
- "kws": {
- "fr": [
- "éructer",
- "roter"
- ]
- }
- },
- {
- "nm": "métreur",
- "id": "6695c06c71c344fb3b5aeb87a2e15236fd98b1fec5098a9da0f6edd67b34d98a",
- "kws": {
- "fr": [
- "métreur",
- "architecte"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "bc65f6bdf6a803286cbc5f668bfe113be8a8a4654800a3b2636d4c24b4811662",
- "kws": {
- "fr": [
- "praxie",
- "orthophonie",
- "lécher"
- ]
- }
- },
- {
- "nm": "bombe",
- "id": "f7b7c97c33e3f3acf6bd5ff6f99ca082a749b1b646885b41f577dcf21ff2e364",
- "kws": {
- "fr": [
- "bombe"
- ]
- }
- },
- {
- "nm": "gâteaux",
- "id": "d05e252d38741e64355599736af43aeb220eeae95e4ac7f97f884006c7555276",
- "kws": {
- "fr": [
- "gâteaux"
- ]
- }
- },
- {
- "nm": "margarine",
- "id": "cf49222e23200e79d2ff51d15c9a40f966827df991b33e7cc70202a96eab81d3",
- "kws": {
- "fr": [
- "margarine"
- ]
- }
- },
- {
- "nm": "danger",
- "id": "3ebd2c26af58205af5a9e18e2a378892c38ed281aa83c766f21dd74c8bbf5a1c",
- "kws": {
- "fr": [
- "danger",
- "inflammable",
- "risque"
- ]
- }
- },
- {
- "nm": "accompagner",
- "id": "f0201dc3a34e5c737fd34b209f7658fc8d7cc4b4117100dc79b8f42a0f4ec19c",
- "kws": {
- "fr": [
- "accompagner",
- "accompagnée"
- ]
- }
- },
- {
- "nm": "ergothérapie",
- "id": "81c6068bbb0f9b10aa37ff7d42f88e4d3990d36a2e5471ab64cf40b7c16bd98d",
- "kws": {
- "fr": [
- "ergothérapie"
- ]
- }
- },
- {
- "nm": "talon",
- "id": "a5188933ee35cfa21b342f003611a80d5ec0f394626d5f489e1263617b987135",
- "kws": {
- "fr": [
- "talon"
- ]
- }
- },
- {
- "nm": "allumer",
- "id": "4337cd34f62fec48d2e39e62eb0990d99f260f59c546c92720a6541d817238e5",
- "kws": {
- "fr": [
- "allumer"
- ]
- }
- },
- {
- "nm": "pen drive",
- "id": "5820bd60e892619f45e4cc7124b5c067de1c0b4ece0277ac89e0c217e6231005",
- "kws": {
- "fr": [
- "pen drive",
- "pen",
- "pendrive",
- "mémoire usb"
- ]
- }
- },
- {
- "nm": "campagnard",
- "id": "c45ae3ae3653b6310c858850970eb42ad4da2a7cdab4f814c129177f18e7301e",
- "kws": {
- "fr": [
- "campagnard",
- "cultivateur",
- "agriculteur",
- "agriculture"
- ]
- }
- },
- {
- "nm": "sin traduccion",
- "id": "4f69b20ce8b629af1329afd009515837aa97d72e06d7e22d1436e8ac6d5909b6",
- "kws": {
- "fr": [
- "sin traduccion"
- ]
- }
- },
- {
- "nm": "multiculturalité",
- "id": "d729463e5f8ab7c820ceffd0d88e55032019c50bde072049b57e610533798795",
- "kws": {
- "fr": [
- "multiculturalité",
- "interculturalité"
- ]
- }
- },
- {
- "nm": "peinture rupestre",
- "id": "acbe47d753cdb08cf7a32249b45e0a132fb68998049de53fe670c96618cce648",
- "kws": {
- "fr": [
- "peinture rupestre",
- "altamira",
- "grotte rupestre"
- ]
- }
- },
- {
- "nm": "élève",
- "id": "e2487c85c4f67c9425b8f6f6e74fded2170761912a5fc0c72ffeee7eb651cbad",
- "kws": {
- "fr": [
- "élève"
- ]
- }
- },
- {
- "nm": "hockey",
- "id": "4ce85e0fc1c75f9b705d233dca3a0f51357314450615632ef7d3e9306446232d",
- "kws": {
- "fr": [
- "hockey",
- "jouer au hockey"
- ]
- }
- },
- {
- "nm": "jeu",
- "id": "8e9a5290fb60066bbac39a06d7a0a5cc0aa46f5594dd758a62ccbba3a5b0f8ae",
- "kws": {
- "fr": [
- "jeu",
- "jeux de table",
- "jeux"
- ]
- }
- },
- {
- "nm": "étranger",
- "id": "433512f8ee0f31ea31e7479e9106bb517d8f3b07864cfff01e42ebc0858df217",
- "kws": {
- "fr": [
- "étranger",
- "hindou"
- ]
- }
- },
- {
- "nm": "briquet",
- "id": "d34c93e8536a953737adc5c68db23c807ae20569b20b4330741f5ead4fa87226",
- "kws": {
- "fr": [
- "briquet"
- ]
- }
- },
- {
- "nm": "dépendant",
- "id": "39bd7412f78659becb2603c1dbc08be6e6788a09be0526a14b24e4c54581b3f1",
- "kws": {
- "fr": [
- "dépendant"
- ]
- }
- },
- {
- "nm": "châtaigne",
- "id": "d4129922cd21aa1a77187e0d8aa366accca4eaed83cdd22d85cad3bd91c7a673",
- "kws": {
- "fr": [
- "châtaigne",
- "châtaignes"
- ]
- }
- },
- {
- "nm": "piéton",
- "id": "9e737797e27f7409587fd5ba75b0abab34ce23591b15e958aad7789834b1e901",
- "kws": {
- "fr": [
- "piéton"
- ]
- }
- },
- {
- "nm": "m",
- "id": "702964737f0796157bbe9ea5a33120a9bc4ccf7c64bd0101b1ce638ff3137813",
- "kws": {
- "fr": [
- "m",
- "lettre"
- ]
- }
- },
- {
- "nm": "rincer la bouche",
- "id": "f7acff8c2f517b31544dda475c441a8c1d4faa38cdce1b5fcf4380ed38ec3b86",
- "kws": {
- "fr": [
- "rincer la bouche",
- "rincer"
- ]
- }
- },
- {
- "nm": "sexe",
- "id": "4ec3a1dc378fdb70b1b9ca76f39c57750db704dcac1da44271a6844461de43b5",
- "kws": {
- "fr": [
- "sexe",
- "sexes"
- ]
- }
- },
- {
- "nm": "rame",
- "id": "cd26a7e9e086442842521d6b2cbcae8a9a8856efe149ec4737b375d34002731a",
- "kws": {
- "fr": [
- "rame"
- ]
- }
- },
- {
- "nm": "magasin de glaces",
- "id": "8d655f39115ad8b3c60fc6b658296d81a01f1a28268d3221c138fcdc07dcf3f4",
- "kws": {
- "fr": [
- "magasin de glaces"
- ]
- }
- },
- {
- "nm": "mère",
- "id": "42e4b30ee7d73e8fece1d96afbeb6beefe495a95c139ae3d8d0ea53f67a7be7f",
- "kws": {
- "fr": [
- "mère",
- "maman"
- ]
- }
- },
- {
- "nm": "gaspacho",
- "id": "9d26de6aeb951521457066d266e08b0d7ccd4b3edcc5c0afb6f2b8e93577250c",
- "kws": {
- "fr": [
- "gaspacho"
- ]
- }
- },
- {
- "nm": "costa rica",
- "id": "1fc76a6efcf080c6fb2770d0197d6ffa183708aa5a2fd1cd5f11b9063858d118",
- "kws": {
- "fr": [
- "costa rica"
- ]
- }
- },
- {
- "nm": "tortue",
- "id": "fb1b6b1b038c7a1abb8b291e93a9aaf8f6d3c76be6691351457849e60273d125",
- "kws": {
- "fr": [
- "tortue"
- ]
- }
- },
- {
- "nm": "concevoir",
- "id": "944b04ec850e3d48ede011fa916f2e179852a6e9c4fa59c1fc24a87a740655b3",
- "kws": {
- "fr": [
- "concevoir"
- ]
- }
- },
- {
- "nm": "promener le chien",
- "id": "5d031b8d8c3e28c7b863253af1723cc726e2405338c0530fcb57110306c9f98b",
- "kws": {
- "fr": [
- "promener le chien",
- "promener"
- ]
- }
- },
- {
- "nm": "acnur",
- "id": "430d96d86fc8eb0d3cf39976fc5066e98a3bc6a8e7971f52f1149ef3b53d2c05",
- "kws": {
- "fr": [
- "acnur"
- ]
- }
- },
- {
- "nm": "athlète",
- "id": "44f88849b5885bb5164cab4ffdae5476a469d8781dbdc56fc4edfd8259db09a9",
- "kws": {
- "fr": [
- "athlète"
- ]
- }
- },
- {
- "nm": "torero",
- "id": "13f7015a802046aec294edba4a01fbec6484f8d546ae35be40f81e8308fd36a2",
- "kws": {
- "fr": [
- "torero"
- ]
- }
- },
- {
- "nm": "karaté",
- "id": "63a9b83689cd2afbf9421e6f1236eebd0c7af20a0939fea408968ad9d5e8b511",
- "kws": {
- "fr": [
- "karaté"
- ]
- }
- },
- {
- "nm": "sortir",
- "id": "7b919ca157e028f5997518a17ed103a68ccc529da8a9798f02eb758b48e476dd",
- "kws": {
- "fr": [
- "sortir"
- ]
- }
- },
- {
- "nm": "bikini",
- "id": "bebaedae3ff99122a7d6536de232964439f7616b6618aa118ed183063e979f22",
- "kws": {
- "fr": [
- "bikini",
- "biquini"
- ]
- }
- },
- {
- "nm": "mouche",
- "id": "252b5e55615ad9f7fd2f91d83b1dde965724bfbb7bf9cd4dc7e070b72475ba81",
- "kws": {
- "fr": [
- "mouche"
- ]
- }
- },
- {
- "nm": "bureau",
- "id": "f83e295e7a6e271cadddf2d668c851ae717d07d8eec19176424f223e477df2f1",
- "kws": {
- "fr": [
- "bureau"
- ]
- }
- },
- {
- "nm": "impulsion",
- "id": "1872c834a935ef8dd3c64683f03d1c28d137042937e9e98accfe40439e5d8ced",
- "kws": {
- "fr": [
- "impulsion"
- ]
- }
- },
- {
- "nm": "descendre",
- "id": "c585f6d1a7e1d0458c1b16c4e055b37d0b41b8cb992598c357e55e2739c848fa",
- "kws": {
- "fr": [
- "descendre",
- "diminuer"
- ]
- }
- },
- {
- "nm": "doucher",
- "id": "77651805d25b3df21bab595c872e9e1aee0544f40fb72d6b9737c482e0a07b73",
- "kws": {
- "fr": [
- "doucher",
- "se doucher"
- ]
- }
- },
- {
- "nm": "escalader",
- "id": "84f1d53738b6e1abfaea29490483a3230f160281e3c27221088463a3bac3e8e3",
- "kws": {
- "fr": [
- "escalader",
- "remonter",
- "grimper"
- ]
- }
- },
- {
- "nm": "limonade",
- "id": "ce3b46c1cbc4feb5a47879d2b974d6c007b76c39981397ea04bc9b0f4969a7ad",
- "kws": {
- "fr": [
- "limonade"
- ]
- }
- },
- {
- "nm": "drôle",
- "id": "74ea78e948dec72f3cee6fa26fef179daef914879794ea90e86fa56e75a77810",
- "kws": {
- "fr": [
- "drôle"
- ]
- }
- },
- {
- "nm": "poêle à paella",
- "id": "9b7a8e08d596e140c421f2b53ade01308640f82dd272b8fedadb77bef2d4f495",
- "kws": {
- "fr": [
- "poêle à paella"
- ]
- }
- },
- {
- "nm": "toilettes adaptées",
- "id": "51d6e262ff01236a04b117b25608e9fbcec8cc10aca58d5820957fd9b70458d7",
- "kws": {
- "fr": [
- "toilettes adaptées",
- "toilettes",
- "salle de bains"
- ]
- }
- },
- {
- "nm": "quadriceps",
- "id": "c791cf16b3e2b6e55771246b1cb8862a45bcd3cd51bbab0e3add2bb2ad446f7b",
- "kws": {
- "fr": [
- "quadriceps"
- ]
- }
- },
- {
- "nm": "tetris",
- "id": "8215b05b06f5b9665a627ecadbceb50aca451a98c3d47e26ff7d89ee15cf4557",
- "kws": {
- "fr": [
- "tetris"
- ]
- }
- },
- {
- "nm": "cours de langue",
- "id": "b94e519079ecda1fd1560411eb051d4158708271ea4e5a030bc4ca156882a0c8",
- "kws": {
- "fr": [
- "cours de langue",
- "langage",
- "langue",
- "matière"
- ]
- }
- },
- {
- "nm": "déplacer",
- "id": "410b7ffbd2c9435ce38e85e8c91fc02cf22ef447c0cc294f989244fc9cdc2a35",
- "kws": {
- "fr": [
- "déplacer"
- ]
- }
- },
- {
- "nm": "devant",
- "id": "8968ca150ddeb122227a5e6df9beb6ba87c0dc9216d00bb036d60843a0825dc4",
- "kws": {
- "fr": [
- "devant"
- ]
- }
- },
- {
- "nm": "raquette",
- "id": "8411261b90a7cd601138a3d388f51092f5067533159e456a626d59c7c1acf22b",
- "kws": {
- "fr": [
- "raquette"
- ]
- }
- },
- {
- "nm": "belgique",
- "id": "05165f32acb4af4e45908131aae054b77791f18f0ac98fca983487059f947dc2",
- "kws": {
- "fr": [
- "belgique"
- ]
- }
- },
- {
- "nm": "laide",
- "id": "640f680d2b4c56c4a4cc7fa391bd8a43697cdc9f76e9a63e9b6644a4813c3a87",
- "kws": {
- "fr": [
- "laide"
- ]
- }
- },
- {
- "nm": "amender",
- "id": "9c90060e74e847e8e4fa94baa6dc806a24deb5738591621b76622373ea709f8f",
- "kws": {
- "fr": [
- "amender"
- ]
- }
- },
- {
- "nm": "papier de verre",
- "id": "4a916c1202df18698a996ed77829b5a86c1006f5f774563b700231b42158175c",
- "kws": {
- "fr": [
- "papier de verre"
- ]
- }
- },
- {
- "nm": "technicien d\u0027animation socioculturelle",
- "id": "bbcd8f138cb821d0b071d0e055648f2fed1953fe13a6785ca480cdfd24e75551",
- "kws": {
- "fr": [
- "technicien d\u0027animation socioculturelle",
- "technicien supérieur d\u0027activités spécifiques"
- ]
- }
- },
- {
- "nm": "voiture funèbre",
- "id": "1c5a6db94efa7e35ff687f65c0dfdfb562a7b2083abab78326c9ef8cae9c9760",
- "kws": {
- "fr": [
- "voiture funèbre"
- ]
- }
- },
- {
- "nm": "dinde",
- "id": "3d492fa8497892c7c2a3d167b83c1c0d8f83743d462226998ef44a0cd134a404",
- "kws": {
- "fr": [
- "dinde"
- ]
- }
- },
- {
- "nm": "fiancé",
- "id": "46bedd558e6bfdd2ad4939835a7eb3815694216defb82c29fa9473759791f551",
- "kws": {
- "fr": [
- "fiancé"
- ]
- }
- },
- {
- "nm": "allumer l\u0027écran",
- "id": "09d8d1289fc088a1611d27c8fd185ede6736a2304f680af11998325efccfc788",
- "kws": {
- "fr": [
- "allumer l\u0027écran",
- "allumer la télévision"
- ]
- }
- },
- {
- "nm": "vêtement",
- "id": "a82e249a11cee80ce61fe7c77b8c11be1c04d78873cbe927d2520a8de75128f4",
- "kws": {
- "fr": [
- "vêtement",
- "ciré",
- "imperméable"
- ]
- }
- },
- {
- "nm": "gare",
- "id": "1d512ee81e07b2e1187a4b48395cd51f94d392cb334ec9dc27fa28b5a8cb1360",
- "kws": {
- "fr": [
- "gare"
- ]
- }
- },
- {
- "nm": "papier aluminium",
- "id": "623485e508ffbad13641c15fd860ae938a804a57b3634f119e414f00cb057718",
- "kws": {
- "fr": [
- "papier aluminium",
- "aluminium"
- ]
- }
- },
- {
- "nm": "siège",
- "id": "6c298991780168112073eae26487c1d1179585d8858790e19b14d0951fb5f419",
- "kws": {
- "fr": [
- "siège"
- ]
- }
- },
- {
- "nm": "chatouiller",
- "id": "4da6b220bb15d1cc56a96c73314883a393a59a12b7bc75b072bc9419721e59fa",
- "kws": {
- "fr": [
- "chatouiller",
- "chatouilles"
- ]
- }
- },
- {
- "nm": "boucler",
- "id": "b83cd3e80c2abad919908b94ae19a4b080c84e8607f918365990f7d6794a5876",
- "kws": {
- "fr": [
- "boucler",
- "friser les cheveux"
- ]
- }
- },
- {
- "nm": "nappe",
- "id": "751d77d54e18cbb3e8e8a7a610c212d195d9e354716550791a398e34f38c6676",
- "kws": {
- "fr": [
- "nappe"
- ]
- }
- },
- {
- "nm": "donner un coup",
- "id": "22068427d01990247e19977bbc7b4da0e3fdb947d0b139b54751b9f1e723a4bd",
- "kws": {
- "fr": [
- "donner un coup",
- "donner une gifle",
- "coller",
- "attaquer",
- "gifle",
- "maltraiter"
- ]
- }
- },
- {
- "nm": "bébé",
- "id": "2cc168190f890fa98c44a370c186275604b07d55194de42e06023f10d5974668",
- "kws": {
- "fr": [
- "bébé",
- "personne"
- ]
- }
- },
- {
- "nm": "cathédrale de málaga",
- "id": "b07e2a4a96dd5a79fb2459940e8bef66cf320a5221fa8c7f979e11404835e0e4",
- "kws": {
- "fr": [
- "cathédrale de málaga",
- "malaga"
- ]
- }
- },
- {
- "nm": "boîte de conserve d\u0027anchois",
- "id": "30573c1330a08eda6895088d8f5e4fcce9a7bbe9749eb55a55882dcc74e5d7d2",
- "kws": {
- "fr": [
- "boîte de conserve d\u0027anchois"
- ]
- }
- },
- {
- "nm": "célibataire",
- "id": "cd7375460e59157882f1484e3fca1d45bd7440c413a7724754a877cd43cedd24",
- "kws": {
- "fr": [
- "célibataire"
- ]
- }
- },
- {
- "nm": "nouilles",
- "id": "4215a1db4c3a1f35b9abec473c9976298c0cb728d90c3a68814f7ddd774a1018",
- "kws": {
- "fr": [
- "nouilles"
- ]
- }
- },
- {
- "nm": "partager",
- "id": "3f125df154c374cbb37eead61e2dea43e3afe00e90763b65b60b4498f9b8a9af",
- "kws": {
- "fr": [
- "partager",
- "diviser"
- ]
- }
- },
- {
- "nm": "cours",
- "id": "92368d8fe39c0e388309f6c8f56aa8604f4604d6f3b31c80d0024c927f3e8e7d",
- "kws": {
- "fr": [
- "cours",
- "professeur",
- "maître"
- ]
- }
- },
- {
- "nm": "croix rouge",
- "id": "c5048d848f0354037e93c0548077edbe83c085ebe027b765ad2f2c421537ce6e",
- "kws": {
- "fr": [
- "croix rouge"
- ]
- }
- },
- {
- "nm": "pousser",
- "id": "8ac4f64588535f784bee87f921bd447eeb9b3e149080ede508dfe37d40e2d4a0",
- "kws": {
- "fr": [
- "pousser",
- "renverser"
- ]
- }
- },
- {
- "nm": "escalier",
- "id": "c4c790c3df671a1b25c8592c92edf1e56cf49a5e2510768698f2667f75ac652b",
- "kws": {
- "fr": [
- "escalier"
- ]
- }
- },
- {
- "nm": "souris",
- "id": "05db01bbc9c045226944485a84b4cc1f7eeda1ca81aed6d79b59ed6db961880e",
- "kws": {
- "fr": [
- "souris"
- ]
- }
- },
- {
- "nm": "unir",
- "id": "8b09feceb86beae57985788118a2b454e4dc711514784a2dde8052bfbbd9af83",
- "kws": {
- "fr": [
- "unir",
- "assembler"
- ]
- }
- },
- {
- "nm": "trouver",
- "id": "8c38d96bb12d08836ab4c751c7045acd0a49f679c4a06ad8302c93f8e14a2e83",
- "kws": {
- "fr": [
- "trouver",
- "apparaître"
- ]
- }
- },
- {
- "nm": "estampiller",
- "id": "2a334635433c5e73955540d553f0e25984580b359778af0fb312c5175844e3bd",
- "kws": {
- "fr": [
- "estampiller"
- ]
- }
- },
- {
- "nm": "culotte",
- "id": "5bd6f7d38d1ae6d7ae8dc2240213d1ecc6eb0b5764bf0c36852577d27494a752",
- "kws": {
- "fr": [
- "culotte",
- "culottes"
- ]
- }
- },
- {
- "nm": "canard",
- "id": "9a7bdd93675d3542a4a36a7d9dcde42adb6bee03071cb0ea5cc30cdc3954d0e1",
- "kws": {
- "fr": [
- "canard"
- ]
- }
- },
- {
- "nm": "puma",
- "id": "b0a7da74d899f386f37709a6222df4fc383c06fc889e8fd4290385e2302acfac",
- "kws": {
- "fr": [
- "puma"
- ]
- }
- },
- {
- "nm": "danger",
- "id": "6d32ef169373c7507defcc83619727120a196f3459d37e26b892d48930ae9193",
- "kws": {
- "fr": [
- "danger",
- "risque"
- ]
- }
- },
- {
- "nm": "être debout",
- "id": "47b9cd1861828c7235a2d5282ca992795e4526d6ef458723bf8045acbc1a0343",
- "kws": {
- "fr": [
- "être debout"
- ]
- }
- },
- {
- "nm": "blanchisseuse",
- "id": "7bf836aa127b941a29e6125417bb750470d7093efda23ded4c82b30a026c263f",
- "kws": {
- "fr": [
- "blanchisseuse"
- ]
- }
- },
- {
- "nm": "filet",
- "id": "1d02dce1cd193bbd25b18d7a11cb8864ec0579259cdece9eba2c3d4305ab37de",
- "kws": {
- "fr": [
- "filet"
- ]
- }
- },
- {
- "nm": "rémouleur",
- "id": "cee6dab1ab29b27eb0bb13fb57317811f6e8449840ebc8632c2399756bfcd375",
- "kws": {
- "fr": [
- "rémouleur"
- ]
- }
- },
- {
- "nm": "tramway",
- "id": "ad07d33cb6ff49b2784d3513e9fcd3b69fcc9768d24afc973cbacfbd9d8b8a84",
- "kws": {
- "fr": [
- "tramway"
- ]
- }
- },
- {
- "nm": "vingt-neuf",
- "id": "50ef521a85f729515e502ce2b5dca043a89f2abe9a27cc52cee5a9830ce3406a",
- "kws": {
- "fr": [
- "vingt-neuf",
- "29"
- ]
- }
- },
- {
- "nm": "narcisse",
- "id": "89591aed5bc48cd3e3f57f40d3bd489609cd13c38714df7e0bb585add611aa3b",
- "kws": {
- "fr": [
- "narcisse"
- ]
- }
- },
- {
- "nm": "travail",
- "id": "1445466fe1d68dfd94da33774e0c436938fd9ad1cd1749947495f0111af244e9",
- "kws": {
- "fr": [
- "travail"
- ]
- }
- },
- {
- "nm": "responsable administratif",
- "id": "04c6ce6fbfd187f933a875e4df7dde13a213442f2e305d663a91bfc317af545a",
- "kws": {
- "fr": [
- "responsable administratif",
- "responsable"
- ]
- }
- },
- {
- "nm": "colonne à bulles",
- "id": "12fed05008ec2028449ce481b837a551e673fe0a85dfbf3c4424929b3a0f305f",
- "kws": {
- "fr": [
- "colonne à bulles",
- "colonnes"
- ]
- }
- },
- {
- "nm": "avoir l\u0027habitude",
- "id": "af6048ac6742aa193fb0d7113aeb0677f454126720ee0a611eab226b968fdc9c",
- "kws": {
- "fr": [
- "avoir l\u0027habitude",
- "anniversaire"
- ]
- }
- },
- {
- "nm": "cornée",
- "id": "fc9d79dc264cb1d36c472ecf225a5d51ab61d2b47562dbfe414c5fe87bc66687",
- "kws": {
- "fr": [
- "cornée"
- ]
- }
- },
- {
- "nm": "personnel",
- "id": "1bd698c609156d143144d82c3f3f89d540445a8d7c7bdc6aab13ae85bf0413b1",
- "kws": {
- "fr": [
- "personnel",
- "personnes",
- "gens",
- "groupe"
- ]
- }
- },
- {
- "nm": "forgeron",
- "id": "2be73710f5f1f19bafd0c485d4ce8ab51eee3dc2e8b9e6d87278fd83f3cd6b04",
- "kws": {
- "fr": [
- "forgeron"
- ]
- }
- },
- {
- "nm": "déprimé",
- "id": "03be91b3a33257755ba340a6a8ac60dac6ebee9753edfcaa008f7e714416c30c",
- "kws": {
- "fr": [
- "déprimé",
- "tristesse",
- "triste",
- "expression",
- "affligé",
- "malheureux"
- ]
- }
- },
- {
- "nm": "poulet",
- "id": "6ea1281ffe9ad41f5fca10166d2364c801a19c03b4c888f8258ef81a13346373",
- "kws": {
- "fr": [
- "poulet"
- ]
- }
- },
- {
- "nm": "ciudad real",
- "id": "7229d609008dee94602b85f3df1fabb6ef9aa94e8b17ecba6e713ed2cf81e39b",
- "kws": {
- "fr": [
- "ciudad real"
- ]
- }
- },
- {
- "nm": "élève",
- "id": "6ce2a6964d3a4fb517196aba8d908a6d9e716416a02513e8c80c5a59131bbf48",
- "kws": {
- "fr": [
- "élève"
- ]
- }
- },
- {
- "nm": "à moi",
- "id": "d82eec78e84186bf2ff02d3d9dfc5c4752ed0485c1b6e5971b9e5f0bd3ca2f56",
- "kws": {
- "fr": [
- "à moi",
- "miennes",
- "mes"
- ]
- }
- },
- {
- "nm": "autobus",
- "id": "62e74c94ae93703386191c5a12d20ba0ad19a82555b89667e3172cf6046b5056",
- "kws": {
- "fr": [
- "autobus"
- ]
- }
- },
- {
- "nm": "montagnard",
- "id": "85ac9a814e84d33a55de0a0ea7338b479923d1bbf57bc96aa9b2cc217f09879c",
- "kws": {
- "fr": [
- "montagnard"
- ]
- }
- },
- {
- "nm": "accueil du public",
- "id": "4e9f3a56a345c87a4ab0532d09c3ecf6a55a5a72238da3d0b2b93e9da5f28ccf",
- "kws": {
- "fr": [
- "accueil du public"
- ]
- }
- },
- {
- "nm": "étroit",
- "id": "09e9aa746f208700d2f4d1b370d5f8e01bfc2d9696fe16df9ca6e6a32058bd3b",
- "kws": {
- "fr": [
- "étroit"
- ]
- }
- },
- {
- "nm": "noix de coco",
- "id": "b3843660a0e496e708dbfd9a843b4d8970b847b9ab0053a81565f1f2015e7329",
- "kws": {
- "fr": [
- "noix de coco"
- ]
- }
- },
- {
- "nm": "vide",
- "id": "ae70235dee952c446187862dbfa90749a93382410fee5dc4d305f0dd6ff47201",
- "kws": {
- "fr": [
- "vide"
- ]
- }
- },
- {
- "nm": "patins",
- "id": "9d9482d1a4358750f61dca20c5fa3ef3342fb0d5812b6550d64c4708f226dd37",
- "kws": {
- "fr": [
- "patins"
- ]
- }
- },
- {
- "nm": "tailler",
- "id": "d80afe4c7bf06765932e1fb1a53e5ad173dbaec09c68f82e3d34103802dd236d",
- "kws": {
- "fr": [
- "tailler"
- ]
- }
- },
- {
- "nm": "détective",
- "id": "d4153099b2c4850e0a5e8fdbbb02c18150b8faabdd6157244f5d07ae01c76b1c",
- "kws": {
- "fr": [
- "détective"
- ]
- }
- },
- {
- "nm": "sabot",
- "id": "b653e5f983d4285c68f85a143467186132dd7e5ac765e0bb3c506711838f821c",
- "kws": {
- "fr": [
- "sabot"
- ]
- }
- },
- {
- "nm": "circuit électronique",
- "id": "103d05d5eefdff6f57ff8937e0c53976882f338ba800841fa5e391b42c7469bc",
- "kws": {
- "fr": [
- "circuit électronique",
- "circuit"
- ]
- }
- },
- {
- "nm": "neuropsychologue",
- "id": "88ab25e77aaf4b655c798299f86f86ff1ae05ef1f7d2ceb2bea06794194fc858",
- "kws": {
- "fr": [
- "neuropsychologue"
- ]
- }
- },
- {
- "nm": "aquarium",
- "id": "18052f7248bf13337474d4ca099bec9e15adeb8e4dce097c98bb6e444ac07bd7",
- "kws": {
- "fr": [
- "aquarium"
- ]
- }
- },
- {
- "nm": "c\u0027est",
- "id": "e73c91f26e792698781da9d0b426f2100b29eeb43ad93d2fc393c7d98a3f1ddf",
- "kws": {
- "fr": [
- "c\u0027est",
- "être"
- ]
- }
- },
- {
- "nm": "voler",
- "id": "caab2e7f7226add9089377acf66dbfb37c6712fa855259c624046703e3c01ccc",
- "kws": {
- "fr": [
- "voler"
- ]
- }
- },
- {
- "nm": "dollar",
- "id": "30b6bb258b0957a64e3b3f11bea24bf40975eaa2c9a1e7fa93835a697874d53b",
- "kws": {
- "fr": [
- "dollar",
- "dollars",
- "signe dollar"
- ]
- }
- },
- {
- "nm": "violoncelle",
- "id": "4f6abf10125161cdf0109223ef2fc5624b9a87cd39812aea5db8626f84d6401d",
- "kws": {
- "fr": [
- "violoncelle"
- ]
- }
- },
- {
- "nm": "chaussures",
- "id": "b549bd6f0229bb89730deae4bb15f581264542ea3f0a8dda64d176e3c63ee3f0",
- "kws": {
- "fr": [
- "chaussures",
- "bottes de pluie",
- "bottes"
- ]
- }
- },
- {
- "nm": "fée",
- "id": "566538371b895b86dfe09306496f48538440defa52bc2321dd25743344ec3d46",
- "kws": {
- "fr": [
- "fée"
- ]
- }
- },
- {
- "nm": "marchand de légumes",
- "id": "ea4a4e5cbe528e9fe55f0e25b620150744f0879c16fb6372cfbfa7a1408289b8",
- "kws": {
- "fr": [
- "marchand de légumes"
- ]
- }
- },
- {
- "nm": "péroné",
- "id": "815dad79bd9bc19baf358c0e7be72f8d645a8eba3ce776853635779503931c98",
- "kws": {
- "fr": [
- "péroné"
- ]
- }
- },
- {
- "nm": "huître",
- "id": "7d149d69aae9367a3f33fcc7dd394b50b0d50d3e2176ea0edce212c3df3fb75a",
- "kws": {
- "fr": [
- "huître"
- ]
- }
- },
- {
- "nm": "étude",
- "id": "afadd3478c669079cd0042181c2b198d38d0424a947a74091b74f9b21c08edc2",
- "kws": {
- "fr": [
- "étude",
- "étudier"
- ]
- }
- },
- {
- "nm": "boîte à bonbons",
- "id": "7fff28b5d1645a64e19f038547f68e73bf2a0f03e7d58f388310c3730a6e58f8",
- "kws": {
- "fr": [
- "boîte à bonbons",
- "chocolats"
- ]
- }
- },
- {
- "nm": "interdit de boire",
- "id": "8bc7762b49458bbba3eacb872f9f23fc6c6c5c37ad5d6a11ff01f8709555c2a9",
- "kws": {
- "fr": [
- "interdit de boire"
- ]
- }
- },
- {
- "nm": "lombalgie",
- "id": "d2056248bfce58da315e152f052fa23befdda050b1c3b0a4d11edb9af8b2df5b",
- "kws": {
- "fr": [
- "lombalgie",
- "mal de dos"
- ]
- }
- },
- {
- "nm": "bêler",
- "id": "1021dea46ffbd914b2d621b597ceeca3ef7d5f1736691a9dd14e394ebbde90cd",
- "kws": {
- "fr": [
- "bêler"
- ]
- }
- },
- {
- "nm": "prier",
- "id": "09b40ef938355935156b5f61a62e35542ec48f2685f34d09eb23c6a98407ab15",
- "kws": {
- "fr": [
- "prier"
- ]
- }
- },
- {
- "nm": "unité d\u0027emploi, d\u0027égalité, de coopération et de communication",
- "id": "cab3903668146bc7ea781d0e510c1354c4cebb9cd2ccd820d0c7975bfe286e05",
- "kws": {
- "fr": [
- "unité d\u0027emploi, d\u0027égalité, de coopération et de communication",
- "signalétique"
- ]
- }
- },
- {
- "nm": "lecteur vidéo",
- "id": "d187db313d7f8a1627659caa5961bcc9c808046dd07c5f603195d69822f071ec",
- "kws": {
- "fr": [
- "lecteur vidéo"
- ]
- }
- },
- {
- "nm": "trois-quarts",
- "id": "276a4997ad74dada68684cf6f32cb11802e22daf9054f18de09a3151592fe5d4",
- "kws": {
- "fr": [
- "trois-quarts"
- ]
- }
- },
- {
- "nm": "promotion",
- "id": "cb196e53936bede71c94fcfc60ffac366043d2d61e65f767b99b23055d574f0b",
- "kws": {
- "fr": [
- "promotion",
- "impulsion"
- ]
- }
- },
- {
- "nm": "se laver",
- "id": "7c1dd19460cbe75f000f423cf7960e1ece977f70863b093a5f85cf536c56c11a",
- "kws": {
- "fr": [
- "se laver",
- "se rincer",
- "laver le visage",
- "laver"
- ]
- }
- },
- {
- "nm": "pleurer",
- "id": "d25fe096d32b6f9d4db02151480519e09157dc7de9fd1df47457744fa23ef92d",
- "kws": {
- "fr": [
- "pleurer"
- ]
- }
- },
- {
- "nm": "atterrir",
- "id": "c3bdaf6ab0f1ec12ea03fcfbf23e6a9c73b45d08832e9e2878eecb90ed5e5450",
- "kws": {
- "fr": [
- "atterrir",
- "attérrissage"
- ]
- }
- },
- {
- "nm": "nier",
- "id": "f632ac011def868863bb8a605a33b3a27d8a40dbc18d6c5d93a564db6f2b7d64",
- "kws": {
- "fr": [
- "nier",
- "non"
- ]
- }
- },
- {
- "nm": "caméra",
- "id": "203bb875d1749bf99c253843305ffa24d4855c087018b452a3e2b59bfed78e2e",
- "kws": {
- "fr": [
- "caméra",
- "appareil photo"
- ]
- }
- },
- {
- "nm": "phénomène atmosphérique",
- "id": "de621395d60aa667ea0669400ad47d3599a0e9aaf3557e4ea07f5ae3b96fec89",
- "kws": {
- "fr": [
- "phénomène atmosphérique",
- "venteux",
- "vent",
- "souffler félicitation verbe",
- "souffler le vent"
- ]
- }
- },
- {
- "nm": "oui",
- "id": "8b0b79f1c26a1684b5e4aa6c5e257cf1a131ee01253e2c47253d920eadd89a89",
- "kws": {
- "fr": [
- "oui",
- "eux",
- "se",
- "les",
- "leur"
- ]
- }
- },
- {
- "nm": "fer à cheveux",
- "id": "e58cf88617ca6358121839b4d10a0a4ca01d37e057b3ec672d16aa153a0c7763",
- "kws": {
- "fr": [
- "fer à cheveux"
- ]
- }
- },
- {
- "nm": "nettoyer la vitre",
- "id": "3e701b21eec6dbeb6ab33e8fa8208a8d69c208e491d5df3125182d4968a0dabf",
- "kws": {
- "fr": [
- "nettoyer la vitre",
- "nettoyer les vitres",
- "nettoyer",
- "laver les vitres"
- ]
- }
- },
- {
- "nm": "perruque",
- "id": "d8e86970ddb610749839754cf0876ecba75074824e899b7cfacc5b8df7476bd2",
- "kws": {
- "fr": [
- "perruque"
- ]
- }
- },
- {
- "nm": "pays",
- "id": "816cd29f9c1609f2138bc2d0b002860ede931e988ec80df5e76f608b0ac4edd6",
- "kws": {
- "fr": [
- "pays",
- "argentine"
- ]
- }
- },
- {
- "nm": "radis",
- "id": "ec24d533fb21513e786038b530a983f40178772d91f5e4ebdbe9d2bb19908426",
- "kws": {
- "fr": [
- "radis"
- ]
- }
- },
- {
- "nm": "mécanique",
- "id": "4e5553443562c15cf98ee3853bf875026dd93d3d78aebc543e8086f7165ed136",
- "kws": {
- "fr": [
- "mécanique"
- ]
- }
- },
- {
- "nm": "pousser",
- "id": "ff6d8e81a9801feca87180ebc3a15586d747759321c7a002c835805d852e533e",
- "kws": {
- "fr": [
- "pousser"
- ]
- }
- },
- {
- "nm": "utiliser le cahier de communication",
- "id": "62af300de5fbe85f3d319fd15720af3d6b09ffc2244d40be01037757c16aec6d",
- "kws": {
- "fr": [
- "utiliser le cahier de communication"
- ]
- }
- },
- {
- "nm": "salle des fêtes",
- "id": "ed82671a1fbe5e02240ead66c34c403e6d3a3f5de5d3368dd039dee3bd46392c",
- "kws": {
- "fr": [
- "salle des fêtes"
- ]
- }
- },
- {
- "nm": "insulter",
- "id": "cd17592c3b9b6aab89a8d4111c707b173fe534d4b92dc40a315a07bf2058ba62",
- "kws": {
- "fr": [
- "insulter"
- ]
- }
- },
- {
- "nm": "sauter",
- "id": "dd33a92542ad3a85167e877b01307eefbf127afb60650821fb488a8c2b1b5c1e",
- "kws": {
- "fr": [
- "sauter"
- ]
- }
- },
- {
- "nm": "service",
- "id": "f66e51a006711e9647534d093c6f798a73f6d7232fcb35b13219f9ad317a9f93",
- "kws": {
- "fr": [
- "service"
- ]
- }
- },
- {
- "nm": "impair",
- "id": "715cce97888248fdae296af57efce95a36e47e7a5d57a322ac1d70fc5c0324f1",
- "kws": {
- "fr": [
- "impair",
- "sept",
- "numéro"
- ]
- }
- },
- {
- "nm": "œuf dur",
- "id": "023b9699457790f03f632bfa09601e5d7a8b115f1f37d85ff332b9399ff7c582",
- "kws": {
- "fr": [
- "œuf dur"
- ]
- }
- },
- {
- "nm": "coupe",
- "id": "c6c6d1f626d8536d8d7182e112ac985f07f0202f3a3537e3aa9a675a651764b0",
- "kws": {
- "fr": [
- "coupe",
- "couper"
- ]
- }
- },
- {
- "nm": "passoire",
- "id": "b2db62d8651fe3ee06d4f9d1c58f665f56229edf4c3c0aa8a01e77c3851d5f70",
- "kws": {
- "fr": [
- "passoire"
- ]
- }
- },
- {
- "nm": "jumeau",
- "id": "b553bb76f0d816d511990883c1c19ddad99370ab46a995b8c6b13ae2b8b8d4cb",
- "kws": {
- "fr": [
- "jumeau"
- ]
- }
- },
- {
- "nm": "casquette",
- "id": "f433a79a58b4559d1dce93bbd543e8131f0a9162e4748303137852aa494d7cab",
- "kws": {
- "fr": [
- "casquette"
- ]
- }
- },
- {
- "nm": "illuminer",
- "id": "303408b04132d7e5e3dedd1dec056cd63b6a45c19464b9e7c7e31bf3a07d4e43",
- "kws": {
- "fr": [
- "illuminer",
- "lumière de couleur",
- "lumière"
- ]
- }
- },
- {
- "nm": "verre de vin",
- "id": "719d64577b62ebf611d6f50c39d29599a427a05210b0dab3d979878932b99ef8",
- "kws": {
- "fr": [
- "verre de vin",
- "verre"
- ]
- }
- },
- {
- "nm": "cafetière",
- "id": "f2dd1026e6d041db2f414edcfec9e3afaedf2a8ba1c07f52316bd3880d685985",
- "kws": {
- "fr": [
- "cafetière"
- ]
- }
- },
- {
- "nm": "tranche de pain",
- "id": "af848491bc03172d50255d5f89366ca18d7a07b8190fcedc586dcd87fd500117",
- "kws": {
- "fr": [
- "tranche de pain",
- "tranche"
- ]
- }
- },
- {
- "nm": "grue",
- "id": "8b8995cb5e996ae43a54c75d3c82a6c0ca78bff807e7fba5e3bba356fe07a9dd",
- "kws": {
- "fr": [
- "grue"
- ]
- }
- },
- {
- "nm": "perdre",
- "id": "a645ec7a78f98ec9730e6a830eee4135367eb85b471ad95b66891d6c5773a93c",
- "kws": {
- "fr": [
- "perdre"
- ]
- }
- },
- {
- "nm": "se rincer",
- "id": "116a19d9f21dcdeb010f8c20c46ae86b1f5e11464da21d6aa358243feca41279",
- "kws": {
- "fr": [
- "se rincer"
- ]
- }
- },
- {
- "nm": "cintre",
- "id": "ee38d57b49e36a9e6ebf79e7076a04254733766494f6a9cb7348f3f66c99bce9",
- "kws": {
- "fr": [
- "cintre"
- ]
- }
- },
- {
- "nm": "se baigner",
- "id": "ec7bf5b80cc6f28d258851d7f50c56ce819253404330fb5185594f013180bc75",
- "kws": {
- "fr": [
- "se baigner"
- ]
- }
- },
- {
- "nm": "cuisse de poulet",
- "id": "c009ed58f8912af605617fa93b6dd8e38f0898ea48380045cc1725f71805a695",
- "kws": {
- "fr": [
- "cuisse de poulet",
- "blanc"
- ]
- }
- },
- {
- "nm": "empiler",
- "id": "e3dc2b02117353618de9768e6fd7094028874b5b15787bfe5310037dd1a2d218",
- "kws": {
- "fr": [
- "empiler",
- "entasser"
- ]
- }
- },
- {
- "nm": "celles-ci",
- "id": "9cb1df28d7a203ee7d69832c00cf3070639f3ddcec7f4bf58e7a6bc866186daf",
- "kws": {
- "fr": [
- "celles-ci",
- "ceux-ci"
- ]
- }
- },
- {
- "nm": "étiquette",
- "id": "fb70d89a0a221b407c673f2907196cf9932ee92b3fde9470ca9a7339b47b3ea3",
- "kws": {
- "fr": [
- "étiquette"
- ]
- }
- },
- {
- "nm": "servir",
- "id": "ae455b89444b876aa326621d17a09f49d12c369b871bb785fb18315f526a2e49",
- "kws": {
- "fr": [
- "servir",
- "s\u0027occuper"
- ]
- }
- },
- {
- "nm": "département de teruel",
- "id": "8ec24d9b7cdbd366959da3579a8899f395067eb80da73dada79b18149334b299",
- "kws": {
- "fr": [
- "département de teruel",
- "teruel province",
- "teruel"
- ]
- }
- },
- {
- "nm": "traces de pas",
- "id": "510a9e018a4c7ad7747815dc7854ecba2037d9795449620185dbfa34da0a0eec",
- "kws": {
- "fr": [
- "traces de pas",
- "traces"
- ]
- }
- },
- {
- "nm": "vieux",
- "id": "5cf9551b4716b63ddcbf1fe43cc4baa8d12f70c8000d077ec540eee949ce95c1",
- "kws": {
- "fr": [
- "vieux",
- "grand-père"
- ]
- }
- },
- {
- "nm": "décorer",
- "id": "711f1467a48d7a04ae0e760651128ae287a5a9eccf5f02e250bb9a76619fa11f",
- "kws": {
- "fr": [
- "décorer",
- "orner"
- ]
- }
- },
- {
- "nm": "sol",
- "id": "4a11f11d47fb50da3fee885d4d79a776a565454a72559ddbcdcbbb4c3f0cdb36",
- "kws": {
- "fr": [
- "sol"
- ]
- }
- },
- {
- "nm": "plusieurs",
- "id": "f7c4b98488c46cc06e6b3517001834c84c85e2453da1971bdd820cb37cb27f1f",
- "kws": {
- "fr": [
- "plusieurs",
- "quelques"
- ]
- }
- },
- {
- "nm": "chasse-neige",
- "id": "ec3c4f2060bfc1e2df3069ff33525f7f3933b69e13b282ab60fa9921a77dabeb",
- "kws": {
- "fr": [
- "chasse-neige"
- ]
- }
- },
- {
- "nm": "friands",
- "id": "5ed325cc92a9ba10ef699e885ef23b57ba115d5be7c38b892dadfb198b1dd650",
- "kws": {
- "fr": [
- "friands"
- ]
- }
- },
- {
- "nm": "cornet",
- "id": "4314b32e908b89b7b1762ac4bccfc8cbdcee0ba882e786c97d901b66875435b3",
- "kws": {
- "fr": [
- "cornet"
- ]
- }
- },
- {
- "nm": "flexible",
- "id": "3afcad87a0e00a6134df6ebb45a91e275ab36a30fd78c097842d9f20b188792e",
- "kws": {
- "fr": [
- "flexible"
- ]
- }
- },
- {
- "nm": "rhume",
- "id": "274d9f8ce1d3bac5cee3cc2a86502add2a9e3c5f5d0eebbf36d0c6da0f7f11f2",
- "kws": {
- "fr": [
- "rhume"
- ]
- }
- },
- {
- "nm": "canoéiste",
- "id": "e861109519981ee60f61244be5090bc00ec6281da59b11d3fffdb462b92e7d02",
- "kws": {
- "fr": [
- "canoéiste"
- ]
- }
- },
- {
- "nm": "nature",
- "id": "2f18162141df248b893a655e76619f25565bed4a6312acc9855f6edceae00e73",
- "kws": {
- "fr": [
- "nature",
- "biosphère"
- ]
- }
- },
- {
- "nm": "visiter",
- "id": "174a53bda8f80605991f9a97eb04d46e9a308a62a95881db97175fa22555a2ec",
- "kws": {
- "fr": [
- "visiter",
- "visite"
- ]
- }
- },
- {
- "nm": "magasins",
- "id": "f1dde412a65fe72c92b26c1df306dd4984a67bbb7498a77b6290934e87a757c6",
- "kws": {
- "fr": [
- "magasins"
- ]
- }
- },
- {
- "nm": "fuerteventura",
- "id": "7fbd33f422d474cec14614e4a7567911d59821de2610b0b7f897a8ef721020a4",
- "kws": {
- "fr": [
- "fuerteventura"
- ]
- }
- },
- {
- "nm": "être allongé",
- "id": "4639187efe03b3fdbf196f5866854103d26104feebc15674fe1e23dde8498727",
- "kws": {
- "fr": [
- "être allongé"
- ]
- }
- },
- {
- "nm": "bouée",
- "id": "5eccd1bf46ff4d5cdc8a96afac8a6525205f71c4fca0ffbadd44046ebbea4701",
- "kws": {
- "fr": [
- "bouée",
- "frite de piscine",
- "frite"
- ]
- }
- },
- {
- "nm": "bulgarie",
- "id": "fac6d5755cc3b343018f698ec68bb8c906e7caeb59774af48543a65c03ff3d5a",
- "kws": {
- "fr": [
- "bulgarie",
- "pays"
- ]
- }
- },
- {
- "nm": "banque",
- "id": "dd3b078951c63207aac956cc4873f3daeb333f2b3b799abd6438ff7eb4b9d74b",
- "kws": {
- "fr": [
- "banque"
- ]
- }
- },
- {
- "nm": "gommettes",
- "id": "3e7cf1ca9add95c7ad18475bcbb57b799c562cde779040e4882490e2f892fccb",
- "kws": {
- "fr": [
- "gommettes"
- ]
- }
- },
- {
- "nm": "rincer la bouche",
- "id": "3a6d8017c24d9a308b9b974592dbeeb1821da4a080aa421d1e4a2ce9bd53d080",
- "kws": {
- "fr": [
- "rincer la bouche",
- "rincer"
- ]
- }
- },
- {
- "nm": "douleur de poitrine",
- "id": "7953e6416ac220ce8be45b3dd6cc85f80415e8c96f42d00faa11196a6de1ee4f",
- "kws": {
- "fr": [
- "douleur de poitrine"
- ]
- }
- },
- {
- "nm": "sécher les cheveux",
- "id": "0c09a099fdda616cd3427ae05896af9ba886356fca89a3505aaf96ad9d80bd3a",
- "kws": {
- "fr": [
- "sécher les cheveux",
- "sécher"
- ]
- }
- },
- {
- "nm": "colle",
- "id": "5075a8e2b21c7ffab557443648eea832a27ab649d4deefda62dbd20ac2b6dc4c",
- "kws": {
- "fr": [
- "colle"
- ]
- }
- },
- {
- "nm": "otarie",
- "id": "d3eb84b06a56a1bd85b97eda240d6dc7b270ff22308aaff30a8b67c417bf420c",
- "kws": {
- "fr": [
- "otarie"
- ]
- }
- },
- {
- "nm": "sirop",
- "id": "490bb2292e7760a7d4245240b9ad112848753f70c80bc6af24bca4d1c0980eec",
- "kws": {
- "fr": [
- "sirop"
- ]
- }
- },
- {
- "nm": "trois heures pile",
- "id": "a14e094868c3cc4566375189662a8e63432215cbca9be392b383768e0ab7e401",
- "kws": {
- "fr": [
- "trois heures pile",
- "trois heures"
- ]
- }
- },
- {
- "nm": "tour eiffel",
- "id": "f853d8e7dbbf85df6ff8502a36d86a6e52073fabdffc4efac749604edce38e18",
- "kws": {
- "fr": [
- "tour eiffel"
- ]
- }
- },
- {
- "nm": "renverser",
- "id": "c553e5e5caf213f0d54949fcfd5a59ee7de2c4e0092f255bc5fe94462b02719b",
- "kws": {
- "fr": [
- "renverser"
- ]
- }
- },
- {
- "nm": "présente",
- "id": "29ff31a036e132c2e546afcb83c7d6865cd2966cfc5e649ceb8e7728281417d5",
- "kws": {
- "fr": [
- "présente",
- "actuel"
- ]
- }
- },
- {
- "nm": "ustensile de cuisine",
- "id": "dfd1ea180d1c5688a8d36c648ff56cb61d0f39ee7f5e1e07a8c4552a86bf3e5d",
- "kws": {
- "fr": [
- "ustensile de cuisine",
- "ciseaux de cuisine",
- "ciseaux"
- ]
- }
- },
- {
- "nm": "bandeau",
- "id": "51e9a813d115f25bf92d984894ac7b91d176d4ae9851493d8c3d0085933fda41",
- "kws": {
- "fr": [
- "bandeau"
- ]
- }
- },
- {
- "nm": "magasin de bonbons",
- "id": "a338ed959676d4aa16bb9b17a93c130b805d730e021fc0ca50b4f682c86c911c",
- "kws": {
- "fr": [
- "magasin de bonbons"
- ]
- }
- },
- {
- "nm": "oasis",
- "id": "0ee29030f67fd2f25f4146d6947aa57c00ba3201facaf0c9d27262c66d19d001",
- "kws": {
- "fr": [
- "oasis"
- ]
- }
- },
- {
- "nm": "gel",
- "id": "c9cab69ef91381655c132ad3dcb46ec6f1b39d9e3d1b1495c0968447613da2f7",
- "kws": {
- "fr": [
- "gel"
- ]
- }
- },
- {
- "nm": "défenseur",
- "id": "e7df5c07b76700a4c02d4af3963bf355896f993a1709396337c3da6e19a4853e",
- "kws": {
- "fr": [
- "défenseur",
- "avocate"
- ]
- }
- },
- {
- "nm": "refuser",
- "id": "f16e05a07bbd54edaf5aeb045232fd759e14ac69e66fc2ede9cb0c09295932eb",
- "kws": {
- "fr": [
- "refuser"
- ]
- }
- },
- {
- "nm": "donner",
- "id": "bb61044b39483d893398496388eb211bd035d45cb0920ac635929315be55c6aa",
- "kws": {
- "fr": [
- "donner",
- "offrir",
- "livrer"
- ]
- }
- },
- {
- "nm": "cavernicole",
- "id": "19b7638c13f6abde03b91f2c5312e5497c3471ddfa9a685f1dbb014c7c72af97",
- "kws": {
- "fr": [
- "cavernicole",
- "homme des cavernes"
- ]
- }
- },
- {
- "nm": "q",
- "id": "831640825f7af5b3c2af5056d66e9c1d644e4b3bcce4a7cac47b9a167ba03232",
- "kws": {
- "fr": [
- "q",
- "lettre"
- ]
- }
- },
- {
- "nm": "minaret",
- "id": "8b4c8c99644b9b6afcd15bc8c38e997c182e2767e8e1c65c4ac34dd7071be30d",
- "kws": {
- "fr": [
- "minaret"
- ]
- }
- },
- {
- "nm": "organes",
- "id": "c1cba997d47faa74ce2592d332d15f90047c78ddb49ea053309bae3093275178",
- "kws": {
- "fr": [
- "organes"
- ]
- }
- },
- {
- "nm": "w",
- "id": "e273e3c169b896ea48b83d4ba7dd107ddf867f0611a7e81678ca7ee05c1d7770",
- "kws": {
- "fr": [
- "w",
- "lettre"
- ]
- }
- },
- {
- "nm": "amende",
- "id": "3894ecff6593a5f073f094d771da3cdde0cdea3ddee1ae20000112aab3ec9695",
- "kws": {
- "fr": [
- "amende",
- "mettre une amende"
- ]
- }
- },
- {
- "nm": "iglou",
- "id": "c801807b297b19b051fbb2785cfedd1bbf3a09f58c0df1496904b5c86f7a7083",
- "kws": {
- "fr": [
- "iglou"
- ]
- }
- },
- {
- "nm": "énergie",
- "id": "2cb5850b21e493986f69177e670c1628df9d2c43220eb7e800d792df22cdca4e",
- "kws": {
- "fr": [
- "énergie"
- ]
- }
- },
- {
- "nm": "dernière",
- "id": "e9dcd3afa605822a357f51deca198b033772964f553bc1ae0638b90fc98f0db9",
- "kws": {
- "fr": [
- "dernière"
- ]
- }
- },
- {
- "nm": "livre ouvert",
- "id": "0ea80d2fd87018d56ea4e3edfd69f9c11ea74818c4fa3a3b0dde3a2b0d14d7c7",
- "kws": {
- "fr": [
- "livre ouvert",
- "livre"
- ]
- }
- },
- {
- "nm": "cadenas",
- "id": "276e73b466fb628462ad0fe8d46693354ffcb53df51e6f401b54916ff778fa69",
- "kws": {
- "fr": [
- "cadenas"
- ]
- }
- },
- {
- "nm": "tibia",
- "id": "b4796530b7d8f0c662bf650f3add84d5d02d3a244f2e44b060387a88d18e64c1",
- "kws": {
- "fr": [
- "tibia"
- ]
- }
- },
- {
- "nm": "le",
- "id": "d93b7f54c301dd7bffce908ddf77251f6d2a81b23921029e17fade5c63e23ce9",
- "kws": {
- "fr": [
- "le"
- ]
- }
- },
- {
- "nm": "cornemuse typique d\u0027aragon",
- "id": "b1a833191de7c66ffb085c8e4badda85abe90a9f0d39f74fdcab1ce222248802",
- "kws": {
- "fr": [
- "cornemuse typique d\u0027aragon",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "vexé",
- "id": "ac2207ac537f0a085abbbfefd97e13ecf13cd9b55cdb5f48f0198dd9d54b7abe",
- "kws": {
- "fr": [
- "vexé",
- "colère",
- "se facher",
- "se fâcher",
- "irriter",
- "irrité",
- "furieux",
- "fâché",
- "mettre en colère"
- ]
- }
- },
- {
- "nm": "laver les assiettes",
- "id": "95baeeda8cbc2be19b7509c6cc40998d31521fec0dc0858ee57015acd451db72",
- "kws": {
- "fr": [
- "laver les assiettes",
- "laver",
- "frotter"
- ]
- }
- },
- {
- "nm": "bouchon",
- "id": "9ea601dedd4cd3defd53c537589ce84a7f6c2693192f4589093d4c89d733cf53",
- "kws": {
- "fr": [
- "bouchon"
- ]
- }
- },
- {
- "nm": "se changer",
- "id": "73253c311961568b47021ef5c7fe7cbbca906b580043c203c639a25546764c9c",
- "kws": {
- "fr": [
- "se changer",
- "s\u0027habiller",
- "habiller"
- ]
- }
- },
- {
- "nm": "trottoir",
- "id": "2bb67d86203a707267e958dc6d4c0a86d0eafebc05b659cf1def81114686ab45",
- "kws": {
- "fr": [
- "trottoir"
- ]
- }
- },
- {
- "nm": "sac",
- "id": "faad1e8a9f2a2e4e1983625b5a41e8d91cd426e512af11f6782daf0ebc951cb4",
- "kws": {
- "fr": [
- "sac"
- ]
- }
- },
- {
- "nm": "centimes",
- "id": "0e834be75c28f00ce033ec052a2d51234a5d9270edc189063cb7c681045931b7",
- "kws": {
- "fr": [
- "centimes",
- "5 centimes",
- "argent"
- ]
- }
- },
- {
- "nm": "cadeau",
- "id": "c6a3b9acba7113387ecf481c13cecbed8638ef448e26d4436911f99db0046a2c",
- "kws": {
- "fr": [
- "cadeau"
- ]
- }
- },
- {
- "nm": "bourse",
- "id": "92e627dabb07e7a4634970097b1012b81fdaef894d0cf332864d21e0014488e3",
- "kws": {
- "fr": [
- "bourse"
- ]
- }
- },
- {
- "nm": "vallée",
- "id": "09148fce5a79b7136d7cc026087becf2b69979a4307e8005c467bc11e2df4bfd",
- "kws": {
- "fr": [
- "vallée"
- ]
- }
- },
- {
- "nm": "où allons-nous",
- "id": "0c905329978a2e7c297f302ec69b7839d29c67c8a0a574c16e6e1a03831400ad",
- "kws": {
- "fr": [
- "où allons-nous",
- "diriger",
- "aller"
- ]
- }
- },
- {
- "nm": "hôtesse",
- "id": "83cc030813a50ce33cc6147243a88f1c3240c35f9427f82217e48e97bfb7ef1f",
- "kws": {
- "fr": [
- "hôtesse"
- ]
- }
- },
- {
- "nm": "fruit",
- "id": "bd06f2192f8d5167a4577f86a2604a927458e3e1979c9f612e745a1e6d665c6e",
- "kws": {
- "fr": [
- "fruit",
- "fruits"
- ]
- }
- },
- {
- "nm": "confondre",
- "id": "384d232ed43a27d2793e28688f5a3907f1ada382576ebac537689c34ed47cc32",
- "kws": {
- "fr": [
- "confondre",
- "confus",
- "s\u0027être trompé"
- ]
- }
- },
- {
- "nm": "adaptation",
- "id": "52b84ccb3cc50d58401738da16d5882952024d782c940ef7d332af9e80a499ea",
- "kws": {
- "fr": [
- "adaptation"
- ]
- }
- },
- {
- "nm": "essuyer le visage",
- "id": "ac3c72b3d44bff87b55dcc3cb921210098cbbc947d048b9e65796549b8fa5ba0",
- "kws": {
- "fr": [
- "essuyer le visage",
- "sécher"
- ]
- }
- },
- {
- "nm": "foulard",
- "id": "461084ac05ebeb5d41421a10ff5c3b4e6de4c59c30aa881a5e02e0966f32f1d2",
- "kws": {
- "fr": [
- "foulard"
- ]
- }
- },
- {
- "nm": "centre d\u0027escalade",
- "id": "609810a21764ae1f6e485e6e68a1b98829a422ceea2f808b3628c96ba8945825",
- "kws": {
- "fr": [
- "centre d\u0027escalade"
- ]
- }
- },
- {
- "nm": "nièce",
- "id": "94170a0330c963f066e4121f489545c19ec992f705592346c8223df754e69212",
- "kws": {
- "fr": [
- "nièce"
- ]
- }
- },
- {
- "nm": "déshabiller",
- "id": "74609c101de2086497c57f7db3f809c307d7180c6d68751c8401dc0c9589c66e",
- "kws": {
- "fr": [
- "déshabiller",
- "dévêtir",
- "se déshabiller"
- ]
- }
- },
- {
- "nm": "fax",
- "id": "6bd98946acb50fb071d3f6ef6f677eab992b38bf2b90c4c5e7fa1af987529755",
- "kws": {
- "fr": [
- "fax"
- ]
- }
- },
- {
- "nm": "moi non plus!",
- "id": "bc9e2e9a6c8a67a0ecc30ad96d5448319be0f03938ea78e034d4182ee217fe91",
- "kws": {
- "fr": [
- "moi non plus!"
- ]
- }
- },
- {
- "nm": "billet",
- "id": "98348f3594682c251d28b01d9f0f976ba4811b5daa9bdcf0bf863d8ffd98652c",
- "kws": {
- "fr": [
- "billet"
- ]
- }
- },
- {
- "nm": "macédoine",
- "id": "0cb79649f3984d08e93517627a70d231eca83708ba238a62fb885c1a7d2cf6ca",
- "kws": {
- "fr": [
- "macédoine"
- ]
- }
- },
- {
- "nm": "loin",
- "id": "8079082f4583c1e946121aa5154d778e22e21af4692dad929830387f4397a72f",
- "kws": {
- "fr": [
- "loin"
- ]
- }
- },
- {
- "nm": "chambres",
- "id": "a03978d7afa185cd06d70d665de6afe5e17f2776b727fcab8479c8e24bc7301c",
- "kws": {
- "fr": [
- "chambres",
- "cuisines",
- "signalétique"
- ]
- }
- },
- {
- "nm": "torticolis",
- "id": "85ae74cf65b4a0d87ea10d1e6bae139ce924f5725fbed369f8b47c92a3007de5",
- "kws": {
- "fr": [
- "torticolis"
- ]
- }
- },
- {
- "nm": "arroser",
- "id": "d175a24ab95c6cbc9375c47d118b4035316fbf82a19804fb5374bfa43bad5ab1",
- "kws": {
- "fr": [
- "arroser"
- ]
- }
- },
- {
- "nm": "obéir",
- "id": "62d19cc7023c2613ccbb0e13b7a3c7a21e464274a4009a82d42a705bd1bdc792",
- "kws": {
- "fr": [
- "obéir",
- "obéissant"
- ]
- }
- },
- {
- "nm": "frapper des pieds",
- "id": "6d6fdf76a9d480230d2aab4a8a7140b0b9b3ba67e0f1000f10853380f16fe2c2",
- "kws": {
- "fr": [
- "frapper des pieds"
- ]
- }
- },
- {
- "nm": "écrivaine",
- "id": "e879169dd9c6a7ca3b5e5184a07f5c923060b5cd27fd0fac4b79170aba59a0be",
- "kws": {
- "fr": [
- "écrivaine"
- ]
- }
- },
- {
- "nm": "grèce",
- "id": "4a110a2684790ecd7229a558cba80b8242e194eab317c1adb261cd53f1d7818b",
- "kws": {
- "fr": [
- "grèce"
- ]
- }
- },
- {
- "nm": "pièce à chaudières",
- "id": "da64cacf1f227d517c3d8ecfe26dc1a089da0ad9907b691816f50cfe35170a12",
- "kws": {
- "fr": [
- "pièce à chaudières",
- "pièce",
- "signalétique"
- ]
- }
- },
- {
- "nm": "abdominal",
- "id": "d60a48770d30d868c490d9945c065e17b0095a8f1ad37cc016b26ac8a5141c8d",
- "kws": {
- "fr": [
- "abdominal",
- "abdominaux"
- ]
- }
- },
- {
- "nm": "muscle",
- "id": "298f81f2b5461725ab4e759b06a51ba921cb17ed0344da765478b6ba1c48401b",
- "kws": {
- "fr": [
- "muscle"
- ]
- }
- },
- {
- "nm": "pays",
- "id": "e1f9a79f9c52f3b4e9692f50febab8125dd084ee3f97a3b08848cd91981b28ee",
- "kws": {
- "fr": [
- "pays",
- "royaume-uni"
- ]
- }
- },
- {
- "nm": "recycler",
- "id": "99b717ee0f28a6c8a51afc69207ee9159ae0ad784fb1bb855b97c50c1d7cf426",
- "kws": {
- "fr": [
- "recycler"
- ]
- }
- },
- {
- "nm": "sorcier",
- "id": "f98539d97c968fb726f72c20b31d5c3e1cbc02c8f3107457543981e97321f591",
- "kws": {
- "fr": [
- "sorcier"
- ]
- }
- },
- {
- "nm": "blanchisserie",
- "id": "c31444bc129b3265a93bcad37388ddf8c3ef18a98098c165ce1dc36205851cd9",
- "kws": {
- "fr": [
- "blanchisserie"
- ]
- }
- },
- {
- "nm": "coiffer",
- "id": "a9d787e6df754cccb154b82eaf3dd0fdf2b27038c33b5cd1edc25923077d7818",
- "kws": {
- "fr": [
- "coiffer",
- "se coiffer"
- ]
- }
- },
- {
- "nm": "sourde",
- "id": "10e7a4fcd8d8539c1d158bbe9809c9c07d1aea1acfa61998841444de474039e7",
- "kws": {
- "fr": [
- "sourde"
- ]
- }
- },
- {
- "nm": "jouer au golf",
- "id": "22a526f7c50b52d57d40723a782f640463a099f37ab4dbb50fcd66bab7e208d2",
- "kws": {
- "fr": [
- "jouer au golf"
- ]
- }
- },
- {
- "nm": "remonter sa jupe",
- "id": "a1e438fb2f61450da461f518efadb9e163e8951211058449cbde40a4d6a6fd66",
- "kws": {
- "fr": [
- "remonter sa jupe",
- "remonter"
- ]
- }
- },
- {
- "nm": "chaîne de montagne",
- "id": "1edfb0c4cf11a1865e8feb6af421552697ee08494cd759a3ba744a06058b77d2",
- "kws": {
- "fr": [
- "chaîne de montagne",
- "montagnes"
- ]
- }
- },
- {
- "nm": "se sucer le doigt",
- "id": "a9ef652a9cded27f077334a6abebdd2a3604b073f093bd5ee1f82409b6b3d8d9",
- "kws": {
- "fr": [
- "se sucer le doigt"
- ]
- }
- },
- {
- "nm": "euros",
- "id": "0b480c81a4b141062a0dc6fbe7a6ba219f90df15db2b48b642a99c7aade7e79f",
- "kws": {
- "fr": [
- "euros",
- "billet",
- "50 euros",
- "argent"
- ]
- }
- },
- {
- "nm": "personne",
- "id": "5a74c0a7b6bdea4a95a9911bb09ca48fb7a9468a60a076395bb2a289a51eebeb",
- "kws": {
- "fr": [
- "personne",
- "étranger",
- "homme",
- "habillé"
- ]
- }
- },
- {
- "nm": "iris",
- "id": "a515eedd1dff6321b85d0f83e65e46d6cda7285c74414b8e4480916782935f82",
- "kws": {
- "fr": [
- "iris"
- ]
- }
- },
- {
- "nm": "péter",
- "id": "779148d7b8311d47d57075f8be4b841388dbfa1e408e0772402056a166e3c8f4",
- "kws": {
- "fr": [
- "péter",
- "se perdre",
- "avoir des vents"
- ]
- }
- },
- {
- "nm": "béquille",
- "id": "5a715ebfae11d7bb2740513660ddb2712348786ca1a6feebb28c62119d4885d3",
- "kws": {
- "fr": [
- "béquille",
- "produit de soutien"
- ]
- }
- },
- {
- "nm": "poubelle",
- "id": "892f979083d9dca3559faac0c80fad1c0d0e179b8da4a929d05896982c61254f",
- "kws": {
- "fr": [
- "poubelle",
- "sceau"
- ]
- }
- },
- {
- "nm": "pont de piedra",
- "id": "b051325441505752053e362c0b3496618af749827b9e2e2d1d575b3303fd7e81",
- "kws": {
- "fr": [
- "pont de piedra",
- "pont"
- ]
- }
- },
- {
- "nm": "bonnet du père noël",
- "id": "3405b7ec4cde7e6889b6d15a7840abe0e4ac1ad38afee31d695b8cf71beae789",
- "kws": {
- "fr": [
- "bonnet du père noël",
- "bonnet"
- ]
- }
- },
- {
- "nm": "chaussures de football",
- "id": "c3f4784b8e8d167338b0f480885882a50e361a1cf3f0278e6f41459b1da53276",
- "kws": {
- "fr": [
- "chaussures de football",
- "bottes"
- ]
- }
- },
- {
- "nm": "cheveu",
- "id": "a5b40cc1d75bc5e20680f2871500cc3d8d63bc0f47db64f246d4d14cc31f545c",
- "kws": {
- "fr": [
- "cheveu"
- ]
- }
- },
- {
- "nm": "miroir",
- "id": "cce2904c3d011c6865fd07814781902f0c56cd624d0e8f87ad533d1fdd61696d",
- "kws": {
- "fr": [
- "miroir"
- ]
- }
- },
- {
- "nm": "pistache",
- "id": "bf05bc2b4a2dbe71d61ef9b9d40bf69f3e67516f0856e35fdf1c9d4c54fc0ad6",
- "kws": {
- "fr": [
- "pistache"
- ]
- }
- },
- {
- "nm": "trousse de secours",
- "id": "ba0ed627ea1aaa1b7c948a195f858192cddea64205bb43a1fd86151da02c962c",
- "kws": {
- "fr": [
- "trousse de secours"
- ]
- }
- },
- {
- "nm": "euros",
- "id": "a60cb3a543d429f92e80a3bcaa1d69c60ea5182c406a6cc0084d208aabd92a51",
- "kws": {
- "fr": [
- "euros",
- "billet",
- "500 euros",
- "argent"
- ]
- }
- },
- {
- "nm": "amusant",
- "id": "cb9114a2073fef7c81b4181feb36cebae9ae11b1815c76544f5bd8fa9a67001b",
- "kws": {
- "fr": [
- "amusant"
- ]
- }
- },
- {
- "nm": "vendeuse",
- "id": "ac34e1139e828cab777c89a90b8db5dda9a7ee2067ee68289dfdd80b47797690",
- "kws": {
- "fr": [
- "vendeuse",
- "poissonière"
- ]
- }
- },
- {
- "nm": "tante",
- "id": "84b7f861f4885384936860b7275af16a5dc05c17de151c164a3185655aecfb88",
- "kws": {
- "fr": [
- "tante"
- ]
- }
- },
- {
- "nm": "chasser",
- "id": "70ae11c7c08457c7253dd1a4dbc4e0e1a4db8cee9930b6994a2ff59ca13ac9a3",
- "kws": {
- "fr": [
- "chasser"
- ]
- }
- },
- {
- "nm": "fil dentaire",
- "id": "340652c2bca424d507c281a1c3702304a535f5ec6985c0cf59d76303ccc218a8",
- "kws": {
- "fr": [
- "fil dentaire"
- ]
- }
- },
- {
- "nm": "aiguiseur",
- "id": "510022b1e6933ef987191cbb7afecd68047dd7d5e1b29b67dee5cf2684f0822a",
- "kws": {
- "fr": [
- "aiguiseur"
- ]
- }
- },
- {
- "nm": "pentagone",
- "id": "b07762f60e88c355f2dbd132b7628c9c6db966a642a83bf889d52529052323ed",
- "kws": {
- "fr": [
- "pentagone"
- ]
- }
- },
- {
- "nm": "salle à manger",
- "id": "2e840cbe777729fb88d0ccdf3557d0ea99b1a337287a0468971f439c62f762ce",
- "kws": {
- "fr": [
- "salle à manger"
- ]
- }
- },
- {
- "nm": "pinocchio",
- "id": "bd08d7d038f4f33332e5dd70910f250f61f3aff3475c322c26e11151ed20679b",
- "kws": {
- "fr": [
- "pinocchio"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "794b7fdd6da1169a768b84bc9aa31893801132cb4e212b9f482ba9fa97ab4d82",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains aux hanches",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "a75d195d616c5660b74e13033519f2eba8c8e5bf2d6731e26f1cdc0fe46b60a6",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains sur la tête",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "vendeur",
- "id": "ad30cb5cbccc632235b533f615ec622774a1728c2e47cab0b3ca0804896fee88",
- "kws": {
- "fr": [
- "vendeur",
- "coffret à bijoux"
- ]
- }
- },
- {
- "nm": "kiosque",
- "id": "1ce5f9dc2328d2d4ce135305e76fcda4e7a3ca162e0ff07e7d1ef59fd36990a4",
- "kws": {
- "fr": [
- "kiosque"
- ]
- }
- },
- {
- "nm": "paupière",
- "id": "90c8e537d55cb49a9c2034faaffa267945cb836ae8a9f54c961aa38df9770c23",
- "kws": {
- "fr": [
- "paupière"
- ]
- }
- },
- {
- "nm": "sandales",
- "id": "a25d72985879dece8610887c5ed06cb3e43bfc60dbe2c48a721708e510933d34",
- "kws": {
- "fr": [
- "sandales"
- ]
- }
- },
- {
- "nm": "néfertiti",
- "id": "fc9d70e643002a6e156f5ad887576ad333110dd8531fc5a56cbb887f76facd6f",
- "kws": {
- "fr": [
- "néfertiti"
- ]
- }
- },
- {
- "nm": "sentir",
- "id": "f8db8adaf2f0e6c717837dc783f8a3285147ee70e966ff4fbcc71e001249d53a",
- "kws": {
- "fr": [
- "sentir",
- "flairer"
- ]
- }
- },
- {
- "nm": "paresseux",
- "id": "e421fba656bc805bd830efa58e11b3f688faadf32f15b37c43b62d8947bf8ff1",
- "kws": {
- "fr": [
- "paresseux",
- "faible"
- ]
- }
- },
- {
- "nm": "meute",
- "id": "73112dbe68df1ff1b51a7f8aba6b284952472af60e04adca69fbccae0ceab13a",
- "kws": {
- "fr": [
- "meute"
- ]
- }
- },
- {
- "nm": "transexualité",
- "id": "df98e85f6d8590505fac29abf4b2f331e88e7707a73325c8a538cf64988f72d0",
- "kws": {
- "fr": [
- "transexualité",
- "transexuel"
- ]
- }
- },
- {
- "nm": "mèche",
- "id": "8be3f4aeaa5b7a432101d47a75413cb4de2d15fd46a648f6f849750ae9f9ad89",
- "kws": {
- "fr": [
- "mèche"
- ]
- }
- },
- {
- "nm": "faire caca",
- "id": "2e8cb6dcf34c3469dfdb58db61732eafe494a0e827c2aa2b3d8967511df8ff10",
- "kws": {
- "fr": [
- "faire caca"
- ]
- }
- },
- {
- "nm": "toréro",
- "id": "66eb7c17bfbadf6c1e9d73b5cd8c5cecad7f9644871ba7510987391149104c97",
- "kws": {
- "fr": [
- "toréro"
- ]
- }
- },
- {
- "nm": "burins",
- "id": "f15b18607d71dc3b4354dfbce2622e9883680816a3fab12243c1de4f6f8c038d",
- "kws": {
- "fr": [
- "burins"
- ]
- }
- },
- {
- "nm": "trisomie 21",
- "id": "91c1cb1a35562ca2a150db300a4de5f5a55fa2a3c159f47a51ade76784a75c81",
- "kws": {
- "fr": [
- "trisomie 21"
- ]
- }
- },
- {
- "nm": "bouée",
- "id": "210cd926aeeaff2d503e02cf461838c16d95d7d13cacfcb717cccbe29ff76012",
- "kws": {
- "fr": [
- "bouée"
- ]
- }
- },
- {
- "nm": "omnivore",
- "id": "60ce51384fd73ff99657a43d58b6b6fdceecf44f2498ed428ab9b9dd93a5cbb0",
- "kws": {
- "fr": [
- "omnivore"
- ]
- }
- },
- {
- "nm": "recensement municipal",
- "id": "4a615dbf1adb5ef2e6be1a94c58c5984f88e54b5abb3736655dfcf99a507fd5c",
- "kws": {
- "fr": [
- "recensement municipal"
- ]
- }
- },
- {
- "nm": "dessin",
- "id": "5f9ec438e456fcd8e45267ae3adba59f0b5c74dfb60714de273cded4f7dc8221",
- "kws": {
- "fr": [
- "dessin"
- ]
- }
- },
- {
- "nm": "kiwi",
- "id": "02d5eefc78b4dec81d8dc8f6f1e087da890670f1c613bebcdfa3f30256fe2033",
- "kws": {
- "fr": [
- "kiwi",
- "kiwis"
- ]
- }
- },
- {
- "nm": "fille",
- "id": "d4fd87dc6dedf4a40fac28b209234dad536b57931d72844c4937a4ea93ae2cf3",
- "kws": {
- "fr": [
- "fille"
- ]
- }
- },
- {
- "nm": "tante",
- "id": "eba0098fc6fde0cddefa6ce735c5f8ddf5b5fb416967ebd7fed7a8241a3119da",
- "kws": {
- "fr": [
- "tante"
- ]
- }
- },
- {
- "nm": "vendeuse",
- "id": "2065b2e4cdbb07c08463d8c58feb5bbfc463237367248d1a4fb5f79aa6b59dc6",
- "kws": {
- "fr": [
- "vendeuse",
- "bijoutière"
- ]
- }
- },
- {
- "nm": "avion de tourisme",
- "id": "574d7fd243ffca8fe9ff93b96c216809f91ca7fb7be7a1483fc4bdf5dcbf0880",
- "kws": {
- "fr": [
- "avion de tourisme",
- "aéronef"
- ]
- }
- },
- {
- "nm": "échapper",
- "id": "60a5f953502719d9bd0d486c1f84498b01d88c5b576031f0b6b4c5bdbac2849a",
- "kws": {
- "fr": [
- "échapper",
- "s\u0027échapper"
- ]
- }
- },
- {
- "nm": "langoustine",
- "id": "a113ad39735b4f487bea3a39dfacd454d3f0d858c948bfc1f0d52d56263968c5",
- "kws": {
- "fr": [
- "langoustine"
- ]
- }
- },
- {
- "nm": "cercle",
- "id": "f27160589e86f75cb73663e13228bb9977980636bec7437e2945a7cfbfa4b8b0",
- "kws": {
- "fr": [
- "cercle"
- ]
- }
- },
- {
- "nm": "mécanicienne",
- "id": "426bdd9110fb967c22154c9900b5857bcb9a1a2e8c0c3199c81e6faa0e2a8fa3",
- "kws": {
- "fr": [
- "mécanicienne"
- ]
- }
- },
- {
- "nm": "écouter de la musique",
- "id": "c184902665a3dd2353b3db95b376c2cca96c7972eae498d16fe59d0d911f9a83",
- "kws": {
- "fr": [
- "écouter de la musique"
- ]
- }
- },
- {
- "nm": "nettoyer les lunettes",
- "id": "19628bf76941b9adc1cb13ccbf6e9685dd1625cfef1bfc70398a27f3f1765428",
- "kws": {
- "fr": [
- "nettoyer les lunettes"
- ]
- }
- },
- {
- "nm": "attendre",
- "id": "a5e420bf9f652dec7a93f74d4676028cba3422ab6639d3666fb0d8033c31a253",
- "kws": {
- "fr": [
- "attendre"
- ]
- }
- },
- {
- "nm": "kiosque",
- "id": "3d8569c698e1c639d6e26ca730063ed60ef1d4db80194cb5906a09a742059afa",
- "kws": {
- "fr": [
- "kiosque"
- ]
- }
- },
- {
- "nm": "se marier",
- "id": "fb13f049c200085f720221246916f15f1b20d26b66b874937ecb08c826b6786f",
- "kws": {
- "fr": [
- "se marier",
- "marier"
- ]
- }
- },
- {
- "nm": "herbe",
- "id": "ffab2993772d75d091fc32b266e03d2ec99258c8eb00ce182084b171250d2dd9",
- "kws": {
- "fr": [
- "herbe"
- ]
- }
- },
- {
- "nm": "vêtement",
- "id": "1694dd7cbb2f8641826e107f7dc50c11690d8e2d092b79c55056c48b31c9003d",
- "kws": {
- "fr": [
- "vêtement"
- ]
- }
- },
- {
- "nm": "mots croisés",
- "id": "90376c25ff414073bcc95dac0bf1263863d2f0c4f6d9280bf40ac1ff4e82584a",
- "kws": {
- "fr": [
- "mots croisés"
- ]
- }
- },
- {
- "nm": "buts",
- "id": "e4f6261cce30dfbc6c5407ef6779241f4ae817bf22f0b8639b36a6d5f4fa332f",
- "kws": {
- "fr": [
- "buts"
- ]
- }
- },
- {
- "nm": "partager",
- "id": "89ef8bd46f2ac259455a165a639ab3a939fefc214424efbb6d34beeb6d2c765b",
- "kws": {
- "fr": [
- "partager"
- ]
- }
- },
- {
- "nm": "brouillard",
- "id": "4b5fe0bbe3f826591ccc6ac88db4b27680b6ac96c629cf2d3325d902cbef49b6",
- "kws": {
- "fr": [
- "brouillard",
- "avec du brouillard"
- ]
- }
- },
- {
- "nm": "petite fille",
- "id": "8fb9557bd939cb4d7591d6e65f206811fd7407788d6d8d814edcdbe88eb306e3",
- "kws": {
- "fr": [
- "petite fille"
- ]
- }
- },
- {
- "nm": "sang",
- "id": "3274b338bade01c644d3b5062f932729ea65de572dba8eb1fb222ec13f713a82",
- "kws": {
- "fr": [
- "sang"
- ]
- }
- },
- {
- "nm": "canot",
- "id": "6bfc10eb1ae68f44d0826789367247de3f7d9c8b4c74ee88f4dc708b0fd974f9",
- "kws": {
- "fr": [
- "canot"
- ]
- }
- },
- {
- "nm": "cou",
- "id": "515f4139609a154b8033aaa4f017fdfe34667268244e335118078b6e99b22499",
- "kws": {
- "fr": [
- "cou"
- ]
- }
- },
- {
- "nm": "jumeaux",
- "id": "a53bc4c4067518ffc86ea9629ba541f746418de6a15f92e0ed10bbb138e330cc",
- "kws": {
- "fr": [
- "jumeaux"
- ]
- }
- },
- {
- "nm": "patient",
- "id": "08ad90fa9ee7f1cf49e70da284bf7b72789e682330394356f175b967a2bc6381",
- "kws": {
- "fr": [
- "patient"
- ]
- }
- },
- {
- "nm": "vertébré",
- "id": "9f3e2aeb011d595445fc8e9ab12072b894383c866199c84c07c25589d7a43ba5",
- "kws": {
- "fr": [
- "vertébré",
- "vertébrés"
- ]
- }
- },
- {
- "nm": "oreillettes",
- "id": "bd2b4e91e538c28d7d98b4678dbd3ab51f8c5a7ff2e1f70950e7450b92a8981d",
- "kws": {
- "fr": [
- "oreillettes"
- ]
- }
- },
- {
- "nm": "personne",
- "id": "8d79476b89e8a518ea0c65686a25860534e3b52ddc80f4b2a6a502ac7410c21d",
- "kws": {
- "fr": [
- "personne",
- "femme",
- "étrangère"
- ]
- }
- },
- {
- "nm": "nous",
- "id": "28d61576f9a56fa2b5957b51d9124c530b182fab4a923e77af04e15f80fce230",
- "kws": {
- "fr": [
- "nous"
- ]
- }
- },
- {
- "nm": "d",
- "id": "da70754e1dbf35558c03617cb041200f231b30fda1fbd90cbd84dd601b870135",
- "kws": {
- "fr": [
- "d",
- "lettre"
- ]
- }
- },
- {
- "nm": "effondrement",
- "id": "10f86b148f6e278ac79cb895e4cd1bf4a862cc8f05c965b38cb2159563de8072",
- "kws": {
- "fr": [
- "effondrement",
- "naufrage"
- ]
- }
- },
- {
- "nm": "glousser",
- "id": "cef65248d71e67a4dd1381ded64671bdcee2eed80b63a5c77ec610655c47b635",
- "kws": {
- "fr": [
- "glousser"
- ]
- }
- },
- {
- "nm": "enregistrer",
- "id": "fe63ef7dde1fe419fb714296902f9490566e223a94b64c47e2f8ac3a69491c01",
- "kws": {
- "fr": [
- "enregistrer",
- "classer"
- ]
- }
- },
- {
- "nm": "yeux",
- "id": "6edc0018c9a1a472943e50a09416c7d44ec8e69e262af346b3f2bc14f27af7ad",
- "kws": {
- "fr": [
- "yeux"
- ]
- }
- },
- {
- "nm": "finaliste",
- "id": "727e0a6132bd4f7c1ef438a2b8ab9814604f2654547a3fc24ac392aeb786a5c5",
- "kws": {
- "fr": [
- "finaliste"
- ]
- }
- },
- {
- "nm": "massue",
- "id": "6440b237b30435e54be1cb35f1b1bd4088c433997c85095c58a88df56f9056ca",
- "kws": {
- "fr": [
- "massue"
- ]
- }
- },
- {
- "nm": "outil",
- "id": "190df4c702021817ecd1387a6644aea3ea1dbc426918ae391231fbd189d70cf6",
- "kws": {
- "fr": [
- "outil",
- "outils",
- "matériel"
- ]
- }
- },
- {
- "nm": "instrument musical",
- "id": "ec4411be9dc314d7d74e56baf9655a35997ad2badfb91f07d2849b25d40e4cd6",
- "kws": {
- "fr": [
- "instrument musical",
- "guitare"
- ]
- }
- },
- {
- "nm": "omelette à la pomme de terre",
- "id": "0bd0dd690fb7a2b76284a001410a6bbc613905c26176afab20a479678ea2919d",
- "kws": {
- "fr": [
- "omelette à la pomme de terre",
- "omelette"
- ]
- }
- },
- {
- "nm": "accessibilité",
- "id": "0fd05963aff5942d34ec40c9e4859a6979fd6fd0e97082718db172939d8d34ea",
- "kws": {
- "fr": [
- "accessibilité"
- ]
- }
- },
- {
- "nm": "larve",
- "id": "88637dc499e5c2790815a643bdede480ad0c051488128de1c79b7230d602c800",
- "kws": {
- "fr": [
- "larve"
- ]
- }
- },
- {
- "nm": "rugir",
- "id": "44f7c9e2e756e85f888da3cb353e6730af5384888dc00919cc94b041d49c4695",
- "kws": {
- "fr": [
- "rugir"
- ]
- }
- },
- {
- "nm": "avertir",
- "id": "93ed665532177236045199a7f416114f5c252a2fdc01f46e7bddd28c7fd71d0e",
- "kws": {
- "fr": [
- "avertir"
- ]
- }
- },
- {
- "nm": "tente de camping",
- "id": "141882f43950a2d118cc805e3d55756516d51444df27ebe5d78c56ed79365609",
- "kws": {
- "fr": [
- "tente de camping"
- ]
- }
- },
- {
- "nm": "ouvrir",
- "id": "fd6c94a4f3002fb8b1b106d398c27ce0bbb894cd9c7dfbb8f55f156c81cae8ee",
- "kws": {
- "fr": [
- "ouvrir"
- ]
- }
- },
- {
- "nm": "enveloppe",
- "id": "d373c59d8399872b87260de5f337aeb232f9fbbea10d071b8e89486197e90952",
- "kws": {
- "fr": [
- "enveloppe",
- "sachets de médicament"
- ]
- }
- },
- {
- "nm": "maigrir",
- "id": "da66b8c5c9a889d7517d88c1230759db7925a263cbb839b6457e6db307487e18",
- "kws": {
- "fr": [
- "maigrir"
- ]
- }
- },
- {
- "nm": "museau",
- "id": "23b0e838f0847706d782b5e85f3bb99fac6fe8cc76b8af2d44130d34f51b2f97",
- "kws": {
- "fr": [
- "museau"
- ]
- }
- },
- {
- "nm": "blog",
- "id": "b70fd906449bde9ed8f81002812a966a120add307e47ce3c37d73f559426ba94",
- "kws": {
- "fr": [
- "blog",
- "livre de bord"
- ]
- }
- },
- {
- "nm": "prévoir",
- "id": "6bf53f8d2b12114477cdddc3b8377c72a27553b4896a91b144b07755f5f25cce",
- "kws": {
- "fr": [
- "prévoir"
- ]
- }
- },
- {
- "nm": "marchand de glace",
- "id": "3717ec3e0d8ac6ed60a4b71ecd522e552b5c32ebc39e0852a84ded1c4f6e7922",
- "kws": {
- "fr": [
- "marchand de glace"
- ]
- }
- },
- {
- "nm": "s\u0027allonger sur le dos",
- "id": "899984009881c24a9f6c5196b5766b2474674377f204d3df170e8c7a39f5311b",
- "kws": {
- "fr": [
- "s\u0027allonger sur le dos",
- "s\u0027allonger"
- ]
- }
- },
- {
- "nm": "arroser",
- "id": "2f03d64f3876222b1e2f93a0c0a9ba7531398eaddf77ef26af2d481ae36b5b7b",
- "kws": {
- "fr": [
- "arroser"
- ]
- }
- },
- {
- "nm": "drap",
- "id": "e818a4f62c35a9e4a89d44172b5fa750583440e0a4b284087991fa2005d58133",
- "kws": {
- "fr": [
- "drap"
- ]
- }
- },
- {
- "nm": "boxe",
- "id": "524d204fcd9f573e28c47a3e0842b569bed406711c0531dfbb729ee335ad5c96",
- "kws": {
- "fr": [
- "boxe",
- "gants de boxe",
- "gants"
- ]
- }
- },
- {
- "nm": "tunnel",
- "id": "c54f35a0d11040c48ffdddf652caf2b449e903e04b5a16f5ce7f534aa623e1c7",
- "kws": {
- "fr": [
- "tunnel"
- ]
- }
- },
- {
- "nm": "crème solaire",
- "id": "2aacabcdfaa91f0275108bc611c222aa05011b65ad7b380c8a96bfee0cefb85c",
- "kws": {
- "fr": [
- "crème solaire"
- ]
- }
- },
- {
- "nm": "vierge marie",
- "id": "90d9c09d25f3a31c4c2f70d4a32f53e0057acd309c7e9c9dd96d3d5893375cfd",
- "kws": {
- "fr": [
- "vierge marie",
- "vierge",
- "marie"
- ]
- }
- },
- {
- "nm": "danseur de jota",
- "id": "07644f32f1eaa7fcad5708cdcb23917e24bc3c07fd13f43fd7bf97e6cadd7e76",
- "kws": {
- "fr": [
- "danseur de jota",
- "baturro (petit glossaire de termes utilisés à saragosse)"
- ]
- }
- },
- {
- "nm": "aimant",
- "id": "375850bd890aa4dec48e4d6c5d4bcd3b49a3bcc96412f2b9dfc0d2c8ce380c8b",
- "kws": {
- "fr": [
- "aimant"
- ]
- }
- },
- {
- "nm": "brassards",
- "id": "3a03b55da5a546fa9f3c58b02e77356d5874734158cd605cf2ab71e59227b8ee",
- "kws": {
- "fr": [
- "brassards"
- ]
- }
- },
- {
- "nm": "moment",
- "id": "48e9d851a3191a64fdf34bba0ad55416788be3fe19c4364867c926e930f84a2b",
- "kws": {
- "fr": [
- "moment"
- ]
- }
- },
- {
- "nm": "égoïste",
- "id": "23a31b0eea4a171488960ef1cc72e8a6a28da6031bc983ec82b13e8cb6b31dd5",
- "kws": {
- "fr": [
- "égoïste"
- ]
- }
- },
- {
- "nm": "faire des recherches",
- "id": "2a4094a023aaa2d43a17c20551ff747c2e9500db00bc8b8deb9cd71b01a5fdfa",
- "kws": {
- "fr": [
- "faire des recherches"
- ]
- }
- },
- {
- "nm": "moyen de communication",
- "id": "874775ea0bc87b38c66bc5702f72dd22a3171dd6eeff925d6eb8354917528b83",
- "kws": {
- "fr": [
- "moyen de communication",
- "moyens de communication"
- ]
- }
- },
- {
- "nm": "outil",
- "id": "caf712ae102a77e9be358b88713d31e953b88ea52968c44fac94fd3338e8d788",
- "kws": {
- "fr": [
- "outil"
- ]
- }
- },
- {
- "nm": "suède",
- "id": "a2865d401050e0c08d8b26d64830933ad5fca4b3f968e8491a144aae5e403f08",
- "kws": {
- "fr": [
- "suède"
- ]
- }
- },
- {
- "nm": "arrangement",
- "id": "3f904246a89be438f68f2e94c38f8d0a087fb36b27497300ffd951c4f724a7a0",
- "kws": {
- "fr": [
- "arrangement"
- ]
- }
- },
- {
- "nm": "vessie",
- "id": "2bdfb83de965e7e9f2814198a31c18e0929035e377a857b27497124a90b5eb60",
- "kws": {
- "fr": [
- "vessie"
- ]
- }
- },
- {
- "nm": "cd-rom",
- "id": "201661d5880081847670cc7cff335a7e00473d3ad4929175043ff813e9dd664d",
- "kws": {
- "fr": [
- "cd-rom",
- "cédérom",
- "jeu vidéo"
- ]
- }
- },
- {
- "nm": "coupe de cheveux",
- "id": "d25d0630dcc47ce86e7674e8bad545cfb5646feb183f894e8d0772d4ad818d02",
- "kws": {
- "fr": [
- "coupe de cheveux",
- "couper les cheveux",
- "couper",
- "coupe"
- ]
- }
- },
- {
- "nm": "standard",
- "id": "8d83f780ac0a20428f1f2ecbe1cb67438cbc5d0ef5bf2e092478be4024ea70e4",
- "kws": {
- "fr": [
- "standard"
- ]
- }
- },
- {
- "nm": "ligne courbe",
- "id": "9bc568e7d14fef2378a6cc10ab3fdc0fe56b6fc8c8bf1bb0387b6df09686d6d4",
- "kws": {
- "fr": [
- "ligne courbe"
- ]
- }
- },
- {
- "nm": "salive",
- "id": "de6109505b71bed5f8991c522591f2c46ebfc58312626be460cc1e57bddce7ed",
- "kws": {
- "fr": [
- "salive"
- ]
- }
- },
- {
- "nm": "fabrication",
- "id": "87fe60e5b771c5319eb174a8902bf78a496d54e9c1a43743cd46b368d62465c8",
- "kws": {
- "fr": [
- "fabrication",
- "production",
- "élaboration"
- ]
- }
- },
- {
- "nm": "moule",
- "id": "56fccb6813125645b64075996dade92476667b234b060ff1a4f952d0ba06503f",
- "kws": {
- "fr": [
- "moule"
- ]
- }
- },
- {
- "nm": "attaquer",
- "id": "34d0b88578c6239d2f8ce7f19d239b34f30f5c414bb8fff34653535d1650d090",
- "kws": {
- "fr": [
- "attaquer",
- "maltraiter",
- "griffer"
- ]
- }
- },
- {
- "nm": "donner un coup",
- "id": "f27a87d30375017cf98c09af7586545e5acb8c599edbb7068d6bbd1283ff7864",
- "kws": {
- "fr": [
- "donner un coup",
- "joueur de tennis",
- "frapper avec une raquette"
- ]
- }
- },
- {
- "nm": "sentir",
- "id": "094fbfff05121d9578f7846260704d05f3025f845fb20f371b80394d3a4939ce",
- "kws": {
- "fr": [
- "sentir",
- "flairer"
- ]
- }
- },
- {
- "nm": "six",
- "id": "256cad20ba9d9d978089c76ad835c7c655d54361a1696c145f1d33544a9d4ff6",
- "kws": {
- "fr": [
- "six",
- "6 dé",
- "6"
- ]
- }
- },
- {
- "nm": "étendre avec la poche à douille",
- "id": "68020bf8b582bf125aa4ae5e4248a677ed8cea5843ddb424f99958648584cdd2",
- "kws": {
- "fr": [
- "étendre avec la poche à douille"
- ]
- }
- },
- {
- "nm": "blanchisserie",
- "id": "440d5a53ef00b2be207fb0460b70f46ecdd42436bc445dd69dfed10bbb44f2de",
- "kws": {
- "fr": [
- "blanchisserie"
- ]
- }
- },
- {
- "nm": "trente",
- "id": "3744c3fba63244a5e2701c6b327e795be1d708f83c6afebb40f0aaf98acf7485",
- "kws": {
- "fr": [
- "trente",
- "30"
- ]
- }
- },
- {
- "nm": "tes",
- "id": "1c7843a0e3083c1f46f71f8b1c7b063bf5ba312b677b3eddeec8a46199b51cfb",
- "kws": {
- "fr": [
- "tes",
- "tiennes",
- "tiens"
- ]
- }
- },
- {
- "nm": "constipation",
- "id": "eb6a55bd694756f6b007f340696689940345921337a66e80f32a3699dabc4f05",
- "kws": {
- "fr": [
- "constipation"
- ]
- }
- },
- {
- "nm": "changement",
- "id": "2398ae46bc4c7d5d50f8c265723c37dda7146830c7583fbc7ddb2c93403baf44",
- "kws": {
- "fr": [
- "changement"
- ]
- }
- },
- {
- "nm": "vendeur",
- "id": "46a86694f19d91e6f258a8000fdf731f6d396c8aa7160061f10c9542f03d3b87",
- "kws": {
- "fr": [
- "vendeur",
- "coffret à bijoux"
- ]
- }
- },
- {
- "nm": "apéritif",
- "id": "658365672e226501e286162ccb25a71cd16516db85b06aa464b9358b8f459cc7",
- "kws": {
- "fr": [
- "apéritif"
- ]
- }
- },
- {
- "nm": "encercler",
- "id": "1baf3d0c40ade8afc51004fcf2d15324fef291ea3111b6b6d3bda90e45c82977",
- "kws": {
- "fr": [
- "encercler",
- "clôturer"
- ]
- }
- },
- {
- "nm": "pain grillé",
- "id": "a083c0554b110314b0dacdf4adfe5e64071c4a4b853b56ded6e717fede5f7f80",
- "kws": {
- "fr": [
- "pain grillé"
- ]
- }
- },
- {
- "nm": "ressort",
- "id": "5a6c966d210299a6fd8cbe46d5f993bcb1e358c069c42f343369dd2823fa00ab",
- "kws": {
- "fr": [
- "ressort"
- ]
- }
- },
- {
- "nm": "pleurer",
- "id": "eea6dfbdba0c33c8f22f3dc316d0ed2d0a30ae65bd9f0412e8a9bf0c50e7731a",
- "kws": {
- "fr": [
- "pleurer"
- ]
- }
- },
- {
- "nm": "fils",
- "id": "ceedbdb31ca214b6456e9df3df275a6c4111f6433681c978ef5754131b06abc9",
- "kws": {
- "fr": [
- "fils"
- ]
- }
- },
- {
- "nm": "pêche au sirop",
- "id": "f7bba4e406dbed39164fdfe81c392a9598d5f5fb7b86cab25fd7b98d5fe3c8c2",
- "kws": {
- "fr": [
- "pêche au sirop",
- "pêche"
- ]
- }
- },
- {
- "nm": "repasser",
- "id": "79c61f9d6360185fad766b483f125079a5b19e93299f628fd2942026b179c1d5",
- "kws": {
- "fr": [
- "repasser",
- "lisser"
- ]
- }
- },
- {
- "nm": "barbe à papa",
- "id": "f6d765850ed10b95bfbf661de36e159b62be144910e73e77b69b9714d6764d18",
- "kws": {
- "fr": [
- "barbe à papa",
- "sucré"
- ]
- }
- },
- {
- "nm": "maillot de bain",
- "id": "7be725ac8af422f01534b08c9f923e03aba514a906ae67cdd383b774ebf8bf0d",
- "kws": {
- "fr": [
- "maillot de bain"
- ]
- }
- },
- {
- "nm": "coussin",
- "id": "339d7f93e503095a6e5f69b071851abbe6943077e04de6b74993ab5e847bb295",
- "kws": {
- "fr": [
- "coussin"
- ]
- }
- },
- {
- "nm": "león",
- "id": "b991b501833a9abadfdd1cb18f01d1f19e48aee663b84d0374406d6003a7ffda",
- "kws": {
- "fr": [
- "león"
- ]
- }
- },
- {
- "nm": "suicide",
- "id": "097067b4ca122e548fe18b98e57e2d0dc86746efc28bcf4c88c719d54510a1bf",
- "kws": {
- "fr": [
- "suicide"
- ]
- }
- },
- {
- "nm": "fermeture éclair",
- "id": "18fa2fedc287bb4ccf8bcab64b3180340c5a3dacc921202f7b35a52a0149799c",
- "kws": {
- "fr": [
- "fermeture éclair"
- ]
- }
- },
- {
- "nm": "labourer",
- "id": "3e4837dbe8a013f4ff4d6288b432e50cab15dc7968b1133239647b97cd303b5b",
- "kws": {
- "fr": [
- "labourer"
- ]
- }
- },
- {
- "nm": "arête",
- "id": "a5807ef30f980b96bf413cfe2ddb870fcc6b785b44d72945fa9fd4caf9d59df0",
- "kws": {
- "fr": [
- "arête"
- ]
- }
- },
- {
- "nm": "libellule",
- "id": "645fe9a9b2106abe0a193c8d530dc9b9854bc65f1c6d29f00c7262a4bb3b059e",
- "kws": {
- "fr": [
- "libellule"
- ]
- }
- },
- {
- "nm": "parler au téléphone",
- "id": "556da80aecf9e0ee0641081e10496bc589ef91af66625b3bcbc8f70eae0bdf6b",
- "kws": {
- "fr": [
- "parler au téléphone",
- "téléphoner",
- "appeler"
- ]
- }
- },
- {
- "nm": "congressiste",
- "id": "a803bd0f2d15412385831559e9ac0a231eaae061833f8dd7ef014ce50629844a",
- "kws": {
- "fr": [
- "congressiste",
- "congrès"
- ]
- }
- },
- {
- "nm": "lâcher",
- "id": "1252a0f3492fe4c1aac0c6ffb00f450f1cd936b5417fcc094976d202053988ce",
- "kws": {
- "fr": [
- "lâcher"
- ]
- }
- },
- {
- "nm": "ancre",
- "id": "5ba7dab1a2a3d9e9446f5efb8ba7a1497cf661835a73e2644d79a0af5bf637da",
- "kws": {
- "fr": [
- "ancre"
- ]
- }
- },
- {
- "nm": "finlande",
- "id": "42a147cd28374bce4f67520674e0929c2f6e2c1bf2ad522990582d86fa98b820",
- "kws": {
- "fr": [
- "finlande"
- ]
- }
- },
- {
- "nm": "jambe de bois",
- "id": "4429552233048e479c8479096a6bd42370784031df18d1c1b88ebf0924b50de6",
- "kws": {
- "fr": [
- "jambe de bois"
- ]
- }
- },
- {
- "nm": "maison de retraite",
- "id": "da9e26fcf42719e02141ed7e867f9535b8644c839d1fff282aeb81416c7ebf51",
- "kws": {
- "fr": [
- "maison de retraite"
- ]
- }
- },
- {
- "nm": "phare",
- "id": "0c695e97234942aa53b96ac5a4655171ae0dd18fc02038e4ec684a2ca4483a2e",
- "kws": {
- "fr": [
- "phare"
- ]
- }
- },
- {
- "nm": "bon après-midi",
- "id": "a4a6379c89cb0c69f2a896c4b5aa23ce98e3b7f4f50a9ab183b7432ac985d6e4",
- "kws": {
- "fr": [
- "bon après-midi"
- ]
- }
- },
- {
- "nm": "chausser",
- "id": "2eab54d9da79a0ea45e093879102ff476bbfcdcd3c3e1525991bb6d5c8d198db",
- "kws": {
- "fr": [
- "chausser"
- ]
- }
- },
- {
- "nm": "creuser",
- "id": "9dab8de12267f5d15731687f2b13950fa83c8bb1a73d4c3ec83b50b42b6bcb6b",
- "kws": {
- "fr": [
- "creuser"
- ]
- }
- },
- {
- "nm": "pont",
- "id": "07dcb12d2aaf87e60dec1900a65f2928ee25339e62c6b92bba235c6aee89e5b7",
- "kws": {
- "fr": [
- "pont"
- ]
- }
- },
- {
- "nm": "communication augmentative",
- "id": "b0ffe9a91175fd7f24f336b61d30610d8f223aae7d887104cc6120739d9e43d7",
- "kws": {
- "fr": [
- "communication augmentative"
- ]
- }
- },
- {
- "nm": "extincteur",
- "id": "8c9bab0d5d04ec4170f81c9747b74ad88e4156768f12ad86922436f350b877c9",
- "kws": {
- "fr": [
- "extincteur"
- ]
- }
- },
- {
- "nm": "remise",
- "id": "8c435ffb947b24f1f955bb589cd724f45cbe41d82e6a2c08b8d7c9bfce4895d2",
- "kws": {
- "fr": [
- "remise"
- ]
- }
- },
- {
- "nm": "électrocardiogramme",
- "id": "d97f0e76138288a414f2aa8f8f83501c5d33ccceafd6c48558db59cb1d47f977",
- "kws": {
- "fr": [
- "électrocardiogramme",
- "éléctro"
- ]
- }
- },
- {
- "nm": "ciberclasse",
- "id": "4195aec133f410ef7e32147ed8a240de59c499d9555411c709ed3888b45dcc0a",
- "kws": {
- "fr": [
- "ciberclasse"
- ]
- }
- },
- {
- "nm": "jus d\u0027orange",
- "id": "7292bc0145a75634a04cab1c54c284d4e6144eba06f5f385c9bda782c520e559",
- "kws": {
- "fr": [
- "jus d\u0027orange"
- ]
- }
- },
- {
- "nm": "continent",
- "id": "e19d99a81686639dd19e9ef8471529ddc5b2af6fa748b143ae5503a4ef90b8cf",
- "kws": {
- "fr": [
- "continent",
- "océanie"
- ]
- }
- },
- {
- "nm": "vigne",
- "id": "b2f9bef85ce16f230a2e375d8ca156c839542430d7146a4bfc382423fc1ed0c3",
- "kws": {
- "fr": [
- "vigne"
- ]
- }
- },
- {
- "nm": "jouer",
- "id": "3df2fa5dac1dc44ccdbbcb9093235973aed8f0187d6a518715c8d852341aa61c",
- "kws": {
- "fr": [
- "jouer"
- ]
- }
- },
- {
- "nm": "mouton",
- "id": "699450981a832b667d6d8f156c76c670f36267b2d0fba95097c18b9af965366c",
- "kws": {
- "fr": [
- "mouton",
- "agneau"
- ]
- }
- },
- {
- "nm": "foire",
- "id": "d47ed5defde3865576b0ed641b99b2fb26a74a7d64efa87fc9ac2591b0c44e8f",
- "kws": {
- "fr": [
- "foire"
- ]
- }
- },
- {
- "nm": "port",
- "id": "ff98e147032eec81a6ccc95f69ffd1ffb091d53a1b49fa487014864853069517",
- "kws": {
- "fr": [
- "port"
- ]
- }
- },
- {
- "nm": "oreille",
- "id": "545fd696151872e1309908ed995e7c0c91dd619bb1b7f69a6b6c0a469351a0e4",
- "kws": {
- "fr": [
- "oreille"
- ]
- }
- },
- {
- "nm": "rendez-vous",
- "id": "7da22fcf92b2c645cab126a875f05bcceaa002d04f14211b760be1cbeab17975",
- "kws": {
- "fr": [
- "rendez-vous"
- ]
- }
- },
- {
- "nm": "accrocher",
- "id": "eb8b363f5f0e6cdc0fa741b27e4b4bd6f085a1c6517d06e1b22eeecb2ffee154",
- "kws": {
- "fr": [
- "accrocher"
- ]
- }
- },
- {
- "nm": "maison de retraite",
- "id": "48a5cd736524764b177abfb8bf11067751ef37c73899f02a17ee964ec383185e",
- "kws": {
- "fr": [
- "maison de retraite"
- ]
- }
- },
- {
- "nm": "coq",
- "id": "81c5b48e9ece790b3e0600664c94fe255915e0600a6fb8a05d5bedb0c5ab13c2",
- "kws": {
- "fr": [
- "coq"
- ]
- }
- },
- {
- "nm": "trouver",
- "id": "0eb2b98912ef9abf69f82dd67fd757be3519154cda6401f143540dcc2dd79784",
- "kws": {
- "fr": [
- "trouver",
- "apparaître"
- ]
- }
- },
- {
- "nm": "b",
- "id": "d762778121a6aef41b9e5692da77c109432b50453d9d4ab025fb56d8069c14fa",
- "kws": {
- "fr": [
- "b"
- ]
- }
- },
- {
- "nm": "cahier de communication",
- "id": "d838d8aa7b80c030463c347b8c217e32419d4fe7c7136d6063517785ad9ce824",
- "kws": {
- "fr": [
- "cahier de communication",
- "communication"
- ]
- }
- },
- {
- "nm": "ligament",
- "id": "4cb5ca6f69a4e945d89d1bf3b38dce45b38885a39af2ab107c08d85e24c3e08e",
- "kws": {
- "fr": [
- "ligament"
- ]
- }
- },
- {
- "nm": "combien cela mesure",
- "id": "d33983cab00589f5d3d733724252dc3a5a638a8c4ef2b8a03784a8fa7525ff75",
- "kws": {
- "fr": [
- "combien cela mesure",
- "longueur",
- "mesure"
- ]
- }
- },
- {
- "nm": "souricière",
- "id": "5fbf0345bdb6e91d06d13efd69653e322c648bb0bbf4363c790f731ee3f111f9",
- "kws": {
- "fr": [
- "souricière"
- ]
- }
- },
- {
- "nm": "oiseau-mouche",
- "id": "029647f7b8f255541fbb1dbe4e8016e7854433d3a127089bc16b7f00732b23f3",
- "kws": {
- "fr": [
- "oiseau-mouche"
- ]
- }
- },
- {
- "nm": "berceau",
- "id": "c07d98c40102d952446f46b479f9c3819ae2f44193b0076a0a97362a09fa67ce",
- "kws": {
- "fr": [
- "berceau"
- ]
- }
- },
- {
- "nm": "grossir",
- "id": "87b75ec246820c36d3514e4e7654cd72ff2542dd7b0b2fdb3fab16f7ab7c21e4",
- "kws": {
- "fr": [
- "grossir"
- ]
- }
- },
- {
- "nm": "enlever",
- "id": "9c60cba4b9682119ce4b738dea86250d9ee197a6aa4834b8c3f28bc80bff8c43",
- "kws": {
- "fr": [
- "enlever"
- ]
- }
- },
- {
- "nm": "onze",
- "id": "94bc3947471350392b44d2e6b0fe272bfaf80a56f0abb376b8c4ff3be2de169a",
- "kws": {
- "fr": [
- "onze",
- "11"
- ]
- }
- },
- {
- "nm": "planche de windsurf",
- "id": "d05e69dca0473cdd33f939de18eb812238a79031ab9fbace1d1873bd90126c48",
- "kws": {
- "fr": [
- "planche de windsurf",
- "planche",
- "windsurf"
- ]
- }
- },
- {
- "nm": "pendantif",
- "id": "62429c685f6a7255ab0b7a2248c8c3c2b387eeed5769982b7720e8937330ee28",
- "kws": {
- "fr": [
- "pendantif"
- ]
- }
- },
- {
- "nm": "vous",
- "id": "e382313489a5dd8867e90c466b8275344c71bb1ac95564ad35f5bee0a5fb0e7d",
- "kws": {
- "fr": [
- "vous"
- ]
- }
- },
- {
- "nm": "sexe oral",
- "id": "f76d533cdb743ae782e09bf23b7171e3548f2323a86115d94d8aad7f90a4ce9f",
- "kws": {
- "fr": [
- "sexe oral"
- ]
- }
- },
- {
- "nm": "réviser",
- "id": "2a56eb1ff89abc4bc6b256137c3b305d68819501501d3f05c21f108dc75a4f9e",
- "kws": {
- "fr": [
- "réviser"
- ]
- }
- },
- {
- "nm": "produit de soutien",
- "id": "d5389ec09380a5996b870e4bf4e4e66ce0747ec166541260e8b3b2a35ec3edb7",
- "kws": {
- "fr": [
- "produit de soutien",
- "communicateur"
- ]
- }
- },
- {
- "nm": "silo",
- "id": "5311caa09ebbfbb4949ca5f6463c8b4dcd1cd44d85e4ba3503cd1a7aa9695f4a",
- "kws": {
- "fr": [
- "silo"
- ]
- }
- },
- {
- "nm": "sablés",
- "id": "b0f3cabaf7c6484d0d8ee9c62c692929ef7e32381a79939debe6b95f7e03f8fe",
- "kws": {
- "fr": [
- "sablés"
- ]
- }
- },
- {
- "nm": "petit doigt",
- "id": "8cfc4a91f637a26a108c45f4fe27442e1890b3dceedd79ff9a7f8a69ee94a157",
- "kws": {
- "fr": [
- "petit doigt"
- ]
- }
- },
- {
- "nm": "illégal",
- "id": "029f354b76c7497a14d7c17ebaaa2fe8670350cb71a7229c13078fecacae169c",
- "kws": {
- "fr": [
- "illégal"
- ]
- }
- },
- {
- "nm": "sphère",
- "id": "e3f3a3b5a43c861d53023a21c8e0899d0de8eda88e0354a5cc7453e9be0cf83b",
- "kws": {
- "fr": [
- "sphère"
- ]
- }
- },
- {
- "nm": "autruche",
- "id": "0016e600c3ac98eb6cfeed695b39192c21b9720480accc688073ce94fe8a2c91",
- "kws": {
- "fr": [
- "autruche"
- ]
- }
- },
- {
- "nm": "samedi",
- "id": "9eea60ab21eca368318237c7e0a608ed698050779379d77aaddaa366c0634c2d",
- "kws": {
- "fr": [
- "samedi"
- ]
- }
- },
- {
- "nm": "levé du jour",
- "id": "24cbd3e20935a2dbbeb997cb17feba2e1d08ae729f0c35cca54a0e4caf2b932a",
- "kws": {
- "fr": [
- "levé du jour"
- ]
- }
- },
- {
- "nm": "céréales",
- "id": "b472639d34f8f353ec22fe2f9e0b8e67622919ccf4b51d91fe45cdca03905343",
- "kws": {
- "fr": [
- "céréales",
- "blé"
- ]
- }
- },
- {
- "nm": "fée",
- "id": "21ac7deecb3b417f560fac10671a104559606275c2202a17c230317706cfb03c",
- "kws": {
- "fr": [
- "fée"
- ]
- }
- },
- {
- "nm": "entrée",
- "id": "41e21462bf8004d9c8d3c13b21869eac3e4845954511dfc0966a34d7416e593c",
- "kws": {
- "fr": [
- "entrée"
- ]
- }
- },
- {
- "nm": "magasin de jouets",
- "id": "60ab672a72f73d157386d99bc520f71850f72bd83fcc3de5c819169562fa423a",
- "kws": {
- "fr": [
- "magasin de jouets"
- ]
- }
- },
- {
- "nm": "équipes de traitement familial",
- "id": "d713922fda3fedc539c19fa924974616ee381fdd5453565ca3949c6c653f737e",
- "kws": {
- "fr": [
- "équipes de traitement familial"
- ]
- }
- },
- {
- "nm": "oui",
- "id": "5d2466f42f4725acffbc2055f7dabf279d80d11ee67eec13c1f6a61f147e949e",
- "kws": {
- "fr": [
- "oui"
- ]
- }
- },
- {
- "nm": "défendre",
- "id": "0926fd6046038819b279e17de1d725c907193299f97c8ce784614e2df17070b9",
- "kws": {
- "fr": [
- "défendre",
- "protéger"
- ]
- }
- },
- {
- "nm": "nébulisateur",
- "id": "f4e84ab0436b1266263a53fd781226b5d36d67788ce3566d8547d10e5a00c87d",
- "kws": {
- "fr": [
- "nébulisateur",
- "spray nasal"
- ]
- }
- },
- {
- "nm": "cyprès",
- "id": "fd1a31d5115bbe4f071192be085512426cf4c814120fd1343f66f2570f4351bd",
- "kws": {
- "fr": [
- "cyprès"
- ]
- }
- },
- {
- "nm": "mairie",
- "id": "55cd4efbd0bbe00de9e25e22698cb46c707b79647746881992bff2f6dd3ce77f",
- "kws": {
- "fr": [
- "mairie",
- "salle des séances plénières"
- ]
- }
- },
- {
- "nm": "apporter",
- "id": "cf63a3aa51b7ceaa701f0d65e091c8f8a525ce3a8fc66d3d246accf0ad2d9433",
- "kws": {
- "fr": [
- "apporter"
- ]
- }
- },
- {
- "nm": "boutons",
- "id": "129ccddd6d4366a21d2101796b819ef2a663d3abae290574cb5dd1de027bce49",
- "kws": {
- "fr": [
- "boutons"
- ]
- }
- },
- {
- "nm": "accorder",
- "id": "0702274c30674dc568f06c93d03358a680ed8f7362ae12831a2f328fbc573390",
- "kws": {
- "fr": [
- "accorder",
- "approuver"
- ]
- }
- },
- {
- "nm": "pacman",
- "id": "002d7941bfa8701da8b114b769a925eb86215d058fe862a36c978a8dabb2b11b",
- "kws": {
- "fr": [
- "pacman"
- ]
- }
- },
- {
- "nm": "poncho",
- "id": "4cc5f60fda3bcdd1041032cd9a84e05f9034936d3af0c1d2876d36c722bd4ec6",
- "kws": {
- "fr": [
- "poncho"
- ]
- }
- },
- {
- "nm": "basse-cour",
- "id": "c4ab8953a1b5f78cbf9fe116a1f51978f8d4164fcdd44bf7229b5d371af5c31d",
- "kws": {
- "fr": [
- "basse-cour"
- ]
- }
- },
- {
- "nm": "poivron rouge",
- "id": "37e89b27c43ecf7d4bd07558b13deda2e92f30fa2964feae6f7d90e7ad95b67a",
- "kws": {
- "fr": [
- "poivron rouge",
- "poivron"
- ]
- }
- },
- {
- "nm": "wagonnet",
- "id": "8c0d674f4a41ccbec31741849f87dd9f48528ee31464fdc30574620dde9a81b2",
- "kws": {
- "fr": [
- "wagonnet"
- ]
- }
- },
- {
- "nm": "professeur d\u0027éducation spéciale",
- "id": "7ce44de736f20e8d483b817db44a6ba3bc73b8a4a1e0db206c9ec1e0eb1f62d4",
- "kws": {
- "fr": [
- "professeur d\u0027éducation spéciale",
- "professeur de pédagogie thérapeutique",
- "professeur de soutien",
- "pt"
- ]
- }
- },
- {
- "nm": "couronne",
- "id": "7f888ddf03998b975aacd5d456aaa80e428fce820ba5864ae25ac94d63022820",
- "kws": {
- "fr": [
- "couronne"
- ]
- }
- },
- {
- "nm": "plus grand",
- "id": "77245c493b288ab426486755a9e7239d296db40997d6e05eb47108b0b8c780fb",
- "kws": {
- "fr": [
- "plus grand",
- "grande"
- ]
- }
- },
- {
- "nm": "chaussures de jogging",
- "id": "84611a8ce513a12912aba278458f7f6dd37ded0b7673dbc03cf051b2b4f6c556",
- "kws": {
- "fr": [
- "chaussures de jogging",
- "chaussures de sports",
- "chaussures de sport"
- ]
- }
- },
- {
- "nm": "restaurant",
- "id": "31bfdb8dc950b5577504a49b3bd1f225ec3cad30bf33932e49040f654f3e966a",
- "kws": {
- "fr": [
- "restaurant"
- ]
- }
- },
- {
- "nm": "costume",
- "id": "657838e3c12239cee34a940959e73ce7b7aeb84dd3b9f7a2ccb9a0ffa43ce4d7",
- "kws": {
- "fr": [
- "costume"
- ]
- }
- },
- {
- "nm": "sternum",
- "id": "50c9b1c6a4f08ebc4deb51eaa925f847d780cc74dbaf21c824249b79cf105f65",
- "kws": {
- "fr": [
- "sternum"
- ]
- }
- },
- {
- "nm": "pays basque",
- "id": "a33ed7601755979dbaef4006d4d13f413e9959783ff67559ee485f05e5bc45d0",
- "kws": {
- "fr": [
- "pays basque",
- "pays-basque",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "colonie de vacances",
- "id": "2c7b3ecd9a5b067a70bbc85e191bed5565be06bb6a3872f620894c7725a03d78",
- "kws": {
- "fr": [
- "colonie de vacances",
- "hébergement"
- ]
- }
- },
- {
- "nm": "ruer",
- "id": "05af2af475ecf0df5a626538c3bcd281267d1b1699d833d655a192aeaa55f5a1",
- "kws": {
- "fr": [
- "ruer"
- ]
- }
- },
- {
- "nm": "curé",
- "id": "354de31b3ee1e935e0938b108c00c082839d43b5f417cb6b77095b64c77990c2",
- "kws": {
- "fr": [
- "curé",
- "prêtre"
- ]
- }
- },
- {
- "nm": "sac à dos",
- "id": "f07963be725c8641cf620469eb70617bc860a28e0f99a83fa976a07dfb2d275e",
- "kws": {
- "fr": [
- "sac à dos"
- ]
- }
- },
- {
- "nm": "cerf-volant",
- "id": "e5911e1ca6c4587734d23d48f47bb3b6419c12c1380993b959c12d257aae9bd8",
- "kws": {
- "fr": [
- "cerf-volant"
- ]
- }
- },
- {
- "nm": "sac de nourriture",
- "id": "f6f5d58b815714f52ddcb3f13f01acd9b4a1ed186fdec8ce47fb958410e1af66",
- "kws": {
- "fr": [
- "sac de nourriture",
- "sac"
- ]
- }
- },
- {
- "nm": "dos",
- "id": "44b45e9e9832ca9810d2ef90ad4d9cd78e97fdfacffdf11e126b9ccdc31a88f4",
- "kws": {
- "fr": [
- "dos"
- ]
- }
- },
- {
- "nm": "technicien d\u0027animation socioculturelle",
- "id": "897db998855a78d998276dc59bd1abdd1e3d562421c2e20a0c5131fed2e9f565",
- "kws": {
- "fr": [
- "technicien d\u0027animation socioculturelle",
- "technicien supérieur d\u0027activités spécifiques"
- ]
- }
- },
- {
- "nm": "estrémadure",
- "id": "fb7e163f95ec1ec63a9c114e1c5a6064c2afbe3a6ca58daef5679ffb8186b7c7",
- "kws": {
- "fr": [
- "estrémadure",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "auxiliaire médical",
- "id": "a082b573ee39b532cef4807cb9cd60af316d011ef54375016b78bbcc4f31ed71",
- "kws": {
- "fr": [
- "auxiliaire médical",
- "infirmier"
- ]
- }
- },
- {
- "nm": "gâteau",
- "id": "a93b587924436063280b87cd75dabb7f07ee57990e68cc3d5437fd233483097f",
- "kws": {
- "fr": [
- "gâteau"
- ]
- }
- },
- {
- "nm": "toi",
- "id": "c2f5c2c53c56bc46c0b027b4400b14b85f4fdc1c63a9ea613511550c2e60265f",
- "kws": {
- "fr": [
- "toi",
- "tu",
- "vous"
- ]
- }
- },
- {
- "nm": "maman ours",
- "id": "9fb25bda2d027ea69952987ee028e8ae825514c828e79380e999d511f7588695",
- "kws": {
- "fr": [
- "maman ours"
- ]
- }
- },
- {
- "nm": "millionaire",
- "id": "00d67c4156adc933d3a245ed4953be8679204c56c4c7fe8c112fa23a040e3e5a",
- "kws": {
- "fr": [
- "millionaire",
- "riche"
- ]
- }
- },
- {
- "nm": "roulotte",
- "id": "c453c5a2427b00c5eb8ad167ee75d23f03c4dad1fad0076a8d615ed9f58a0bc8",
- "kws": {
- "fr": [
- "roulotte"
- ]
- }
- },
- {
- "nm": "tampon en caoutchouc",
- "id": "21d56cef94b7bd38bd453809dbe9e3270eb47d1297e7c3c1265272b958a21ad4",
- "kws": {
- "fr": [
- "tampon en caoutchouc",
- "timbre"
- ]
- }
- },
- {
- "nm": "entier",
- "id": "1834dc3519647d958046f23927081cc094017f2c687f715140e0e6b063e21c76",
- "kws": {
- "fr": [
- "entier"
- ]
- }
- },
- {
- "nm": "allumer",
- "id": "7147155d6a6053f9b6c81538b270ea93982dc7bed4ea45cee99a752a75d881e0",
- "kws": {
- "fr": [
- "allumer"
- ]
- }
- },
- {
- "nm": "ergothérapeute",
- "id": "0c0fbd88d6680fc4a46e9f53fff024405c3633b7623149c8aec1375b55fee5e8",
- "kws": {
- "fr": [
- "ergothérapeute"
- ]
- }
- },
- {
- "nm": "inviter",
- "id": "7a475c763b291b091d7749c8be81a9399788d6c6cc4aa3cfd67f9706a643e8bf",
- "kws": {
- "fr": [
- "inviter"
- ]
- }
- },
- {
- "nm": "cher",
- "id": "6144d9192c336dd793e440cb301f0f68df3a5d7c583cde0238c170bcbd5e4954",
- "kws": {
- "fr": [
- "cher"
- ]
- }
- },
- {
- "nm": "prier",
- "id": "25893a5e952d2838e5716e368bc7b83fc3a3e970939b11ea65dc224491782443",
- "kws": {
- "fr": [
- "prier"
- ]
- }
- },
- {
- "nm": "combien cela mesure",
- "id": "8fdfc37fb27ec48860fd67005f428cb88d5fb1f19aa1995a9681d123a5c74ec3",
- "kws": {
- "fr": [
- "combien cela mesure",
- "longueur",
- "mesure"
- ]
- }
- },
- {
- "nm": "saxophone",
- "id": "cd68473a4a1f00c7410f8fba441c614b9ada9f191b7c3fdc77ad0e9bfdf3ad13",
- "kws": {
- "fr": [
- "saxophone"
- ]
- }
- },
- {
- "nm": "heure",
- "id": "500bbfd20bacfc3e59833eaefc4cd68412cb4bacf50db33e642107f9a2a26112",
- "kws": {
- "fr": [
- "heure"
- ]
- }
- },
- {
- "nm": "cabochard forano",
- "id": "095d607a14546dba7f7a5c857e1e12525ae34e50d07df016ae29293874b55645",
- "kws": {
- "fr": [
- "cabochard forano",
- "cabochard"
- ]
- }
- },
- {
- "nm": "faire un clin d\u0027oeil",
- "id": "a887eed5fdec82fda00eebe526f945bfdeecd3e3b3bd0f9b6dbfa98e15fb76b2",
- "kws": {
- "fr": [
- "faire un clin d\u0027oeil"
- ]
- }
- },
- {
- "nm": "vainqueur",
- "id": "38e7f611c38786c9c0de4a63d166115f768ae8830840907c37270e03fa1b3f9b",
- "kws": {
- "fr": [
- "vainqueur",
- "récompenser",
- "gagner"
- ]
- }
- },
- {
- "nm": "déguisement",
- "id": "64d81126693d8d65f7935b39289e5a13ef88da9c4bf777e3cc3f4734df9f7dc8",
- "kws": {
- "fr": [
- "déguisement"
- ]
- }
- },
- {
- "nm": "s\u0027asseoir",
- "id": "d63b3aab3371f5ee6389e49b077ffed26f9fce06f60e5b77111ceea6e5044095",
- "kws": {
- "fr": [
- "s\u0027asseoir"
- ]
- }
- },
- {
- "nm": "année",
- "id": "d0225176a7a6ad5d77cab0d0b285ecc241803bad9c9d42c17a0d4f68c6eb189e",
- "kws": {
- "fr": [
- "année"
- ]
- }
- },
- {
- "nm": "boîte",
- "id": "0dfa3b7c607501f03772f8c3c1f4d59f3bc8bdf329dc50d7adb44cf20ca20bcb",
- "kws": {
- "fr": [
- "boîte",
- "pot de cornichons"
- ]
- }
- },
- {
- "nm": "plat de résistance",
- "id": "78883c6aef2dac965d31794a9a536150423d10958e4815377c77f40fafcdb7eb",
- "kws": {
- "fr": [
- "plat de résistance"
- ]
- }
- },
- {
- "nm": "santé",
- "id": "bfc5326c6feb671168447d5bdba1a0b5b40520f056cdb191f77c98e8741fd4f8",
- "kws": {
- "fr": [
- "santé"
- ]
- }
- },
- {
- "nm": "interdit de boire",
- "id": "123df4f97ec59ff66c6294d1bd627aba077177f799a57c88655e4fe83204c9f6",
- "kws": {
- "fr": [
- "interdit de boire"
- ]
- }
- },
- {
- "nm": "dans",
- "id": "60b3a820baa80b703900913d23588a07c5e714a9718ee19b969fbf779e5bcf05",
- "kws": {
- "fr": [
- "dans"
- ]
- }
- },
- {
- "nm": "paquet de sel",
- "id": "f1f9d16e2b504d2e63c11bdbf532ae1002205f5e2bda00285eb0de9dee775a01",
- "kws": {
- "fr": [
- "paquet de sel",
- "sel"
- ]
- }
- },
- {
- "nm": "soutien-gorge",
- "id": "0276a0dc54c9cd4899e37d5d9663db763c24569db98ee1d66c1a85be2c95127d",
- "kws": {
- "fr": [
- "soutien-gorge"
- ]
- }
- },
- {
- "nm": "candidate",
- "id": "3174a435d292ee07e2b072b491557b07614ca87cef0c0a5cd762ffecf4634ea4",
- "kws": {
- "fr": [
- "candidate"
- ]
- }
- },
- {
- "nm": "pontevedra",
- "id": "67c9973f35c57fc71d96ace7168328e79fa2de97aa074b1795de5e6e49b19f0c",
- "kws": {
- "fr": [
- "pontevedra"
- ]
- }
- },
- {
- "nm": "base-ball",
- "id": "671edc2c7c62c25dd3df843c0ed50ae3bcda2c0399583b1aebd8d685cfe017b3",
- "kws": {
- "fr": [
- "base-ball",
- "jouer au base-ball"
- ]
- }
- },
- {
- "nm": "cueilleuse",
- "id": "7c0fe851a94a30d3b41a3ebf75ded2cfb03ae906d733258b495b2d0e650c0e9d",
- "kws": {
- "fr": [
- "cueilleuse"
- ]
- }
- },
- {
- "nm": "grande roue",
- "id": "9abf7f3a71277bab1966267c5d8fa82160d41393533fc43a8f9184bdd290c79d",
- "kws": {
- "fr": [
- "grande roue"
- ]
- }
- },
- {
- "nm": "pourcentage",
- "id": "e3c5c6fb938a9b261a5c45c84d458df2f102379bf2de5ca1a2684564c1931b67",
- "kws": {
- "fr": [
- "pourcentage"
- ]
- }
- },
- {
- "nm": "femme",
- "id": "0f737394a6d149cb1b037889112a194eef6b11a0bf46a8ccbbd395c31910fac1",
- "kws": {
- "fr": [
- "femme",
- "profil"
- ]
- }
- },
- {
- "nm": "boutique",
- "id": "691299feb83d5f835c9a09f05f68937b01476b7aa3c8aa4a0c698fe2e1668221",
- "kws": {
- "fr": [
- "boutique",
- "magasin de vêtements"
- ]
- }
- },
- {
- "nm": "brosse à cheveux",
- "id": "34ef61428b2b3b141086d782c59422f38fcfc5cb16313aca593082db080d1828",
- "kws": {
- "fr": [
- "brosse à cheveux",
- "brosse"
- ]
- }
- },
- {
- "nm": "tante",
- "id": "9b6bba6636a0d1baa16fc2b549bd1ca17a83b41f3cf4c0c7798207bddce57040",
- "kws": {
- "fr": [
- "tante"
- ]
- }
- },
- {
- "nm": "balayer",
- "id": "482fd4f9582fc49b09b9152ebc33ce8dd37bb606aec55392a65033d71b705773",
- "kws": {
- "fr": [
- "balayer"
- ]
- }
- },
- {
- "nm": "chahut",
- "id": "230ffad20c0d84f48fa09eb349afd7ea9cfc3b5b574c76093b3467335d28ea26",
- "kws": {
- "fr": [
- "chahut",
- "chahuter"
- ]
- }
- },
- {
- "nm": "oit",
- "id": "7bfada27605ffa2866de8ef48f6e906f6d57cbef021f5c8d3ab624a1e02e4c28",
- "kws": {
- "fr": [
- "oit"
- ]
- }
- },
- {
- "nm": "portable",
- "id": "7d2f16fd983e23e80552a94566ed0bac55ad7fc618d038f1ac58239e2097f92f",
- "kws": {
- "fr": [
- "portable",
- "ordinateur portable",
- "ordinateur",
- "ordinateur"
- ]
- }
- },
- {
- "nm": "bureau d\u0027aides techniques",
- "id": "adc32ec21cf5f22352663435e5ef18a8219c5785d0ba9f4a3a4f551f291036e2",
- "kws": {
- "fr": [
- "bureau d\u0027aides techniques"
- ]
- }
- },
- {
- "nm": "partager",
- "id": "e677a96f5f5dd3a565820ba65e955386e93a9689d0a0396b365b4605ecf89dba",
- "kws": {
- "fr": [
- "partager",
- "diviser"
- ]
- }
- },
- {
- "nm": "mouette",
- "id": "c3e0b87fe59743bc753a7b3bbf57e8d3d0c212956c29e788a9dc5ad96d62757c",
- "kws": {
- "fr": [
- "mouette"
- ]
- }
- },
- {
- "nm": "mot",
- "id": "d78e8f0a81255f983a16fe18199100e2c644dec965758012a80a83945cee9388",
- "kws": {
- "fr": [
- "mot"
- ]
- }
- },
- {
- "nm": "interpréter",
- "id": "6a9b0a9f7e6e47b91ed2f46d39c4c1163b40acbd509a5bdaa14df59bfa7c7719",
- "kws": {
- "fr": [
- "interpréter",
- "jouer le piano",
- "jouer"
- ]
- }
- },
- {
- "nm": "conserve",
- "id": "3430aef3a3f4eaa135442271fd50f0ad6b9b074aee39e7cf00bbe93850d26477",
- "kws": {
- "fr": [
- "conserve"
- ]
- }
- },
- {
- "nm": "sardine",
- "id": "c42be704037a820212e0fff2f837a89f5c376242a6eba4e21bed19ee5fcddc66",
- "kws": {
- "fr": [
- "sardine"
- ]
- }
- },
- {
- "nm": "tortue d\u0027eau douce",
- "id": "02dbf730dcffdb8833ce8e68960bbc38c465cbe64118178fc9fe2783957598cf",
- "kws": {
- "fr": [
- "tortue d\u0027eau douce",
- "tortue"
- ]
- }
- },
- {
- "nm": "fleuriste",
- "id": "a343d7091f78cf03b9722c93cd32df402ffbaaba1f4faf0a2f2e9bd485af0732",
- "kws": {
- "fr": [
- "fleuriste"
- ]
- }
- },
- {
- "nm": "prix",
- "id": "5f7a0c5747bf09b9a454a25309b663336c0565330fe7f1ed458f0662851a67e6",
- "kws": {
- "fr": [
- "prix"
- ]
- }
- },
- {
- "nm": "fiancés",
- "id": "8c9d585b243a18a068ca8ad3e5d849a811cf56ac2421a627f287a0505721a5dc",
- "kws": {
- "fr": [
- "fiancés",
- "acte",
- "mariage"
- ]
- }
- },
- {
- "nm": "tour de l\u0027eau",
- "id": "0988e063a2dea7b31b52f50311c33b6da717ad2736473425c11c7cfc48069949",
- "kws": {
- "fr": [
- "tour de l\u0027eau"
- ]
- }
- },
- {
- "nm": "grogner",
- "id": "d811d876a06de6a25150a248a8bda7fec6710de2fa2b29e86f92461654a77454",
- "kws": {
- "fr": [
- "grogner"
- ]
- }
- },
- {
- "nm": "pharyngite",
- "id": "e35c516fc30209187a41139f70508a796a570afe44c3566ee027d749fa702a5c",
- "kws": {
- "fr": [
- "pharyngite"
- ]
- }
- },
- {
- "nm": "soulever",
- "id": "40bbeb2419f3fed0c10e49bd06f0abd6ec015d67c65c4d43b3e94830725e552d",
- "kws": {
- "fr": [
- "soulever",
- "levier"
- ]
- }
- },
- {
- "nm": "or",
- "id": "bef41cf70bc6e16db8edc11b7ce4a4424a17cf7989f6b184e062149d5d1ac10c",
- "kws": {
- "fr": [
- "or"
- ]
- }
- },
- {
- "nm": "savonner",
- "id": "5366284d338e6478566d0bb17545c8eadd3ce71a5d844114e51a23f38484d9b3",
- "kws": {
- "fr": [
- "savonner",
- "se savonner"
- ]
- }
- },
- {
- "nm": "espalier",
- "id": "130e570c3d18a27d105674664a89db60801ab8e2b1aac1599c17ffb1e4637a21",
- "kws": {
- "fr": [
- "espalier"
- ]
- }
- },
- {
- "nm": "se brosser les dents",
- "id": "c1edb8def98876f521c6a0e6c9c67aa04012dffe9478c81fef8ca4210dfe9fe9",
- "kws": {
- "fr": [
- "se brosser les dents",
- "se laver les dents",
- "laver les dents"
- ]
- }
- },
- {
- "nm": "super",
- "id": "88f63f1e2fdb523811b26397f40fff177dc1065db945285a8e0d3b5aab21c8a8",
- "kws": {
- "fr": [
- "super",
- "supermarché",
- "marché"
- ]
- }
- },
- {
- "nm": "sauter à pieds joints",
- "id": "b824a6ef1580d92f9046f35dd1783e4dc15b6de75fb689cba239648157b21ff7",
- "kws": {
- "fr": [
- "sauter à pieds joints",
- "sauter"
- ]
- }
- },
- {
- "nm": "trampoline",
- "id": "ff6239cea5f2494f513d5b391f6fd7c60f8079d84ce2fa82115701f78646fe8d",
- "kws": {
- "fr": [
- "trampoline"
- ]
- }
- },
- {
- "nm": "faible",
- "id": "6009992ced3f4d40095b3535585f14038e8a8d7b162191400c72f821cbb57625",
- "kws": {
- "fr": [
- "faible"
- ]
- }
- },
- {
- "nm": "métal",
- "id": "c6033f79c98cc336fd8159ed3ea888a8c9a4fc3ba5d71c27ac17c8a542ec4f98",
- "kws": {
- "fr": [
- "métal"
- ]
- }
- },
- {
- "nm": "arbre d\u0027automne",
- "id": "ccca5666299aade7c337619290893dc6f16463a7666bf328ca404f0f7f9a7d39",
- "kws": {
- "fr": [
- "arbre d\u0027automne",
- "arbre"
- ]
- }
- },
- {
- "nm": "personne âgée",
- "id": "d9fab732c8088534aa14ae9e34d40ee1905c09ea82abdc6ce7be697da67e74f5",
- "kws": {
- "fr": [
- "personne âgée",
- "grand-mère"
- ]
- }
- },
- {
- "nm": "élève",
- "id": "1dd4b8bb6ddae1d5eb67b57113b441c1ecf2f3990fe0cdc3a009aad5d01f288e",
- "kws": {
- "fr": [
- "élève"
- ]
- }
- },
- {
- "nm": "nuage",
- "id": "0ede6c427a209a644e4a3b62aa3fb28ad12d5ccea5eadeae9a69429240263cbe",
- "kws": {
- "fr": [
- "nuage"
- ]
- }
- },
- {
- "nm": "aurore",
- "id": "ae543fbde41b26a6ce6536959386c3224e73c1a30c0547b934e97491e6177c2a",
- "kws": {
- "fr": [
- "aurore",
- "levé du jour"
- ]
- }
- },
- {
- "nm": "saucisson",
- "id": "99ef5dc40da504f1b3d14ef1710f2a96dbb13dfe2e49538ae9fe9c024ad5f613",
- "kws": {
- "fr": [
- "saucisson"
- ]
- }
- },
- {
- "nm": "donner la main",
- "id": "a164bae501c45f6a53096e1a85aec7d2f74d208122f3a23daab2b8215cc5c4e2",
- "kws": {
- "fr": [
- "donner la main",
- "saluer"
- ]
- }
- },
- {
- "nm": "moutarde",
- "id": "758c1954478457f6ae0e67e429b8459fcef9c58c7b2d1e8b2d26a2d8ee9a58ec",
- "kws": {
- "fr": [
- "moutarde",
- "ornement"
- ]
- }
- },
- {
- "nm": "curieux",
- "id": "1b8e1716674aa899ad3672d6f13d9c4e456d7cdd12c625569424dc2c85b114a0",
- "kws": {
- "fr": [
- "curieux"
- ]
- }
- },
- {
- "nm": "depuis",
- "id": "1e5ed110f88c7ae9f93d354ca8b5b10db162838f636ce3b8c95028380d85a603",
- "kws": {
- "fr": [
- "depuis"
- ]
- }
- },
- {
- "nm": "voler",
- "id": "a0be376cd1a7baebb28b84c1ca2fe3b4ebca93c50fa6b68ababeb9cfd61fcc8b",
- "kws": {
- "fr": [
- "voler"
- ]
- }
- },
- {
- "nm": "balle",
- "id": "093871bf9ced27d693396aa8b926eafdfe93289d1e9eb171f3ec14e40f4880c2",
- "kws": {
- "fr": [
- "balle"
- ]
- }
- },
- {
- "nm": "distributeur",
- "id": "970ac2a72d3ecde681b2bcfd41e4691cedb795ca429214f50c93aa6009a2021f",
- "kws": {
- "fr": [
- "distributeur"
- ]
- }
- },
- {
- "nm": "tétraèdre",
- "id": "ca15b24f509ec3828da7d3d044123e0fa534017a672ca70ce6d1e45b32a6439b",
- "kws": {
- "fr": [
- "tétraèdre",
- "pyramide"
- ]
- }
- },
- {
- "nm": "christ",
- "id": "00f50c04159d0dbeb7b8050459a5de53ff1cdc169fa107c7bc615e7acc3ef0ad",
- "kws": {
- "fr": [
- "christ",
- "jésus christ",
- "jésus"
- ]
- }
- },
- {
- "nm": "parler d\u0027une personne en sa présence",
- "id": "b99cc70bee325199447cb4f1b3f106e09d6f16ff9ce11e74b84ccde766cc378f",
- "kws": {
- "fr": [
- "parler d\u0027une personne en sa présence",
- "parler sans écouter",
- "abus",
- "maltraitance"
- ]
- }
- },
- {
- "nm": "amuser",
- "id": "4c61e2be1eedeef646f45d830202ae9de8539d3993b66d8fa399d04a7c8cca59",
- "kws": {
- "fr": [
- "amuser",
- "s\u0027amuser"
- ]
- }
- },
- {
- "nm": "toboggan",
- "id": "a8953745ad881189d7a6cc26c5392978be56797b38b02272a24fd54d5d3967dd",
- "kws": {
- "fr": [
- "toboggan"
- ]
- }
- },
- {
- "nm": "kilogramme",
- "id": "2d6b48871d25a5b5dd76e122b1ca9a66d51658eadfb722769e9c2d5bb4fae5b8",
- "kws": {
- "fr": [
- "kilogramme"
- ]
- }
- },
- {
- "nm": "buts",
- "id": "c5a7e781ac3862af09de5d6d40da2a4e98ac2a5a9b6d46d22b34ce77d6819b0d",
- "kws": {
- "fr": [
- "buts"
- ]
- }
- },
- {
- "nm": "patient",
- "id": "0ca5d2964bc966f668f91d6037085d7fdb67db96a35b9acae96da46fe70ad12b",
- "kws": {
- "fr": [
- "patient",
- "tomber malade",
- "malade",
- "maladie"
- ]
- }
- },
- {
- "nm": "enlever son soutien-gorge",
- "id": "2cfdf89630204c9dda455f4683026e41d96b4c9168534a75a1d36e6c0330bca8",
- "kws": {
- "fr": [
- "enlever son soutien-gorge",
- "enlever"
- ]
- }
- },
- {
- "nm": "laver",
- "id": "12ac0750dc25724b708c0cfaf831f15f9421cde143d8c876ca97e013e8221db2",
- "kws": {
- "fr": [
- "laver"
- ]
- }
- },
- {
- "nm": "citron",
- "id": "aeca5572b903425e555ca5ab25599315f2401431d1d67af1b3521667df073f96",
- "kws": {
- "fr": [
- "citron"
- ]
- }
- },
- {
- "nm": "triangle",
- "id": "836f6a1c809c549ce3eab22fc85a2d8642906f4b60c74c37588df1094690f6a1",
- "kws": {
- "fr": [
- "triangle"
- ]
- }
- },
- {
- "nm": "piques",
- "id": "4ded75cb8fe6f25dc63ef485d1071898a00ec1d93d0a1bf360c75421f8fe1ce2",
- "kws": {
- "fr": [
- "piques",
- "jeu des piques"
- ]
- }
- },
- {
- "nm": "soldes",
- "id": "4bb37263371751c1beec27d3d1d562661d98e34da722fc0b93fb36b714c72fea",
- "kws": {
- "fr": [
- "soldes"
- ]
- }
- },
- {
- "nm": "requin",
- "id": "923230d91de3c2494c3b2cb1dc03dc823dfbb9cf57ca095327ff19e7906d6bd0",
- "kws": {
- "fr": [
- "requin"
- ]
- }
- },
- {
- "nm": "pelote basque",
- "id": "e880b49bc0c397fc760c7c3d38677b79bbcddb873b251f324206c9cbfd4f1d51",
- "kws": {
- "fr": [
- "pelote basque"
- ]
- }
- },
- {
- "nm": "rideau",
- "id": "dd482ba5930f9055217422c6c8fc4cfd359613c025455340aedf5cda54e470c3",
- "kws": {
- "fr": [
- "rideau"
- ]
- }
- },
- {
- "nm": "enlever la poussière",
- "id": "56aa56ef4c75e5a1e3983cb67da4a5d810cfdc2cf645adfe6c191fb754b1b0c8",
- "kws": {
- "fr": [
- "enlever la poussière",
- "nettoyer avec un plumeau",
- "nettoyer"
- ]
- }
- },
- {
- "nm": "sport adapté",
- "id": "4168c73455b55f04c6340f3b2959256ccb65ba214f9edc34ad472b521369cf9c",
- "kws": {
- "fr": [
- "sport adapté"
- ]
- }
- },
- {
- "nm": "motocycliste",
- "id": "8c9cb2e3fa2b22d4781be705d3e4c3a4b839b9e2285d9d9003ebc0098af41362",
- "kws": {
- "fr": [
- "motocycliste"
- ]
- }
- },
- {
- "nm": "faire la liste",
- "id": "98254d8e3339cd59760cf276a0288c7d8bc7d87fabf3f36b5c55e7bfa9d905e0",
- "kws": {
- "fr": [
- "faire la liste"
- ]
- }
- },
- {
- "nm": "campagne",
- "id": "a298a3d4838c2d78dd28e8e16c8eebd24487680b7c5e7864c2b1d7ccec0eb54f",
- "kws": {
- "fr": [
- "campagne"
- ]
- }
- },
- {
- "nm": "quilles",
- "id": "824c0fc60fc58eac6f18e31fee6d9dfd82148a7fbc57947e7f11842decf87e90",
- "kws": {
- "fr": [
- "quilles",
- "jouer au bowling"
- ]
- }
- },
- {
- "nm": "courir main dans la main",
- "id": "d927f3fd505491420aa3f2644bc4ff25e6537c78b9142baad035c3a8df2f71c9",
- "kws": {
- "fr": [
- "courir main dans la main"
- ]
- }
- },
- {
- "nm": "serviette",
- "id": "8ed41b0a2f14df16208c94cabe2cf2ce95ad801d548d449ae7d73aa8a38c771e",
- "kws": {
- "fr": [
- "serviette"
- ]
- }
- },
- {
- "nm": "équipe d\u0027intervention",
- "id": "499ed1f7ea7ab3b5de573de45307c503e6441dfc1f4e225b43ecf10d86e66a68",
- "kws": {
- "fr": [
- "équipe d\u0027intervention"
- ]
- }
- },
- {
- "nm": "porc",
- "id": "91130bc569170799e7a23790539f1ad11db4badbf3045258f1b5b330dd6d4919",
- "kws": {
- "fr": [
- "porc"
- ]
- }
- },
- {
- "nm": "sans",
- "id": "e6680153e83f09a834ad47d38d346205961d00e9aabef2805590e55edcbaf070",
- "kws": {
- "fr": [
- "sans"
- ]
- }
- },
- {
- "nm": "manger",
- "id": "25d2ab4972e8f57aa8fcad25ee4ea05404e85d1309dc87b4c8bcbba566db33ac",
- "kws": {
- "fr": [
- "manger"
- ]
- }
- },
- {
- "nm": "censurer",
- "id": "562edc584be17b3f986b66462c88275cf8103746e5669b0510215578a981ea14",
- "kws": {
- "fr": [
- "censurer"
- ]
- }
- },
- {
- "nm": "boîte à lettres",
- "id": "e148e1f647b8f97c302146b4a0c469c8cfb15cbcf32407026fec40f3b691c69d",
- "kws": {
- "fr": [
- "boîte à lettres"
- ]
- }
- },
- {
- "nm": "ennuyer de l\u0027",
- "id": "d81ace498ea112d34cda8473106cd845d9abbc45f157d35e834cb20cbad0dc12",
- "kws": {
- "fr": [
- "ennuyer de l\u0027",
- "voir",
- "regarder la télévision"
- ]
- }
- },
- {
- "nm": "déboucheur",
- "id": "71580c2b527f9a29b48a5a74c393b5ab1314d307cc94eaf211622ac002302f4b",
- "kws": {
- "fr": [
- "déboucheur"
- ]
- }
- },
- {
- "nm": "couper",
- "id": "864845cf066d6138d531c1b7781c9d4596795de8af3ee8b7115d0f9cc6d5713a",
- "kws": {
- "fr": [
- "couper"
- ]
- }
- },
- {
- "nm": "dieu",
- "id": "b5c5e9b4414921dde48ec53d81c1e67b142267751dc5d5e7f060037aa7ab621c",
- "kws": {
- "fr": [
- "dieu"
- ]
- }
- },
- {
- "nm": "boîte de conserve",
- "id": "7d5fc99f53132200007c5039c80d1b9d565416389e959fe7847548b191945b64",
- "kws": {
- "fr": [
- "boîte de conserve",
- "conserve"
- ]
- }
- },
- {
- "nm": "jamsa",
- "id": "8a5d3036935772553b3759885c427066d4036318e71cc337639e9b2bc0272f30",
- "kws": {
- "fr": [
- "jamsa",
- "main de fatima"
- ]
- }
- },
- {
- "nm": "paire",
- "id": "600b9065503f31736b054d9e1c3f8e784140c4faba87a1336a7ac1afdcd1b4d9",
- "kws": {
- "fr": [
- "paire",
- "huit",
- "numéro",
- "8"
- ]
- }
- },
- {
- "nm": "pétrole",
- "id": "71b9e28b01ffc849682f33b91aa2f3daace2455f47a18d716c3907e15a7b3d19",
- "kws": {
- "fr": [
- "pétrole",
- "huile",
- "bidon"
- ]
- }
- },
- {
- "nm": "atelier de mémoire",
- "id": "893c33efd0fdcc540de78615cbe3bf3c5621dcc7635858830aafa78c3dd236d3",
- "kws": {
- "fr": [
- "atelier de mémoire"
- ]
- }
- },
- {
- "nm": "promener",
- "id": "499f778a8119f39a976c781e51c3f989f77d4c30c5a3ef27391a1a1ca6817081",
- "kws": {
- "fr": [
- "promener"
- ]
- }
- },
- {
- "nm": "inquiet",
- "id": "82b1e6bb1198dd9cd3873433bc1cc6e784f5c1b301915a4d63996334b58773f0",
- "kws": {
- "fr": [
- "inquiet"
- ]
- }
- },
- {
- "nm": "hollande",
- "id": "4a71d715ce7b70ef0131e2b562578ba1317febf7ec2c87551dd0beb62f457bc6",
- "kws": {
- "fr": [
- "hollande"
- ]
- }
- },
- {
- "nm": "donner",
- "id": "8f9adae1d8253a756770450a2998e8da1eaf52868186ed6aa2852385f3f51e4c",
- "kws": {
- "fr": [
- "donner",
- "offrir",
- "livrer"
- ]
- }
- },
- {
- "nm": "cannette fraîche",
- "id": "32c887794d3fd442e02376db727a0f6e593c817f21457ad8974776ba5aa5be56",
- "kws": {
- "fr": [
- "cannette fraîche",
- "conserve"
- ]
- }
- },
- {
- "nm": "accident",
- "id": "277e6269bba3eccfce60b5a3969ab8904f9983cb84eab51f7f77bc1dc145622e",
- "kws": {
- "fr": [
- "accident",
- "renverser"
- ]
- }
- },
- {
- "nm": "être assis",
- "id": "b58151a7a2f2932e2dc22bd8646d46eb18bc98b111dec5a9eb8181ba283d9ef7",
- "kws": {
- "fr": [
- "être assis"
- ]
- }
- },
- {
- "nm": "petit cochonnet",
- "id": "5ce6ea36e79a4d74da95948a39861c340bcafd5292877b2254eeb7805c9437fa",
- "kws": {
- "fr": [
- "petit cochonnet",
- "petit cochon"
- ]
- }
- },
- {
- "nm": "salon de coiffure",
- "id": "83a41b75d4d5e426272e7cd1bedc8c13caaae5a240ba3c179de8f1533872bc93",
- "kws": {
- "fr": [
- "salon de coiffure"
- ]
- }
- },
- {
- "nm": "parcourir",
- "id": "a075d6d11d8cd4ce367309cbde83040041fa9b0cd63b8786ac677185c2541fc7",
- "kws": {
- "fr": [
- "parcourir",
- "voyager"
- ]
- }
- },
- {
- "nm": "b",
- "id": "a9db52992ddb350c227641cd1f7b80bd014a3c62833f19de1cfa442e6c997371",
- "kws": {
- "fr": [
- "b",
- "lettre"
- ]
- }
- },
- {
- "nm": "costa rica",
- "id": "ecbc5e8bc8bdc1e37a5cde5d54309148e8a5d11af81037082c5cdcb92414283d",
- "kws": {
- "fr": [
- "costa rica"
- ]
- }
- },
- {
- "nm": "brésil",
- "id": "95a5036c3f349f2adbb87374e518d28d221d0ad0aa5e88f77cb19360e15d963e",
- "kws": {
- "fr": [
- "brésil"
- ]
- }
- },
- {
- "nm": "photographie",
- "id": "a178a61da8148432b9be2f1fe5d2f8ad849521a2e811fe204fc51a447fd2e3ff",
- "kws": {
- "fr": [
- "photographie",
- "photo"
- ]
- }
- },
- {
- "nm": "panellets",
- "id": "7c48e919e8ebb4462f7911742ad0ef24ba9850ba127e5dd493bc8bb089c8dcc8",
- "kws": {
- "fr": [
- "panellets"
- ]
- }
- },
- {
- "nm": "cabine",
- "id": "eb8cc60bbd959fe2e8a623581d7ddf91099d0a321030a4db9696c287dab4e9e6",
- "kws": {
- "fr": [
- "cabine"
- ]
- }
- },
- {
- "nm": "cannelle",
- "id": "c31ad44c8bace50e8df1feb11fef0495cf8b987a8371cb9bf9416d1d90fd7ebd",
- "kws": {
- "fr": [
- "cannelle"
- ]
- }
- },
- {
- "nm": "russie",
- "id": "95da4513edbc043b6df721e386a6a652117c326713f80eda09f0248b8509741a",
- "kws": {
- "fr": [
- "russie"
- ]
- }
- },
- {
- "nm": "royaume-uni",
- "id": "712805b1d233edc0ede3a2d4cbb8c49157bfcaafcdb558cdfd17b96871231269",
- "kws": {
- "fr": [
- "royaume-uni"
- ]
- }
- },
- {
- "nm": "casser",
- "id": "329f5d325c66aa65ee21fdbafffe834e571681c03b6542be76d7e2840c9e3e83",
- "kws": {
- "fr": [
- "casser"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "7863bde57b57117b3852f52a643fb9310a81953c438b91b0ca0250bbb2f98c42",
- "kws": {
- "fr": [
- "communauté autonome",
- "communauté",
- "aragon"
- ]
- }
- },
- {
- "nm": "chef d\u0027entreprise",
- "id": "2a178b8a8a54fdf5cd567cbebb02418a949fa07a57d15fcaf5944422c2a54c3a",
- "kws": {
- "fr": [
- "chef d\u0027entreprise"
- ]
- }
- },
- {
- "nm": "poisson",
- "id": "9a2cbdf159c63814e016071253167eb85e9ce9b00511c37594f1bd404a321648",
- "kws": {
- "fr": [
- "poisson"
- ]
- }
- },
- {
- "nm": "ligne d\u0027arrivée",
- "id": "9353e5f8525bccc4ee6a920f49d663632fe39cfecc195e91bb6521d05ac8acfb",
- "kws": {
- "fr": [
- "ligne d\u0027arrivée"
- ]
- }
- },
- {
- "nm": "masques",
- "id": "ec0eeb347683f5cacee19739fb1c4276d34de987e6ef2fdbcb08439bafadf49f",
- "kws": {
- "fr": [
- "masques"
- ]
- }
- },
- {
- "nm": "timide",
- "id": "1a994364e4e41c8bad4e440f769f442d3f655f6ca5980167fd46826a751d7326",
- "kws": {
- "fr": [
- "timide"
- ]
- }
- },
- {
- "nm": "poignée",
- "id": "46c39992f878aed7c62f9fb593f56fe6740e1e356493e7765ad5b4876f31e820",
- "kws": {
- "fr": [
- "poignée",
- "manette"
- ]
- }
- },
- {
- "nm": "température",
- "id": "793c0d9fd2bdf86c6a7b6c3306b7b29b8b63c1b0bb4cf685f390c43c71f5c38b",
- "kws": {
- "fr": [
- "température"
- ]
- }
- },
- {
- "nm": "accomplir",
- "id": "acb282845bf97c3f66c7e2a8d96c0adf8c2cafb5f2aa4b65d203d48a93bd5beb",
- "kws": {
- "fr": [
- "accomplir"
- ]
- }
- },
- {
- "nm": "chaîne",
- "id": "f28071d4576c9afd1d8837de7baba337cdd451f7ffd7cd5918d0ea574645bdf8",
- "kws": {
- "fr": [
- "chaîne"
- ]
- }
- },
- {
- "nm": "robot",
- "id": "cd95618d56b6f6bdf697d38784ea4c25d2f114d5bbaec07274546fd9a95d3ba0",
- "kws": {
- "fr": [
- "robot"
- ]
- }
- },
- {
- "nm": "tu as vu",
- "id": "100649e4567b9c43472be2445269231d9a79833b3cae4c5c47944589f9927b37",
- "kws": {
- "fr": [
- "tu as vu",
- "tu vois"
- ]
- }
- },
- {
- "nm": "étiquette",
- "id": "fbc0aa8eb13d5f9b8bd08245d53153701b891d78b88eee8a0f046b84de35770f",
- "kws": {
- "fr": [
- "étiquette"
- ]
- }
- },
- {
- "nm": "déplaire",
- "id": "3e66df9b12513eb29fb2a41587af8874593f0ea553d2536206762cc9c28e1342",
- "kws": {
- "fr": [
- "déplaire",
- "désagréable",
- "ne pas aimer"
- ]
- }
- },
- {
- "nm": "bingo",
- "id": "02c263c5630bcdc10cb6967efa988a24e0e18f21837a3d3f733961b64017c4ae",
- "kws": {
- "fr": [
- "bingo"
- ]
- }
- },
- {
- "nm": "mugir",
- "id": "8ad2e0af332b31c256513993a5d41cdee565988201a4107e692116f15a5ef817",
- "kws": {
- "fr": [
- "mugir"
- ]
- }
- },
- {
- "nm": "scier",
- "id": "4893f45c34846de338e58b701d42c7c2dcc3d9f46c4c1ff5f3bdbdc731470e31",
- "kws": {
- "fr": [
- "scier"
- ]
- }
- },
- {
- "nm": "oncle",
- "id": "b09c64fc56d8cce64536236874fb75b8527eef586207baba7d1f3e10b92467ff",
- "kws": {
- "fr": [
- "oncle"
- ]
- }
- },
- {
- "nm": "corbeau",
- "id": "8665d03e99451f0fb22d4611e983bf3eb0593d23180795daae714b581e05496f",
- "kws": {
- "fr": [
- "corbeau"
- ]
- }
- },
- {
- "nm": "aéroport",
- "id": "a38bedbe9bb854d73726eee30bb5c860c8f33d0e5f7aa9b479a0e00bc8d92aed",
- "kws": {
- "fr": [
- "aéroport"
- ]
- }
- },
- {
- "nm": "toilettes",
- "id": "6234d7c7938c53f27ed472aeab91dcb8fb6f667f3641f50b15fdaf5196cb536e",
- "kws": {
- "fr": [
- "toilettes"
- ]
- }
- },
- {
- "nm": "course de motos",
- "id": "9dde7c6cb8f0376b4ddbc2cd33591ed4fcf5d4c105d011fccdc6ecfb740a295b",
- "kws": {
- "fr": [
- "course de motos",
- "course"
- ]
- }
- },
- {
- "nm": "égoutter",
- "id": "541ede8749a67c21050058e16be99669edcc7102ea9081d1c6fe2e2925892a02",
- "kws": {
- "fr": [
- "égoutter"
- ]
- }
- },
- {
- "nm": "enlever",
- "id": "5cf83def17b40ad446dced0a6896d4155a1438791dd50b0e84a196b6ad1fc840",
- "kws": {
- "fr": [
- "enlever"
- ]
- }
- },
- {
- "nm": "immeuble",
- "id": "e33d4842e36b908e35da7b08afe33f2a0cebe43558a13cfdffe7c03ace63cdcc",
- "kws": {
- "fr": [
- "immeuble"
- ]
- }
- },
- {
- "nm": "couper",
- "id": "c066cc41f288f59cbb3da084b0f9e8559bc8be8ed91711e7fb5dc5c7077090c4",
- "kws": {
- "fr": [
- "couper",
- "se couper les ongles"
- ]
- }
- },
- {
- "nm": "classeur",
- "id": "86d6c0c02a53983fbc68005388fbd86e2f79380b56e6884fbc2a6b76cf42e6ea",
- "kws": {
- "fr": [
- "classeur"
- ]
- }
- },
- {
- "nm": "côtelettes",
- "id": "9ff86e17516229e7d386fbc4c5b93295e1c77942b169e20e2af73d1c212e73d1",
- "kws": {
- "fr": [
- "côtelettes"
- ]
- }
- },
- {
- "nm": "chuchoter",
- "id": "abd0068ac4e9d9031b298990e6c3cc7ee67e7d255f9d7db80cea4325abb49bf3",
- "kws": {
- "fr": [
- "chuchoter"
- ]
- }
- },
- {
- "nm": "chili",
- "id": "111491f4aacd2b3421d0ad9d2086f4dd46e3504566890f35f33c1df90d960472",
- "kws": {
- "fr": [
- "chili"
- ]
- }
- },
- {
- "nm": "programme de sport",
- "id": "50488ac949faf055498d69835f55606c7ee491c10f93d6a35931223666c74395",
- "kws": {
- "fr": [
- "programme de sport",
- "programme sportif",
- "sports",
- "sport"
- ]
- }
- },
- {
- "nm": "scalpel",
- "id": "9d0c58f914e6090aa4356693d72c0f3506794ff3186aaeb1f84bf0aa54915d84",
- "kws": {
- "fr": [
- "scalpel"
- ]
- }
- },
- {
- "nm": "fête des pères",
- "id": "fe20ad7fd905e4e327c9729b0b2ee54afc4cc5aee4b26cbab20796b6caa50f58",
- "kws": {
- "fr": [
- "fête des pères"
- ]
- }
- },
- {
- "nm": "casque de pilote",
- "id": "87abbdcd0e2d9c8934c6f03a99ab12e380998fe97551453b4ccd251cb8abe3dd",
- "kws": {
- "fr": [
- "casque de pilote",
- "casque"
- ]
- }
- },
- {
- "nm": "rayer",
- "id": "5750a65d8c95fc6e01f4e2e9bc3b7ddccad3a2d86c24debc024d724395705ec6",
- "kws": {
- "fr": [
- "rayer"
- ]
- }
- },
- {
- "nm": "sourire",
- "id": "b3202b4b908d595a47f246dc0900349cbe609c0f96b747c164945f74d2dddb8d",
- "kws": {
- "fr": [
- "sourire",
- "rire"
- ]
- }
- },
- {
- "nm": "appuyer",
- "id": "f2a8ba5c9be618f3f4193f63af3268a284834410d3a7a457fd925c959fb39b2a",
- "kws": {
- "fr": [
- "appuyer"
- ]
- }
- },
- {
- "nm": "mangue",
- "id": "d077c5e09632b99ea6227336b24a189641970c8bfccd58e594f9a4e0494053bb",
- "kws": {
- "fr": [
- "mangue"
- ]
- }
- },
- {
- "nm": "sorcière",
- "id": "12e1e4c8b20819b9691821960cde280966bfb829f32536b3f485c2ff959aa8cf",
- "kws": {
- "fr": [
- "sorcière"
- ]
- }
- },
- {
- "nm": "princesse",
- "id": "1f8de7b440c74b00d3b5fc3bb4d1f0d2fc0fa526a44ccfde9da25f8de085b674",
- "kws": {
- "fr": [
- "princesse"
- ]
- }
- },
- {
- "nm": "passeport",
- "id": "8d8eec09798a7ac6071be32dd804fd414803214cd124f13b22f6b75ceabf5497",
- "kws": {
- "fr": [
- "passeport"
- ]
- }
- },
- {
- "nm": "livre sur les plantes",
- "id": "ce0498045100f42c6c56efd9c6ee1eb4be527ba2602a09b25352f95684a16e5a",
- "kws": {
- "fr": [
- "livre sur les plantes"
- ]
- }
- },
- {
- "nm": "estonie",
- "id": "986d02872a961ffbe3abdd4b929c9fb97c58e4323bb2290d6437e3a91c741eaa",
- "kws": {
- "fr": [
- "estonie"
- ]
- }
- },
- {
- "nm": "film",
- "id": "0df59600c672ece59518449140ee6080870713dcb2dceb19bfa8c7b8f2a92a97",
- "kws": {
- "fr": [
- "film"
- ]
- }
- },
- {
- "nm": "nain",
- "id": "339c6bccc9a25a664b9ef567dc06f5b9188487627cf085ef897cf452e169c401",
- "kws": {
- "fr": [
- "nain",
- "gnome"
- ]
- }
- },
- {
- "nm": "cameroun",
- "id": "e8c824595b51b57824ea54ca56caf2d9a567794aba26e2a183bb7b23b68b868e",
- "kws": {
- "fr": [
- "cameroun"
- ]
- }
- },
- {
- "nm": "macédoine de légumes",
- "id": "cd321369c4eccf6955803ee2a1eed71227a84d940cc3fb890931feb2e141b644",
- "kws": {
- "fr": [
- "macédoine de légumes"
- ]
- }
- },
- {
- "nm": "ballon de basket-ball",
- "id": "b6e1ed7f8a8eeddd2e0573eb02054bf37d3d1fac4a07b99a368e7eb74885eba7",
- "kws": {
- "fr": [
- "ballon de basket-ball",
- "ballon de basket",
- "ballon"
- ]
- }
- },
- {
- "nm": "collier",
- "id": "c76a8d1a9b7c47d604f1220c28d423a230a03505e92e96808a30ae4514a8d1bf",
- "kws": {
- "fr": [
- "collier",
- "bijou"
- ]
- }
- },
- {
- "nm": "baignoire",
- "id": "7ecb3b2a4daa6bb63474389e02f76b8b510a047d6fdb823a976b251481884818",
- "kws": {
- "fr": [
- "baignoire",
- "salle de bain adaptée"
- ]
- }
- },
- {
- "nm": "lisse",
- "id": "725418803398e028e848973f8b4dc0ff3bd28b05b62071933ffd108add50f743",
- "kws": {
- "fr": [
- "lisse"
- ]
- }
- },
- {
- "nm": "lettre",
- "id": "380f76d194da354637b0201369d65e6ab7be58acd2b38a9b38f83973b8eafa91",
- "kws": {
- "fr": [
- "lettre",
- "r"
- ]
- }
- },
- {
- "nm": "brûler",
- "id": "b33d27c810be192ef1ebbee646cf3a8da79ee2525605a6a7df7777222b344cdb",
- "kws": {
- "fr": [
- "brûler"
- ]
- }
- },
- {
- "nm": "aimer",
- "id": "9f4c34e86fa6c8a4408d1fe523c705ea3970af02d659a9d89ef9b949313c6418",
- "kws": {
- "fr": [
- "aimer",
- "goûter"
- ]
- }
- },
- {
- "nm": "deuxième",
- "id": "943b656a0e8fb84ea181ed7172432873548fcc7408d12d318fb98299109c81dd",
- "kws": {
- "fr": [
- "deuxième",
- "seconde"
- ]
- }
- },
- {
- "nm": "déchaussé",
- "id": "3f4e414ca7d545e618a8c9fdce43702f37c22783e79e882f4b748c70611287db",
- "kws": {
- "fr": [
- "déchaussé"
- ]
- }
- },
- {
- "nm": "tombola",
- "id": "726922f188c812ca6ef05f38ed444eca9512d2981a18664a62e68ad7a24f861d",
- "kws": {
- "fr": [
- "tombola",
- "stand de foire",
- "stand de féria"
- ]
- }
- },
- {
- "nm": "joueur de basket-ball",
- "id": "02b574314f9197e5b2854b3c586daedc5d8786b144443d83bd9c55a5eb3d9bb9",
- "kws": {
- "fr": [
- "joueur de basket-ball"
- ]
- }
- },
- {
- "nm": "biscuits apéritif",
- "id": "ae2c1331f032aadb02a6ce13888ee2eb6de780d4669eb907f90dabc9f56af4e5",
- "kws": {
- "fr": [
- "biscuits apéritif",
- "sachet de biscuits apéritif"
- ]
- }
- },
- {
- "nm": "bord",
- "id": "404e3e60e7c6dddde478cb19eef5ae63be01d0b585c26c534d2130b2563c1c91",
- "kws": {
- "fr": [
- "bord"
- ]
- }
- },
- {
- "nm": "vouloir",
- "id": "78db740ef544c6f03365600aa19735412f8fd7fff430bba2be748b4afc5dda68",
- "kws": {
- "fr": [
- "vouloir",
- "aimer"
- ]
- }
- },
- {
- "nm": "fermer",
- "id": "28b47c839e9857e0762f82cc2cc7c56c0c9a771673cd141e554e310f7d513059",
- "kws": {
- "fr": [
- "fermer",
- "pousser"
- ]
- }
- },
- {
- "nm": "montagne russe",
- "id": "73858ab5387b69dbe4ec89a274aa1fa4bbafe0042fdb729446ff442f4e08b45e",
- "kws": {
- "fr": [
- "montagne russe"
- ]
- }
- },
- {
- "nm": "planète",
- "id": "b9c884117f73ae0d0ac3a954f540ffa6d0b9f47424104aeaa435232ee433ec2a",
- "kws": {
- "fr": [
- "planète",
- "jupiter"
- ]
- }
- },
- {
- "nm": "poubelle",
- "id": "ad747d7810f7099b29b72abbf32111c299f75282dfdbf1cde73bcc1698d50213",
- "kws": {
- "fr": [
- "poubelle"
- ]
- }
- },
- {
- "nm": "peintre",
- "id": "39914c20454ed4d8a26d16359d124968c46186bbb11e1e80806a838018fef1eb",
- "kws": {
- "fr": [
- "peintre",
- "artiste"
- ]
- }
- },
- {
- "nm": "bactéries",
- "id": "8df98608254803165af3ab0fb08b64b2065848b0c2af3bda3cd7e219ecc7a488",
- "kws": {
- "fr": [
- "bactéries"
- ]
- }
- },
- {
- "nm": "ranger",
- "id": "6908dcd96989f586b06cacb7920f091cba4385cf2a523f94e23a64acca711e8b",
- "kws": {
- "fr": [
- "ranger",
- "réparer"
- ]
- }
- },
- {
- "nm": "crématorium",
- "id": "c9a4beec721391999c6e5c4b869a437b4457c96062c30380376c1e0b2d9bfaba",
- "kws": {
- "fr": [
- "crématorium",
- "incinérer"
- ]
- }
- },
- {
- "nm": "cousin",
- "id": "7dce799aaa54d1df2af153587166bb4c4b4617f86e14aa5e2b433d153f9b66f8",
- "kws": {
- "fr": [
- "cousin"
- ]
- }
- },
- {
- "nm": "département de huesca",
- "id": "069c4b04d13381d0fcf2a78316172f62c294255f1f4eeab27630a183600c3ea1",
- "kws": {
- "fr": [
- "département de huesca",
- "huesca province"
- ]
- }
- },
- {
- "nm": "faire un clin d\u0027oeil",
- "id": "e4eb540d8ef579a9537a8fc4a9a1ade94eb2c870a5ae1085f3f79dc01c9864f0",
- "kws": {
- "fr": [
- "faire un clin d\u0027oeil"
- ]
- }
- },
- {
- "nm": "dommage",
- "id": "ba6a61fdd47c5aee9d58af437dc95b09d9f9753444bbc0059cdb53a1a7127c04",
- "kws": {
- "fr": [
- "dommage",
- "abus",
- "agression"
- ]
- }
- },
- {
- "nm": "venir",
- "id": "94d80e40143ae9ebba4111ec46ed4df442fae9d88b8d38d9e868ab4f34e17c3f",
- "kws": {
- "fr": [
- "venir",
- "aller",
- "arriver"
- ]
- }
- },
- {
- "nm": "étaler du dentifrice",
- "id": "542d8ce4335ba54911f32f73d51fe501fcb61b79860eb06f6b8dc68825d418d7",
- "kws": {
- "fr": [
- "étaler du dentifrice"
- ]
- }
- },
- {
- "nm": "moïse",
- "id": "ffd5cea66a847e6953cfcad13a792903882fa271136c010daedea5dfb3e70b7a",
- "kws": {
- "fr": [
- "moïse"
- ]
- }
- },
- {
- "nm": "seule",
- "id": "dec6a7b1ec345ad74ba988bb01b897d17af3832d87f2773cac8ed736947d0139",
- "kws": {
- "fr": [
- "seule"
- ]
- }
- },
- {
- "nm": "grandir",
- "id": "6814d722dd323777fb3f230716b465d39c5f8e9bd563012ee45e7dd342e50af8",
- "kws": {
- "fr": [
- "grandir"
- ]
- }
- },
- {
- "nm": "mal de gorge",
- "id": "7b2bec7d2dabd22529f7a9335d0752163e646517faf214e7e1418b0741be31c6",
- "kws": {
- "fr": [
- "mal de gorge"
- ]
- }
- },
- {
- "nm": "construction",
- "id": "9a180c8da37213faa420b0dbadfbd6014fafcd7161f996294b14230bbf810913",
- "kws": {
- "fr": [
- "construction",
- "construire"
- ]
- }
- },
- {
- "nm": "ski",
- "id": "6c4a04d51515a6c2627eb842b60368b44313abd9fc2c23a5ec3313f3ad22f393",
- "kws": {
- "fr": [
- "ski"
- ]
- }
- },
- {
- "nm": "navarre",
- "id": "e4c334af831a2176bb0461bebb8e33450143bb069d9dadb300d8bf9bdf9868d6",
- "kws": {
- "fr": [
- "navarre"
- ]
- }
- },
- {
- "nm": "carrosse",
- "id": "cf3157a5df84bd28458336c5d0a72ebcf54b57b0f819d68665a2c85b9e552f0f",
- "kws": {
- "fr": [
- "carrosse",
- "voiture à cheval",
- "voiture"
- ]
- }
- },
- {
- "nm": "déplacer la souris",
- "id": "eddd55a9862287a05d0b74fba8ccac2f6a559b01fba935a468bf4b154abc5240",
- "kws": {
- "fr": [
- "déplacer la souris",
- "déplacer"
- ]
- }
- },
- {
- "nm": "se laver les cheveux",
- "id": "1931d72b23bb2e723ab2089b67a515fc7e24b1dcde783952ea2312fb8ff4acdb",
- "kws": {
- "fr": [
- "se laver les cheveux",
- "laver les cheveux"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "91f52a54a3a9715c6368111c4c4105c57a1db7c1596cfcdc6ddba2613adcd94c",
- "kws": {
- "fr": [
- "praxie",
- "sourire",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "xylophone",
- "id": "e70db10fde3fccdbecce127ac14b6289df693fe350a6e83b25401b1798a2771b",
- "kws": {
- "fr": [
- "xylophone"
- ]
- }
- },
- {
- "nm": "mûre",
- "id": "843dd2836f45656c41f3d9a6ae28e225136c89d6f676ba4eabea3f7a529e5fe2",
- "kws": {
- "fr": [
- "mûre"
- ]
- }
- },
- {
- "nm": "escalader",
- "id": "b34b232ff52fb006106105ae5a39e2641e7db63cd2415da65544022406e89c47",
- "kws": {
- "fr": [
- "escalader",
- "remonter",
- "grimper"
- ]
- }
- },
- {
- "nm": "téléphoner",
- "id": "1076aaca5d35a624cabfe2d0004b1a1b7fdc9778162dd26e50b10c30f7f55bbb",
- "kws": {
- "fr": [
- "téléphoner",
- "appeler",
- "marquer"
- ]
- }
- },
- {
- "nm": "trésor",
- "id": "dd31aef973e8300c760e1920575e8c9f3a8ee26e7002e7b8137196adda029a3b",
- "kws": {
- "fr": [
- "trésor"
- ]
- }
- },
- {
- "nm": "signalisation",
- "id": "c2fe284ea0cb31c70f6229208ec6f25fb19ee5cd672e4c0cf28199cf509414ad",
- "kws": {
- "fr": [
- "signalisation"
- ]
- }
- },
- {
- "nm": "sable",
- "id": "93b48ea62a66712441c42ebb9aa67e48ad2dc2441076501d66ce8d9776d005b9",
- "kws": {
- "fr": [
- "sable",
- "sablonneux"
- ]
- }
- },
- {
- "nm": "lapin",
- "id": "018f466c8c6fac15821f731bfd5a36ac13a203780b05289f72a1c64011497f68",
- "kws": {
- "fr": [
- "lapin"
- ]
- }
- },
- {
- "nm": "se baigner",
- "id": "abcea41c4c2a5709f00ac027c21e080438e5edf91548978fa1854b5367aefb4a",
- "kws": {
- "fr": [
- "se baigner"
- ]
- }
- },
- {
- "nm": "voir",
- "id": "5f391b92252586d1e0a1511cf3b528b2def5ae6748b6a14a5cbf5795e940c172",
- "kws": {
- "fr": [
- "voir",
- "regarder"
- ]
- }
- },
- {
- "nm": "cisailles",
- "id": "ac85ecf43d2ec452a5083ea3a2446aad3dc8699e879b6e2b8e2865e62488f4d2",
- "kws": {
- "fr": [
- "cisailles",
- "sécateur"
- ]
- }
- },
- {
- "nm": "orque",
- "id": "e4ccf3a5ef817a44ce143acab0d2d04c3b6f186b2582bde4a480f389520c556b",
- "kws": {
- "fr": [
- "orque"
- ]
- }
- },
- {
- "nm": "opposition",
- "id": "5923a12b8c36132797d3ac70c9977651b3f8b7bba571c7915c67319eb8d530f1",
- "kws": {
- "fr": [
- "opposition"
- ]
- }
- },
- {
- "nm": "petit",
- "id": "c466938f357327efe35eb2122fc57af31c850ee99499284a061b978639df89d5",
- "kws": {
- "fr": [
- "petit",
- "inférieur"
- ]
- }
- },
- {
- "nm": "intégration sociale",
- "id": "3c4e4802a06f375d91e084bd52330994d59223672faec5394b5848a500341c8b",
- "kws": {
- "fr": [
- "intégration sociale",
- "intégration"
- ]
- }
- },
- {
- "nm": "chemise",
- "id": "0c5af322188e3557aa35e0b56cd74f6e6b1eb0087b1bb5d99fc04849d8a9fa15",
- "kws": {
- "fr": [
- "chemise"
- ]
- }
- },
- {
- "nm": "troupeau",
- "id": "201cb7513db672ab3f358c3bf648605ffd5c479a6938187e0b706fe76a34af6d",
- "kws": {
- "fr": [
- "troupeau"
- ]
- }
- },
- {
- "nm": "compagne",
- "id": "a391c5465c0433a27e329bf7a886b6fafb5cd7801b0b7e6aa73fcde76777bd02",
- "kws": {
- "fr": [
- "compagne",
- "aimée",
- "amour"
- ]
- }
- },
- {
- "nm": "téléphone",
- "id": "2469f048fa4bb63ce4e2972b0ffc7018e24d4ad6c6664f165bf6e805c2a2617b",
- "kws": {
- "fr": [
- "téléphone"
- ]
- }
- },
- {
- "nm": "pâtissier",
- "id": "17770b851af1d4af96bbeec8f71ccff3af17eb81a4fb7d40fd97fd3caf2c50b6",
- "kws": {
- "fr": [
- "pâtissier"
- ]
- }
- },
- {
- "nm": "religion",
- "id": "24e50eb8b7cb2cbb8052fca5767524c1704baa2638ce4f7b38cf95c8e52ae941",
- "kws": {
- "fr": [
- "religion"
- ]
- }
- },
- {
- "nm": "entreprise",
- "id": "1f0c62c0b06e66547f8b814ed2e26db4549e3f5e9a62234d3ea2fcdff0d6eb85",
- "kws": {
- "fr": [
- "entreprise",
- "usine"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "93954a231e306d9fa9279f281d51af550c937910323b942ce63779c9a7ad8507",
- "kws": {
- "fr": [
- "praxie",
- "sortir la langue",
- "orthophonie",
- "retirer"
- ]
- }
- },
- {
- "nm": "scie à onglet",
- "id": "fd7074deb160b55359a7993ebcb883aa9aa4d978b3f2001a5899d44a1b3f1d47",
- "kws": {
- "fr": [
- "scie à onglet"
- ]
- }
- },
- {
- "nm": "cage",
- "id": "b8b83482d1cf14f3dfd5cea9f15cb0f6bc104f7927a31d16a819191bf628bf7a",
- "kws": {
- "fr": [
- "cage"
- ]
- }
- },
- {
- "nm": "luge",
- "id": "652436596846f4e03de76cddf6f4457c3e0dcd387e00f90498f4e07e12243160",
- "kws": {
- "fr": [
- "luge"
- ]
- }
- },
- {
- "nm": "continent",
- "id": "774ce4ed1815a555d298ac97792e6686f0a3c3ab7e4b7870c6a6c7d232cab780",
- "kws": {
- "fr": [
- "continent",
- "asie"
- ]
- }
- },
- {
- "nm": "pépinière",
- "id": "55296dce70a0904e1748f005b3545424a0b894d0c52c2abacc5df803b8e90730",
- "kws": {
- "fr": [
- "pépinière"
- ]
- }
- },
- {
- "nm": "irlande",
- "id": "e7a8fdb8df9c744c9ebbbbca5ae6c58b9e62ee5c849907071027f1849e7eaddd",
- "kws": {
- "fr": [
- "irlande"
- ]
- }
- },
- {
- "nm": "lourd",
- "id": "703d052ba8d579cc29ae55e12c760373229679c27271f5fc87259555fac5f027",
- "kws": {
- "fr": [
- "lourd"
- ]
- }
- },
- {
- "nm": "grosses têtes",
- "id": "5cc43ae805043fe470190a3c6b1a3d98026c9c555dbf43162ed02034fb859450",
- "kws": {
- "fr": [
- "grosses têtes"
- ]
- }
- },
- {
- "nm": "viande",
- "id": "c90c09c69f44c9966de9394c5a01839e22e1e454572885d7e70505da2ef518ad",
- "kws": {
- "fr": [
- "viande",
- "côtelette"
- ]
- }
- },
- {
- "nm": "désagréable",
- "id": "50cc260f3f29f4b1eded5d1d0f7190f7775e5e59f4608200001a2ac19580079a",
- "kws": {
- "fr": [
- "désagréable"
- ]
- }
- },
- {
- "nm": "gare",
- "id": "bb69d3b9e08cdb9ad1852aecddb250b0b9504355d78683029abcd6ee9fd257c6",
- "kws": {
- "fr": [
- "gare"
- ]
- }
- },
- {
- "nm": "crevettes",
- "id": "24a4b8a0608e18a08ab947e48f96ffa00ffa22fe5c50f59023f94e8b1f0e7ebf",
- "kws": {
- "fr": [
- "crevettes"
- ]
- }
- },
- {
- "nm": "charger",
- "id": "771e851b1191a5178c2a8f1626997e61ee620233d42f5b05e5d7ef53600c5d99",
- "kws": {
- "fr": [
- "charger",
- "chargé"
- ]
- }
- },
- {
- "nm": "hoquet",
- "id": "f2c1d618c0e9fead2340d67f5209ceb5c33e0f60c3c26f894fd9c4d26c22f462",
- "kws": {
- "fr": [
- "hoquet",
- "avoir le hoquet"
- ]
- }
- },
- {
- "nm": "b",
- "id": "1c3c2a6d2ad51dde91ccb14c2fd2f5d7301a2a71ee9af8dd27b759bb618ec3ce",
- "kws": {
- "fr": [
- "b",
- "lettre"
- ]
- }
- },
- {
- "nm": "fruits secs",
- "id": "949b6abe3f3ae26448809d993207e57d56491eedffa3edd874bb9bf034806262",
- "kws": {
- "fr": [
- "fruits secs",
- "graines de courge"
- ]
- }
- },
- {
- "nm": "hockey",
- "id": "9eaa3eba30733bec6982a08f81bc80076a5a5805d75556882728229b7be0a6c8",
- "kws": {
- "fr": [
- "hockey",
- "joueur de hockey sur gazon",
- "joueuse"
- ]
- }
- },
- {
- "nm": "levier",
- "id": "aebcbae6ca7f440711cfa21cb014634d515efa28544ac4d0180813c7640f3d99",
- "kws": {
- "fr": [
- "levier"
- ]
- }
- },
- {
- "nm": "démettre",
- "id": "d412b412c4d7a8e0f061bcb9964f1b0fa7886c3776f3317947408ba22257e63e",
- "kws": {
- "fr": [
- "démettre",
- "renvoyer"
- ]
- }
- },
- {
- "nm": "sérieux",
- "id": "9ee5e834f4cc53cc3a5f0bc74bc7004a05cfbf0788644337aa30e51f8b5db059",
- "kws": {
- "fr": [
- "sérieux"
- ]
- }
- },
- {
- "nm": "bretelles",
- "id": "fb41d64920d7942d0008178164326e2ad9736d111610bcc90595822ccda959c1",
- "kws": {
- "fr": [
- "bretelles"
- ]
- }
- },
- {
- "nm": "anchois",
- "id": "a6749d0d81900b1309999b4725872a71d5ec5596a5587c524daa53cb04eb9c42",
- "kws": {
- "fr": [
- "anchois"
- ]
- }
- },
- {
- "nm": "éprouvette",
- "id": "58fac507fdaa41f255e74f1879d73040b0b3527769a79e77a183a813ad938810",
- "kws": {
- "fr": [
- "éprouvette"
- ]
- }
- },
- {
- "nm": "chaud",
- "id": "23ee8ff0ff7dcaa76588e7c5580edd42bb5d106fc3462a8025e283844114ef1d",
- "kws": {
- "fr": [
- "chaud",
- "radiateur"
- ]
- }
- },
- {
- "nm": "violon",
- "id": "10d54718f0e2b38cf729eab94ed534f13063fdf4a8ed39cadbd267f80b7d27fc",
- "kws": {
- "fr": [
- "violon",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "se reproduire",
- "id": "444293ae1ff3b7e60902711982ca92794ccc21d8cf40914f321462b4f3779bb1",
- "kws": {
- "fr": [
- "se reproduire",
- "reproduction"
- ]
- }
- },
- {
- "nm": "matin",
- "id": "b3617395ad1764a312fa1a4269c0c65252c128ad7ca6a8764938db74dc01f83d",
- "kws": {
- "fr": [
- "matin"
- ]
- }
- },
- {
- "nm": "biscaye",
- "id": "acb644e3cbfddea8c1b55c706700e20873a9e4a731ca6c96b15216e41bd01063",
- "kws": {
- "fr": [
- "biscaye"
- ]
- }
- },
- {
- "nm": "rouge à lèvres",
- "id": "57feaa3de696922c3ed506c207c299036496c7ee078b3986819775754861f7d5",
- "kws": {
- "fr": [
- "rouge à lèvres",
- "maquillage"
- ]
- }
- },
- {
- "nm": "bon",
- "id": "a6ca62b162d04be646f034afeb9d2080e20f1bdecf963652a1e530f222011369",
- "kws": {
- "fr": [
- "bon"
- ]
- }
- },
- {
- "nm": "dîner",
- "id": "8ab1e1f9da30998f4f558146f3d99177dd19bc0d489427cdba4fb7bef0c85205",
- "kws": {
- "fr": [
- "dîner"
- ]
- }
- },
- {
- "nm": "hauteur",
- "id": "1b9876c9dcf7149b6c593226a075b70575642f72bd68a3ae7ac321f516d2e7e0",
- "kws": {
- "fr": [
- "hauteur"
- ]
- }
- },
- {
- "nm": "auxiliaire médical",
- "id": "5f17e13007e150aae5e6f969d3b74bfaef4d7990bccd2045945052e4d022f440",
- "kws": {
- "fr": [
- "auxiliaire médical",
- "infirmier"
- ]
- }
- },
- {
- "nm": "répondre",
- "id": "a7a7da66f69db56b6b0a489993e15ba66910dfab59aa067bc21db8b9dbd2124b",
- "kws": {
- "fr": [
- "répondre"
- ]
- }
- },
- {
- "nm": "courir",
- "id": "7cc8d19376c0a9bfc35e26cf0b3d22ed23badf9ee7621464955c13cd94ee214b",
- "kws": {
- "fr": [
- "courir"
- ]
- }
- },
- {
- "nm": "coquille",
- "id": "df4d9551ecc04756f10736febcb98d1a666a6fa172078810ce89a4c9ae3cf358",
- "kws": {
- "fr": [
- "coquille",
- "œuf cassé"
- ]
- }
- },
- {
- "nm": "mettre en désordre",
- "id": "2e037a69a474815b60a22a5b5318661245ea0dc8980c6ecef5673664a6567524",
- "kws": {
- "fr": [
- "mettre en désordre"
- ]
- }
- },
- {
- "nm": "plateau",
- "id": "1c9dd9228fb493366daac3aaa55c0762edad90ad7114323cd3c5adb4f2798bcd",
- "kws": {
- "fr": [
- "plateau"
- ]
- }
- },
- {
- "nm": "cravate",
- "id": "c9a875cc47de0ad850d469584a0794540e92ecc58608715f5fe8370178816a07",
- "kws": {
- "fr": [
- "cravate"
- ]
- }
- },
- {
- "nm": "cotons tiges",
- "id": "9c6755c86bfda54ab899ca7290197758a3ac48b8debcb6723979963aa9ac98a6",
- "kws": {
- "fr": [
- "cotons tiges"
- ]
- }
- },
- {
- "nm": "pilier",
- "id": "f56127a6e2896db1b8ef5a8cd984afa8ec5db93eacd606156197aa56fa8ddb91",
- "kws": {
- "fr": [
- "pilier",
- "vierge del pilar",
- "vierge"
- ]
- }
- },
- {
- "nm": "fenêtre oscillo-battante",
- "id": "7b9a3a754b5bc2ac54a95658ab785d3d56422a9acc4a1d06a0b8d5583ecd1199",
- "kws": {
- "fr": [
- "fenêtre oscillo-battante"
- ]
- }
- },
- {
- "nm": "lit",
- "id": "81662184145f101295956c03afe9784307e390af614d40e2a68013ae6463c0a9",
- "kws": {
- "fr": [
- "lit"
- ]
- }
- },
- {
- "nm": "couleur",
- "id": "3eae78017c2936009db65480a2b914d569363ff815a05540e9ab058dfb382916",
- "kws": {
- "fr": [
- "couleur",
- "de quelle couleur est-il"
- ]
- }
- },
- {
- "nm": "poisson marteau",
- "id": "afe6c72f3433833514482513009821ebd5fdeb4cca4e164c5c362ef392b02f1e",
- "kws": {
- "fr": [
- "poisson marteau"
- ]
- }
- },
- {
- "nm": "avortement",
- "id": "2447b19b4fd6d854b9e1de343b7138d364524f3edc771d7e955c3e9c3f40ccab",
- "kws": {
- "fr": [
- "avortement"
- ]
- }
- },
- {
- "nm": "légumes secs",
- "id": "3fc2eea7192088369186d1e418b30328d2882bf5f3e33a3c26fc00fa27c1be59",
- "kws": {
- "fr": [
- "légumes secs"
- ]
- }
- },
- {
- "nm": "de",
- "id": "532969a5f3f3f13646e307ae4229a4f3eba1d4a5548ac582190d5091b028dc3b",
- "kws": {
- "fr": [
- "de"
- ]
- }
- },
- {
- "nm": "saut à la perche",
- "id": "9f4c102ad30cee83483b246c819e1be5838d03a4af4262c7e138af630e482e71",
- "kws": {
- "fr": [
- "saut à la perche"
- ]
- }
- },
- {
- "nm": "basket",
- "id": "36ec32b73180210eb5daa98a23766e0a1503160e439d21694828827c544b9a7c",
- "kws": {
- "fr": [
- "basket",
- "jouer au basket-ball",
- "match"
- ]
- }
- },
- {
- "nm": "conteneur de piles",
- "id": "c81dbf70f3e16445b07a48858878d178849848d8de6070d71bdadffb8ee3851a",
- "kws": {
- "fr": [
- "conteneur de piles"
- ]
- }
- },
- {
- "nm": "inscription",
- "id": "d9afaf6cc3ffd4d953afba1307bf9ca6e7a449683a10f7748d60310953dc9ad7",
- "kws": {
- "fr": [
- "inscription",
- "inscrire",
- "s\u0027inscrire"
- ]
- }
- },
- {
- "nm": "aquarium",
- "id": "e821a83bce25029f6bcd58ee7a560685548d6d4861c122960ad68231d19dc562",
- "kws": {
- "fr": [
- "aquarium"
- ]
- }
- },
- {
- "nm": "coller",
- "id": "989f7141cf99563a3b03b7f589b96b44d9e9a6d35d49acb9fef14fb39a349ebd",
- "kws": {
- "fr": [
- "coller"
- ]
- }
- },
- {
- "nm": "chapeau melon",
- "id": "75c927d7d49d7596271b8d24ceb60cf3b511787cad5c06e945ef575faeb545bf",
- "kws": {
- "fr": [
- "chapeau melon"
- ]
- }
- },
- {
- "nm": "séparer",
- "id": "7d5aeb6bbe5e6bdd1f18097eb74ed4fa034ae271b3f966fe80fad88c9a087146",
- "kws": {
- "fr": [
- "séparer",
- "éloigner",
- "s\u0027éloigner"
- ]
- }
- },
- {
- "nm": "dessiner",
- "id": "0b01f92297c12678ff7c8b998733653f5520627b1f0683efc057e243f5e9c04d",
- "kws": {
- "fr": [
- "dessiner"
- ]
- }
- },
- {
- "nm": "marelle",
- "id": "4a2816c28cedf81345de578d5f52b90b7f3c7f8f1c3f7b1fa63a378e7495747b",
- "kws": {
- "fr": [
- "marelle"
- ]
- }
- },
- {
- "nm": "voyageurs",
- "id": "275fe39ee21f2bc5b3f9cbd47906531a6338b57f27771e286349b6ff189e5d95",
- "kws": {
- "fr": [
- "voyageurs"
- ]
- }
- },
- {
- "nm": "annuler",
- "id": "e84a1b6cd02dd5339be57abc8f08f0f13dd4d25eea793d95cba0a73e0e8a9e14",
- "kws": {
- "fr": [
- "annuler"
- ]
- }
- },
- {
- "nm": "accompagner",
- "id": "ff984bbd1eff6c7308d882f88effb9b0bf193de0359ff8a90ba42696a1b04d1c",
- "kws": {
- "fr": [
- "accompagner"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "86c4ccb3c83ab9ecc18e0d3f1319456e365f1990ba9ab684e781676659b34356",
- "kws": {
- "fr": [
- "faire de l\u0027exercice"
- ]
- }
- },
- {
- "nm": "cahier",
- "id": "cbb011e39f275d2ff3e2f195e39f4cbf5cb3be90b4aea2755e218265283dfca9",
- "kws": {
- "fr": [
- "cahier"
- ]
- }
- },
- {
- "nm": "pictogrammes",
- "id": "ab19f97d04fe50f3f2e9ca8b7d1e8e41bf31c5e5041342298976f67f09cf8658",
- "kws": {
- "fr": [
- "pictogrammes"
- ]
- }
- },
- {
- "nm": "remorque",
- "id": "3e81b2fb46780e1dde3beca9fbb203163807ba605b94d351d92707e84c252a25",
- "kws": {
- "fr": [
- "remorque"
- ]
- }
- },
- {
- "nm": "estomac",
- "id": "6946d5f89572cc58c5fe9fc8afc8b27d63e4136421ef47ef80154f505c12d37c",
- "kws": {
- "fr": [
- "estomac"
- ]
- }
- },
- {
- "nm": "dulcinée du toboso",
- "id": "b8bf24e40b6fc39eea130d011e0b9d04758b34d9ac59711a5547844982b8ee94",
- "kws": {
- "fr": [
- "dulcinée du toboso",
- "dulcinée"
- ]
- }
- },
- {
- "nm": "blanc",
- "id": "d0d49680b62a02adde397d807d4c8562c414ceadcc6c8e311012a5485f11b6d0",
- "kws": {
- "fr": [
- "blanc"
- ]
- }
- },
- {
- "nm": "micropuce",
- "id": "4abdeda9249c3bab4e559ea9a4fd5963cd6113d81994be001a2e721c29e4f06a",
- "kws": {
- "fr": [
- "micropuce"
- ]
- }
- },
- {
- "nm": "nid-de-poule",
- "id": "df371d307e356e4fb7d71af49c4f0d170d8fd4ddbb8cc8a14a2a1675c8c60a7e",
- "kws": {
- "fr": [
- "nid-de-poule"
- ]
- }
- },
- {
- "nm": "trace",
- "id": "1f653993a4e74b5d748bff5e34736898b3077591e0f08c185c7bd5181c90ea86",
- "kws": {
- "fr": [
- "trace"
- ]
- }
- },
- {
- "nm": "poivre",
- "id": "c9744e183e580bc0ede0831e3839431144a25df9960330346f8e2372fd5277ea",
- "kws": {
- "fr": [
- "poivre"
- ]
- }
- },
- {
- "nm": "nager",
- "id": "8232e74779c702b55630be96bc0fb20a52085025449c91229537c0052bdad46b",
- "kws": {
- "fr": [
- "nager",
- "natation"
- ]
- }
- },
- {
- "nm": "douze",
- "id": "993737d877dd726866f3bf251a5a0bcae3ea40f521958b4ab7caf2f0ce973dcf",
- "kws": {
- "fr": [
- "douze",
- "12"
- ]
- }
- },
- {
- "nm": "cubitus",
- "id": "9b5786e595e2c69e31d577cf9a9d9e0307c58e4c945b8871c44d96c57b4bbe5f",
- "kws": {
- "fr": [
- "cubitus"
- ]
- }
- },
- {
- "nm": "display",
- "id": "4aab05b08ed376a17bd9a936ed1cd653bed6ce54567fddbab844b9a2e991637c",
- "kws": {
- "fr": [
- "display"
- ]
- }
- },
- {
- "nm": "guadalajara",
- "id": "d6da3b6409fe300f69e61922772e3f8a40599fe0c63bbc90e4c8382e48d61d20",
- "kws": {
- "fr": [
- "guadalajara"
- ]
- }
- },
- {
- "nm": "calice",
- "id": "a023c32002494fd7fc94e4a16e1d08358c3484bbbe3a582705dbcf1d99b1d5b4",
- "kws": {
- "fr": [
- "calice"
- ]
- }
- },
- {
- "nm": "temple",
- "id": "1dc21ee20c76d30ddf8e1e6427e4c8448ae93debb72cb282679679caed7ce481",
- "kws": {
- "fr": [
- "temple"
- ]
- }
- },
- {
- "nm": "cours de religion",
- "id": "fb2a8b2cb48d6950d04f3df2aaf71bfcc4171157bb78c5a13b195c1ef2f0a018",
- "kws": {
- "fr": [
- "cours de religion",
- "religion"
- ]
- }
- },
- {
- "nm": "orthophoniste",
- "id": "6294823bfe5789ded5f5514c8b0d66dfd348ff148626c9234300f8917f57be4c",
- "kws": {
- "fr": [
- "orthophoniste",
- "logopédie"
- ]
- }
- },
- {
- "nm": "approuver",
- "id": "bf17a416284edd4b63fd6efe812e339081ec1fafc48e97f41bfcb3bd96af567f",
- "kws": {
- "fr": [
- "approuver"
- ]
- }
- },
- {
- "nm": "stationnement",
- "id": "8c43f22379e9247b95391022272f444856199debd6a0e5e5befd18ac0f70819b",
- "kws": {
- "fr": [
- "stationnement",
- "stationner",
- "garer"
- ]
- }
- },
- {
- "nm": "poupée",
- "id": "9ff2817dc81a8b186eff5bc8408238db38a58c9c53547a12ea41d5e7c588c985",
- "kws": {
- "fr": [
- "poupée",
- "barbie"
- ]
- }
- },
- {
- "nm": "cravate",
- "id": "6fc1625f923332402760bbafcad9f51dfc4ca7da9661e440c8787ddbf5dd02c2",
- "kws": {
- "fr": [
- "cravate"
- ]
- }
- },
- {
- "nm": "es-tu content",
- "id": "4e2e0dbba2a8cc62c623583c80527f7a3dfc7716c277c7d9c6bf7e58fda5a6e2",
- "kws": {
- "fr": [
- "es-tu content"
- ]
- }
- },
- {
- "nm": "internat",
- "id": "1e216992bf3eef9d07874ce41b66f6db90ca21b5f724974505dc26019e801cee",
- "kws": {
- "fr": [
- "internat",
- "résidence"
- ]
- }
- },
- {
- "nm": "portugal",
- "id": "d85b4a0a8f636bc7533b38a10ffce7960c6dc4989cf7d8e2bcbad372e8689ac2",
- "kws": {
- "fr": [
- "portugal"
- ]
- }
- },
- {
- "nm": "castagnettes",
- "id": "abb98110e67c7992aacae408d629aee03d601f07bc1a25f40b05fe377ec1c85b",
- "kws": {
- "fr": [
- "castagnettes",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "trombone",
- "id": "9c66b72beb524381050dafae1d45f7fea3fad13cb4f3da02d12b5579bc1ee924",
- "kws": {
- "fr": [
- "trombone",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "phares",
- "id": "3b676042ce4f66aa0eb7ec144e7c5c96addf9dba8685dcfba3b712899f878079",
- "kws": {
- "fr": [
- "phares"
- ]
- }
- },
- {
- "nm": "asperseur",
- "id": "6d0d923f6a195aa0d1acc2d800bbd51b3f3dbb0c30704dd424716104dba77447",
- "kws": {
- "fr": [
- "asperseur"
- ]
- }
- },
- {
- "nm": "embrayage",
- "id": "cb4b27e0120140836e59a638bb7b9a717f7031861dc3553081460bd98d4e868d",
- "kws": {
- "fr": [
- "embrayage"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "9ac3c43a1d167fe51a209d195c8ef221fcb8afdf6336777a460e27a8f55d11ee",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains sur la tête",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "brésil",
- "id": "f31ad7b99e89cc2d638ca3a2f051a1d7ee4919796367778d3ee77507f250fddf",
- "kws": {
- "fr": [
- "brésil"
- ]
- }
- },
- {
- "nm": "pull-over",
- "id": "f3daa1bf707f8819fd32b4e8a0f76755b387e3962b5e4a1ea31b4f1e8e0ee0a5",
- "kws": {
- "fr": [
- "pull-over"
- ]
- }
- },
- {
- "nm": "nous",
- "id": "2f52d8bf501eb3bc7b6319271471380717b39c4e297f5875c465afee66ecdff3",
- "kws": {
- "fr": [
- "nous"
- ]
- }
- },
- {
- "nm": "hôtel",
- "id": "d6bc019a7cf7affa12785732a91b7e622cd73402bf4fde5125aadb58a30f72b1",
- "kws": {
- "fr": [
- "hôtel"
- ]
- }
- },
- {
- "nm": "doucher",
- "id": "e70b288f244a8a232fbc643545aac0c3d06ca663f218609210d7f043f3b03331",
- "kws": {
- "fr": [
- "doucher",
- "se doucher"
- ]
- }
- },
- {
- "nm": "doigt",
- "id": "77866dceccc69bd94475835d4d142c38860cf367e04077e28183fb94b173887b",
- "kws": {
- "fr": [
- "doigt",
- "annuler"
- ]
- }
- },
- {
- "nm": "renne du père noël",
- "id": "0086378b68a0fc03ea1c62eb32183c5dc32501e6f471a1524fbbd18f21b6e405",
- "kws": {
- "fr": [
- "renne du père noël",
- "renne",
- "rudolphe le renne"
- ]
- }
- },
- {
- "nm": "pda",
- "id": "752ff3656d2cde2c598fb42fc93b05970b6f129f56fcd528dfcb4c02a8b7d94e",
- "kws": {
- "fr": [
- "pda"
- ]
- }
- },
- {
- "nm": "combien cela mesure",
- "id": "ffd1568012c45bc57a250c09c4522a0d73780f1c75608b5425faf27c198a99d5",
- "kws": {
- "fr": [
- "combien cela mesure",
- "longueur",
- "mesure"
- ]
- }
- },
- {
- "nm": "mies de pain",
- "id": "cc6e9b3ac43dcd78ba752f7696eb1976d163404969c381fbc4d7f9543a74d2ad",
- "kws": {
- "fr": [
- "mies de pain"
- ]
- }
- },
- {
- "nm": "personne autiste",
- "id": "24d9e07059eaf4c77049947e12c2fb5e47d42dce90d8ec85a1652a34fc641ccd",
- "kws": {
- "fr": [
- "personne autiste"
- ]
- }
- },
- {
- "nm": "aplatir",
- "id": "90c3d9fc6295163c3e99837eadfddae41d2ff32bcd30c1595b4a41031655c905",
- "kws": {
- "fr": [
- "aplatir"
- ]
- }
- },
- {
- "nm": "autriche",
- "id": "f94e442f5725c889fc6a1ac04279a49a674cb84dc7f679b1f804faf59aeab55b",
- "kws": {
- "fr": [
- "autriche"
- ]
- }
- },
- {
- "nm": "jeune",
- "id": "a8dcd04236fde610b948a391554b1f9aa11613d67a746d573641ca0913550b64",
- "kws": {
- "fr": [
- "jeune",
- "adolescent"
- ]
- }
- },
- {
- "nm": "proie",
- "id": "5e7339a096a8b5ba0af88dd5105d2391c2b22c123cc918d70bfaf11d7de75be7",
- "kws": {
- "fr": [
- "proie",
- "digue"
- ]
- }
- },
- {
- "nm": "candélabre",
- "id": "2b25b60b74cb27cf3815b59258554b5770f5d73a3dcaef80aab2004c5835d790",
- "kws": {
- "fr": [
- "candélabre"
- ]
- }
- },
- {
- "nm": "dînette",
- "id": "fe8ee9cef427af880b6a4749ae619306c2e25837d319acec1a5c744a40cdaad7",
- "kws": {
- "fr": [
- "dînette"
- ]
- }
- },
- {
- "nm": "piétiner",
- "id": "14566a73a2c94c432229b086b63c25d762b89d873b5be7c3dc582f3e381817e1",
- "kws": {
- "fr": [
- "piétiner",
- "marcher sur le pied"
- ]
- }
- },
- {
- "nm": "salle de classe",
- "id": "88845b216cad9397ee8cf3867ec6283459c8ee9e745944237deb534a8c14e3ed",
- "kws": {
- "fr": [
- "salle de classe",
- "salle de cours"
- ]
- }
- },
- {
- "nm": "chat",
- "id": "10f1ff92aeec208f69ad286d325dbf1ef27d0fc103e7b1b81dd9ec4b5bfacd32",
- "kws": {
- "fr": [
- "chat",
- "minet"
- ]
- }
- },
- {
- "nm": "ronger",
- "id": "89e12a24c1525c2bee2306fb60a5962515b33075359331d3908ab7d075255802",
- "kws": {
- "fr": [
- "ronger"
- ]
- }
- },
- {
- "nm": "parking",
- "id": "738e23c842eb56812cf79b16d78b6aabbbc1ab206f94becbfdfd540717a7d296",
- "kws": {
- "fr": [
- "parking",
- "stationnement"
- ]
- }
- },
- {
- "nm": "bac à sable",
- "id": "77265888c02d9c7c29b4b4522c8146c13900fab26633d41f2da3a893c4d43597",
- "kws": {
- "fr": [
- "bac à sable",
- "sablonneux"
- ]
- }
- },
- {
- "nm": "pinces",
- "id": "7644a23a5f9b70cab373c0fb3adc58bc5a846997888eda6e7da9a0d0c4579167",
- "kws": {
- "fr": [
- "pinces"
- ]
- }
- },
- {
- "nm": "à cloche-pied",
- "id": "e087e50f446fb7c705cfdb8121359c0fd09101ac941e250e8c4c83af4c5f417a",
- "kws": {
- "fr": [
- "à cloche-pied",
- "sauter à cloche-pied",
- "sauter"
- ]
- }
- },
- {
- "nm": "veine",
- "id": "39d73ef12c227f050bcbbb0471cd1bfeaa5e3afcbdc4bc559b85f67fc7cf7ade",
- "kws": {
- "fr": [
- "veine",
- "veines"
- ]
- }
- },
- {
- "nm": "se lever de la chaise",
- "id": "0dc51633bfaed286783146aaf0e8d5071ded9d33e06d969f6e64f81a195a1b4d",
- "kws": {
- "fr": [
- "se lever de la chaise",
- "se lever"
- ]
- }
- },
- {
- "nm": "malaga",
- "id": "f9cc413fccfab52e8212057006e3856f83e859d2fcba1f29316650bdfdd705db",
- "kws": {
- "fr": [
- "malaga"
- ]
- }
- },
- {
- "nm": "asperge",
- "id": "6e8367853cc3e85fb0747b585596f4c02bef74db84088d558a548e69f0ff9a54",
- "kws": {
- "fr": [
- "asperge"
- ]
- }
- },
- {
- "nm": "chaussure de sport",
- "id": "fbda2985241c50ad98d53797eaf9ba4ec9908fbb8c0fb417131b3af6ef586f9a",
- "kws": {
- "fr": [
- "chaussure de sport",
- "chaussures"
- ]
- }
- },
- {
- "nm": "tousser",
- "id": "595ef9bdfada58b13980226cb3ddc9a9405084f132cdc1282068e16d09200e86",
- "kws": {
- "fr": [
- "tousser",
- "toux",
- "crise"
- ]
- }
- },
- {
- "nm": "nageoires",
- "id": "5478876b95e3e85f092e56cc8f335b4508f0a0a72f4d5b9df52c899472759ecf",
- "kws": {
- "fr": [
- "nageoires"
- ]
- }
- },
- {
- "nm": "sécheresse",
- "id": "e2cf4e2ef19aa96f974b32f81ba9b6325dcea49ae4d05446daac3e9a4911d25d",
- "kws": {
- "fr": [
- "sécheresse",
- "sécher"
- ]
- }
- },
- {
- "nm": "viande",
- "id": "d297602324e0142e6e20465dcafa6172326daf280025297c698bdf18d9c01d8b",
- "kws": {
- "fr": [
- "viande"
- ]
- }
- },
- {
- "nm": "concessionnaire",
- "id": "5b45a3a13005fec9c81bfd924626bf0015e23c5b1236b146cf98b16f7269bcde",
- "kws": {
- "fr": [
- "concessionnaire",
- "magasin de voitures"
- ]
- }
- },
- {
- "nm": "dinosaure",
- "id": "74e6488cb59eac25fe60bbe0a7ea55fdda3c7dabc8b547e22863e0d6172f8c13",
- "kws": {
- "fr": [
- "dinosaure"
- ]
- }
- },
- {
- "nm": "balai",
- "id": "24c6556479001bbc711d6a12d5945bf730abb56544e8e5efe04d6b695e6f1688",
- "kws": {
- "fr": [
- "balai"
- ]
- }
- },
- {
- "nm": "menthe",
- "id": "8897c8186d19fb38f93b3b53501ed092eeefd73492a006fd42a6da5675845ce0",
- "kws": {
- "fr": [
- "menthe"
- ]
- }
- },
- {
- "nm": "carte jaune",
- "id": "8104a278152aa13d3dad372007d76e4f5b3be09527df9a57a984e93c9ab66ad8",
- "kws": {
- "fr": [
- "carte jaune",
- "carte"
- ]
- }
- },
- {
- "nm": "entrepôt",
- "id": "6bacfcf630884c499c36273470366aff9f468dbdc450c8c185d47ec35e953563",
- "kws": {
- "fr": [
- "entrepôt",
- "signalétique",
- "magasin de linge"
- ]
- }
- },
- {
- "nm": "repos",
- "id": "099fb86c1d795142524b4e96457af5bc95931dace42ba7f805746fb9a2da1621",
- "kws": {
- "fr": [
- "repos"
- ]
- }
- },
- {
- "nm": "faufiler",
- "id": "b4c7f3079855e4f94a50b908ebb857472361214681d596b9e79c8484e88c8f3e",
- "kws": {
- "fr": [
- "faufiler"
- ]
- }
- },
- {
- "nm": "donner un rendez-vous",
- "id": "2944508208ecb5ebd0f807e038790dfe5e4496b028edd235fc579c00e220fb44",
- "kws": {
- "fr": [
- "donner un rendez-vous"
- ]
- }
- },
- {
- "nm": "table",
- "id": "641a11598cce8c266faca54441003fe846954cf207776d5f9654525b4806fabb",
- "kws": {
- "fr": [
- "table"
- ]
- }
- },
- {
- "nm": "importer",
- "id": "0248ffc12d409d04e84f428bd42aaf7074f24b530e8536fd3e10a0fec13609b0",
- "kws": {
- "fr": [
- "importer"
- ]
- }
- },
- {
- "nm": "mettre",
- "id": "c97d34edb3fb2d4c537e334cf792b8fcc6a5c7a6c26c171fe41b3773b86cda5c",
- "kws": {
- "fr": [
- "mettre"
- ]
- }
- },
- {
- "nm": "coin",
- "id": "b01d70b75e77716fd8a5926547a1f2263cfb6c7cd0b1db4b4239b68629a4f037",
- "kws": {
- "fr": [
- "coin"
- ]
- }
- },
- {
- "nm": "prendre le papier",
- "id": "34e12535ec0fae4cd57b69ca307379b23c98e2114f81b9916d26f4903dddb256",
- "kws": {
- "fr": [
- "prendre le papier",
- "prendre"
- ]
- }
- },
- {
- "nm": "emploi",
- "id": "89bd256369e57db6eb2d2d98f4432822f9fbed2734ffd7e64af81cd9cc36e3ad",
- "kws": {
- "fr": [
- "emploi"
- ]
- }
- },
- {
- "nm": "délinquant",
- "id": "fcafe1c73df2fac0c939268361b3137e87e18ba4ec47deeac0ca910f1d05a027",
- "kws": {
- "fr": [
- "délinquant",
- "voleur",
- "voleuse",
- "bandit"
- ]
- }
- },
- {
- "nm": "lionne",
- "id": "4784a76b15bcb4e8931295c612f6887d7f899a57c6329b8d1c2e9a2be019cb1e",
- "kws": {
- "fr": [
- "lionne"
- ]
- }
- },
- {
- "nm": "san jacobo",
- "id": "4f5784e5b8e4c4f98062fe0bf5d4114ce48f463c0b8c603166f6f7468dd6c712",
- "kws": {
- "fr": [
- "san jacobo",
- "sanjacobo"
- ]
- }
- },
- {
- "nm": "pigeon",
- "id": "c586032b7b8518e0d2af61e1f4bf4b8f6f905f9964ddb65348ea0df59cb97f41",
- "kws": {
- "fr": [
- "pigeon"
- ]
- }
- },
- {
- "nm": "trompette",
- "id": "f610623b2f30b9af1e79bb3776e0c5e1bd53070e814c957e54d22f6678dba2cf",
- "kws": {
- "fr": [
- "trompette",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "escalader",
- "id": "ce6b3a0a7d253a185d899835d4975158470a238bf5c16dcab4bd2887094c9049",
- "kws": {
- "fr": [
- "escalader"
- ]
- }
- },
- {
- "nm": "pilule",
- "id": "abe1c468eb9f540772c6f10d2ce750a2085cf8b64a3c212a34f592b9afe08f36",
- "kws": {
- "fr": [
- "pilule",
- "anti-contraceptifs"
- ]
- }
- },
- {
- "nm": "boîte à lettres",
- "id": "1f71397087aa31f714aed8e40908c5871d343a95f6127e72e84dbc0b40c460d5",
- "kws": {
- "fr": [
- "boîte à lettres"
- ]
- }
- },
- {
- "nm": "poutre",
- "id": "b754fa1dc876bf7ce1d39de98129646c4af0d8b793262ba4ad400ee2fafa23bf",
- "kws": {
- "fr": [
- "poutre"
- ]
- }
- },
- {
- "nm": "écureuil",
- "id": "3bcf667f1e82243c943d59e91abbf1ea69b822a05e9eb4f45a09d638d1531285",
- "kws": {
- "fr": [
- "écureuil"
- ]
- }
- },
- {
- "nm": "ceuta",
- "id": "83fde866d44ce8a3547c4a9fc9ffcc5ff2579774196c59dda16ddd85d71f6f0b",
- "kws": {
- "fr": [
- "ceuta",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "hamster",
- "id": "4bd0f983b1b6d4681625209d3e435d80d42c289bb3267ac0bb4039ac3cf748b8",
- "kws": {
- "fr": [
- "hamster"
- ]
- }
- },
- {
- "nm": "boudin",
- "id": "31a62617810241cbe3c84ad2d0f8f368fecf4d1c85fceb5ca0ab23b63d1d83ff",
- "kws": {
- "fr": [
- "boudin"
- ]
- }
- },
- {
- "nm": "cabochard berrugon",
- "id": "c21ea850927036ce5ad0c3cd23eec87926e800967294fc1a87c61c5231f47b79",
- "kws": {
- "fr": [
- "cabochard berrugon",
- "cabochard"
- ]
- }
- },
- {
- "nm": "ornement",
- "id": "621ef09e21a78376308e846887de6a1abb5cd6377f30a9847361d2c03b537f93",
- "kws": {
- "fr": [
- "ornement",
- "mayonnaise"
- ]
- }
- },
- {
- "nm": "effacer",
- "id": "0bd2f77de740d482dadf38b6e353e8ac61383460e155eb1d603dce6a218331ce",
- "kws": {
- "fr": [
- "effacer"
- ]
- }
- },
- {
- "nm": "bison",
- "id": "aa3509dcf5aff544f7137a7ed29acdb55dcac5b82eb062e88242d75d29aeb88c",
- "kws": {
- "fr": [
- "bison"
- ]
- }
- },
- {
- "nm": "graisse",
- "id": "ba9b76024abf242bbcd934d8e19838fc7c889b88a2b491312b26cc4137b332db",
- "kws": {
- "fr": [
- "graisse"
- ]
- }
- },
- {
- "nm": "réclamation",
- "id": "82f8c2aab601456c3e90ce6295860a5db23930438b1998685a788cc45834d181",
- "kws": {
- "fr": [
- "réclamation"
- ]
- }
- },
- {
- "nm": "cil",
- "id": "6c98955847520b11f90024f42cc375bbbb2b0ccf9f338d363ff6e0c925da5bd5",
- "kws": {
- "fr": [
- "cil"
- ]
- }
- },
- {
- "nm": "don quichotte",
- "id": "3980ee81f4ba0a489810608023ecac177fcf424c4536c8d20ba25c1ea39f2412",
- "kws": {
- "fr": [
- "don quichotte"
- ]
- }
- },
- {
- "nm": "es-tu fâché",
- "id": "6c64c901881489a0108df13e9c0932ca91ceb8cf707ea5fae97286bfbbfe6b48",
- "kws": {
- "fr": [
- "es-tu fâché"
- ]
- }
- },
- {
- "nm": "fer à repasser",
- "id": "85d98e9f7ac11ea47df07e8e3f5ddc2ceb9f1cc9d5beb85ce03b265624c443bd",
- "kws": {
- "fr": [
- "fer à repasser"
- ]
- }
- },
- {
- "nm": "donner un cadeau",
- "id": "c0c05d3e93e66c9cd4bbd9852b687effa0071efed56f9e090eb82849c5b1e75a",
- "kws": {
- "fr": [
- "donner un cadeau",
- "offrir"
- ]
- }
- },
- {
- "nm": "hydrothérapie",
- "id": "eddebf2c88f0d3be2e69ce5575447147c5e586c88805a4a51e80d0f77afb144d",
- "kws": {
- "fr": [
- "hydrothérapie",
- "signalétique",
- "accès à hydrothérapie"
- ]
- }
- },
- {
- "nm": "salamanque",
- "id": "1511147da2df79b7e33d12a6687cb7b41c31255f758940e49ddbcb39c925654a",
- "kws": {
- "fr": [
- "salamanque"
- ]
- }
- },
- {
- "nm": "colin-maillard",
- "id": "456b763f3bf2347ca428ae257ee5a84a12cd044b734f319cf80fa5064db51653",
- "kws": {
- "fr": [
- "colin-maillard"
- ]
- }
- },
- {
- "nm": "démarches",
- "id": "2ec33615e10ecc2ef2399253d06927065a4f81dc32c82f5c3a54331fd52b7a1d",
- "kws": {
- "fr": [
- "démarches"
- ]
- }
- },
- {
- "nm": "poumon",
- "id": "d2dcc01d4ff3ead1616054de4f86581d0c15644b4bdfe13e4d2708f2c0336a06",
- "kws": {
- "fr": [
- "poumon"
- ]
- }
- },
- {
- "nm": "cela",
- "id": "988061c0375e1bfaca3550aa9d0eff6e01858b2eafc377d9d2b725fe9e3ad970",
- "kws": {
- "fr": [
- "cela",
- "celle-là",
- "celui-ci"
- ]
- }
- },
- {
- "nm": "marcher",
- "id": "4d17ce7a6dc88c966dd4dddd159b1298a8215926b8305504d4704e2b7f9be994",
- "kws": {
- "fr": [
- "marcher"
- ]
- }
- },
- {
- "nm": "spaghettis",
- "id": "66c898e9279147b170f77fc6eef7fb55164fae8b1ca31533df1b186fdc4fd7e0",
- "kws": {
- "fr": [
- "spaghettis"
- ]
- }
- },
- {
- "nm": "scorpion",
- "id": "8a92e93897ad2a0b0111619b029b8d9ee51432cabcf656c31ea59c1cc09c9d5d",
- "kws": {
- "fr": [
- "scorpion"
- ]
- }
- },
- {
- "nm": "pie",
- "id": "610f0fc7ad8bd63d39f05f35a3a6e3d553424540718099deec4a8ddff19c8f03",
- "kws": {
- "fr": [
- "pie"
- ]
- }
- },
- {
- "nm": "obscurité",
- "id": "36aab6d117dee5911d6ce368c88143574222922385cf85d387a7979af1d3a5b2",
- "kws": {
- "fr": [
- "obscurité"
- ]
- }
- },
- {
- "nm": "parfumer",
- "id": "1ef0430479c2b58d8e46382144ed488e92edf958b611f62167d42b2a5b72505f",
- "kws": {
- "fr": [
- "parfumer",
- "se parfumer"
- ]
- }
- },
- {
- "nm": "être",
- "id": "eea2e31f6495359e68389be779584f16006d63d572c6bafefac6b0191a83d5c5",
- "kws": {
- "fr": [
- "être"
- ]
- }
- },
- {
- "nm": "décembre",
- "id": "94b5a50c70770bf00e9d145cc065508545c69d1f4312cb8a3176f461cc2de7b9",
- "kws": {
- "fr": [
- "décembre"
- ]
- }
- },
- {
- "nm": "ustensile de cuisine",
- "id": "5a6080cf9e160983dfbb40c5a2e3f25f30c41ed1546255ba2f55f2849d3a699c",
- "kws": {
- "fr": [
- "ustensile de cuisine",
- "louche"
- ]
- }
- },
- {
- "nm": "électroencéphalogramme",
- "id": "2aba9ee399b4b1b0175db87237d3fb6ca629113b43b5d2f7aa99c79866623e50",
- "kws": {
- "fr": [
- "électroencéphalogramme",
- "éléctro"
- ]
- }
- },
- {
- "nm": "entrepôt",
- "id": "7b59bea9c39189b172e867253c6c05fc19c7672d7f12424d16b626296466b417",
- "kws": {
- "fr": [
- "entrepôt",
- "signalétique",
- "local de repassage"
- ]
- }
- },
- {
- "nm": "verser",
- "id": "8528555ea6cecca154b82fcca7c5df9de61dae7485ad96cbdee9b3e688c4b0f3",
- "kws": {
- "fr": [
- "verser"
- ]
- }
- },
- {
- "nm": "gélatine",
- "id": "35ff77a55600facc17206f564be88931567803fab433631bdbf62527c5955a70",
- "kws": {
- "fr": [
- "gélatine"
- ]
- }
- },
- {
- "nm": "rouge",
- "id": "e3d1f7ceb78dc3fdbb9fc59e06c2bc8329c877fb0dfad47601dc295d8df29f49",
- "kws": {
- "fr": [
- "rouge"
- ]
- }
- },
- {
- "nm": "rond-point",
- "id": "0cec79e9730128b149446fa7495e97130f4d57403ad22413d3af85270e8ed835",
- "kws": {
- "fr": [
- "rond-point"
- ]
- }
- },
- {
- "nm": "magasin de bonbons",
- "id": "1b43b8b346448f86fd5d9e01a9efd333bfe7df05d9b815e03a9dd87d1e797121",
- "kws": {
- "fr": [
- "magasin de bonbons"
- ]
- }
- },
- {
- "nm": "table de billard",
- "id": "03593ce9309d61d546c18bf65c5ce3359d72770990519af81404227a64b0a990",
- "kws": {
- "fr": [
- "table de billard",
- "billard"
- ]
- }
- },
- {
- "nm": "thaïlande",
- "id": "31c4516b0fc3687a234c26b13fb3e9b9a6530d9c73b1982ab79acaa1ba8bb30d",
- "kws": {
- "fr": [
- "thaïlande"
- ]
- }
- },
- {
- "nm": "piquer",
- "id": "4df837afd8cc2c5aa75a765d41d2ba41fea6e08cbfb0581220479b6a06573e9a",
- "kws": {
- "fr": [
- "piquer"
- ]
- }
- },
- {
- "nm": "lion",
- "id": "e1bae1e05a769b52cf8f5dc1799147eb5ab481d1b74463b7945240230995fbcd",
- "kws": {
- "fr": [
- "lion"
- ]
- }
- },
- {
- "nm": "salle d\u0027étude et de lecture",
- "id": "436f27c4ee21d6e2eeca900f12a6ae91df1d7bca641ddb9410f202dfef906c83",
- "kws": {
- "fr": [
- "salle d\u0027étude et de lecture"
- ]
- }
- },
- {
- "nm": "pot d\u0027échappement",
- "id": "eada3ec70a15fa8fcfca886b4936570d9f9841e81c1159f603dd8e774a29196a",
- "kws": {
- "fr": [
- "pot d\u0027échappement"
- ]
- }
- },
- {
- "nm": "globe terrestre",
- "id": "13751d6f6be77f50ddf8426bb1371ff5caca1305ec7a582862d20614ea033207",
- "kws": {
- "fr": [
- "globe terrestre"
- ]
- }
- },
- {
- "nm": "cachette",
- "id": "186c93916ccadbb3e221bbcddb0954ca515b48c0864c3f8b902f50a41477a466",
- "kws": {
- "fr": [
- "cachette"
- ]
- }
- },
- {
- "nm": "scélérat",
- "id": "12011024857f1aefedc1058aaebf68b7bde08ee0334f3a3e9989622359d47ff5",
- "kws": {
- "fr": [
- "scélérat",
- "mauvais"
- ]
- }
- },
- {
- "nm": "gagnante",
- "id": "e29368801502ec00c87f4ccfc6b60b214f77d08f587fb5584e966b7990d29d7d",
- "kws": {
- "fr": [
- "gagnante"
- ]
- }
- },
- {
- "nm": "masque",
- "id": "ae2c2f99bb7d05c618103370b98758d3f864847aa2b1e6a584fc240dbe0651c4",
- "kws": {
- "fr": [
- "masque"
- ]
- }
- },
- {
- "nm": "conférence",
- "id": "621cad896b395f7d981eb4e38830dcc8d776f11c0e0e74fa0a1434dbf4411234",
- "kws": {
- "fr": [
- "conférence",
- "conférencier"
- ]
- }
- },
- {
- "nm": "mercredi",
- "id": "5e662ed2b20494424376e52e64225701584bc88b22f2950d0b014739b4cdd40f",
- "kws": {
- "fr": [
- "mercredi"
- ]
- }
- },
- {
- "nm": "chou",
- "id": "c4932bd7f278f2ed923457a9310ba83beb857c8cfe14f228d6f62d16e7f6e23c",
- "kws": {
- "fr": [
- "chou"
- ]
- }
- },
- {
- "nm": "fougère",
- "id": "7c856261ec49e8ca092a948cd8527076e073df00f2cd36910e67c912d9cdd498",
- "kws": {
- "fr": [
- "fougère"
- ]
- }
- },
- {
- "nm": "hockey",
- "id": "e82a1ccfb5cbca1fcd68728753ceb1ab376e6da4f84a22e23521d6a9a31528ed",
- "kws": {
- "fr": [
- "hockey",
- "jouer au hockey"
- ]
- }
- },
- {
- "nm": "règle",
- "id": "27c3b030bff3ffc805c0e673a6be4b485851e76bb09469d09265c42d4e3d499b",
- "kws": {
- "fr": [
- "règle"
- ]
- }
- },
- {
- "nm": "bonjour",
- "id": "79205bdab74634a4de08699576601773cfe8c6bbc837d80b85d827ea1e2fb115",
- "kws": {
- "fr": [
- "bonjour"
- ]
- }
- },
- {
- "nm": "entrer",
- "id": "2b564efca81317be990492866e3a44b5d1b0f0a426a989e5323972f68f0f86c7",
- "kws": {
- "fr": [
- "entrer",
- "accéder"
- ]
- }
- },
- {
- "nm": "vie",
- "id": "6626538654f8b50325afb793523acc95fcd7007bfb1659a209a1378e711c9252",
- "kws": {
- "fr": [
- "vie"
- ]
- }
- },
- {
- "nm": "web",
- "id": "51556658c61312750342795f6bd21c54723d4e748bf4086d539df739593cb561",
- "kws": {
- "fr": [
- "web",
- "site web"
- ]
- }
- },
- {
- "nm": "à tout à l\u0027heure",
- "id": "bf42b4011efdd6e62ebf2ca573dada3bdde484a1db7c277f29bbb929b14efc9a",
- "kws": {
- "fr": [
- "à tout à l\u0027heure",
- "au revoir",
- "au revoir"
- ]
- }
- },
- {
- "nm": "avocat",
- "id": "f101a67b12807f804db0e6b2675e688d6c481331a17899b014b9cbbfd7a090e5",
- "kws": {
- "fr": [
- "avocat"
- ]
- }
- },
- {
- "nm": "fard à joues",
- "id": "e425fbbe8271ed488b7293ca5f057acb8d011457ca04bd16366523dd8292ffe7",
- "kws": {
- "fr": [
- "fard à joues",
- "cosmétique",
- "maquillage"
- ]
- }
- },
- {
- "nm": "banane",
- "id": "7c7e4d39cbe9abc549380cef138c3c22eab2ea0a7aff5027af2ab119a745d1f3",
- "kws": {
- "fr": [
- "banane"
- ]
- }
- },
- {
- "nm": "sonnette",
- "id": "7e04e5382f2e7b1bbfe70ad6dac3f31fcd9d31e3194555d6f83067da467a7b12",
- "kws": {
- "fr": [
- "sonnette"
- ]
- }
- },
- {
- "nm": "aucune",
- "id": "97a5ee5b73df10e0a827b22c7c8e80ec2b7eaa90b952aad7a21990c51b36e387",
- "kws": {
- "fr": [
- "aucune",
- "aucun"
- ]
- }
- },
- {
- "nm": "fermer",
- "id": "4ade393c88354ea3264e664ec389249b221e312a2ef71f44f2782a66f52b069f",
- "kws": {
- "fr": [
- "fermer"
- ]
- }
- },
- {
- "nm": "omelette",
- "id": "defebb7e35627ddc35645c1b8458cf5213304488948b34bc087b3ad02fbe8b22",
- "kws": {
- "fr": [
- "omelette"
- ]
- }
- },
- {
- "nm": "rendre un livre",
- "id": "27b877689890098010f92e265601d614ff0bf66e7507af3ba8e44765c6e9a0c3",
- "kws": {
- "fr": [
- "rendre un livre",
- "rendre"
- ]
- }
- },
- {
- "nm": "bouée",
- "id": "13a7112e95c40f0005ba8a3a325005efd466bff7747e81d37cde36da71825636",
- "kws": {
- "fr": [
- "bouée"
- ]
- }
- },
- {
- "nm": "bristols",
- "id": "9d353a7aa4a0252b81c64bfd12e69c41422581108cefc901341a92c243f48907",
- "kws": {
- "fr": [
- "bristols"
- ]
- }
- },
- {
- "nm": "creuser",
- "id": "b1d4c3312fdbe536c28ff5249516a5ddd45c4d54108fe7f9fa6e42e01e3b88bc",
- "kws": {
- "fr": [
- "creuser"
- ]
- }
- },
- {
- "nm": "cours",
- "id": "f85d2dd452e1c0af93046d1552673a496777e909e8ffa1dc3f0ed9ec6a34ee90",
- "kws": {
- "fr": [
- "cours",
- "professeur",
- "maître"
- ]
- }
- },
- {
- "nm": "service de thérapie professionnelle",
- "id": "8798333c5c3637f45f24b9f7676efa882a883e265692f1da6d93fa89dceff665",
- "kws": {
- "fr": [
- "service de thérapie professionnelle",
- "sto"
- ]
- }
- },
- {
- "nm": "campement",
- "id": "65f367bc13a72b2fcf2fc0ebc2c14519d94c3a8b6da27d39683c5d7c0e09c57a",
- "kws": {
- "fr": [
- "campement",
- "camping"
- ]
- }
- },
- {
- "nm": "boîte de conserve de moules",
- "id": "1dc54662d70f5af4df79c07527f819b03b05b40cb0608d648d23f091ebde0164",
- "kws": {
- "fr": [
- "boîte de conserve de moules"
- ]
- }
- },
- {
- "nm": "fourche",
- "id": "2dd9869e960d06c72c9dcecf85c838ce6b83fecc6919ccd0f22dc09201ac940f",
- "kws": {
- "fr": [
- "fourche"
- ]
- }
- },
- {
- "nm": "fer à cheval",
- "id": "97d7d3d234da95bc1420a4475320d3ce93c8bcc6cb8956b9c07513554e043fb0",
- "kws": {
- "fr": [
- "fer à cheval"
- ]
- }
- },
- {
- "nm": "prostitution",
- "id": "81cfe70ff8be4ce6cc46105cae4ab580c1634c7479f5594d49b529fcf1f3e285",
- "kws": {
- "fr": [
- "prostitution"
- ]
- }
- },
- {
- "nm": "faire du patin",
- "id": "321f49e876f8acd5e8c596bfa8161e919efe4af87eb7612e967ebba1561af1ee",
- "kws": {
- "fr": [
- "faire du patin"
- ]
- }
- },
- {
- "nm": "moniteurs",
- "id": "62e6cb11cae7389b5e607ba9a2eebf70cc4c08449fc2c9869f51d76bea326f62",
- "kws": {
- "fr": [
- "moniteurs",
- "soignants"
- ]
- }
- },
- {
- "nm": "poubelle de recyclage pour le plastique",
- "id": "4612e89abefd871fd5f298284304e25bc29d475f779d3b697dc3850d527b052f",
- "kws": {
- "fr": [
- "poubelle de recyclage pour le plastique",
- "benne"
- ]
- }
- },
- {
- "nm": "fatiguer",
- "id": "8862dd42704b833002f3d80eadaec001495962926fd626eb843d2da1f4695265",
- "kws": {
- "fr": [
- "fatiguer",
- "fatigué",
- "épuiser",
- "épuisé"
- ]
- }
- },
- {
- "nm": "bureau",
- "id": "050b601f1debf4428a0eaa080d0ba68fd611112113ae3389be1feb2193691d88",
- "kws": {
- "fr": [
- "bureau"
- ]
- }
- },
- {
- "nm": "fouiller",
- "id": "eecca34d997dc8d966520e653897c7b4d166b158e61e5d9df6130cf859ddb838",
- "kws": {
- "fr": [
- "fouiller"
- ]
- }
- },
- {
- "nm": "fée",
- "id": "296e68e81c753809e02e25c2fc0caf481826ccce5a0d2ff0a8085a503438f73a",
- "kws": {
- "fr": [
- "fée"
- ]
- }
- },
- {
- "nm": "mercière",
- "id": "a1e58f8d154d63223c78d23746b7d41e071b773549276b5fbf5b394e37ef6e32",
- "kws": {
- "fr": [
- "mercière"
- ]
- }
- },
- {
- "nm": "léger",
- "id": "d0d0a7102cd5ead671584d4537ca6169ce3f97873e1aac15b0b561eea2ea595f",
- "kws": {
- "fr": [
- "léger"
- ]
- }
- },
- {
- "nm": "motopompe",
- "id": "ea2efce5e5e1e4edb82b4a52bb498f912e3505e93a478e249fd865f9beb06184",
- "kws": {
- "fr": [
- "motopompe"
- ]
- }
- },
- {
- "nm": "chat noir",
- "id": "d2b2984eee52438d488d968dc26aa7bc266359a338a63ebae9e6e07849e5b56f",
- "kws": {
- "fr": [
- "chat noir",
- "chat"
- ]
- }
- },
- {
- "nm": "c",
- "id": "ad379a3c73655b298eb29bc1e150212ac88213867c21d3e6f6435772d2aabe90",
- "kws": {
- "fr": [
- "c",
- "lettre"
- ]
- }
- },
- {
- "nm": "phénomène atmosphérique",
- "id": "469aa9fc8b7aaf0c34384b42e7f635cb7cc1b64122bd8e509e454651e9c5d006",
- "kws": {
- "fr": [
- "phénomène atmosphérique",
- "grêle",
- "grêler"
- ]
- }
- },
- {
- "nm": "jumeaux",
- "id": "f7793c1075da2614d8bcb17dad793145058d5a4d4d64497e969977ccde187704",
- "kws": {
- "fr": [
- "jumeaux"
- ]
- }
- },
- {
- "nm": "pont",
- "id": "654ab55b3b0c055def7ffda89c24ac8718cabebc00a0f57fd3215638f4655559",
- "kws": {
- "fr": [
- "pont"
- ]
- }
- },
- {
- "nm": "sonner",
- "id": "ef1b922f7174fe13ee8de8c472c72e49b825549f927b26054876ba99c876c6de",
- "kws": {
- "fr": [
- "sonner",
- "appeler"
- ]
- }
- },
- {
- "nm": "mars",
- "id": "4f3f875ae2ef39bbf8b5eeba9d8c6eec9733057e293b517508e816aea4797f5d",
- "kws": {
- "fr": [
- "mars"
- ]
- }
- },
- {
- "nm": "doucement",
- "id": "7a8d352792e682ca3f45a46c21793f16951340f0fdf9b32ae503b84ccb64c515",
- "kws": {
- "fr": [
- "doucement",
- "lent"
- ]
- }
- },
- {
- "nm": "deuxième",
- "id": "8b1be0ac246cbb2b934d9411164fedec8981dd28229dcbbb49509cfa9142167b",
- "kws": {
- "fr": [
- "deuxième",
- "second"
- ]
- }
- },
- {
- "nm": "quelques",
- "id": "e864805d655991b467fd9d9dea0275cf99d08f433ec1a7c202c07c475f591be9",
- "kws": {
- "fr": [
- "quelques"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "38399c0e8a1c686847d0a58bd7d4bf3e5ad63acfe385482ca74b9cd77d1130b8",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains en haut",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "gourmand",
- "id": "d541980f17edd475040dca187ccbd0d1a2fb4c486b5f3dee8684312b63a20c7b",
- "kws": {
- "fr": [
- "gourmand"
- ]
- }
- },
- {
- "nm": "sin traduccion",
- "id": "7ae7136bbfe19359804cdd9118a33408fc7c304b1a990fea65e52e557a0d5110",
- "kws": {
- "fr": [
- "sin traduccion"
- ]
- }
- },
- {
- "nm": "turbot",
- "id": "2b214da0d345e648abd6583f8504118aedd2860d569b9acda18f6b150b4477be",
- "kws": {
- "fr": [
- "turbot"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "5c66c7a08e9eefd9816d2b869b517add58680cfbe3c1ea7175fb6ff9dc760649",
- "kws": {
- "fr": [
- "praxie",
- "sortir la langue",
- "orthophonie",
- "retirer"
- ]
- }
- },
- {
- "nm": "jus",
- "id": "4a6c8f66c6363c9a079001836f36f4a86ddb0babdf98d6aa66e4446349303236",
- "kws": {
- "fr": [
- "jus"
- ]
- }
- },
- {
- "nm": "expulser",
- "id": "ab3cb9f3086ad775489aa75350d6450628c0743f930f9b7e8b88a2239fcdc8a2",
- "kws": {
- "fr": [
- "expulser",
- "expulsion"
- ]
- }
- },
- {
- "nm": "chauve-souris",
- "id": "c7a2d8861a18c1cf3300da67c6b0e02a5bb9a18589ad458db4e26be84c5f12ed",
- "kws": {
- "fr": [
- "chauve-souris"
- ]
- }
- },
- {
- "nm": "rêver",
- "id": "5f988a896def086bb85451723db6d4cc7aa0c7c630ac280fc66e9ff69db8daaa",
- "kws": {
- "fr": [
- "rêver"
- ]
- }
- },
- {
- "nm": "marin",
- "id": "29c5750fa1ac875129efed23e6ef4256a3a329a181431e1aaab4c402c459dd2d",
- "kws": {
- "fr": [
- "marin"
- ]
- }
- },
- {
- "nm": "faucille",
- "id": "58db53d6dce92bf36513bfce280deb102b0cd4d7ef36cb2018c8e3bb107c78f8",
- "kws": {
- "fr": [
- "faucille"
- ]
- }
- },
- {
- "nm": "machu picchu",
- "id": "2503712be464bfd12283a94f5d91d3af34cc250d0332c3790db7c549c612595f",
- "kws": {
- "fr": [
- "machu picchu"
- ]
- }
- },
- {
- "nm": "garage",
- "id": "1f1dfdcc285af60cce07bd45b5a827319b67ac60570047ee47a7c7abb17d6020",
- "kws": {
- "fr": [
- "garage"
- ]
- }
- },
- {
- "nm": "ingrédients",
- "id": "d2ba75f73b1f4ac098e8a92b40fb7f95d2f63fd4019aa03325b88148d1a0b620",
- "kws": {
- "fr": [
- "ingrédients"
- ]
- }
- },
- {
- "nm": "technologie",
- "id": "e18b1a476d1314444698ad64ad55fd0ffce30cbc3aede9a33d5f21f01bf129cc",
- "kws": {
- "fr": [
- "technologie"
- ]
- }
- },
- {
- "nm": "qu\u0027étudies-tu",
- "id": "059ababb5f43eb0257e5f40f91c8c7eb56ab44f036b5853e30ab036ac9ee8ffa",
- "kws": {
- "fr": [
- "qu\u0027étudies-tu"
- ]
- }
- },
- {
- "nm": "payer",
- "id": "d0d7965e69323af902a3f51151014c611c6c72f3fc83deacb175b24c9f527255",
- "kws": {
- "fr": [
- "payer",
- "commerce",
- "acheter",
- "acquérir"
- ]
- }
- },
- {
- "nm": "étage",
- "id": "b96fd7b6d86a7a8bd910e3f7584721215ad60134c68cd49f409c1a6cfa62a69e",
- "kws": {
- "fr": [
- "étage",
- "appartement"
- ]
- }
- },
- {
- "nm": "amandes",
- "id": "3c186ca7ee2c9faa54c54d775de6e16ee4e26a3d28106f8a677298ad15fffb44",
- "kws": {
- "fr": [
- "amandes"
- ]
- }
- },
- {
- "nm": "drapeau",
- "id": "176c5aa1e06c2638fd6de3bd325dfa9d36f714f750da304d6720305d07a8bfe8",
- "kws": {
- "fr": [
- "drapeau"
- ]
- }
- },
- {
- "nm": "sandwich aux calamars",
- "id": "ff0b06364bc40aae32d6e59d22d7051ba73216a3ed407bc1bf0b4d435fd4d0ad",
- "kws": {
- "fr": [
- "sandwich aux calamars",
- "sandwich"
- ]
- }
- },
- {
- "nm": "vous",
- "id": "f57c840724006fb6b41653f20634365a464a055768fb0d63e8b642017f14aa22",
- "kws": {
- "fr": [
- "vous"
- ]
- }
- },
- {
- "nm": "avion",
- "id": "c074a08536cbd179a49208997066c9ba5408b428adbf2c2983ef07c3d963f5e7",
- "kws": {
- "fr": [
- "avion",
- "aéronef",
- "jet",
- "réacteur"
- ]
- }
- },
- {
- "nm": "la gomera",
- "id": "7f7977e4977ad3052e9571a2ef8ff753862d7c04cc3b1f312edb0b4c9254b974",
- "kws": {
- "fr": [
- "la gomera"
- ]
- }
- },
- {
- "nm": "mairie",
- "id": "798147135cda990f367fc575e111aa1e666eba8d6fc36d2d8a9b987a1adca857",
- "kws": {
- "fr": [
- "mairie"
- ]
- }
- },
- {
- "nm": "coiffé",
- "id": "30deab0d1b79d120850d7f29205a672720718332061fbf607fba588e1d29dd5e",
- "kws": {
- "fr": [
- "coiffé"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "2e491a7ed5bc4eb82642be6166088cf5dffea802a82261a67653712a70e4e06d",
- "kws": {
- "fr": [
- "communauté autonome",
- "asturies"
- ]
- }
- },
- {
- "nm": "amender",
- "id": "5b0b93e17c727b2a52763d174d625fd2aae22675c53a8b1f6a15dce5accf61e1",
- "kws": {
- "fr": [
- "amender"
- ]
- }
- },
- {
- "nm": "enfant",
- "id": "2aa61bf27dbf950396360fe043adc51885e847657729ab80c3381dec7416b8d9",
- "kws": {
- "fr": [
- "enfant",
- "petit garçon",
- "garçon"
- ]
- }
- },
- {
- "nm": "électroencéphalogramme",
- "id": "2a982cef9d07154e6fa23dc96b75629db890c9dc619889aa7304920fc306724b",
- "kws": {
- "fr": [
- "électroencéphalogramme",
- "éléctro"
- ]
- }
- },
- {
- "nm": "décollage",
- "id": "f40f97be1a059284b6400e91e9ae72f9f4150950aad023b2de28ed7084b27078",
- "kws": {
- "fr": [
- "décollage",
- "décoller"
- ]
- }
- },
- {
- "nm": "shiva",
- "id": "19eee988ea3e2a7db159eae372cf0026941383fc722d15a648a882cd153e4c98",
- "kws": {
- "fr": [
- "shiva"
- ]
- }
- },
- {
- "nm": "accusé",
- "id": "fddca62a5ce36589ce4b22a16ed98d4ffb87cdf239f3b2f4cbebfceaa146cffc",
- "kws": {
- "fr": [
- "accusé"
- ]
- }
- },
- {
- "nm": "volée",
- "id": "fe557e0d6742891150f6e0bf0de455ae3c49d9df3418a1660841865a2f92242b",
- "kws": {
- "fr": [
- "volée"
- ]
- }
- },
- {
- "nm": "armoire",
- "id": "05e6c3e7f9c8f69bc0b53b2a63528cd72008391c6e4f619da3f7d679a0ffaf46",
- "kws": {
- "fr": [
- "armoire"
- ]
- }
- },
- {
- "nm": "pénis",
- "id": "cc4e2705e53d0a7c3d5f9f0c2b051b273a2ab940b200b48ca99d133765566d6b",
- "kws": {
- "fr": [
- "pénis"
- ]
- }
- },
- {
- "nm": "rouler",
- "id": "0aa95a05f0d1b2a73355593542aa346b0db8351e3778840a322ee3448e8b9852",
- "kws": {
- "fr": [
- "rouler"
- ]
- }
- },
- {
- "nm": "ver de terre",
- "id": "ea4337201d0a8fa2bbb408e92512ce37ee8c54fc2928a1ec839bec10e3783d3e",
- "kws": {
- "fr": [
- "ver de terre"
- ]
- }
- },
- {
- "nm": "chien",
- "id": "eae5e7afd6f2cc6df0106d48d77252b15c080dfca33e8aa93477b4b7ea3c022b",
- "kws": {
- "fr": [
- "chien"
- ]
- }
- },
- {
- "nm": "autour",
- "id": "25bf83a610a2e180619c1e190a912ba362592f683c7e30c79b4f030de7c33463",
- "kws": {
- "fr": [
- "autour"
- ]
- }
- },
- {
- "nm": "père noël",
- "id": "03f2c09e68fdca144a40fcf9abeec3110cfbb289c6dd5027780b2c736825a961",
- "kws": {
- "fr": [
- "père noël",
- "père-noël"
- ]
- }
- },
- {
- "nm": "chauffeur",
- "id": "4341363245f59f24a80af9060068ea731a44dc315df6e6930344442b120b2dc1",
- "kws": {
- "fr": [
- "chauffeur",
- "conducteur"
- ]
- }
- },
- {
- "nm": "poursuivre",
- "id": "8451a938c8aaee1dcc2050927a253b1d637a4973adbd2cc9642f86d25185d567",
- "kws": {
- "fr": [
- "poursuivre",
- "suivre"
- ]
- }
- },
- {
- "nm": "embrasser",
- "id": "876d38649cb725519a2e533f501b7a9b341149daac133cf602d45995cf401375",
- "kws": {
- "fr": [
- "embrasser",
- "donner un bisou",
- "baiser"
- ]
- }
- },
- {
- "nm": "honduras",
- "id": "b2a0a33aec1bafce20bc7457a470a9e2eba2b7c26a2530c0c116321632083c51",
- "kws": {
- "fr": [
- "honduras"
- ]
- }
- },
- {
- "nm": "quincaillère",
- "id": "b780defee23a6f86ce3d4466929baeb7be5e4547d6592bcff003665364110948",
- "kws": {
- "fr": [
- "quincaillère"
- ]
- }
- },
- {
- "nm": "casquette",
- "id": "cb949e50768f76513f34765cd069afaefaba136a8a26f6e79d9893031367a575",
- "kws": {
- "fr": [
- "casquette"
- ]
- }
- },
- {
- "nm": "patin",
- "id": "cf7ab9e5661fae7c1cc0eadf8f343f23ed002396785e4db5168a9f71acd7782e",
- "kws": {
- "fr": [
- "patin"
- ]
- }
- },
- {
- "nm": "grillon",
- "id": "c404b620e3991ad4c1886d725cb57260942aa40f3b7c0e28a9e796518b428370",
- "kws": {
- "fr": [
- "grillon"
- ]
- }
- },
- {
- "nm": "département de huesca",
- "id": "3b5dee956e0f79014cf47ad6e819490deb5230d118f060f653485f36989a1f4f",
- "kws": {
- "fr": [
- "département de huesca",
- "huesca province",
- "huesca"
- ]
- }
- },
- {
- "nm": "donner un coup",
- "id": "7a6ef954ba436716cf4b6d598ac9d720f3e86e6503f90667a97aee15d5ba379f",
- "kws": {
- "fr": [
- "donner un coup",
- "coller",
- "attaquer",
- "donner un coup de poing",
- "maltraiter"
- ]
- }
- },
- {
- "nm": "bande",
- "id": "f49aa5da28d28fc8ec95c121c3ed2e43ea3ef235cdc28a657c27e8e31964f7e3",
- "kws": {
- "fr": [
- "bande",
- "groupe de musique"
- ]
- }
- },
- {
- "nm": "élaboré",
- "id": "13c99b63ee8baf4d50798a956f08bf6b514c9922b6a1f2c7f2a9dda74e13f26a",
- "kws": {
- "fr": [
- "élaboré",
- "élaborée",
- "matière élaborée"
- ]
- }
- },
- {
- "nm": "slovaquie",
- "id": "333ad5b3fa0aa6fb04ed7775d0d47b394b647f480b0a362ee27ee49c062b868a",
- "kws": {
- "fr": [
- "slovaquie"
- ]
- }
- },
- {
- "nm": "forgeronne",
- "id": "21a35f42c54962fe27bfc1c56a53fb23789233f6bcc2686218608154884f515a",
- "kws": {
- "fr": [
- "forgeronne"
- ]
- }
- },
- {
- "nm": "intimité",
- "id": "ec74f3d4c6dc98170cd5cff066165be6428759bb967a8f6b0e7a022d5cfe0f6c",
- "kws": {
- "fr": [
- "intimité"
- ]
- }
- },
- {
- "nm": "labourer",
- "id": "e173d39aa7312e4914558b2faa1fe4f05f4ce4b580ad17b5299b5e5d3e09295e",
- "kws": {
- "fr": [
- "labourer"
- ]
- }
- },
- {
- "nm": "ours polaire",
- "id": "2620d5ce7b825248f029abec6c6f072c0abe1614149e2a73267ec8ef868853ec",
- "kws": {
- "fr": [
- "ours polaire",
- "ours"
- ]
- }
- },
- {
- "nm": "jour",
- "id": "f97a8babfca72c4c602bb55ee9407c2220fa6e0a9fbf706daad20ad19bb3e067",
- "kws": {
- "fr": [
- "jour"
- ]
- }
- },
- {
- "nm": "photographier",
- "id": "7ae489b7dd3ea2f33200b3f06f52ee5a1dfaddeb316ec4332889679c40990591",
- "kws": {
- "fr": [
- "photographier",
- "faire des photos"
- ]
- }
- },
- {
- "nm": "achat",
- "id": "a6ca8c6596aa3efa4f67b525a2deb0200880321e0f957c8ac36b2d39b1798d53",
- "kws": {
- "fr": [
- "achat"
- ]
- }
- },
- {
- "nm": "animal de compagnie",
- "id": "6af9007fbedda9a5ed676dcb46ccb46e71d8ee848eb0bd75f3fb35d587a73815",
- "kws": {
- "fr": [
- "animal de compagnie",
- "animaux de compagnie"
- ]
- }
- },
- {
- "nm": "cierge",
- "id": "e220908b21137bb773307b35e9cd4ba48c6deb9b789682f97d732baf2536bf9f",
- "kws": {
- "fr": [
- "cierge"
- ]
- }
- },
- {
- "nm": "croquette",
- "id": "0e93694be85b10530205f2dbe1e6f58b2e0a14287a71f3718ea7cf5ca58ca730",
- "kws": {
- "fr": [
- "croquette"
- ]
- }
- },
- {
- "nm": "trousse",
- "id": "b0e743be44f096f8a28b920996b6ff0608e8cf72636cfc3ed5f864cd871e8ab5",
- "kws": {
- "fr": [
- "trousse"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "dfc8e2ff34a6f1f329cd68c49ff27179a7f8bcc5304527f07accb7ef42741cae",
- "kws": {
- "fr": [
- "communauté autonome",
- "murcie"
- ]
- }
- },
- {
- "nm": "oie",
- "id": "72a011ff32bf4219bd31ac050309e8778dfa7738de51ec56960e324ff1232f7e",
- "kws": {
- "fr": [
- "oie"
- ]
- }
- },
- {
- "nm": "jouer au football",
- "id": "765af7f0448985803116fba794b9dfbe89419d88e2b4f63d20c2b396005e5870",
- "kws": {
- "fr": [
- "jouer au football",
- "football"
- ]
- }
- },
- {
- "nm": "panama",
- "id": "b5dccc9c92e063847f5389bf2b8939f6dcb7ce2851f7fc252789ae1002c71cb0",
- "kws": {
- "fr": [
- "panama"
- ]
- }
- },
- {
- "nm": "vouloir",
- "id": "84a1999329f9cf7068dae211097fce36b4894b1a5171e6eae1692be427ae664d",
- "kws": {
- "fr": [
- "vouloir",
- "aimer"
- ]
- }
- },
- {
- "nm": "lanzarote",
- "id": "714e508afad081eb557dc65583e5efa7662b683b22f560386308146310236373",
- "kws": {
- "fr": [
- "lanzarote"
- ]
- }
- },
- {
- "nm": "champignons",
- "id": "ea6e20c34f57702fae9acf02ada2d54d4134e836fad18232bfb527b2045bebe6",
- "kws": {
- "fr": [
- "champignons"
- ]
- }
- },
- {
- "nm": "porter",
- "id": "944f5b19e7b5fadcf28dab3f64b52dc5bda7581798d4fd9879a90772db0851cc",
- "kws": {
- "fr": [
- "porter"
- ]
- }
- },
- {
- "nm": "se lever du lit",
- "id": "1160ce4dfad3544c8ec036f45c38956576279002d9ca38c195471e95d79acbff",
- "kws": {
- "fr": [
- "se lever du lit",
- "se lever",
- "lever"
- ]
- }
- },
- {
- "nm": "se moucher le nez",
- "id": "5c426e32ef7d95876a72d394282091842734b2b7691dce73dde9d5c172b7e79d",
- "kws": {
- "fr": [
- "se moucher le nez",
- "se moucher",
- "moucher"
- ]
- }
- },
- {
- "nm": "inspecteur de la voie publique",
- "id": "6a028145cd0e29551d3b999a9db54069b3f8ce672f5797abe206b0dc024e6ee6",
- "kws": {
- "fr": [
- "inspecteur de la voie publique",
- "inspecteur"
- ]
- }
- },
- {
- "nm": "carte postale",
- "id": "0f9e59a468bb38d792d16fee4665ec80e7c6292c9861dbc64747810d40795ccc",
- "kws": {
- "fr": [
- "carte postale"
- ]
- }
- },
- {
- "nm": "transpercer",
- "id": "88a3f1e87d3c69688018bbb0eeaa6ddb6906b669533abdf33cdace4b02c6597e",
- "kws": {
- "fr": [
- "transpercer",
- "mouiller",
- "mouillé"
- ]
- }
- },
- {
- "nm": "déplacer",
- "id": "176faa8924cd92bae59455039df6328c3a3409b06166ac68407220e3a3cf8773",
- "kws": {
- "fr": [
- "déplacer",
- "avancer"
- ]
- }
- },
- {
- "nm": "pologne",
- "id": "277c8272f4c4eec349f397a125e613ceac31254e3f511e21e6d15275b6a6699d",
- "kws": {
- "fr": [
- "pologne"
- ]
- }
- },
- {
- "nm": "monitrice",
- "id": "428d8f7ed4489b91bfd718763c94fe2d238ebeebc937710041ae7f2aa234e6b5",
- "kws": {
- "fr": [
- "monitrice"
- ]
- }
- },
- {
- "nm": "souffler les bougies",
- "id": "af6ad086e52901aa1ca65303ea2d116875e292b6319802fbda3c6e5dae87bcb6",
- "kws": {
- "fr": [
- "souffler les bougies",
- "souffler"
- ]
- }
- },
- {
- "nm": "châtaigne",
- "id": "20f8dd77c2b4c9db82557dd48f0d1099b61107df269d40a44805f21c023cbd86",
- "kws": {
- "fr": [
- "châtaigne"
- ]
- }
- },
- {
- "nm": "cigogne",
- "id": "4bd53d3be55b38667836a57b83342bc7d79e457425e3c008a488c659b9e6443c",
- "kws": {
- "fr": [
- "cigogne"
- ]
- }
- },
- {
- "nm": "soria",
- "id": "efe2938c34d6fa057774c66866513dbdfd78e7d900eb5e1734e71e44de45d95c",
- "kws": {
- "fr": [
- "soria"
- ]
- }
- },
- {
- "nm": "troisième",
- "id": "320d6c9a0fbda4f80cb8de3f99e94261cbed446afc9e735c163503231940e9dd",
- "kws": {
- "fr": [
- "troisième"
- ]
- }
- },
- {
- "nm": "cristalerie",
- "id": "4fa3c2b506ec4f03f17a6c9d9b4efa5db03a3535df4cad127194ad3b09dd8422",
- "kws": {
- "fr": [
- "cristalerie"
- ]
- }
- },
- {
- "nm": "apport",
- "id": "6c7337588a9c45daee6f52d7049d8891a6a7de373ebd8948385d42c9c255e256",
- "kws": {
- "fr": [
- "apport"
- ]
- }
- },
- {
- "nm": "marcher",
- "id": "f23371918f6e1ec9946961b0210ef0cab077c1b1f9b9eb10e52b550814efad34",
- "kws": {
- "fr": [
- "marcher"
- ]
- }
- },
- {
- "nm": "sauna finlandais",
- "id": "96ca491ea86ed38df71a2a74a6310929e48016d9dfb677e4ea023ce61052ace6",
- "kws": {
- "fr": [
- "sauna finlandais",
- "sauna sec",
- "sauna"
- ]
- }
- },
- {
- "nm": "mal de ventre",
- "id": "9087ff49e0ecab60554e1205b976bebd266630d13b1fe18bd82a8310d47dbca3",
- "kws": {
- "fr": [
- "mal de ventre"
- ]
- }
- },
- {
- "nm": "en-cas",
- "id": "2cec837aafa833f3e871729d66c192ab14125d1e9c3acd68da6674425f1a0a03",
- "kws": {
- "fr": [
- "en-cas"
- ]
- }
- },
- {
- "nm": "avoir l\u0027habitude",
- "id": "647d8a681d246aaf1e8221c861314771257db97b1ed3296cb3ae57950f0e98bd",
- "kws": {
- "fr": [
- "avoir l\u0027habitude",
- "anniversaire"
- ]
- }
- },
- {
- "nm": "chance",
- "id": "27605b3fdbc72b3f9791f8b2563430bb87f2c3ddaefc6bb3f75bbedd8fc0b087",
- "kws": {
- "fr": [
- "chance",
- "chanceux",
- "sort",
- "fortune"
- ]
- }
- },
- {
- "nm": "poncho",
- "id": "3cbe1f76e6024260e364abaedecf34843b2d9e1d0b2b94ff5ee6c886a8d2586f",
- "kws": {
- "fr": [
- "poncho"
- ]
- }
- },
- {
- "nm": "monter les escaliers",
- "id": "49867ce2d438554762354ae787047b3c9f51208ff6919cb87e5fc4581f576644",
- "kws": {
- "fr": [
- "monter les escaliers",
- "remonter"
- ]
- }
- },
- {
- "nm": "pleuvoir",
- "id": "d819ef8dcc6b2ea3427fc54c8e8512fd447d55d88edae8eb212c9c846eb8b1b4",
- "kws": {
- "fr": [
- "pleuvoir",
- "pluie",
- "pluvieux",
- "humidité"
- ]
- }
- },
- {
- "nm": "ballon de rugby",
- "id": "7c0be86f87284d1ce8ffd24de2b6a6f36fd3a037880292dd5df1ebfc2484dadd",
- "kws": {
- "fr": [
- "ballon de rugby",
- "ballon",
- "rugby"
- ]
- }
- },
- {
- "nm": "saucisse",
- "id": "2cd0de623ed9d260d9c35ee63d383b45fdf5b48139f2a9882f32641f2bb8d6f4",
- "kws": {
- "fr": [
- "saucisse"
- ]
- }
- },
- {
- "nm": "pare-brise",
- "id": "8d4f7aa2acf81f0567f52ed732404587a06c0dac3134f9c27944867ceb198528",
- "kws": {
- "fr": [
- "pare-brise"
- ]
- }
- },
- {
- "nm": "rapace",
- "id": "6c59ff8f99ecf640d7b421d5d7490e8374a5f1f331ea14384b4e81abdf39ce57",
- "kws": {
- "fr": [
- "rapace",
- "aigle"
- ]
- }
- },
- {
- "nm": "bananes",
- "id": "109b0caa02836731665344e0f0f6fa8e7808ab7bf15de887244b0ae0cfa4f21d",
- "kws": {
- "fr": [
- "bananes"
- ]
- }
- },
- {
- "nm": "bristol",
- "id": "b50b11dbb2ee0560362040bb9284b9b5b8c178b9ab756b353e2ab7f9f07787bb",
- "kws": {
- "fr": [
- "bristol"
- ]
- }
- },
- {
- "nm": "singe",
- "id": "5a9a8dd4ecc9371a5e27915a5244d38c483f2d647fecc023a3d092a91e2d5da6",
- "kws": {
- "fr": [
- "singe"
- ]
- }
- },
- {
- "nm": "à cloche-pied",
- "id": "06270eb9cd7e42b5bc470c9e9f45d9c446876769d910252f97bf82334cb676ca",
- "kws": {
- "fr": [
- "à cloche-pied",
- "sauter",
- "sauter à cloche-pied"
- ]
- }
- },
- {
- "nm": "quincaillier",
- "id": "13aa1b265d15bea61f84c5c50a10e095fefce8060990359ec15a064d93f49c75",
- "kws": {
- "fr": [
- "quincaillier"
- ]
- }
- },
- {
- "nm": "perdre",
- "id": "d8258f783d34269bbf5665bf7508878829ba901afc5ba1b53ecc15be39ed81da",
- "kws": {
- "fr": [
- "perdre"
- ]
- }
- },
- {
- "nm": "plusieurs",
- "id": "e97e7b294ae1ef05c1c175bfdcbec26f27c8aaa6ca4169e9316ba2318da52d8c",
- "kws": {
- "fr": [
- "plusieurs",
- "différent",
- "différentes",
- "différents",
- "divers",
- "inégal"
- ]
- }
- },
- {
- "nm": "se reposer",
- "id": "8479601995896030b26174ffba19e6f2864d490fd3ea93fb06e6b241fca1d6ce",
- "kws": {
- "fr": [
- "se reposer",
- "reposer",
- "repos"
- ]
- }
- },
- {
- "nm": "large",
- "id": "ef5ba1bd34231b0896bf337585772e9e82e2e2ac6d971159f433b8aa62fa6ca4",
- "kws": {
- "fr": [
- "large"
- ]
- }
- },
- {
- "nm": "chômeur",
- "id": "bdf472be5ef04f8c2d5e1a6688426dd26a64ccc3497baffc430220b686462035",
- "kws": {
- "fr": [
- "chômeur",
- "sans emploi"
- ]
- }
- },
- {
- "nm": "champignon",
- "id": "646b2cd0794db1e849a9cb22dde901699527a320f61a4502c4a5f55a77284172",
- "kws": {
- "fr": [
- "champignon"
- ]
- }
- },
- {
- "nm": "jouer au rugby",
- "id": "6680a410e90be26cf5472f479e8bac8a760c4c7eb673436eeadc0c8209166772",
- "kws": {
- "fr": [
- "jouer au rugby"
- ]
- }
- },
- {
- "nm": "vingt-cinq",
- "id": "1f44c91a80b9d7b0a3a8d1d8b9c24a88ff89215e28b7f675397d0739992ba600",
- "kws": {
- "fr": [
- "vingt-cinq",
- "25"
- ]
- }
- },
- {
- "nm": "cintre",
- "id": "ffbf96b57aa4721679d3c7facba6e2e17aaf2e0d873c39ecec83503d9ba4ffb2",
- "kws": {
- "fr": [
- "cintre"
- ]
- }
- },
- {
- "nm": "ibiza",
- "id": "37c2df85d9308edc1949f510e36c2957fbb66c5d79176d93b073f00e88a35e78",
- "kws": {
- "fr": [
- "ibiza"
- ]
- }
- },
- {
- "nm": "chanter",
- "id": "bc93adf188b54baca118bcead5f98bb28f548a06d0ae2b46c2ca79824c63697f",
- "kws": {
- "fr": [
- "chanter",
- "musique"
- ]
- }
- },
- {
- "nm": "réveillé",
- "id": "1e9f671a96f0538b5d19faac0236cc451df82c726c012582a9476bf1a82775b8",
- "kws": {
- "fr": [
- "réveillé"
- ]
- }
- },
- {
- "nm": "tracteur",
- "id": "6b41a617ec13119776e485c57adaf8090f2df787135fbe3306344e2f8254869b",
- "kws": {
- "fr": [
- "tracteur"
- ]
- }
- },
- {
- "nm": "chou de bruxelles",
- "id": "a2c28fefbebafc07936d8971e77afd0869d0c3473f719f4ab4ddc8bc38e77394",
- "kws": {
- "fr": [
- "chou de bruxelles"
- ]
- }
- },
- {
- "nm": "train fantôme",
- "id": "c423c4053b07ee47152cb90f27e35901cf0e25a36cb505614a94333d0190adf1",
- "kws": {
- "fr": [
- "train fantôme"
- ]
- }
- },
- {
- "nm": "tabac",
- "id": "5b0a94898f90a59eee4cca527f13f2cb51178bfe75ac828478d5f77a6502198d",
- "kws": {
- "fr": [
- "tabac",
- "boîte à cigarettes",
- "paquet de tabac"
- ]
- }
- },
- {
- "nm": "gourmande",
- "id": "af81054c714e177344c34076aecf47bb00ab0afb957961188c3787fce8c6e534",
- "kws": {
- "fr": [
- "gourmande"
- ]
- }
- },
- {
- "nm": "assurance habitation",
- "id": "9e16ebfe4518c0398088e29d28a1e49dff2d04ba90b80bae10e099d7a3e93ce5",
- "kws": {
- "fr": [
- "assurance habitation",
- "assurance"
- ]
- }
- },
- {
- "nm": "correction",
- "id": "2a7b6e51cd72646585b86eaef18cdad2c0a62650b4c820846745e63179b4709a",
- "kws": {
- "fr": [
- "correction",
- "révision"
- ]
- }
- },
- {
- "nm": "inimitié",
- "id": "5bd18c1c77e538444301e4d2d2080529593f714e53b4121b90d70fea331a98cc",
- "kws": {
- "fr": [
- "inimitié"
- ]
- }
- },
- {
- "nm": "deux points",
- "id": "732572835edfd59924297e9b373890e90d03bd4b019286519d755683d2af74bc",
- "kws": {
- "fr": [
- "deux points"
- ]
- }
- },
- {
- "nm": "lettre",
- "id": "12192634726404fc8186c227cfc21168ef6d901e010df0ddc4f5bd688f776b99",
- "kws": {
- "fr": [
- "lettre",
- "l"
- ]
- }
- },
- {
- "nm": "octobre",
- "id": "a4ceb522cd36f55a836658445081689c42db3be267d68ce42f7fbe26656b0e50",
- "kws": {
- "fr": [
- "octobre"
- ]
- }
- },
- {
- "nm": "poche d\u0027amuse-gueule",
- "id": "795af35c03869c68dbaddedb27915966d48599f7d88c753c2f87c5eaeac7b0b6",
- "kws": {
- "fr": [
- "poche d\u0027amuse-gueule",
- "chips"
- ]
- }
- },
- {
- "nm": "pôle nord",
- "id": "c766001672b8bf068b4ab18498a87b2e8ea99b8051a07942f2b557aa6e37279e",
- "kws": {
- "fr": [
- "pôle nord"
- ]
- }
- },
- {
- "nm": "saint laurent",
- "id": "53dc7598d76b1d1bde4c21bcb2a32444a708c81a5f8fd918a58cb4962ff51995",
- "kws": {
- "fr": [
- "saint laurent"
- ]
- }
- },
- {
- "nm": "papy",
- "id": "a6394c9fd0d34fb4eae80cbc00ecbf20d0d6677dbc3c5371cb384238a6a02371",
- "kws": {
- "fr": [
- "papy",
- "grand-père"
- ]
- }
- },
- {
- "nm": "pierre tombale",
- "id": "e45f841c95dbc2fba85d46c7f19df9a39eca603b0965ac3b37d28a3b598f4fd1",
- "kws": {
- "fr": [
- "pierre tombale"
- ]
- }
- },
- {
- "nm": "dames",
- "id": "ae1addce695611303dcfca0307bc75b397747d661fe44ee2b6b7d28d10fb4686",
- "kws": {
- "fr": [
- "dames"
- ]
- }
- },
- {
- "nm": "danseuse",
- "id": "8de253bacf664f85e09185b37c2ee6e0b9e2df22e91c4c5cdee3747dab7003f3",
- "kws": {
- "fr": [
- "danseuse",
- "danseuse de flamenco"
- ]
- }
- },
- {
- "nm": "sentiments",
- "id": "c8e539c5f12d63c74b5bcff8919b5d9ab0182ecfdbc153bd31063f8f7a70924a",
- "kws": {
- "fr": [
- "sentiments"
- ]
- }
- },
- {
- "nm": "naissance",
- "id": "00485ae108a88050f257880e083b502cb2db5f92f419369571509b90cf77a3ca",
- "kws": {
- "fr": [
- "naissance",
- "mangeoire"
- ]
- }
- },
- {
- "nm": "joueur de water-polo",
- "id": "aa8b9cead729a43b760a23fb896aaed1ed320865e67024890217a95b336454a7",
- "kws": {
- "fr": [
- "joueur de water-polo",
- "joueur"
- ]
- }
- },
- {
- "nm": "cosmonaute",
- "id": "aa3be71c5eec054f52571950e34d53623100617cd5b618f1b78de6b1a2c4f78e",
- "kws": {
- "fr": [
- "cosmonaute",
- "astronaute"
- ]
- }
- },
- {
- "nm": "chuchoter",
- "id": "20d7e19f2c78aa97fc75a0d142fee789ab728eb650e18addd3d0f208d35874af",
- "kws": {
- "fr": [
- "chuchoter",
- "secret"
- ]
- }
- },
- {
- "nm": "trône",
- "id": "be6e76579e2032e997f8c50e341480e534d92365832b1923a254f899854dfd45",
- "kws": {
- "fr": [
- "trône"
- ]
- }
- },
- {
- "nm": "plus grand",
- "id": "e59b71d9ff9ba66108c49ca66b8cc13e3ef1aa2accce2a0fa2ecec26fa4492fc",
- "kws": {
- "fr": [
- "plus grand",
- "grand"
- ]
- }
- },
- {
- "nm": "été",
- "id": "0aa3222d1e3e060619bd6c17faaa7c4d8522cd28d1ba0886b1894d8dd47e086e",
- "kws": {
- "fr": [
- "été",
- "gare"
- ]
- }
- },
- {
- "nm": "water",
- "id": "a0790b56c0f272b048fd2482bad7e9c51e9a02251417465af3fff4e8f52d0b3a",
- "kws": {
- "fr": [
- "water",
- "baignoire",
- "signalétique",
- "salle de bain gériatrique"
- ]
- }
- },
- {
- "nm": "devant",
- "id": "6c55ca6e8cfe45f11fb736a946990a1e68abb8ed5002dbcd429646f164c501ea",
- "kws": {
- "fr": [
- "devant"
- ]
- }
- },
- {
- "nm": "cuba",
- "id": "a2665053c4b080d7783e5053dcba208d340c59b06715e150060495c3f0670c95",
- "kws": {
- "fr": [
- "cuba"
- ]
- }
- },
- {
- "nm": "poubelle de recyclage pour le verre",
- "id": "56d5bb0dea5b267e98894a301f05c7dd3f46719908cd1b17df7bf5a55b5d679a",
- "kws": {
- "fr": [
- "poubelle de recyclage pour le verre",
- "benne"
- ]
- }
- },
- {
- "nm": "salle d\u0027attente",
- "id": "0d054dcb8f0195ee24d6b19040032875f8e4c84fa766b9e7198c79a37935028b",
- "kws": {
- "fr": [
- "salle d\u0027attente"
- ]
- }
- },
- {
- "nm": "chaussures",
- "id": "5d0aad7813b5eb44d0a10086cc913a227ecbcc2b1b043a925588cec1c101e4e6",
- "kws": {
- "fr": [
- "chaussures",
- "sabots"
- ]
- }
- },
- {
- "nm": "précédent",
- "id": "c6d3623e027e16745b65c78a4589404254566e1d34488524c958ebd1af37c1a1",
- "kws": {
- "fr": [
- "précédent"
- ]
- }
- },
- {
- "nm": "pays",
- "id": "718fb4b80908a59d925ec8c80badf294e72bf32e67b536bf7eded9be796410f3",
- "kws": {
- "fr": [
- "pays",
- "japon"
- ]
- }
- },
- {
- "nm": "dés",
- "id": "408710b07edb37463c8c85c246eac92652abbc0b64e286f731ba04124b3d2db1",
- "kws": {
- "fr": [
- "dés"
- ]
- }
- },
- {
- "nm": "porter",
- "id": "833e9cfefcd1011a54ceda9a8da6060c29a6be94a887837b54eab697a922841f",
- "kws": {
- "fr": [
- "porter"
- ]
- }
- },
- {
- "nm": "se laver les cheveux",
- "id": "d2a1838542f1e56583bee05469d173e394b609e3200f089056dc7eaba8167ad9",
- "kws": {
- "fr": [
- "se laver les cheveux",
- "laver les cheveux"
- ]
- }
- },
- {
- "nm": "papa",
- "id": "5d55fa6f5dbad3312a5292c45533e0f0592679136c9a5bd72177c5c4f4abdc0d",
- "kws": {
- "fr": [
- "papa",
- "père et fils",
- "père"
- ]
- }
- },
- {
- "nm": "salle polyvalente",
- "id": "7db2ca9b5e03defa4588d2bec993f42eec644cfbac4cc3707088d5b0440f8dad",
- "kws": {
- "fr": [
- "salle polyvalente"
- ]
- }
- },
- {
- "nm": "demander",
- "id": "dfad2187bb05d5e4db1e452428ee6dae3887d1976ab4c252cbd5e007453a524f",
- "kws": {
- "fr": [
- "demander",
- "question"
- ]
- }
- },
- {
- "nm": "vacances",
- "id": "ff53503012900bbf4df9b69a229b60a475f2203cb7e8374702fd93d3805cf76d",
- "kws": {
- "fr": [
- "vacances"
- ]
- }
- },
- {
- "nm": "pauvreté",
- "id": "fb8c3efe15bfcb87046c5cdecfebe5e82ac997301849da6d30abd26f9abb1f04",
- "kws": {
- "fr": [
- "pauvreté"
- ]
- }
- },
- {
- "nm": "route",
- "id": "1cf74e22b93cf936286b24ee925b66c950224671b08f80653cff275eb67621ea",
- "kws": {
- "fr": [
- "route"
- ]
- }
- },
- {
- "nm": "i",
- "id": "96f0a147e223767aeb61eaece3071ad9d1f0dbd015ae90f8b284e3d02fb61898",
- "kws": {
- "fr": [
- "i",
- "lettre"
- ]
- }
- },
- {
- "nm": "faire le lit",
- "id": "58c8f67e116b26bf660ae950e592b540d10a9388a5ccf564dca8caff35d0b650",
- "kws": {
- "fr": [
- "faire le lit"
- ]
- }
- },
- {
- "nm": "croissance",
- "id": "470d7045e7378f02a10dfa641a38e410e0d6fccb1dd492333e02d777e52f4e45",
- "kws": {
- "fr": [
- "croissance"
- ]
- }
- },
- {
- "nm": "pot de glace",
- "id": "a152be766586bc32b5a0e2e16817a800b7081b0b798ea8b7671e8cbf37ca5129",
- "kws": {
- "fr": [
- "pot de glace",
- "glace"
- ]
- }
- },
- {
- "nm": "sainte famille",
- "id": "93886d8388b0186589f6fc72002b7248b29119edc53ef4f65a10a211c2120fd5",
- "kws": {
- "fr": [
- "sainte famille"
- ]
- }
- },
- {
- "nm": "chaud",
- "id": "d4d3bc0521a5232e38851d762061a040ba0dee21f50b9e273b009abe7a35f7e0",
- "kws": {
- "fr": [
- "chaud",
- "couverture"
- ]
- }
- },
- {
- "nm": "raisins",
- "id": "d66745d69ac1b3a1a5cc9c931ce945837df6935a4a5ccb3a20a4afd12fcfdba2",
- "kws": {
- "fr": [
- "raisins",
- "baies",
- "grappe de raisins"
- ]
- }
- },
- {
- "nm": "profil",
- "id": "53d1f2b9734b65a99f6c6044c21a30d7d8ec4e470fffcb8d380d128e6a25cecb",
- "kws": {
- "fr": [
- "profil",
- "fille"
- ]
- }
- },
- {
- "nm": "salle atelier",
- "id": "ed9215438428af9df9c23ceca8c34983f84d8f7596a117636ea7c9e3601fa5f2",
- "kws": {
- "fr": [
- "salle atelier"
- ]
- }
- },
- {
- "nm": "doseur",
- "id": "ccf9fdbd0e928cd287424fd7f18f7400e8a769d1490b4a4e2ec55c33c4c77c5e",
- "kws": {
- "fr": [
- "doseur"
- ]
- }
- },
- {
- "nm": "réchaud électrique",
- "id": "657678f30bfc4b62cd1b9bc53d3ce3a3efc526422ba2fead06b4ed402dd39f59",
- "kws": {
- "fr": [
- "réchaud électrique",
- "réchaud"
- ]
- }
- },
- {
- "nm": "madame",
- "id": "f68c18b8810ce39030af4b4b68ca7d07813674ca7ce20f25fe0434dcd68ad116",
- "kws": {
- "fr": [
- "madame"
- ]
- }
- },
- {
- "nm": "portefeuille",
- "id": "89f1e0dfd4e8edd582c9bd63aa93100c41c429c775371887de47fa5c0c9e69d9",
- "kws": {
- "fr": [
- "portefeuille"
- ]
- }
- },
- {
- "nm": "bouffon",
- "id": "1749645ab2f5972eb15d0e484260b47ed351fc2e5a858860b01c5554d5eaa719",
- "kws": {
- "fr": [
- "bouffon"
- ]
- }
- },
- {
- "nm": "douleur de poitrine",
- "id": "0db8e752b7d1817aeba29ea51341e48be98534a6dd0a59d25dd7369f1125572b",
- "kws": {
- "fr": [
- "douleur de poitrine",
- "douleur",
- "faire mal",
- "souffrir",
- "forte douleur"
- ]
- }
- },
- {
- "nm": "clé plate",
- "id": "465ca0eca9680c9946c1df639165162abaa5b99d14c62c7e61b46b39efd1d152",
- "kws": {
- "fr": [
- "clé plate",
- "clé"
- ]
- }
- },
- {
- "nm": "quad",
- "id": "f9417b9b86b6a6bfea3b755693dcde86ca1300ebe6b24dda59934f48789d5af3",
- "kws": {
- "fr": [
- "quad"
- ]
- }
- },
- {
- "nm": "cerises",
- "id": "7101d1ae3812dfef853a799654b015b6d83e2e0356ce6a652a21f75c66482f4c",
- "kws": {
- "fr": [
- "cerises"
- ]
- }
- },
- {
- "nm": "ministre",
- "id": "41c28ffb7da6cc0e77e810131e42aa1bcfdcda3932d09853364ce2b818c0091c",
- "kws": {
- "fr": [
- "ministre"
- ]
- }
- },
- {
- "nm": "place",
- "id": "ad445fda8cfec24b87503d8d0e331cecd3e78bc2b0353a77f400f518364da0f6",
- "kws": {
- "fr": [
- "place",
- "arène"
- ]
- }
- },
- {
- "nm": "librairie",
- "id": "af27ce0ebdcdca93f4194c816e743181f1eaaaff79881136b0d97708202ccb59",
- "kws": {
- "fr": [
- "librairie"
- ]
- }
- },
- {
- "nm": "que",
- "id": "b0936a3774e14429246c5aa08b5ec9a190bffcd7d75dfc0de74ff765116ebd57",
- "kws": {
- "fr": [
- "que"
- ]
- }
- },
- {
- "nm": "trébucher",
- "id": "4a8e8d9fe15b9c7e66152b95af4832c5b3fddc60bd238b1d581a91e3dce038e4",
- "kws": {
- "fr": [
- "trébucher"
- ]
- }
- },
- {
- "nm": "moustique",
- "id": "e76fe0d638e60145c5549b81b9e1de54c05782299aa21a6d63c8a8d42ef680fe",
- "kws": {
- "fr": [
- "moustique"
- ]
- }
- },
- {
- "nm": "araword",
- "id": "2bbf1be5fe8f345ee3459ef8d3acfebb205d4d8abd395b44c5ecee8ea253cc35",
- "kws": {
- "fr": [
- "araword"
- ]
- }
- },
- {
- "nm": "faire du bruit",
- "id": "efb3eb60604794d3efdd0a7af090e95e995041eca7cca1d50ca6d4f56230e843",
- "kws": {
- "fr": [
- "faire du bruit"
- ]
- }
- },
- {
- "nm": "chocolat",
- "id": "9e0afa0b4101ce56c1150aeff1ed80bc13e0d2b4c477840854373b3e8b62c71f",
- "kws": {
- "fr": [
- "chocolat"
- ]
- }
- },
- {
- "nm": "honduras",
- "id": "649f0d719e47964c3115575cf5104c0350e4d44dcfa9fe0be4fc876856bfadce",
- "kws": {
- "fr": [
- "honduras"
- ]
- }
- },
- {
- "nm": "arrêter",
- "id": "c2b02762d1628c35d83d8f4c9f8458ae1129498de395eae0db01b8dc07545f80",
- "kws": {
- "fr": [
- "arrêter"
- ]
- }
- },
- {
- "nm": "sculpture",
- "id": "b5bfb8d00c6807c749e3cee5723964b1b549954c8b229dc79facf5f2d43c4ad5",
- "kws": {
- "fr": [
- "sculpture"
- ]
- }
- },
- {
- "nm": "nettoyer les chaussures",
- "id": "6c4694b3bd6efb88900ac1c9d1476d2fc57ab246392c6378f3028df47dda4010",
- "kws": {
- "fr": [
- "nettoyer les chaussures"
- ]
- }
- },
- {
- "nm": "secouer",
- "id": "2f6a4e0f363539e8f002e0fc518c33555ee6b41f8e9c6e2f68e0068b481728e4",
- "kws": {
- "fr": [
- "secouer"
- ]
- }
- },
- {
- "nm": "jus de pêche",
- "id": "f862992127f9ca7bb7e2d4136561e68f51f0b1570c51e8d9b5e57a9b435f3144",
- "kws": {
- "fr": [
- "jus de pêche"
- ]
- }
- },
- {
- "nm": "formes",
- "id": "d51d97889aa1588fb7e0e1cb7ce0bade030c3a1e613b5e1e32e85ebebc75e1da",
- "kws": {
- "fr": [
- "formes"
- ]
- }
- },
- {
- "nm": "peuplier",
- "id": "b24702922b60f4c857ffa8824ef7b178668317c2f3b6427986d942bfe9d1ffee",
- "kws": {
- "fr": [
- "peuplier"
- ]
- }
- },
- {
- "nm": "photo",
- "id": "825978c2fee1450de707a54b9a1a78e8c7e41a2a836bcf0921e254e56ac018d6",
- "kws": {
- "fr": [
- "photo",
- "photographie"
- ]
- }
- },
- {
- "nm": "ouvrez la parenthèse",
- "id": "dfcce2ea95009e8a79454152fe255edaf684a4f0c963819467207703dd32a946",
- "kws": {
- "fr": [
- "ouvrez la parenthèse"
- ]
- }
- },
- {
- "nm": "pablo picasso",
- "id": "9b35205b8627f9b7c6e9397d3b7ca540cc6a7f549e00b0606045f8451c6bfb34",
- "kws": {
- "fr": [
- "pablo picasso",
- "picasso"
- ]
- }
- },
- {
- "nm": "fleuriste",
- "id": "034376e5ad847d2343613df4a34a87343e22d3845e2a4a46fb7400c6745de2c1",
- "kws": {
- "fr": [
- "fleuriste"
- ]
- }
- },
- {
- "nm": "s\u0027asseoir",
- "id": "243bd3e11eb77669c4ab7d63df29706cba8f938c0c19bd49f0db34da9f0f622a",
- "kws": {
- "fr": [
- "s\u0027asseoir"
- ]
- }
- },
- {
- "nm": "truite",
- "id": "07510ad9bb9efd7df12b0498f29a591afebc6b28d4384ea8ee73816b86ee7d48",
- "kws": {
- "fr": [
- "truite"
- ]
- }
- },
- {
- "nm": "moi aussi!",
- "id": "70c730d5b77292aa3fb2e83456f75e440ad16dab633911eb0199ff6da5dea64f",
- "kws": {
- "fr": [
- "moi aussi!"
- ]
- }
- },
- {
- "nm": "toboggan",
- "id": "1238f777b70cf3a415a9a9c659e3a6ec00ff078550fb3450f50ba79079ff98f7",
- "kws": {
- "fr": [
- "toboggan"
- ]
- }
- },
- {
- "nm": "coca",
- "id": "e5e646e8e0f3c1f5b64261d5ea64bacfe665499bcdac0d68eb99b589969ac2b8",
- "kws": {
- "fr": [
- "coca"
- ]
- }
- },
- {
- "nm": "fromage en portion",
- "id": "196e54faa4b5f0005a4b3cb6efdb4b93f6c51a5170aff2745a345b38895eed4e",
- "kws": {
- "fr": [
- "fromage en portion"
- ]
- }
- },
- {
- "nm": "transpalette",
- "id": "bd5ef0cfaaafe8810b93ae27458594aa1ba8d2ca4e40eafb32689e6ad8ff634f",
- "kws": {
- "fr": [
- "transpalette"
- ]
- }
- },
- {
- "nm": "brochette mixte",
- "id": "1f37d9d1462d77ba9b525f9086bb0a67173eeb57bdc8affa21ef3d8d77a503ee",
- "kws": {
- "fr": [
- "brochette mixte",
- "brochette",
- "brochettes"
- ]
- }
- },
- {
- "nm": "trinité et tobago",
- "id": "bd772e83f251fda010360849bcc91b6f253cd0f888a90f7e3a8dfb6aa506f9a4",
- "kws": {
- "fr": [
- "trinité et tobago"
- ]
- }
- },
- {
- "nm": "désastre",
- "id": "99dff985bd7ee2237d205e742d4770ae60a983b15c01197c1eb50780477eddde",
- "kws": {
- "fr": [
- "désastre",
- "catastrophe"
- ]
- }
- },
- {
- "nm": "volcan",
- "id": "44f0e7d2be2510e8eaf1b31de216d8b21599c37861a52f74abd6e549ed1217ce",
- "kws": {
- "fr": [
- "volcan"
- ]
- }
- },
- {
- "nm": "canal d\u0027irrigation",
- "id": "814fd2cea802ab118752de091bb47d504d6676e1d9856dd941becbd66314d238",
- "kws": {
- "fr": [
- "canal d\u0027irrigation"
- ]
- }
- },
- {
- "nm": "bolivie",
- "id": "7b386a99dc3d7da4424ee246cc0e55087deecb5ab79427211d69be45bc7ab1ad",
- "kws": {
- "fr": [
- "bolivie"
- ]
- }
- },
- {
- "nm": "terre",
- "id": "7e95e95de21191fb7338f0cb4f9b377c881a7808715c45a5968eee52952946ed",
- "kws": {
- "fr": [
- "terre",
- "monde",
- "la terre"
- ]
- }
- },
- {
- "nm": "constructions",
- "id": "782f7ee15604ee333588aafaaf5775a966e7a4b7f7cbb02bbedc9fc3e26840cc",
- "kws": {
- "fr": [
- "constructions",
- "jeu constructions",
- "blocs lego",
- "blocs"
- ]
- }
- },
- {
- "nm": "hachoir",
- "id": "e8a42f775f5669d8691143aea0e15274c14f56b89ab814bfebd1ad5660b0fe82",
- "kws": {
- "fr": [
- "hachoir"
- ]
- }
- },
- {
- "nm": "chapeau",
- "id": "0269da77e1d7d2f4ea14eaf24adab39e65ce2f0fda685da371f20b010a23c4a9",
- "kws": {
- "fr": [
- "chapeau",
- "haut de forme"
- ]
- }
- },
- {
- "nm": "fruiterie",
- "id": "4a816404ba4a153fcc49db489c58f239171875fbe23d46009f701cc7c850259d",
- "kws": {
- "fr": [
- "fruiterie"
- ]
- }
- },
- {
- "nm": "poitrine",
- "id": "5a1a33e4511c11ce4842c6f691b69b23bd5a2c826ba4c1696e381cbdb6e56c05",
- "kws": {
- "fr": [
- "poitrine"
- ]
- }
- },
- {
- "nm": "cousin",
- "id": "181cbba221a99db9e6b94aed8d3d50532d70a68ea42342452c9f9c12774314cf",
- "kws": {
- "fr": [
- "cousin"
- ]
- }
- },
- {
- "nm": "bras en croix",
- "id": "40284bd1c49ab5df328268f4950f8972d9b8084912cdc8f0e413b9c7732c9aef",
- "kws": {
- "fr": [
- "bras en croix",
- "faire de l\u0027exercice",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "capsule",
- "id": "b291a01ce367df1218d9deac503bdc37eb10e084104822e6a17cb09de16d7e4b",
- "kws": {
- "fr": [
- "capsule"
- ]
- }
- },
- {
- "nm": "valise",
- "id": "243a3b711bda94c8be356f05a9f74ad5fdc52efb3fb9462d26f0b91d86b2f0cf",
- "kws": {
- "fr": [
- "valise"
- ]
- }
- },
- {
- "nm": "se rincer",
- "id": "714a12027a38edce2e95ec43818944a79f0eda7cea54c7f53dc2667d7fe101c7",
- "kws": {
- "fr": [
- "se rincer"
- ]
- }
- },
- {
- "nm": "enfant",
- "id": "d484dde40f758d703b79a18150919216982bee6669300ee0525da38016c966f2",
- "kws": {
- "fr": [
- "enfant",
- "profil"
- ]
- }
- },
- {
- "nm": "faire clic",
- "id": "49e938af42274a45149d70fc976ea4db92ef0686895e47460991c4bb67b08b22",
- "kws": {
- "fr": [
- "faire clic",
- "clic de souris",
- "clic droit",
- "clic",
- "cliquer"
- ]
- }
- },
- {
- "nm": "fil et aiguille",
- "id": "801e1e0f5581e67b523f0b72cd741e3b010bc2eaf64d17a8ebf37d1e9e173d07",
- "kws": {
- "fr": [
- "fil et aiguille",
- "aiguille"
- ]
- }
- },
- {
- "nm": "retraite",
- "id": "66e58164707e10e0a38b272bf31c196d238e21ac5a406adf7a7fc1d30898be2f",
- "kws": {
- "fr": [
- "retraite"
- ]
- }
- },
- {
- "nm": "turquie",
- "id": "dda50d6f4a7eda320f9ed1fa6c9e1e9c01f218d28f2c401c0e75713a049d8191",
- "kws": {
- "fr": [
- "turquie"
- ]
- }
- },
- {
- "nm": "vélos interdits",
- "id": "b0451a59685e11ea10246020da3f42c4071bb3ed0231f25436e66c0e29aa8d71",
- "kws": {
- "fr": [
- "vélos interdits",
- "interdit aux bicyclettes",
- "interdit"
- ]
- }
- },
- {
- "nm": "chauve",
- "id": "e06ec0c3919911755bc4a0b563cc2923118504b70250d5939fba1f93bbef38e4",
- "kws": {
- "fr": [
- "chauve"
- ]
- }
- },
- {
- "nm": "bois",
- "id": "18f58a2b98d9437608389a06565c0b2ae37d26e31bbdc99d4773a3f77544d86a",
- "kws": {
- "fr": [
- "bois",
- "grosse planche"
- ]
- }
- },
- {
- "nm": "tirelire",
- "id": "4d4eaa7b30058ff57c0b2ed2595e42049aace0fb7728be7b70049a313e0e336b",
- "kws": {
- "fr": [
- "tirelire"
- ]
- }
- },
- {
- "nm": "graffiti",
- "id": "b78b67c5b4ac3cd74a0edd68f8ff82af22a965276aa3c9f9377be8f61e3c3b0e",
- "kws": {
- "fr": [
- "graffiti",
- "graphite"
- ]
- }
- },
- {
- "nm": "montre",
- "id": "2286261338defe6db4380d8d0e287a0f7bb4b7cc589ed2f413441ff48d308374",
- "kws": {
- "fr": [
- "montre"
- ]
- }
- },
- {
- "nm": "battre",
- "id": "e327797162820682a84b66086e00039e7be8a958fecde49ebebdd99b44d07bef",
- "kws": {
- "fr": [
- "battre"
- ]
- }
- },
- {
- "nm": "gouvernement",
- "id": "6df1272cdd080bed604eec0179205dc502a5b230e302a296a0f5263072e84237",
- "kws": {
- "fr": [
- "gouvernement"
- ]
- }
- },
- {
- "nm": "très",
- "id": "7d9e8211780292cc560f844efc06a8cd19b2d1cc1b01363f07e9f8629274650c",
- "kws": {
- "fr": [
- "très"
- ]
- }
- },
- {
- "nm": "tourner",
- "id": "8f754d32afad318757d39bd56619f6b6a251b9395d6469008c75555eabf3616a",
- "kws": {
- "fr": [
- "tourner"
- ]
- }
- },
- {
- "nm": "lettre",
- "id": "e42d42996645515233259b94753c33876f6ac1a30ce131455110eb7e9b8d0c0b",
- "kws": {
- "fr": [
- "lettre",
- "g"
- ]
- }
- },
- {
- "nm": "week-end",
- "id": "72f32e638df01d42275eca1da81000c6b95be30cc339e280a5281c26f33eb6dd",
- "kws": {
- "fr": [
- "week-end"
- ]
- }
- },
- {
- "nm": "rat",
- "id": "ef516fb3aef1bcf4330e7e1c17b165c60524500f49a944621db1234430745ad8",
- "kws": {
- "fr": [
- "rat"
- ]
- }
- },
- {
- "nm": "oncle",
- "id": "2063bfcf5cb61d44762f11669396e89574b53e9c5bacaddafc427c89e8653577",
- "kws": {
- "fr": [
- "oncle"
- ]
- }
- },
- {
- "nm": "baisser la tête",
- "id": "44c92da1fc72ef90e5817b11e22ddeb7913400f9006552b4460b09ed836243e0",
- "kws": {
- "fr": [
- "baisser la tête"
- ]
- }
- },
- {
- "nm": "cordon",
- "id": "9f2cc03ecae0d29caee42167615fa0ae18eae8fc02c7d0557deb72c65d57f457",
- "kws": {
- "fr": [
- "cordon"
- ]
- }
- },
- {
- "nm": "monovolume",
- "id": "0a04f35470087b2c9ec758e8823ada389fea7889ebf56682703c467b0abd9b3e",
- "kws": {
- "fr": [
- "monovolume"
- ]
- }
- },
- {
- "nm": "boccia",
- "id": "14d6bfcf4d0c036bcff128cfaaccff55145fc433d2309021c43dab0f2db8262d",
- "kws": {
- "fr": [
- "boccia"
- ]
- }
- },
- {
- "nm": "carré",
- "id": "4ae60317ddfe594a9a119b6701cac542e6613f44547bbabdc0123be943f305d7",
- "kws": {
- "fr": [
- "carré"
- ]
- }
- },
- {
- "nm": "jeter",
- "id": "067f4e72c5d0bbc8659ced165ff70958e65a1135c4f3e11b3521f7546a474dfe",
- "kws": {
- "fr": [
- "jeter"
- ]
- }
- },
- {
- "nm": "vers",
- "id": "f1169d7a9ef8ba65ccea810cfe1cbf70cc7c43d537cdbb436407b45eaeac2b1e",
- "kws": {
- "fr": [
- "vers",
- "pour"
- ]
- }
- },
- {
- "nm": "bec",
- "id": "8d9b0c8fdc7a24af07eb9853a66e5b670dda24b38eba7b52e33837c492472463",
- "kws": {
- "fr": [
- "bec"
- ]
- }
- },
- {
- "nm": "goûter",
- "id": "ba99e9a90a1883dd288645e6d7cac2096e156345eba3de9686b073128f373c86",
- "kws": {
- "fr": [
- "goûter"
- ]
- }
- },
- {
- "nm": "panier",
- "id": "bc4d101f82d3ba8d667d6b967771bd5202623509053c65588bc52787b52fdfd8",
- "kws": {
- "fr": [
- "panier"
- ]
- }
- },
- {
- "nm": "enfiler",
- "id": "29e2dbfa3ed490b91be8381726bf33d18da3ed5d3ac39e2a5f06f3eae157c05b",
- "kws": {
- "fr": [
- "enfiler"
- ]
- }
- },
- {
- "nm": "bar",
- "id": "310a8362ac9e353bd89c5aa95807b2ac21319a80b304e41e224983c2850ed360",
- "kws": {
- "fr": [
- "bar"
- ]
- }
- },
- {
- "nm": "observatoire",
- "id": "f799d61509a4e6433dde084593ee42aa99c7e8e8ecbc9499e7f1eff1f4662a4e",
- "kws": {
- "fr": [
- "observatoire"
- ]
- }
- },
- {
- "nm": "électroencéphalogramme",
- "id": "62d5b4aa449bc459316e6c42fe750ba051bf93fcb7709486ab4985cb34d714d1",
- "kws": {
- "fr": [
- "électroencéphalogramme",
- "éléctro"
- ]
- }
- },
- {
- "nm": "elles",
- "id": "b527a5c782924c9002723c1e7e4812c6ded0167dc6eeaea45ac880dcd42d7d23",
- "kws": {
- "fr": [
- "elles",
- "se",
- "oui",
- "les",
- "leur"
- ]
- }
- },
- {
- "nm": "girafe",
- "id": "7bdd0a91348dea79da9132936ee828ce244f205d6fd976844825c88c5bc0c6a5",
- "kws": {
- "fr": [
- "girafe"
- ]
- }
- },
- {
- "nm": "clairs",
- "id": "feac770dc39f401886ae85e1f14e92effbdfd7b5292ab2b0718fe0da14883e6e",
- "kws": {
- "fr": [
- "clairs"
- ]
- }
- },
- {
- "nm": "canaries",
- "id": "af9badcb1ba9ad312915e3b9e0392baa9b6b96e358181cb01bf59ca1ee6d4bb8",
- "kws": {
- "fr": [
- "canaries",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "ustensile de cuisine",
- "id": "6cdc630cd558a4b9e193ba034595a7e11e331e253832447d8a3b88f744d760e0",
- "kws": {
- "fr": [
- "ustensile de cuisine",
- "couteaux de table",
- "couteau"
- ]
- }
- },
- {
- "nm": "friteuse électrique",
- "id": "4329d2673ed0b1366203a4a75319ed37e1b6e5bb6a0dbeadab8a8fed8e77e303",
- "kws": {
- "fr": [
- "friteuse électrique"
- ]
- }
- },
- {
- "nm": "teindre",
- "id": "406db1b5132c36f83e2436e7eae3302adfea82e4eccf8e60f04087f966ab7e33",
- "kws": {
- "fr": [
- "teindre"
- ]
- }
- },
- {
- "nm": "pays",
- "id": "2ba56390d259bdab953d5433e8df5861cdc80ebc1cdd50cdb62738809bf9a2b6",
- "kws": {
- "fr": [
- "pays",
- "canada"
- ]
- }
- },
- {
- "nm": "partir en excursion",
- "id": "7e17fbe7f588b4fb2515a9d3cc023775d320a7cb34b1356ae47d3f6f062f9672",
- "kws": {
- "fr": [
- "partir en excursion",
- "excursion",
- "voyageurs",
- "suivre",
- "aller"
- ]
- }
- },
- {
- "nm": "galice",
- "id": "a9352a76d60a58f3e8e0e10197d63b2c6317c641fba3504f21d367eaef86862f",
- "kws": {
- "fr": [
- "galice"
- ]
- }
- },
- {
- "nm": "information",
- "id": "71641d5010497888bfc40f1453d60c6856bb258143b4e625f01ca0c636ab419d",
- "kws": {
- "fr": [
- "information",
- "office de tourisme"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "19730454b155bebea0c0e068c08ec2a262f3bf69b64841a4feffc83b14695bb2",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains à la taille",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "appareil à croque-monsieur",
- "id": "008e0e1372a1fa24a61f3790ad8bc488aed5dac6af4bb55dfa4a101431cb5827",
- "kws": {
- "fr": [
- "appareil à croque-monsieur"
- ]
- }
- },
- {
- "nm": "gérant",
- "id": "00ceb1360ee1e668a60d2e74325789fd027541abf0e134f4e27a43edaeaca5e8",
- "kws": {
- "fr": [
- "gérant"
- ]
- }
- },
- {
- "nm": "araword",
- "id": "443f570bb302505ad9190650573391a800d5fe0a87891d60fa30c88028a8f714",
- "kws": {
- "fr": [
- "araword"
- ]
- }
- },
- {
- "nm": "employé",
- "id": "5031a4cbe6dc1f6dada6451927c9ea9d668f6cbebf9d8d3bd76709099da164f6",
- "kws": {
- "fr": [
- "employé",
- "maître d\u0027hôtel"
- ]
- }
- },
- {
- "nm": "aéroport",
- "id": "e1ad307cf169a7079f20fa2d8f83e2ef9bacd27bbce70edbbcb36df4e6a78ad2",
- "kws": {
- "fr": [
- "aéroport"
- ]
- }
- },
- {
- "nm": "potager",
- "id": "83c12a3ca02b1a768ce529bf8fbce1cbaedc6e7d4522beece8d1633b47448a78",
- "kws": {
- "fr": [
- "potager"
- ]
- }
- },
- {
- "nm": "bateau de pêche",
- "id": "e588d562f4c157817c0752ff73bc2b0c17b236f57133a41f1368842dc50a2649",
- "kws": {
- "fr": [
- "bateau de pêche"
- ]
- }
- },
- {
- "nm": "taire",
- "id": "79a2d35d701fe5b7969013faf4e65ccfdbd3aeff2df2a229557d1c5068041477",
- "kws": {
- "fr": [
- "taire",
- "faire taire",
- "silence"
- ]
- }
- },
- {
- "nm": "trinquer",
- "id": "801ed11dafa36238ed863f1346f312d8d8c3bb525d3dde9c872194e7dcd0acaf",
- "kws": {
- "fr": [
- "trinquer"
- ]
- }
- },
- {
- "nm": "opposer",
- "id": "764a290dfdd0c1f6fca9d5f9a2dae32e575b21c6fe8585124cbcdb203a5e2555",
- "kws": {
- "fr": [
- "opposer",
- "opposé"
- ]
- }
- },
- {
- "nm": "aspirateur",
- "id": "50d84360a396b36cf012985880343f1b80d0461bf85866382bc2939add23fc64",
- "kws": {
- "fr": [
- "aspirateur"
- ]
- }
- },
- {
- "nm": "podium",
- "id": "332eb08cfecc4ecbd22490a2453c0a149d9c2c8fdeea8cc25cbd3ca315bdf60d",
- "kws": {
- "fr": [
- "podium"
- ]
- }
- },
- {
- "nm": "beau",
- "id": "c52287eeefaeadb5718aa9c23ae5205e72c3ce8c9259b55be18c3d37bb26d530",
- "kws": {
- "fr": [
- "beau",
- "belle",
- "joli",
- "jolie"
- ]
- }
- },
- {
- "nm": "sancho panza",
- "id": "595bea81d6aa7da79b6a9604ce98f88e04e867556a5af67f19daa3b2622a3274",
- "kws": {
- "fr": [
- "sancho panza"
- ]
- }
- },
- {
- "nm": "combien y en a-t-il",
- "id": "ee4860fc55235c4436604abb9992e3d2dae2e37a1619896ef81e9e7a31f06a58",
- "kws": {
- "fr": [
- "combien y en a-t-il",
- "combien",
- "quantité"
- ]
- }
- },
- {
- "nm": "enfiler",
- "id": "67c5072ac0af8819952e50717eede8dfc90770f9ab60eaebd32aae664049f30c",
- "kws": {
- "fr": [
- "enfiler"
- ]
- }
- },
- {
- "nm": "circuit électrique",
- "id": "48a1aa409dc088e60ceac746f8fd97ad9ed9e4402e7c72714c760b2e046b61f6",
- "kws": {
- "fr": [
- "circuit électrique",
- "circuit"
- ]
- }
- },
- {
- "nm": "équilibriste",
- "id": "d54995d98f2eb9b1bd9925872bdeb8f58e0b8744db61107a92c478a209b11ed5",
- "kws": {
- "fr": [
- "équilibriste",
- "artiste"
- ]
- }
- },
- {
- "nm": "hamburger et frites",
- "id": "5ae4bfc23fe2aaccec371ca9e24b60e319f70a3f92ffea4123487d9da4b7db66",
- "kws": {
- "fr": [
- "hamburger et frites"
- ]
- }
- },
- {
- "nm": "bulle de savon",
- "id": "8a6bf32d13c88a69dccd079621fcc3b4e17e54b098d7aeb6f0db8a2f13f98384",
- "kws": {
- "fr": [
- "bulle de savon",
- "bulle"
- ]
- }
- },
- {
- "nm": "personne âgée",
- "id": "d5ef2ba6cdcdb154470d7c86b06fd4b66ceee78cf99505092fadab5474f1afd6",
- "kws": {
- "fr": [
- "personne âgée",
- "personne",
- "grand-mère"
- ]
- }
- },
- {
- "nm": "connecter",
- "id": "c230f2c1fee7d346b77745900899c073001acc48db821d389fff95b7bfb00102",
- "kws": {
- "fr": [
- "connecter"
- ]
- }
- },
- {
- "nm": "parcourir",
- "id": "94caecf3cdd385f1cfdce5f866afd042d65f2837dd3e25df94450fffa37aef28",
- "kws": {
- "fr": [
- "parcourir",
- "voyager"
- ]
- }
- },
- {
- "nm": "calculer",
- "id": "09cebb423319c1b54e83a66d37d1104795b258bd47e3ac0ec865a047b187139c",
- "kws": {
- "fr": [
- "calculer"
- ]
- }
- },
- {
- "nm": "cremà",
- "id": "98ee38aa781481b8b8cd9fa5bb40552c71966ae03e5ba3e5e9622f1cb0ee6712",
- "kws": {
- "fr": [
- "cremà"
- ]
- }
- },
- {
- "nm": "cadix",
- "id": "63e5bcdf3a02d08832f8162564eb58e6648108cc520e92b5ad5f23f951da7ad9",
- "kws": {
- "fr": [
- "cadix"
- ]
- }
- },
- {
- "nm": "sac en papier",
- "id": "9694bd8a915074f2cb4a78a829f97c341c24913a35483821874cf6553d5c9c94",
- "kws": {
- "fr": [
- "sac en papier"
- ]
- }
- },
- {
- "nm": "phonendoscope",
- "id": "5dfc626fd8fd378bfdbb82cc62cb9167688ab0d2f5beebd0c7aa3e3e6252b360",
- "kws": {
- "fr": [
- "phonendoscope",
- "stéthoscope"
- ]
- }
- },
- {
- "nm": "clavier",
- "id": "0a637661ffbcfb4981c9af5f340bfa5a062a2dbb17ee659f52b6170d16e1bbbf",
- "kws": {
- "fr": [
- "clavier",
- "notes de piano"
- ]
- }
- },
- {
- "nm": "grue",
- "id": "fc157aa1f2f1505777ded2151965199265f40b30e8ecee869cbd2bca3cec0bb9",
- "kws": {
- "fr": [
- "grue"
- ]
- }
- },
- {
- "nm": "catalogue",
- "id": "c5b2d66f2086a6905630f9e0cd0edba7cb001ace9e8196ded36bcefb98f3a240",
- "kws": {
- "fr": [
- "catalogue"
- ]
- }
- },
- {
- "nm": "lettre",
- "id": "6c50f430d6f1db558548f53b632cd45795e44318431cf9b9a1cc4874bbf4ad01",
- "kws": {
- "fr": [
- "lettre"
- ]
- }
- },
- {
- "nm": "corriger",
- "id": "68f707aff992cab90dc99ffee97c98424d09c7caff5cb233109cda871a089ff8",
- "kws": {
- "fr": [
- "corriger",
- "réviser"
- ]
- }
- },
- {
- "nm": "charcutier",
- "id": "24aef10edec183884c2bd5cdad6de5ed2f86229ece878c4b6c4d9ae717d9e87b",
- "kws": {
- "fr": [
- "charcutier"
- ]
- }
- },
- {
- "nm": "dentiste",
- "id": "3d68645ff23ba11c2fe86348b029052c1e8e2c62ad8d6016c8fcb4791c98a10b",
- "kws": {
- "fr": [
- "dentiste",
- "odontologie",
- "odontologiste"
- ]
- }
- },
- {
- "nm": "se baigner",
- "id": "ea883a173990b0b0d8157b9119c56e0db36dca1be79e30e0e0804567388af6d7",
- "kws": {
- "fr": [
- "se baigner"
- ]
- }
- },
- {
- "nm": "journal",
- "id": "22035bfed0203f3c1215d27cf0556fb1e4dd6874ed078d7e094295b70c5dbd16",
- "kws": {
- "fr": [
- "journal"
- ]
- }
- },
- {
- "nm": "nager",
- "id": "662d5680dab1f2869c1b51b7299fa261e5585fa8513d6b7db1482f37781c5253",
- "kws": {
- "fr": [
- "nager",
- "nageur",
- "natation"
- ]
- }
- },
- {
- "nm": "brochette de fruit",
- "id": "a99e76be23a0b49637bed485d624c906f9c1a70ec9168d17207ec4dfe51f04c0",
- "kws": {
- "fr": [
- "brochette de fruit",
- "brochette"
- ]
- }
- },
- {
- "nm": "allemagne",
- "id": "99dd63159478e796c6c49c55ca54bd324893ae5c0ef8be95fd796c4c8e6298d3",
- "kws": {
- "fr": [
- "allemagne"
- ]
- }
- },
- {
- "nm": "pavillon pirate",
- "id": "686b8d2d4c6ef7d88b4214d8dfc6538f4136eb4b418b2028123a44b890b7f91c",
- "kws": {
- "fr": [
- "pavillon pirate"
- ]
- }
- },
- {
- "nm": "dix-neuf",
- "id": "06cf2d7a68ef9a1b16f8665cce423657b06a328ceac69538a6214b293a786cd5",
- "kws": {
- "fr": [
- "dix-neuf",
- "19"
- ]
- }
- },
- {
- "nm": "ciel",
- "id": "f9ff6bb8e6efb7d2de3f2318ea9a8fcd56a869b6be041ec8332da3b651a4a6da",
- "kws": {
- "fr": [
- "ciel"
- ]
- }
- },
- {
- "nm": "suite",
- "id": "9a2a866d042db3c83e9b238558d1753e2583bb9d5ec2438bdc2140bfb0d3eded",
- "kws": {
- "fr": [
- "suite"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "5615fc4a297e906f9af5a655810d862900aa44ec3acfefe0246fe4d6a27994d0",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains en haut",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "cerise",
- "id": "e8d1e2e669310513a0eded982d86be18c6f6b417030625ead7aa1663caab063c",
- "kws": {
- "fr": [
- "cerise"
- ]
- }
- },
- {
- "nm": "potabilisateur",
- "id": "b8897ec5eb14a7dcdb6bf850dd006dfbcccbaae157c348265bab4f4cfa18dda9",
- "kws": {
- "fr": [
- "potabilisateur"
- ]
- }
- },
- {
- "nm": "automne",
- "id": "308476f77f225134a5c86824f1c669ee91cff47113a5326e24425696f4f531c4",
- "kws": {
- "fr": [
- "automne",
- "gare"
- ]
- }
- },
- {
- "nm": "vociférer",
- "id": "cd19936d29ae0e21d8af5d8fed03fffa74b0224cb5ea35711a8122eb10b0792e",
- "kws": {
- "fr": [
- "vociférer",
- "crier",
- "appeler"
- ]
- }
- },
- {
- "nm": "sirène",
- "id": "3c824798aa8c65c27b888d6a07d0607a79710c5fad365c579387b2984f719f9a",
- "kws": {
- "fr": [
- "sirène",
- "alarme"
- ]
- }
- },
- {
- "nm": "nous",
- "id": "79aa50f119b1583351b138f540b0d7f962827f4ff2489e9a738a5898b77ac42f",
- "kws": {
- "fr": [
- "nous"
- ]
- }
- },
- {
- "nm": "ne pas utiliser l\u0027ascenseur en cas d\u0027incendie",
- "id": "2e4373eed36e5663f63741189fde41c1aae44b5d4c2ff4da658f16dd6cb6c18a",
- "kws": {
- "fr": [
- "ne pas utiliser l\u0027ascenseur en cas d\u0027incendie"
- ]
- }
- },
- {
- "nm": "marchand de poisson",
- "id": "ff20fcfc57e0955597831dcafbfcaf1303769a94bd31587e52538c66c8054928",
- "kws": {
- "fr": [
- "marchand de poisson"
- ]
- }
- },
- {
- "nm": "perdre",
- "id": "3ff9cd9a76d5c1b5976527103225e8729fdba63986d4571e7beb27c02cca7794",
- "kws": {
- "fr": [
- "perdre"
- ]
- }
- },
- {
- "nm": "gastrite",
- "id": "cd44966a93cc847120df3f5b1161393d78412b3573a20da3e2b8363fddcf44b0",
- "kws": {
- "fr": [
- "gastrite"
- ]
- }
- },
- {
- "nm": "vanille",
- "id": "e4196a7ef82ba7963a591a9e8347516775e89f9898e5d1dd61e26d894514584f",
- "kws": {
- "fr": [
- "vanille"
- ]
- }
- },
- {
- "nm": "tribunal",
- "id": "216211fb614fd9f94f9a3a2863d90a80c4e9d3513da2118e5feefd7e13d1e309",
- "kws": {
- "fr": [
- "tribunal"
- ]
- }
- },
- {
- "nm": "lait et galettes",
- "id": "b0c4381224cf82da50a273271c98fb96c97c1764561fc51f177471aceeea4960",
- "kws": {
- "fr": [
- "lait et galettes"
- ]
- }
- },
- {
- "nm": "chevelu",
- "id": "9474f2abee28bb09517a3f0c50f39490b9c19d77dc42371e22d57aba25d67440",
- "kws": {
- "fr": [
- "chevelu"
- ]
- }
- },
- {
- "nm": "divorce",
- "id": "d072288d34f68180cc5b28ecceb3650be6ca14fb55a0441dd9cbe951206c9950",
- "kws": {
- "fr": [
- "divorce"
- ]
- }
- },
- {
- "nm": "cardiologue",
- "id": "8502d42ca526e71ee15a26d09f472ffec8c5ef3b968394825da75892309ea46d",
- "kws": {
- "fr": [
- "cardiologue"
- ]
- }
- },
- {
- "nm": "dormir",
- "id": "05cec9113a9ec5794d2403b61100ad82b80ba07dd0cc7de29680a29e602643cd",
- "kws": {
- "fr": [
- "dormir"
- ]
- }
- },
- {
- "nm": "enregistrer",
- "id": "5f434b80ac4b673bcf483616877cc33fbd2d8b5cd0e876ed9ecb59119c67da19",
- "kws": {
- "fr": [
- "enregistrer"
- ]
- }
- },
- {
- "nm": "décollage",
- "id": "cbbbdd63ed0fa6ee9b36fd01e9b00a507d9a914d2e9de8b3da9bbc3b2f16056f",
- "kws": {
- "fr": [
- "décollage",
- "décoller"
- ]
- }
- },
- {
- "nm": "scie sauteuse",
- "id": "cba71666a51d4ea5becff3aa588fe72b857b6e735d1d712e5ddf2d4019ea6d2f",
- "kws": {
- "fr": [
- "scie sauteuse",
- "scie"
- ]
- }
- },
- {
- "nm": "rappeler",
- "id": "ca432d76e99e06182bb5376eca8524c730bfbd0a7e20aae6c5d1e8f3ceafe432",
- "kws": {
- "fr": [
- "rappeler",
- "se souvenir"
- ]
- }
- },
- {
- "nm": "temps",
- "id": "93c4142580714cd5da3db8aefe0ec8b85f1dc89a5e7891fc8667762a5e6aa9c0",
- "kws": {
- "fr": [
- "temps",
- "âge",
- "époque"
- ]
- }
- },
- {
- "nm": "orienter",
- "id": "f2bc423b3194d3659a948df7425847fcec28eb9498eb0a2a3316e82bdba44c69",
- "kws": {
- "fr": [
- "orienter",
- "s\u0027orienter"
- ]
- }
- },
- {
- "nm": "semi-remorque",
- "id": "a23fec7730a41f09207c847fd53a6ebc6e13acdf30e8bc4460f82e1f590ef1c5",
- "kws": {
- "fr": [
- "semi-remorque",
- "bande-annonce"
- ]
- }
- },
- {
- "nm": "divorcer",
- "id": "60bcbe32171da086985f081bf4e5a30ceb7e089e4239ab434beec462a9426508",
- "kws": {
- "fr": [
- "divorcer"
- ]
- }
- },
- {
- "nm": "rocking-chair",
- "id": "2e5b60d9ece60e9e680c27a781de67c01abb9e526b0065e4543fee8be1c14134",
- "kws": {
- "fr": [
- "rocking-chair"
- ]
- }
- },
- {
- "nm": "boucles d\u0027or",
- "id": "e22d04378698492b8e51f0f71d6ccc683f6b270955772461a31d477bdfba4c37",
- "kws": {
- "fr": [
- "boucles d\u0027or"
- ]
- }
- },
- {
- "nm": "exclamation",
- "id": "fcf9214ddd367f2a002336e66400142436bf646d447c755e9798e5afe4dc1d06",
- "kws": {
- "fr": [
- "exclamation",
- "sin traduccion"
- ]
- }
- },
- {
- "nm": "gymnaste",
- "id": "de0a9a8251879beb531050f62683af23e428bc447ba8d4d9c58145b42d7d1f8e",
- "kws": {
- "fr": [
- "gymnaste"
- ]
- }
- },
- {
- "nm": "thon",
- "id": "2499c77d5afb54c52383047bc53753fa36ec5188d4271b5f6da2f4b159a7f231",
- "kws": {
- "fr": [
- "thon"
- ]
- }
- },
- {
- "nm": "culture",
- "id": "12bed72e5d1b21071411657559d9ce58527614dbff51c8c4b3ac9753d0e3715f",
- "kws": {
- "fr": [
- "culture"
- ]
- }
- },
- {
- "nm": "quilles",
- "id": "1006d0c688fcb61f6a276405b7625fb350c416e3e2a8916f335b979792340970",
- "kws": {
- "fr": [
- "quilles"
- ]
- }
- },
- {
- "nm": "orange",
- "id": "fe524d6f505c093703b878835b1275bd5f178a2290a10f346eafe4267c7ed17a",
- "kws": {
- "fr": [
- "orange"
- ]
- }
- },
- {
- "nm": "chaud",
- "id": "b7165de402d84d2674e8cce53c4f517389a738fad421eb644957450de759d44d",
- "kws": {
- "fr": [
- "chaud",
- "poêle électrique",
- "radiateur"
- ]
- }
- },
- {
- "nm": "étiqueter",
- "id": "fe78192b1b30653e8a0e0407a55d1005219ea476c4cad420943a4e34c5271f88",
- "kws": {
- "fr": [
- "étiqueter"
- ]
- }
- },
- {
- "nm": "noël",
- "id": "878865b21d58568b6e4e72f361cb8d1086391a8892f505c6592f782e35adb331",
- "kws": {
- "fr": [
- "noël",
- "jour de noël"
- ]
- }
- },
- {
- "nm": "pourquoi",
- "id": "a85a6a7bcf7c50025aae69177f0ebf375f1b26a2735ca614379eaf32606aa9a7",
- "kws": {
- "fr": [
- "pourquoi"
- ]
- }
- },
- {
- "nm": "respirer",
- "id": "66dbc265668236e4417001b65d68134a84b401442869d4e385d6c9c04169432b",
- "kws": {
- "fr": [
- "respirer",
- "aspirer"
- ]
- }
- },
- {
- "nm": "croquettes",
- "id": "84ac293c7b112b2eb4f716450b068cd587c37a606f00a5944139060928c6701f",
- "kws": {
- "fr": [
- "croquettes"
- ]
- }
- },
- {
- "nm": "enceinte",
- "id": "3c1936ccfcdac9a92a181d96e0cace5b65048ad898abf84caa5ea26bf752f783",
- "kws": {
- "fr": [
- "enceinte",
- "gestation",
- "grossesse"
- ]
- }
- },
- {
- "nm": "nicaragua",
- "id": "05705707b683b86b5dd6593c808a82b0d0ea1181585db98b1c8c6a088907b33b",
- "kws": {
- "fr": [
- "nicaragua"
- ]
- }
- },
- {
- "nm": "roue de psychomotricité",
- "id": "d15f48dd3fec6c3eae66eb36a25cd65822dfdb8c168e1984e29fe3826a53bfef",
- "kws": {
- "fr": [
- "roue de psychomotricité"
- ]
- }
- },
- {
- "nm": "carte de noël",
- "id": "3b706c74dcf4e3da9914b60dae3f38f59cbfe0b2e64054971d364bc1b60ad8b4",
- "kws": {
- "fr": [
- "carte de noël",
- "carte de voeux",
- "carte"
- ]
- }
- },
- {
- "nm": "fermé",
- "id": "c0132254a88cb9625baab1837a37f5f7b4d037fc2bc6054c46a2574bb493c0a3",
- "kws": {
- "fr": [
- "fermé"
- ]
- }
- },
- {
- "nm": "divorcer",
- "id": "f4deef31508dee29e89a4ef4d1a7dbda2249350709dfa7f4c08e1469c7b6d7c8",
- "kws": {
- "fr": [
- "divorcer"
- ]
- }
- },
- {
- "nm": "manier",
- "id": "dc45dd2e68a382c0f7bcdf417022ff07000d8da67f1e300cb484ea435ea081c0",
- "kws": {
- "fr": [
- "manier"
- ]
- }
- },
- {
- "nm": "tambourinade",
- "id": "8aaa93b071258bda6649e49fba565f4540ca9defe5b9c24143963757fa896a3e",
- "kws": {
- "fr": [
- "tambourinade"
- ]
- }
- },
- {
- "nm": "mort",
- "id": "c212ea09c8bcfca5bf27200177bac346038517a233c20c413ac6af70299992ec",
- "kws": {
- "fr": [
- "mort"
- ]
- }
- },
- {
- "nm": "saucisse",
- "id": "063fa104f57bba8b04754e8990866de780e51452bd704e0a102274923d8a7790",
- "kws": {
- "fr": [
- "saucisse"
- ]
- }
- },
- {
- "nm": "plongeoir",
- "id": "2264fcbdaf35557d91c241e5f2c8acc49d33ecd404d32fd541c4fe75e5215e8b",
- "kws": {
- "fr": [
- "plongeoir"
- ]
- }
- },
- {
- "nm": "clé",
- "id": "77e202b0b4e516f78f72703fa993576d0cf5504994c578a64b905ef76945e85d",
- "kws": {
- "fr": [
- "clé"
- ]
- }
- },
- {
- "nm": "mille-pieds",
- "id": "a6685f111f2730d98e97ec0953fb82d75c1483ebfc05f00d610a0906af9c6bcd",
- "kws": {
- "fr": [
- "mille-pieds"
- ]
- }
- },
- {
- "nm": "treize",
- "id": "23b280ca930bd7c5e97ef04b5d4eb617a5fe75c21226210db04990e4d40eb8bc",
- "kws": {
- "fr": [
- "treize",
- "13"
- ]
- }
- },
- {
- "nm": "partition",
- "id": "42a2301e88f1f5749086aa3da8a5c11b2be11a7f096851cfc5e730a8591d3035",
- "kws": {
- "fr": [
- "partition",
- "chanson",
- "portée",
- "composition",
- "musique"
- ]
- }
- },
- {
- "nm": "raisins secs",
- "id": "a6f0f2d0c8fccdf338ed3a793328cc229bba84513d0e3d1b80b222ce65adc4fe",
- "kws": {
- "fr": [
- "raisins secs"
- ]
- }
- },
- {
- "nm": "menuisier",
- "id": "0ea47f46a3690d288a6400b2bc2978b3473eef5d1769fd86ace0875219d5e75f",
- "kws": {
- "fr": [
- "menuisier"
- ]
- }
- },
- {
- "nm": "caméra vidéo",
- "id": "bf8fda670112ebaaba66a1755279f0adc1294ee55a6f99634ae3987d6adfd085",
- "kws": {
- "fr": [
- "caméra vidéo",
- "caméscope"
- ]
- }
- },
- {
- "nm": "refuser",
- "id": "7e19aa79ba16fd62d95b07909a7ad45f4b7667c277fcd0c495577843663dcd85",
- "kws": {
- "fr": [
- "refuser"
- ]
- }
- },
- {
- "nm": "mixeur adapté",
- "id": "01472bf85f63a9e0e5c326bbc5583a4e68d710ad68018a8a03401bf10e6d83ff",
- "kws": {
- "fr": [
- "mixeur adapté",
- "mixeur",
- "batteur"
- ]
- }
- },
- {
- "nm": "président",
- "id": "9097473ff92de5db149a7723bc7353c67cf4097cbe77f4fab170e07246bafb0b",
- "kws": {
- "fr": [
- "président"
- ]
- }
- },
- {
- "nm": "casier",
- "id": "b40445c7c28380b8b0b5e2cdfaf0f1be82dec010fde2a7abe1ce91b18aa1ab5b",
- "kws": {
- "fr": [
- "casier"
- ]
- }
- },
- {
- "nm": "produit de soutien",
- "id": "d37f41f01282aab8df7df7440eeb49c69e471f7a48339ce95330f6c80e9d1f4c",
- "kws": {
- "fr": [
- "produit de soutien",
- "communicateur",
- "aide de communication"
- ]
- }
- },
- {
- "nm": "transatlantique",
- "id": "ec68c07ee015d7d66971f48492d13019d60dae1729d8304e05f441558741d048",
- "kws": {
- "fr": [
- "transatlantique"
- ]
- }
- },
- {
- "nm": "serbie",
- "id": "fbd5dd87ae0d5be488c8951b9526910b00e94c28de6f0dacd4374cc8cd2e7e40",
- "kws": {
- "fr": [
- "serbie"
- ]
- }
- },
- {
- "nm": "fois",
- "id": "b9126dc95bec8c3e6abb6f7445dfe590cfc07220c0192db23464cb5c903f4b2c",
- "kws": {
- "fr": [
- "fois"
- ]
- }
- },
- {
- "nm": "entrée",
- "id": "1890955999e9573039ddfd8817299855f5a4375db02c5776193bbb0b4d6b6fd6",
- "kws": {
- "fr": [
- "entrée"
- ]
- }
- },
- {
- "nm": "note",
- "id": "95f0f73b08df797af501617dc87646c7141bef812caa1dfb4fdd215478387b1c",
- "kws": {
- "fr": [
- "note",
- "annoncer",
- "annotation"
- ]
- }
- },
- {
- "nm": "carnivore",
- "id": "2afb79a8879b82c100873860271efeec4d9c5e9d90f60fa95e7e482c34881f91",
- "kws": {
- "fr": [
- "carnivore"
- ]
- }
- },
- {
- "nm": "chatouiller",
- "id": "b72a990011df2ce103c6353e6e05d4ec03540d53e02e310f2f93557b9d185c32",
- "kws": {
- "fr": [
- "chatouiller",
- "chatouilles"
- ]
- }
- },
- {
- "nm": "documents",
- "id": "612676782e7b460499cd2f80d82f1dfba6a989783e12d471613c72e120607b75",
- "kws": {
- "fr": [
- "documents"
- ]
- }
- },
- {
- "nm": "avoir l\u0027habitude",
- "id": "1c3d889bcd0ecb577a3f5c22350e4690d4cdba2638078bfd58a41a4f05cbcd69",
- "kws": {
- "fr": [
- "avoir l\u0027habitude",
- "anniversaire"
- ]
- }
- },
- {
- "nm": "sucer",
- "id": "bb65d3e77ab5d412d21ba4cbd357f4abd155492e5b8cc9ca71d6e1a1282ae4d7",
- "kws": {
- "fr": [
- "sucer"
- ]
- }
- },
- {
- "nm": "ouvrir",
- "id": "89290ce15051839da2fc5e3e21192168817a4621badfe7f69a07617798261f83",
- "kws": {
- "fr": [
- "ouvrir"
- ]
- }
- },
- {
- "nm": "tournesol",
- "id": "c231c65efc6311a5758ee3ace70ba5d823bb229c12052c3a08e9eb21d47043ad",
- "kws": {
- "fr": [
- "tournesol"
- ]
- }
- },
- {
- "nm": "exposition",
- "id": "620d6d2566e6caf5594d467e722e0d326091743529933c9258d25c8cbc7e658c",
- "kws": {
- "fr": [
- "exposition"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "18b1d9583b0738bd18670133169dee2461d1bfa603777b6d4db8289ec1faad17",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains aux épaules",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "décorer",
- "id": "ab37c5c7d7606e5e5f48728045395be93e821b898cef306af617dc2b61ea3f02",
- "kws": {
- "fr": [
- "décorer",
- "orner"
- ]
- }
- },
- {
- "nm": "vertical",
- "id": "042a8e9e9b38302dd0bff7a45fb5f57de0b89f9d0088ee394e45ae6408c60200",
- "kws": {
- "fr": [
- "vertical"
- ]
- }
- },
- {
- "nm": "début",
- "id": "8bf236895c13c21aecc614644ec9cba3e75615537c40ad3ee9ea3f7508084183",
- "kws": {
- "fr": [
- "début",
- "débuter",
- "commencer",
- "initiale"
- ]
- }
- },
- {
- "nm": "avoir l\u0027habitude",
- "id": "ff1c7e228515ef30d39dedcd7bdd425d8dd7c662268d67e94c121ab646433597",
- "kws": {
- "fr": [
- "avoir l\u0027habitude"
- ]
- }
- },
- {
- "nm": "analyse d\u0027urine",
- "id": "5f3d66fa68f317898471378ab3570e9a32fec4f15fb220214af54d56dd09589d",
- "kws": {
- "fr": [
- "analyse d\u0027urine",
- "analyse"
- ]
- }
- },
- {
- "nm": "bateau pirate",
- "id": "18da2e74024166346dd8eb6581b68dffeae6874c0584744f96b7e551cc892c42",
- "kws": {
- "fr": [
- "bateau pirate"
- ]
- }
- },
- {
- "nm": "jongleur",
- "id": "c75162b2e694aa511b2be40ce40d0102a289d9d2ab45a58c5f3679a0cbd1645c",
- "kws": {
- "fr": [
- "jongleur"
- ]
- }
- },
- {
- "nm": "libraire",
- "id": "0656dbe189144affb766127a481951f01b18f40babdbbbf25ace6f2887a3f52d",
- "kws": {
- "fr": [
- "libraire"
- ]
- }
- },
- {
- "nm": "estonie",
- "id": "112496c91c7793371014b6cc0b6ed2b3306c2eced12fef35dabeac9cc58a575a",
- "kws": {
- "fr": [
- "estonie"
- ]
- }
- },
- {
- "nm": "patient",
- "id": "24ff90c1fc3aa50c5cdb4dbcec90b1a66063840bf0fdfe74e3f1998beadb886f",
- "kws": {
- "fr": [
- "patient",
- "tomber malade",
- "malade",
- "maladie"
- ]
- }
- },
- {
- "nm": "pictogrammes",
- "id": "a766c6911027fc1c049a76a5aac4c879d3af04346f3c0db64eaed25a47492a39",
- "kws": {
- "fr": [
- "pictogrammes"
- ]
- }
- },
- {
- "nm": "chaleur",
- "id": "822640c9c8aa89ca472f09aa4298009e2c7f3e6299b22182aa998d73c3c22e7f",
- "kws": {
- "fr": [
- "chaleur",
- "chaud",
- "échauffer",
- "bouffées de chaleur"
- ]
- }
- },
- {
- "nm": "stylo à insuline",
- "id": "553c45d81414daed04f219a5ac5ef8dba99c2bb0a5d2866268cb41cda442f352",
- "kws": {
- "fr": [
- "stylo à insuline"
- ]
- }
- },
- {
- "nm": "entrer",
- "id": "826bc00a46a5e08d2691e98a2b1a4e316dbf328d7b80392b021f0a63e78aaf75",
- "kws": {
- "fr": [
- "entrer",
- "accéder"
- ]
- }
- },
- {
- "nm": "coffre",
- "id": "36c56dd7044d62d617a87c2b7474e6bef5a7ad497b48fb184dec4527af5b4711",
- "kws": {
- "fr": [
- "coffre"
- ]
- }
- },
- {
- "nm": "dioxyde de carbone",
- "id": "adf884e1a710a5b9d7a2b939c15d8d8bb74026e24f1d29f61751165d7ac6e361",
- "kws": {
- "fr": [
- "dioxyde de carbone"
- ]
- }
- },
- {
- "nm": "crosse hockey",
- "id": "0a96cba34f4b854c9e8589b5035a4310b8c03a73d1709560b67c1211689c1d09",
- "kws": {
- "fr": [
- "crosse hockey"
- ]
- }
- },
- {
- "nm": "technicien d\u0027administration",
- "id": "bf4283ce585cf3e2b159be150d7c93dd545c3dd5908b43d7cc8e698e61eaa51e",
- "kws": {
- "fr": [
- "technicien d\u0027administration",
- "administration"
- ]
- }
- },
- {
- "nm": "chevalet",
- "id": "200a9b4816390407dcdb78b6e3bafb295ac4fbb28adaf3f2d389d3ea14ce3a4c",
- "kws": {
- "fr": [
- "chevalet"
- ]
- }
- },
- {
- "nm": "matelas gonflable",
- "id": "d67ca11730549083ccdf4f7a4cb32e907b67f6e88d69d32178dfdf8b64342703",
- "kws": {
- "fr": [
- "matelas gonflable"
- ]
- }
- },
- {
- "nm": "fantôme",
- "id": "97f60c837eaa3950466bbbf6465eccc77159fc5303f29126ecbcbbde8721f816",
- "kws": {
- "fr": [
- "fantôme"
- ]
- }
- },
- {
- "nm": "porte d\u0027alcalá",
- "id": "ad7741bee8805cad66334c45c1ba84b2bc1a2229e7cff45165ce81e7ca805074",
- "kws": {
- "fr": [
- "porte d\u0027alcalá"
- ]
- }
- },
- {
- "nm": "cuite",
- "id": "9832a682d6c6e9c8745fe5117761422ade77df7fabe64949ebc6f6c3c60c6e96",
- "kws": {
- "fr": [
- "cuite",
- "se soûler"
- ]
- }
- },
- {
- "nm": "mordre",
- "id": "38180448f860bd212adf7faf77d33634cc7b0f34b833caf647856f0b18bdbe47",
- "kws": {
- "fr": [
- "mordre",
- "bouchée"
- ]
- }
- },
- {
- "nm": "micro-ondes",
- "id": "5f82b72acd45b4edda315ef17ab014d31a09a90e7c17d2e6322b098bca5d7e9c",
- "kws": {
- "fr": [
- "micro-ondes"
- ]
- }
- },
- {
- "nm": "visser",
- "id": "b5fa6860c17111985479073b538956516b365d07a1d11d42917ebe489926789f",
- "kws": {
- "fr": [
- "visser"
- ]
- }
- },
- {
- "nm": "bain turc",
- "id": "aef4e1887a1f45f53211b900679871d4883d434f7f00d998d6daed5b1d57f31c",
- "kws": {
- "fr": [
- "bain turc",
- "sauna humide",
- "sauna"
- ]
- }
- },
- {
- "nm": "gauche",
- "id": "4698b325d192b728f58cd7889e2332281ec3eff061843b48fec76b6117979c34",
- "kws": {
- "fr": [
- "gauche"
- ]
- }
- },
- {
- "nm": "crochet",
- "id": "fa42a1bbb56015a15c1e8084a42bb45d073c361031966592c0682bc10e4d75b9",
- "kws": {
- "fr": [
- "crochet"
- ]
- }
- },
- {
- "nm": "chaudière à gaz",
- "id": "99410f0ddbcf8b3029f7e1a372434f305896974b22bc63ffe0265f22f45f7f7f",
- "kws": {
- "fr": [
- "chaudière à gaz",
- "chaudière"
- ]
- }
- },
- {
- "nm": "stimulation",
- "id": "21375a6fe51fba7874150dae991615bb9f6f1e750629eb5895b44f43ce9af00d",
- "kws": {
- "fr": [
- "stimulation",
- "salle de stimulation",
- "salle multi-sensorielle"
- ]
- }
- },
- {
- "nm": "accomplissement",
- "id": "bb045a2612bbe572a2de7c7ba5e672f5f65d56322de903a7ddb153d49a14fe08",
- "kws": {
- "fr": [
- "accomplissement"
- ]
- }
- },
- {
- "nm": "pays",
- "id": "68a126b5a560c66f8d14f973ac29260bbc483e0a82b2e346331454ae06668055",
- "kws": {
- "fr": [
- "pays",
- "allemagne"
- ]
- }
- },
- {
- "nm": "vendeuse",
- "id": "1e5ec7820498f30d0af9ab674e27b1b7aa7385068153daea3c0bc081b9033398",
- "kws": {
- "fr": [
- "vendeuse",
- "marchande de journaux"
- ]
- }
- },
- {
- "nm": "septembre",
- "id": "7e629334dda494dda269e3022eff8e84c4246425806cdbdc03409e888df4e591",
- "kws": {
- "fr": [
- "septembre"
- ]
- }
- },
- {
- "nm": "doigt",
- "id": "5294d681b34ee0d8c3dd1d603097b9f8dc01266a9d7be42af6a5d6eaab073443",
- "kws": {
- "fr": [
- "doigt",
- "index"
- ]
- }
- },
- {
- "nm": "aveugle",
- "id": "fd35e8400c129ce1589bc72c430706c55da766e21ce52c879249caa52e16243b",
- "kws": {
- "fr": [
- "aveugle"
- ]
- }
- },
- {
- "nm": "clair",
- "id": "e4f94863a5b2057febde33aafe2bcdb2346e45f074c3c2523eec262893fc5e70",
- "kws": {
- "fr": [
- "clair"
- ]
- }
- },
- {
- "nm": "plus grand",
- "id": "0ae014c4a848f47ad9be9b814fa1f079f28ad689d657b214105da2998b198d09",
- "kws": {
- "fr": [
- "plus grand",
- "supérieur à"
- ]
- }
- },
- {
- "nm": "moule",
- "id": "2ae4673651498e849a914b328aaab23261caa1c7d31e26f94fe3ada9273571b0",
- "kws": {
- "fr": [
- "moule"
- ]
- }
- },
- {
- "nm": "tenir",
- "id": "28b5f7e593532e0b62477952a3e7dfb45a47af4ed3a222201b9a98bb309b5efa",
- "kws": {
- "fr": [
- "tenir",
- "prendre",
- "accrocher",
- "saisir"
- ]
- }
- },
- {
- "nm": "lave-vaisselle",
- "id": "cc6fde920707d712ca425181d3027b8b3a80c0f1e7ae547a02b3681adb00106c",
- "kws": {
- "fr": [
- "lave-vaisselle",
- "laver les assiettes",
- "laver"
- ]
- }
- },
- {
- "nm": "charcutière",
- "id": "847b55462895666416e925609f0614b10987490a84242b07a0bf26632bfe2dfd",
- "kws": {
- "fr": [
- "charcutière"
- ]
- }
- },
- {
- "nm": "terrorisé",
- "id": "69057eda9142671b4d0b8140463c59427cde2ed20c1bbdffaac5221f3b081121",
- "kws": {
- "fr": [
- "terrorisé",
- "effrayé",
- "faire peur",
- "avoir peur"
- ]
- }
- },
- {
- "nm": "ciseaux",
- "id": "ea5e48f89b1356653029740ecd305882bf63e6f1626d93fc7cb7d313a9dcecb1",
- "kws": {
- "fr": [
- "ciseaux"
- ]
- }
- },
- {
- "nm": "garage",
- "id": "ce4de888c785445334867d43cc62f33d980bc7330ba6a3ec1d0d28c8be275f4c",
- "kws": {
- "fr": [
- "garage"
- ]
- }
- },
- {
- "nm": "entrée",
- "id": "e6d4296df1e3a00dd09ca335050779945c4daddad23c7a619b6e6211a8a62066",
- "kws": {
- "fr": [
- "entrée",
- "hall"
- ]
- }
- },
- {
- "nm": "magicien",
- "id": "491220d4b5e9883d3b5cd2bac65ebf22b8975c9f651dac2aec3f3b37270a91cb",
- "kws": {
- "fr": [
- "magicien",
- "magie",
- "artiste"
- ]
- }
- },
- {
- "nm": "après",
- "id": "7b5b297c3b5f4d258404c5ab2d6ba36fdf3fd06b2029d8c2b065d6183ef3af08",
- "kws": {
- "fr": [
- "après"
- ]
- }
- },
- {
- "nm": "grandir",
- "id": "443ccb7c4131e378150197fdc8027ea9a8e6f9d3f0f1d36019865c947e7f8a9e",
- "kws": {
- "fr": [
- "grandir"
- ]
- }
- },
- {
- "nm": "olive noire",
- "id": "05574184e66b4096b10940c73d2f788a6b98319ee225e75836cfa8f3c17540f3",
- "kws": {
- "fr": [
- "olive noire",
- "olive"
- ]
- }
- },
- {
- "nm": "permis de conduire",
- "id": "c3aa8a86d7a02054c4758844139a1b42a91af20c8c27501015f6aabae360d23c",
- "kws": {
- "fr": [
- "permis de conduire",
- "carte"
- ]
- }
- },
- {
- "nm": "horizon",
- "id": "6b93aeed833af07021a75cc9fc4f950698f217b89f6d70503c45c03272e6c3a0",
- "kws": {
- "fr": [
- "horizon"
- ]
- }
- },
- {
- "nm": "délinquant",
- "id": "da37705de549af21549257492c441555fab851105bfcad97fe39beb11576e6d4",
- "kws": {
- "fr": [
- "délinquant",
- "voleur",
- "bandit"
- ]
- }
- },
- {
- "nm": "piège",
- "id": "8ffc0862d546bded4ac9934e7629d9de4ddbc01fee8b4bcc7d200a332a0ccc73",
- "kws": {
- "fr": [
- "piège"
- ]
- }
- },
- {
- "nm": "merlan",
- "id": "5924819460a871ac68cecb2f1f136b44e89199de2f305f4517bdd188fe3f8525",
- "kws": {
- "fr": [
- "merlan"
- ]
- }
- },
- {
- "nm": "murcie",
- "id": "b60939c24652d8ea2858fe82b811fd8026de0edaf3fa738e517f887474f81103",
- "kws": {
- "fr": [
- "murcie"
- ]
- }
- },
- {
- "nm": "indiquer",
- "id": "02877d72838bb43d18c655896e4e6bb3d98ac642aeaf8bcc64bf44d90a046990",
- "kws": {
- "fr": [
- "indiquer",
- "signaler"
- ]
- }
- },
- {
- "nm": "permettre",
- "id": "7fc3337fe2fb02db1526dd6a36deebeb82e7cce71d3e103dedd3226844d8c42c",
- "kws": {
- "fr": [
- "permettre"
- ]
- }
- },
- {
- "nm": "muscles",
- "id": "03723d4ab20d222d7ef2da421ee26fae5d82ead6fb785d316e9f45416e918a19",
- "kws": {
- "fr": [
- "muscles"
- ]
- }
- },
- {
- "nm": "coup de sifflet",
- "id": "3f68b035a91b5f863ee16ae35b3a49da3e6ac3a15186d62f2a587a8a9c747ce9",
- "kws": {
- "fr": [
- "coup de sifflet",
- "siffler"
- ]
- }
- },
- {
- "nm": "touriste",
- "id": "bc53e6799e43b039d1cb56e0b02f93339f1673f17cb3acccb6e11883c2a13040",
- "kws": {
- "fr": [
- "touriste"
- ]
- }
- },
- {
- "nm": "brûlant",
- "id": "1973c0b0282300b0213730a801eddf34691a1ff7c3d6bb39a509a94837336845",
- "kws": {
- "fr": [
- "brûlant",
- "chaud"
- ]
- }
- },
- {
- "nm": "étoile",
- "id": "e1c77d7e82baa1b243226bf4044d190f75c0ef9d9742014d5af470e3c25d8603",
- "kws": {
- "fr": [
- "étoile"
- ]
- }
- },
- {
- "nm": "soudeur",
- "id": "a5ece42bc7fe60b9d547109eb06fabcabd9ea97b5360c2e0202da9b20b42ca40",
- "kws": {
- "fr": [
- "soudeur"
- ]
- }
- },
- {
- "nm": "toutankhamon",
- "id": "fa02c09e5c86653afa1d2c9fd62988f5771f0e4c122558dfa66987780b62b8f1",
- "kws": {
- "fr": [
- "toutankhamon"
- ]
- }
- },
- {
- "nm": "timbre poste",
- "id": "52455a63efca1302e2afa858ac30e3d09de413d4943ee65dc4f4794a6e88876b",
- "kws": {
- "fr": [
- "timbre poste",
- "timbre"
- ]
- }
- },
- {
- "nm": "un",
- "id": "1f5a7d1f11809b458d8ee5ae50660bad156e9e3e8638a7b311fa8ed0787a5e20",
- "kws": {
- "fr": [
- "un",
- "numéro"
- ]
- }
- },
- {
- "nm": "soigneuse",
- "id": "26f44f704569cdc89967afd808f19c59e4a6d9a14cc88f48e2c0e622548198a2",
- "kws": {
- "fr": [
- "soigneuse"
- ]
- }
- },
- {
- "nm": "paraguay",
- "id": "9ff7f78b4bfea3d85d0c1164a35f5e58b7a8e4498c93c9b8f504e9f94c284c9f",
- "kws": {
- "fr": [
- "paraguay"
- ]
- }
- },
- {
- "nm": "nouveau",
- "id": "ed36c6d6d5dd41e2b870e10993c22a379bcaec6765712c4ec2825a8dad6d351f",
- "kws": {
- "fr": [
- "nouveau",
- "nouvelle"
- ]
- }
- },
- {
- "nm": "lampe de chevet",
- "id": "b11be016045ece602812423c10517143f218280f35d25dd777dff85f8c7716fa",
- "kws": {
- "fr": [
- "lampe de chevet",
- "lampe"
- ]
- }
- },
- {
- "nm": "faisceau de lumière",
- "id": "95170d8a42db2038543cd7c1a9d35d4be5ce945930bfb6babcd771a50bc0096e",
- "kws": {
- "fr": [
- "faisceau de lumière",
- "fibre optique"
- ]
- }
- },
- {
- "nm": "accrocher",
- "id": "32d8a991ccca824a4c75a8a69bbd27b13ff8f9002573355bc3508ed4267d6446",
- "kws": {
- "fr": [
- "accrocher"
- ]
- }
- },
- {
- "nm": "abus sexuel",
- "id": "2ae381548698de0426cdcd094d0191fac3343b27645fec02b53b0e0b0e4268b3",
- "kws": {
- "fr": [
- "abus sexuel"
- ]
- }
- },
- {
- "nm": "grippe",
- "id": "b993fc450b969dff1f98618770dd30bf862f4ea68e88acda0b6ab0b71506ab37",
- "kws": {
- "fr": [
- "grippe"
- ]
- }
- },
- {
- "nm": "peau",
- "id": "c49acd7e1cee9bed160b4785ec58d4bb5c42083d1ced7bfd8dfec76d1b264d54",
- "kws": {
- "fr": [
- "peau"
- ]
- }
- },
- {
- "nm": "atmosphère",
- "id": "aa81a9e12ab5a5fe677b921cfe9ca43eae786df92892ebcfaafad24b6b7b6642",
- "kws": {
- "fr": [
- "atmosphère"
- ]
- }
- },
- {
- "nm": "forêt élaguée",
- "id": "f77ab4919fad07d495c7e67cfbff044ffa40b1ed58386bbe55c6deeb86f0d9d9",
- "kws": {
- "fr": [
- "forêt élaguée"
- ]
- }
- },
- {
- "nm": "castellon",
- "id": "c92ccbd7a9586b1541d68a527ebab86cdcc2406497713bf22b9494ea5ef298f9",
- "kws": {
- "fr": [
- "castellon"
- ]
- }
- },
- {
- "nm": "friand",
- "id": "e648425e8520f4d0f702ae8da4ef3eefbfbf5b48544ea9876d0d4cf4db9c199e",
- "kws": {
- "fr": [
- "friand"
- ]
- }
- },
- {
- "nm": "rater",
- "id": "1686ddaa6d0625620b5febd393a4deabc2a77bbbaff21b429a63c1154474f070",
- "kws": {
- "fr": [
- "rater"
- ]
- }
- },
- {
- "nm": "plage",
- "id": "b3ded11c50f0dac3f6f9ed87ba28f3c259389a9da023fdfab5d4b720f6992a5c",
- "kws": {
- "fr": [
- "plage",
- "côte"
- ]
- }
- },
- {
- "nm": "point d\u0027interrogation",
- "id": "035278dfc7cddc9d57498a1e1c1ed712ea69bf64b6a8e520e6224224215e6eaf",
- "kws": {
- "fr": [
- "point d\u0027interrogation"
- ]
- }
- },
- {
- "nm": "mesureur de glucose",
- "id": "4afea292616e5933a11d29f90ab312bebb70b491fb3ad73a87ae6ce783371e40",
- "kws": {
- "fr": [
- "mesureur de glucose"
- ]
- }
- },
- {
- "nm": "se lever tôt",
- "id": "c11bd8945d418a58b4607622cc1103cd872c6491cbfa564c16c3ae7b822706fd",
- "kws": {
- "fr": [
- "se lever tôt"
- ]
- }
- },
- {
- "nm": "prendre le courrier",
- "id": "5bece7d0ab5c006b7d7c582b93ee47ea5e038a825e566dffc6c99d7f3744a243",
- "kws": {
- "fr": [
- "prendre le courrier",
- "recevoir une lettre"
- ]
- }
- },
- {
- "nm": "assurance auto",
- "id": "cb8c1b6f28b7f339a3b6a28721f9b3467cc993bb6318b67a956ca738817141a8",
- "kws": {
- "fr": [
- "assurance auto",
- "assurance"
- ]
- }
- },
- {
- "nm": "vachette",
- "id": "10d00d16c183782216af1dae7328ff714a5a2665bdca28366b08174326e3786d",
- "kws": {
- "fr": [
- "vachette"
- ]
- }
- },
- {
- "nm": "chemise",
- "id": "414c31727191bd5e3cd93c3678db1254ea172c6735bf5226c0e9c25b3a3ea815",
- "kws": {
- "fr": [
- "chemise",
- "classeur vide"
- ]
- }
- },
- {
- "nm": "moustache",
- "id": "2b107b981f38c11f021d530f9e710f2dd160d09f1858cddd2aa80e86b8a03d16",
- "kws": {
- "fr": [
- "moustache"
- ]
- }
- },
- {
- "nm": "directeur",
- "id": "ce56040ad23a806b41000da5e25358aa1c7d7aeec82eefabdf6be747f657c499",
- "kws": {
- "fr": [
- "directeur"
- ]
- }
- },
- {
- "nm": "fruits d\u0027aragon",
- "id": "6f42b6b051b1a35e441a26e885f54e87a5b724d3a9bde1d2adecfc83a288fa12",
- "kws": {
- "fr": [
- "fruits d\u0027aragon"
- ]
- }
- },
- {
- "nm": "compréhension",
- "id": "786ad3bc3dc5c16a52fb9ddf019e65312d7e348ca9bd512cb9adf77f98ce2ac1",
- "kws": {
- "fr": [
- "compréhension"
- ]
- }
- },
- {
- "nm": "voyager",
- "id": "463c362b7f5de23331de888ba4b02ea47aee24d64698d63b4787f05766c442dc",
- "kws": {
- "fr": [
- "voyager",
- "voyageuse",
- "prendre le bus",
- "monter dans le bus"
- ]
- }
- },
- {
- "nm": "beige",
- "id": "8b5ae4c1af59d16de716bb8ee24161863a70d71768cc052daeb0d67c77960ef6",
- "kws": {
- "fr": [
- "beige"
- ]
- }
- },
- {
- "nm": "caméra",
- "id": "cdcbb3c1ec9815b43cd95842c98d4d88c2afb616a192034eacc896cdf88ccc35",
- "kws": {
- "fr": [
- "caméra",
- "appareil photo"
- ]
- }
- },
- {
- "nm": "turbot",
- "id": "6289d335c8d4cec4b249ddbaa630ba8687c6d5a9bf3c07a4de249d061706dee3",
- "kws": {
- "fr": [
- "turbot"
- ]
- }
- },
- {
- "nm": "tomber amoureux",
- "id": "7f3e21bf82bd3e521c9b71cc8267894028790a21449dd5a5c97ea41b085f4bd2",
- "kws": {
- "fr": [
- "tomber amoureux",
- "amoureux"
- ]
- }
- },
- {
- "nm": "troisième",
- "id": "a86247f3bdb71b2b1ed2ed959caf857f7c926055dd0ad3bc1dfcf6b1e01a7aef",
- "kws": {
- "fr": [
- "troisième"
- ]
- }
- },
- {
- "nm": "nettoyer sa brosse à dents",
- "id": "c159dc84e080c7df64b46403139e3b50ef51a28e4213ec0113114d1ab9a966c9",
- "kws": {
- "fr": [
- "nettoyer sa brosse à dents",
- "nettoyer"
- ]
- }
- },
- {
- "nm": "expression",
- "id": "97d216109940877989b1b4374fc28e6e5556394dfc8cf430009716a78bb17567",
- "kws": {
- "fr": [
- "expression",
- "vexé",
- "colère",
- "se facher",
- "se fâcher",
- "irriter",
- "irrité",
- "furieux",
- "fâché",
- "mettre en colère"
- ]
- }
- },
- {
- "nm": "cours de psychomotricité",
- "id": "ec52969557e6f4a94087f3994351816bf41d0993aa61cf4257cb174b079497f4",
- "kws": {
- "fr": [
- "cours de psychomotricité"
- ]
- }
- },
- {
- "nm": "prédire",
- "id": "cf161227f828d14dc7141f8a6d0e60b65b33a3785aca83a55eebc99fdb977285",
- "kws": {
- "fr": [
- "prédire",
- "deviner"
- ]
- }
- },
- {
- "nm": "prendre",
- "id": "c003766d5c8ad02587c0d50569f2dbc48b1e65c848021dbea3fea7cc39e7efef",
- "kws": {
- "fr": [
- "prendre",
- "recevoir",
- "accepter",
- "admettre"
- ]
- }
- },
- {
- "nm": "barbe",
- "id": "2fb141de35f113363027cdd021186600577488023802490f47a980ec6d3617ac",
- "kws": {
- "fr": [
- "barbe"
- ]
- }
- },
- {
- "nm": "injecter de l\u0027insuline",
- "id": "127b606ae5b1f9d44b498b375023809d88576402f69bb1c05595d4ec28661427",
- "kws": {
- "fr": [
- "injecter de l\u0027insuline"
- ]
- }
- },
- {
- "nm": "trapèze",
- "id": "c20978714646b38e12f9d317fb478343b708032c7a456c73b63d16b633a8a26f",
- "kws": {
- "fr": [
- "trapèze"
- ]
- }
- },
- {
- "nm": "fanion",
- "id": "a2624a1acb319c583fd4eb974b074b8fceaa08739361b366ce739b98bf3032ff",
- "kws": {
- "fr": [
- "fanion"
- ]
- }
- },
- {
- "nm": "à travers",
- "id": "2ceb78feca26bb43e868b7a9b917de504408eada64abfc24a9520235ff4d17b8",
- "kws": {
- "fr": [
- "à travers"
- ]
- }
- },
- {
- "nm": "pelle",
- "id": "e5d5e445269d69a229e0a2cd6e9428a35cc08d8040cf6bca42ca22a93e1f1688",
- "kws": {
- "fr": [
- "pelle"
- ]
- }
- },
- {
- "nm": "couronne",
- "id": "535d84188cf43767fd14e6933b1f58e6f0e80b638e6dfcba35e84207b481cd4d",
- "kws": {
- "fr": [
- "couronne"
- ]
- }
- },
- {
- "nm": "informaticien",
- "id": "04e9c45e04d995b1608dbd23e64f6696e62e01d8792a88cf9bd5f34a54111005",
- "kws": {
- "fr": [
- "informaticien"
- ]
- }
- },
- {
- "nm": "pause café",
- "id": "599f007c11c13997ae8839ea5134505b39584c648c417ab770776167d1bc4bdf",
- "kws": {
- "fr": [
- "pause café",
- "salle cafétéria"
- ]
- }
- },
- {
- "nm": "panama",
- "id": "cbe41d3d07a875fd3847278fcba4eac66f775dcd503a5f09a13e5ac948193f08",
- "kws": {
- "fr": [
- "panama"
- ]
- }
- },
- {
- "nm": "vernis à ongle",
- "id": "ec7710ab43467d9d59ae55efd3d7c3256d5cfced5ef33fe64d198a98a8b5a800",
- "kws": {
- "fr": [
- "vernis à ongle",
- "mettre du vernis à ongle"
- ]
- }
- },
- {
- "nm": "gomme",
- "id": "cbec07577675e0e453f4fac310e4cc63f84410d538b494f2e699f917a5e13ad4",
- "kws": {
- "fr": [
- "gomme"
- ]
- }
- },
- {
- "nm": "frapper avec la batte",
- "id": "1a5b97d810fb367daef15eb019118ffe2a1c8b884e5cfaf97abaf959b811d6b5",
- "kws": {
- "fr": [
- "frapper avec la batte"
- ]
- }
- },
- {
- "nm": "étude",
- "id": "811eaeb5f9b31b4781580113d2ffb440a82aa83999638e6d253d1d9fb848ecb1",
- "kws": {
- "fr": [
- "étude",
- "étudier"
- ]
- }
- },
- {
- "nm": "petit pot",
- "id": "91ca021e725d5a845ab87411114231d0be0d57cdff5f7d1da8da5c68e81bea26",
- "kws": {
- "fr": [
- "petit pot"
- ]
- }
- },
- {
- "nm": "bien que",
- "id": "8bfc7968eb83f38e8e036555ce3967028de120b4cb0d420aba9321b8fc43eb60",
- "kws": {
- "fr": [
- "bien que"
- ]
- }
- },
- {
- "nm": "vaccination",
- "id": "7d50e4e6dbc40da00176bba2786f56d07b1fab7b9f3fe9c6409c161d4a6a61a4",
- "kws": {
- "fr": [
- "vaccination",
- "vacciner",
- "vaccin"
- ]
- }
- },
- {
- "nm": "fermez la parenthèse",
- "id": "0274e006d171a9a9ac73fee86179b7481af077fb44deee1aa7cf4b48f43501cb",
- "kws": {
- "fr": [
- "fermez la parenthèse"
- ]
- }
- },
- {
- "nm": "chauffe-eau",
- "id": "f2c4073c9c48d01cf3d12fbb792527ebb1575da30fabd54baef57f96262b95d0",
- "kws": {
- "fr": [
- "chauffe-eau"
- ]
- }
- },
- {
- "nm": "crotales",
- "id": "223790a35339471192b276b0693ca3987bc9363d3f71b4cfd704eaf7e3f3a501",
- "kws": {
- "fr": [
- "crotales",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "agent de sécurité",
- "id": "c3006fd76ed886c552928c9ba39ab1e5cc920a278584447b1ee0722e92712106",
- "kws": {
- "fr": [
- "agent de sécurité",
- "garde"
- ]
- }
- },
- {
- "nm": "rendre un livre",
- "id": "6f6395f29f3364632939ce64a259d98efe1ca3769ad4f3f25efc9e28080ca65f",
- "kws": {
- "fr": [
- "rendre un livre",
- "rendre"
- ]
- }
- },
- {
- "nm": "taupe",
- "id": "d4df61b52c78220d223f0c9562e1bbebe8f88faf588672222c3cc362bcd8f1f5",
- "kws": {
- "fr": [
- "taupe"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "aeb561f85256296ba2db69d91b1f171ce1f192a186cc4eb82ca7340e3e031f8c",
- "kws": {
- "fr": [
- "praxie",
- "se facher",
- "se fâcher",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "homme",
- "id": "d09afc3253f6acef83eb0e189bddc1e8985004b99f4e7f81e861064c499e2739",
- "kws": {
- "fr": [
- "homme",
- "mâle",
- "masculin"
- ]
- }
- },
- {
- "nm": "fiancés",
- "id": "5cd729972d3ca7e49809158b091dcc051ba7586da4b1d9edd8750f7b8c5aacbf",
- "kws": {
- "fr": [
- "fiancés",
- "acte",
- "mariage"
- ]
- }
- },
- {
- "nm": "lapin",
- "id": "93fa5fbb3de083adaeb71f10f04e96593a6ca366098b853134ee666bf0063697",
- "kws": {
- "fr": [
- "lapin"
- ]
- }
- },
- {
- "nm": "feutres",
- "id": "6b075e256db5c8ab1823820ac7ff8cd27f3801f73f172c523b0c63a0d3dab9ae",
- "kws": {
- "fr": [
- "feutres"
- ]
- }
- },
- {
- "nm": "cours",
- "id": "72ed81c9435e8c1f7167e41846fdfcc7f6f2eaf559fd2863fd6c8ddec129af59",
- "kws": {
- "fr": [
- "cours",
- "professeur",
- "maîtresse"
- ]
- }
- },
- {
- "nm": "quincaillerie",
- "id": "053d8b58f6f2cc0dc333fb919b2f35d63b812c4ef76f9f14cba68c07f36b9dd6",
- "kws": {
- "fr": [
- "quincaillerie"
- ]
- }
- },
- {
- "nm": "plante",
- "id": "8be62bd4bd9ae1303082e4e65140b675e7e69e7d6712387fabe6bb1f5c9c8798",
- "kws": {
- "fr": [
- "plante",
- "origan"
- ]
- }
- },
- {
- "nm": "montagne",
- "id": "743391f994f0f49711bd3167ba91fe4ee0d25e8c62ee435a33b5b7d4d0f184ab",
- "kws": {
- "fr": [
- "montagne"
- ]
- }
- },
- {
- "nm": "interdire",
- "id": "7f4e854bae1a0807f2d69d52b2a80bff2dd3002b1cb7d7baf5362dc86850fb27",
- "kws": {
- "fr": [
- "interdire"
- ]
- }
- },
- {
- "nm": "entrer",
- "id": "eba3d3f182ecf75650f00e5b0d8d4516428a0e91aa6bc63c0d307f8f69618f3f",
- "kws": {
- "fr": [
- "entrer",
- "accéder"
- ]
- }
- },
- {
- "nm": "daurade",
- "id": "0d4b562f995edbfabe59a945ab79f32c815aaf4f8d63f3c82752e01cd541792d",
- "kws": {
- "fr": [
- "daurade"
- ]
- }
- },
- {
- "nm": "micro",
- "id": "042fe21036d8f478dae787d92fdb99221964a4be97ec8f27449980e5b05b87a3",
- "kws": {
- "fr": [
- "micro"
- ]
- }
- },
- {
- "nm": "solution buccale",
- "id": "38e0c73e8adebdb522b5ffbc7ad1a4f0ca7d2bf551d17447a13a01bf871eb826",
- "kws": {
- "fr": [
- "solution buccale"
- ]
- }
- },
- {
- "nm": "âpre",
- "id": "c80432dbadabe7bef22452553fc4710356154091a25afad792133dfdaf4815ba",
- "kws": {
- "fr": [
- "âpre"
- ]
- }
- },
- {
- "nm": "votre",
- "id": "bfcb75feb6f61ed778b093087f4638afd0f61e99335948e0c3d6bb70e5cf42f5",
- "kws": {
- "fr": [
- "votre",
- "vôtre"
- ]
- }
- },
- {
- "nm": "pingouin",
- "id": "a622aef3b7cdd77271f85392e55212414a67b2b4503e84c2a0091bd17064782c",
- "kws": {
- "fr": [
- "pingouin"
- ]
- }
- },
- {
- "nm": "algue",
- "id": "3fee928b188a8837206891fa8c04b7dac5a1b33f47d9b3ff8fdca5ecdb0bee35",
- "kws": {
- "fr": [
- "algue"
- ]
- }
- },
- {
- "nm": "passage piéton",
- "id": "cbd2d109be5d7205aff52facb4da189bf22907c3a0fcd2c5bdce8ad27bd65e04",
- "kws": {
- "fr": [
- "passage piéton"
- ]
- }
- },
- {
- "nm": "poissons",
- "id": "0af943b0352452871d71f24d6c6b2be553de48c546066080ed60b9430fd92748",
- "kws": {
- "fr": [
- "poissons",
- "poisson"
- ]
- }
- },
- {
- "nm": "vitamines",
- "id": "88d6dcb78b3ee12a62cfffbff3c4150aa8a1bf2862e182c7cb712fbaf969f2a7",
- "kws": {
- "fr": [
- "vitamines"
- ]
- }
- },
- {
- "nm": "assister",
- "id": "3df7b59ef7a126a737fcf4bd2236118fa09eb3bf28c8c6feffad279261ba9395",
- "kws": {
- "fr": [
- "assister"
- ]
- }
- },
- {
- "nm": "flèche",
- "id": "d5daff0a2dd51c3ef5e9eafb0ef70d2eafa8cfd3a2ec81ffd913599b4dadc13b",
- "kws": {
- "fr": [
- "flèche"
- ]
- }
- },
- {
- "nm": "pelle",
- "id": "bbd9c1516476533551c8968d289a1aacb988e8f205ab5ef3559c9a4ec78ab7d9",
- "kws": {
- "fr": [
- "pelle",
- "sceau et pelle",
- "sceau"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "c47d7d077a75e963c43e67781550c60fa5a92db9da2afbe6d2f5018bf2ae6907",
- "kws": {
- "fr": [
- "communauté autonome",
- "baléares"
- ]
- }
- },
- {
- "nm": "légume",
- "id": "397013bc106fe9550a77ad973191e1193cbe607916b7ec64ce37fb76406153b8",
- "kws": {
- "fr": [
- "légume",
- "haricot"
- ]
- }
- },
- {
- "nm": "pantalon",
- "id": "3f94e8a7cadea3940d193879c5475925243b88459d10dfa5ca64a0c0b56795a3",
- "kws": {
- "fr": [
- "pantalon",
- "bermudas"
- ]
- }
- },
- {
- "nm": "chaussures de montagne",
- "id": "25e9261eedf9736b6a4a37509fc79478ffeb7f939350a47a9a6103bb6a61c26f",
- "kws": {
- "fr": [
- "chaussures de montagne",
- "chaussures",
- "bottes"
- ]
- }
- },
- {
- "nm": "écoutille",
- "id": "0d7af55d9f5f9780f0cbdc72257eb51307d4c6ccf0ad496c13868b2fa733aa1e",
- "kws": {
- "fr": [
- "écoutille"
- ]
- }
- },
- {
- "nm": "cygne",
- "id": "d61a7447ce86a935b3011d1a9f49bd03cd40d87ee0f9b670ac8f20b4b0c72131",
- "kws": {
- "fr": [
- "cygne"
- ]
- }
- },
- {
- "nm": "paille",
- "id": "a4e53e5509a19e3c042f521e730b894f41dc4df0510d61a7eb0003c8cbea3194",
- "kws": {
- "fr": [
- "paille"
- ]
- }
- },
- {
- "nm": "vermicelles",
- "id": "41ff8167ae0307762bed9368cdccb3c56fd940b435c67d344ff040398118e409",
- "kws": {
- "fr": [
- "vermicelles"
- ]
- }
- },
- {
- "nm": "hansel et gretel",
- "id": "0789c6ba178aaf4dd31cc6b1e48c4f17b88bb400b3dfe40b27d0c64929dc724f",
- "kws": {
- "fr": [
- "hansel et gretel"
- ]
- }
- },
- {
- "nm": "vint-sept",
- "id": "dec0bbcd8e7f374233e19df0df66e740ec66c01daf9e986075b8d223c6eb53bc",
- "kws": {
- "fr": [
- "vint-sept",
- "27"
- ]
- }
- },
- {
- "nm": "athlétisme",
- "id": "cd94b27f63167d44c14786bf5c768bdbfb2f538c3dd8b2d3266c6e6e6367d0d6",
- "kws": {
- "fr": [
- "athlétisme"
- ]
- }
- },
- {
- "nm": "atterrir",
- "id": "a0efd9cc98bad6e14e16eff9a149a48b3a17e3cd79223b14180f537a09319791",
- "kws": {
- "fr": [
- "atterrir",
- "attérrissage"
- ]
- }
- },
- {
- "nm": "bureau",
- "id": "a7ea06acb5a17873c12697df2c39d01c32f7d587bdf484fe73526bf730053c2d",
- "kws": {
- "fr": [
- "bureau"
- ]
- }
- },
- {
- "nm": "bottes de ski",
- "id": "7b3d6bf8e8fdb61803f0919af02f8a99121e63abaf0bfea7556f62f60a858061",
- "kws": {
- "fr": [
- "bottes de ski"
- ]
- }
- },
- {
- "nm": "aboyer",
- "id": "f83dc6033f82f383b5957de47e85e5c21f59ff2429fa7f6b6535de57eff5e411",
- "kws": {
- "fr": [
- "aboyer"
- ]
- }
- },
- {
- "nm": "guitariste",
- "id": "59b35bfbd82967dd9d3adb0afa3d420643731531b6dc160f59037067531dd691",
- "kws": {
- "fr": [
- "guitariste"
- ]
- }
- },
- {
- "nm": "pétrir",
- "id": "260de955f460ebe830b9fde4044e4879b41065a9e2a8c2db9163c36a2dab467b",
- "kws": {
- "fr": [
- "pétrir"
- ]
- }
- },
- {
- "nm": "bonsaï",
- "id": "663b43b8419f0af648689dbc113609afa79d9271e3b91cc8f1df93e2bbd24a28",
- "kws": {
- "fr": [
- "bonsaï"
- ]
- }
- },
- {
- "nm": "oranger",
- "id": "32a794dacf054789cfd36424bea9f53c43c35fa64107d144db332d80cf7522d4",
- "kws": {
- "fr": [
- "oranger",
- "arbre fruitier"
- ]
- }
- },
- {
- "nm": "se fâcher",
- "id": "8af94b5641492d5213c6e4107a9b5ef3b2bebb7e07848583ae0e10e628fadb68",
- "kws": {
- "fr": [
- "se fâcher"
- ]
- }
- },
- {
- "nm": "charbon",
- "id": "5836fa6b313e0be689ca1e3fe869b9b31ffdfe5626433790bf9562e2645b8807",
- "kws": {
- "fr": [
- "charbon"
- ]
- }
- },
- {
- "nm": "élaguer",
- "id": "dfc2559c19e9980770b33dcb0970cbab5139fe7439c45c879cc967ccf3fde96b",
- "kws": {
- "fr": [
- "élaguer"
- ]
- }
- },
- {
- "nm": "caddie",
- "id": "23514960c02dba043000aac850476c8b51ff9b740dcfe974ebd5bf0892dfed50",
- "kws": {
- "fr": [
- "caddie",
- "charriot"
- ]
- }
- },
- {
- "nm": "serveur",
- "id": "b03f899dfc5c5c2ee283caa1b58ea40a732d54c89c318c7eb120628aada28902",
- "kws": {
- "fr": [
- "serveur"
- ]
- }
- },
- {
- "nm": "poste",
- "id": "2169086fa3be12c72cf1507f78cd1cfc25df5e8ea4363214b1a888b56140b831",
- "kws": {
- "fr": [
- "poste",
- "directeur d\u0027école",
- "directrice"
- ]
- }
- },
- {
- "nm": "ne pas toucher",
- "id": "2edbb7968eca5110a0c0a3ddfee3cc7cc4d6ed23f9df0ef890cd167bebd1397f",
- "kws": {
- "fr": [
- "ne pas toucher",
- "ne touches pas!"
- ]
- }
- },
- {
- "nm": "poignée",
- "id": "01562e5be6fa409a8716222d739e8b400aacd177e4054092c268417d55318ab8",
- "kws": {
- "fr": [
- "poignée",
- "manette"
- ]
- }
- },
- {
- "nm": "ombre",
- "id": "f1cc9d494f5603665ef806a5897a35ee6012387c1a375fe9ff0b7389072bd37d",
- "kws": {
- "fr": [
- "ombre"
- ]
- }
- },
- {
- "nm": "abaque",
- "id": "01fc8501dc63b8a96e4450bf3817b88cda418226ac1e6e95ae30e28578c44ed3",
- "kws": {
- "fr": [
- "abaque"
- ]
- }
- },
- {
- "nm": "vent",
- "id": "53b538a40a7d65cd63ab88a53d95e8f19a762da5a5225b7dc5d15e0885e6f4c8",
- "kws": {
- "fr": [
- "vent",
- "avec du vent",
- "air"
- ]
- }
- },
- {
- "nm": "lame de rasoir",
- "id": "c83df82ba8a310c868cb99bd0811f01abcc8cc27dc1fad0ce30cfe07b4d6e259",
- "kws": {
- "fr": [
- "lame de rasoir",
- "lame"
- ]
- }
- },
- {
- "nm": "chauffeur",
- "id": "c4527f65d9ce05caaa0f924b7d2475b1838c524a9d08d1c5b766975f2d07b1c4",
- "kws": {
- "fr": [
- "chauffeur",
- "conducteur"
- ]
- }
- },
- {
- "nm": "drap",
- "id": "df3d033b2e60b0d6476d4a3b67c6de7c467f2672509e7676c6d6989297125f2f",
- "kws": {
- "fr": [
- "drap"
- ]
- }
- },
- {
- "nm": "genou",
- "id": "048c9d0bbbb9fc8da1e2e91f5b4b1e5c7a10254a2fe8b41591c4edb7014dba72",
- "kws": {
- "fr": [
- "genou"
- ]
- }
- },
- {
- "nm": "monter les escaliers",
- "id": "1bfdd05022a85ef99b9a1e9bcbbfa9c385acdb3e0436de80beb656440f539fca",
- "kws": {
- "fr": [
- "monter les escaliers",
- "remonter"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "0e43d7bb4f9717b90c8f2ad8c549317cdffe4d404192408672f0e42c1f2ba41a",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains sur les pieds",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "e-learning",
- "id": "b3e3e23dc156dd6d409f3ec037abfa8fb398e51325edf225edeea580fbb607bf",
- "kws": {
- "fr": [
- "e-learning",
- "formation en ligne",
- "apprentissage électronique"
- ]
- }
- },
- {
- "nm": "saut de haies",
- "id": "982b0868d1db72c707888dadf43a82502d6fdf3baa33429ff6d20b1dcab259a7",
- "kws": {
- "fr": [
- "saut de haies"
- ]
- }
- },
- {
- "nm": "mexique",
- "id": "27fbe24716efbac0d95f3c3dca834eb8c284ff913ef80894cc57f0c5a992343c",
- "kws": {
- "fr": [
- "mexique"
- ]
- }
- },
- {
- "nm": "chypre",
- "id": "4cdfb5ed3942e40c202702fdbe440d1ca79f71d88c711b3f627352565e516011",
- "kws": {
- "fr": [
- "chypre"
- ]
- }
- },
- {
- "nm": "inde",
- "id": "b8e3b4b559f2a12a46523f9afe3c79ac5ae3eb66775625bebe6dfc16755bf85f",
- "kws": {
- "fr": [
- "inde"
- ]
- }
- },
- {
- "nm": "feux d\u0027artifice",
- "id": "da470ef2bf7c848a164021f9faecdb4606da1f61ea4a8c1077f5c73ea5d21030",
- "kws": {
- "fr": [
- "feux d\u0027artifice"
- ]
- }
- },
- {
- "nm": "bonne nuit",
- "id": "b2248d366c7cf2872acb882a1d32ceee2ea07e25b3ff2e34e9e2664d156249bd",
- "kws": {
- "fr": [
- "bonne nuit"
- ]
- }
- },
- {
- "nm": "taire",
- "id": "976486c95ac1da7cdac91531e0819b2f220d5b7dba17cd6a167c22b777d675ef",
- "kws": {
- "fr": [
- "taire",
- "faire taire",
- "silence"
- ]
- }
- },
- {
- "nm": "malte",
- "id": "dd1d3cc6f76d852c7b8bd5c6862ac5768239eb4c6f52ea1f08a356a13fe0dd5a",
- "kws": {
- "fr": [
- "malte"
- ]
- }
- },
- {
- "nm": "cheville",
- "id": "455d4f581e08b835017b90a9bbb7ab04c001a36d63b53b806c6decae55d15fce",
- "kws": {
- "fr": [
- "cheville"
- ]
- }
- },
- {
- "nm": "australie",
- "id": "a7ffef329a07427e70c1eb671abb64507f92c2442626106228cf839d69374abb",
- "kws": {
- "fr": [
- "australie"
- ]
- }
- },
- {
- "nm": "parachutiste",
- "id": "f15bcd7da0098d4fd50dc52f2c2199825d5ee759b09aa416926c62e069ee0baf",
- "kws": {
- "fr": [
- "parachutiste"
- ]
- }
- },
- {
- "nm": "envoyer",
- "id": "b1bf18e1af76b16a15aad598276381c512f4821f10ffabe4450bd540895fd655",
- "kws": {
- "fr": [
- "envoyer",
- "commander"
- ]
- }
- },
- {
- "nm": "coller",
- "id": "a81bb5a920ba2e2ad7b7c4d883cf22d15e24ef102588e460fd69d8cf23a7fc5f",
- "kws": {
- "fr": [
- "coller",
- "attaquer",
- "donner un coup",
- "maltraiter"
- ]
- }
- },
- {
- "nm": "aventure",
- "id": "370e246ae7754c11683a07fafcc7a5d5c269dff9b3c23f8693e52f577387e5f5",
- "kws": {
- "fr": [
- "aventure"
- ]
- }
- },
- {
- "nm": "sec",
- "id": "7fdcf5004ec8f3b45489f9d1f87a59f76fad4b6d4fadcff265245aad5ecd0ede",
- "kws": {
- "fr": [
- "sec"
- ]
- }
- },
- {
- "nm": "élève",
- "id": "8e53fb236e2668215c876a3c226a784801925cf78a160ad34f5a41b162b29ec7",
- "kws": {
- "fr": [
- "élève"
- ]
- }
- },
- {
- "nm": "conjonctivite",
- "id": "a493ffe09ed15ebef20ff1a1e9a314bf07b52c5ddacfef32d35b259b0822a7d6",
- "kws": {
- "fr": [
- "conjonctivite"
- ]
- }
- },
- {
- "nm": "trouver",
- "id": "388007c8acc602156d3b48316eccb1e0530876b3e506fbeac000ce5e94b1ef6d",
- "kws": {
- "fr": [
- "trouver",
- "apparaître"
- ]
- }
- },
- {
- "nm": "tong",
- "id": "3c7b2ac4e1c73b0b456941013bc9ff482622c84f62d2f8cc717b2633c8ed1e4a",
- "kws": {
- "fr": [
- "tong",
- "chaussures",
- "savate"
- ]
- }
- },
- {
- "nm": "barbeau",
- "id": "cc8009c140506fc6875c8e4b4ffc54b5ae4be1be50915ef02d8bcaf024cb4ed4",
- "kws": {
- "fr": [
- "barbeau"
- ]
- }
- },
- {
- "nm": "dignité",
- "id": "c7e4410f52fa51cf59a9c0090694d9770444ed8b36bf5ca9a841d0c751e32646",
- "kws": {
- "fr": [
- "dignité"
- ]
- }
- },
- {
- "nm": "tarte",
- "id": "744a7e26c470206475151a9047c0377486a67cb06abffb017c1e521788d9f008",
- "kws": {
- "fr": [
- "tarte"
- ]
- }
- },
- {
- "nm": "département de teruel",
- "id": "b538d35bc565989453d9fa6da379624198d723a369a9fd569e80ffff285c8b5d",
- "kws": {
- "fr": [
- "département de teruel",
- "teruel province"
- ]
- }
- },
- {
- "nm": "vestiaires",
- "id": "32e65b492f7addbf3fa21c5808f3f8adce508ef6ea81a9fb16a416c0ea071081",
- "kws": {
- "fr": [
- "vestiaires"
- ]
- }
- },
- {
- "nm": "clairs",
- "id": "0028dc22ea4213ac35fbd8edfb652a58ff66714f289db22e35e831b11c2612ab",
- "kws": {
- "fr": [
- "clairs"
- ]
- }
- },
- {
- "nm": "frein",
- "id": "428cabbb07616feafe50d63298b6bbb2098008f2cfba706941818fcd0ee95ad9",
- "kws": {
- "fr": [
- "frein"
- ]
- }
- },
- {
- "nm": "changement de vitesses",
- "id": "cd7ce105e8f306aed05e3f8f1deaade866704885e7127214679a3ef1ed3a38fb",
- "kws": {
- "fr": [
- "changement de vitesses",
- "levier de vitesse"
- ]
- }
- },
- {
- "nm": "rondelle d\u0027orange",
- "id": "3458a3fc10520be03cf7d1d55abeae6b599ed24d0ebed8e80ff2d7c1e7ea5a1d",
- "kws": {
- "fr": [
- "rondelle d\u0027orange",
- "rondelle"
- ]
- }
- },
- {
- "nm": "nettoyer les chaussures",
- "id": "632a0500570b558b2c207fa1e5996092075b5117fe1310ff000c1b736cc1fb6f",
- "kws": {
- "fr": [
- "nettoyer les chaussures"
- ]
- }
- },
- {
- "nm": "cinémas",
- "id": "60a0ac8a603859712c881ebd33571284a3906be5608f9a4d3d4d602187b17492",
- "kws": {
- "fr": [
- "cinémas",
- "sessions"
- ]
- }
- },
- {
- "nm": "miracle",
- "id": "9d5c00223a20011b3e0b5926932ba5691d93bb0039e8df2be2d4b9858e1b8c25",
- "kws": {
- "fr": [
- "miracle"
- ]
- }
- },
- {
- "nm": "tour",
- "id": "34ffb64d410ae25fa519580c67df86d2c0713ef5482b69a0f5daa31b5516b732",
- "kws": {
- "fr": [
- "tour"
- ]
- }
- },
- {
- "nm": "arroser",
- "id": "53a69dfb98b2626b1a947b05d9839405727a489170d0adeede7b4b13890bacfa",
- "kws": {
- "fr": [
- "arroser"
- ]
- }
- },
- {
- "nm": "nièce",
- "id": "edf0e4d1188382377800e8754ff3bf0cf3d24bdf68082d1787d0450ca3eeb3b4",
- "kws": {
- "fr": [
- "nièce"
- ]
- }
- },
- {
- "nm": "tambourin",
- "id": "17b1a880c08c9d054cf0e3e244b51aa728aae156e8dd9bf927783b3fa1a4010f",
- "kws": {
- "fr": [
- "tambourin"
- ]
- }
- },
- {
- "nm": "coran",
- "id": "1daa03b491c5895023e95b76aed9eb80844a7990c1e3a5a968bb499c1c41b406",
- "kws": {
- "fr": [
- "coran"
- ]
- }
- },
- {
- "nm": "consentement",
- "id": "309377491de8a1de3fd111740b738811ffedcc451f2bb8ec6a895cbbdf3f5fd5",
- "kws": {
- "fr": [
- "consentement"
- ]
- }
- },
- {
- "nm": "coopération",
- "id": "7b370d91403e29a4936b164c07ac03cd89bd4a3cf4927acc1351b61ef0b31aad",
- "kws": {
- "fr": [
- "coopération",
- "collaboration",
- "aide"
- ]
- }
- },
- {
- "nm": "scie à chaîne",
- "id": "0bea58a15d05a1b502a140f88b79faec1795f1b257de55f45832442599c1e6e4",
- "kws": {
- "fr": [
- "scie à chaîne"
- ]
- }
- },
- {
- "nm": "lime à ongles",
- "id": "8d7a058085b0fe3997422b7926197229de6e315f42eb70f1a4c790c0f99e5c68",
- "kws": {
- "fr": [
- "lime à ongles",
- "lime"
- ]
- }
- },
- {
- "nm": "assurance",
- "id": "cbbd4c7f9f9df7ded0073f2c3cf10287daf1788c915e24def02169967e5a19dc",
- "kws": {
- "fr": [
- "assurance"
- ]
- }
- },
- {
- "nm": "boîte de conserve de clovisses",
- "id": "59affc2cf296e891f64bcdaa132eae9db0f999b854151e91d4ae467d9ca1c493",
- "kws": {
- "fr": [
- "boîte de conserve de clovisses"
- ]
- }
- },
- {
- "nm": "mercerie",
- "id": "1c50db8a0201891d547a41f93d330f2e29d3f5c2407a1cf26eb35c966614c61a",
- "kws": {
- "fr": [
- "mercerie"
- ]
- }
- },
- {
- "nm": "peau",
- "id": "64de332e9a1db525cb514e32aec62ab14a3c2ec9163374fef8aa82760059f4b5",
- "kws": {
- "fr": [
- "peau"
- ]
- }
- },
- {
- "nm": "encourager",
- "id": "b4d47e7c1761abd19851f7b60d77067266231c1d91514a19cd36d41404f57c48",
- "kws": {
- "fr": [
- "encourager"
- ]
- }
- },
- {
- "nm": "hamburger",
- "id": "5e37a1c3c78e0cbe80536183ddb185ddca8f23ec266e1d7861b28285d3efa099",
- "kws": {
- "fr": [
- "hamburger"
- ]
- }
- },
- {
- "nm": "chapeau de sorcier",
- "id": "8f1a84a7c39743bd42ce0b7ccae8cadef6b7843eb31fc1b3a075b7da5bba642f",
- "kws": {
- "fr": [
- "chapeau de sorcier"
- ]
- }
- },
- {
- "nm": "feuilles sèches",
- "id": "6b75bbee4981a4a5756d30079fea3a7eec48afe9b5fbdcc03cc2f2490cd7cc07",
- "kws": {
- "fr": [
- "feuilles sèches"
- ]
- }
- },
- {
- "nm": "marchand de poulets",
- "id": "101e1beed86cdb13e595db1b7a5a37fd19715d2860420c7c7b00b558bcfdf389",
- "kws": {
- "fr": [
- "marchand de poulets"
- ]
- }
- },
- {
- "nm": "agent de sécurité",
- "id": "8e0c8613db14b6ea94c9ec835f7eb543918465d1c5d0e2fb206967e1b33e1abb",
- "kws": {
- "fr": [
- "agent de sécurité",
- "garde"
- ]
- }
- },
- {
- "nm": "nageoire",
- "id": "66f6bb5d7e335f07a9415072452dd111da4277acd4b3e6ac2a6febffc969920a",
- "kws": {
- "fr": [
- "nageoire"
- ]
- }
- },
- {
- "nm": "boucherie",
- "id": "b441224209e2615c06673b5316d17f076f04926ac1c7477bb0603360f08b4583",
- "kws": {
- "fr": [
- "boucherie"
- ]
- }
- },
- {
- "nm": "deuxième",
- "id": "03cad8c2ee32d73e6a4eb30b7e447822e36522dcba941b11933f0b8c42c10786",
- "kws": {
- "fr": [
- "deuxième"
- ]
- }
- },
- {
- "nm": "descendre",
- "id": "a67703cd3cc6e3c3e6e99d8f479e8c5891d5e6dff0c4f462ea6c7d72c9f0f63a",
- "kws": {
- "fr": [
- "descendre",
- "diminuer"
- ]
- }
- },
- {
- "nm": "bagages",
- "id": "4d93a01287f4f75bee1fbf01817ac6d0f783327303764e0f9d6ba41ab544bba6",
- "kws": {
- "fr": [
- "bagages"
- ]
- }
- },
- {
- "nm": "trépigner",
- "id": "785cb49256976622a0198eb893ddddac783da91c39393fbe122101efcd184b30",
- "kws": {
- "fr": [
- "trépigner"
- ]
- }
- },
- {
- "nm": "c\u0027est mon tour",
- "id": "77008ffbecf43f38acff288712dab78c05d158277f4888fa3fe866456a831dc2",
- "kws": {
- "fr": [
- "c\u0027est mon tour",
- "tour"
- ]
- }
- },
- {
- "nm": "bonne",
- "id": "66f12552860dacf8dcdb7fcc0861966e374e3440ba7f10d7e9a462327aeea215",
- "kws": {
- "fr": [
- "bonne"
- ]
- }
- },
- {
- "nm": "descendre",
- "id": "5b73e2b33d7c064fdf087c2f49d47f4040c8c61f1362bfd0d1f876775aa41ca7",
- "kws": {
- "fr": [
- "descendre",
- "diminuer"
- ]
- }
- },
- {
- "nm": "toutefois",
- "id": "ed3881249923ab8a79e893d78d3f9f5f1cf3fa9e4189ba1500064050adc820ec",
- "kws": {
- "fr": [
- "toutefois",
- "mais"
- ]
- }
- },
- {
- "nm": "télescope",
- "id": "81d845baa7d62acf08396ccd480593a6e00ccf018612e787bb2590e9fae43bd4",
- "kws": {
- "fr": [
- "télescope"
- ]
- }
- },
- {
- "nm": "parapente",
- "id": "07a0bfff88a4653d77597004ed368ac97c62420e1ab5ae491d8a64c46107e7b0",
- "kws": {
- "fr": [
- "parapente"
- ]
- }
- },
- {
- "nm": "trèfle",
- "id": "ff76e642dabb385b1ac603b3cf3f84d4960610618a1d4f4ac1a6dfe2d5b18f2f",
- "kws": {
- "fr": [
- "trèfle"
- ]
- }
- },
- {
- "nm": "visiter la tombe",
- "id": "b5aa22b9887516a96bcf9e7659a4d85617d2c52cbf2f686f1148228e63aea1cb",
- "kws": {
- "fr": [
- "visiter la tombe"
- ]
- }
- },
- {
- "nm": "festival",
- "id": "354875d452a0921093ec4db17ec2f587cb73968eef766df9aaac62389f1019f0",
- "kws": {
- "fr": [
- "festival"
- ]
- }
- },
- {
- "nm": "colle",
- "id": "a605fb2d0201650c8822598696c5a1751432fc2e5e55106b8c792a4314030113",
- "kws": {
- "fr": [
- "colle"
- ]
- }
- },
- {
- "nm": "le joueur de flûte d\u0027hamelin",
- "id": "68a5a9c939ff1bd3d9d015eef168d13000eae7909db8762e956f8dcd34cbd4c0",
- "kws": {
- "fr": [
- "le joueur de flûte d\u0027hamelin",
- "flûtiste"
- ]
- }
- },
- {
- "nm": "parfumer",
- "id": "193ecccb0bb87ada61a4677e870d2bc76eebb59da1a694a22ebf3dd2c41e3106",
- "kws": {
- "fr": [
- "parfumer",
- "se parfumer"
- ]
- }
- },
- {
- "nm": "ouvre-boîte",
- "id": "4a9b0c418db2a2f63e5e64cc63ca2f4b01a4967b24806dda3d14956befeabfe5",
- "kws": {
- "fr": [
- "ouvre-boîte"
- ]
- }
- },
- {
- "nm": "pyjama",
- "id": "285b5f36388178a4f3913b804bd8e73a80f9343b2791ecdde5bec778e04c80bb",
- "kws": {
- "fr": [
- "pyjama"
- ]
- }
- },
- {
- "nm": "saucisses",
- "id": "db812aef43ef9f828dca634e868658f2715626ca6738dca7752693dd8aaf5481",
- "kws": {
- "fr": [
- "saucisses"
- ]
- }
- },
- {
- "nm": "entourer",
- "id": "b45b10bd90190083d330c95c532bd3dc8ebadd0753b93df27fccf0065052783f",
- "kws": {
- "fr": [
- "entourer"
- ]
- }
- },
- {
- "nm": "mal de ventre",
- "id": "a99feae384091de101816bed933cc375b250ba498a931b4adb744e10c5164f6e",
- "kws": {
- "fr": [
- "mal de ventre"
- ]
- }
- },
- {
- "nm": "signalétique",
- "id": "4988abe7db644ea6ecb7ffed746117219cce37adf9e9ae5e17fe1774270b892d",
- "kws": {
- "fr": [
- "signalétique",
- "salle de rééducation",
- "salle"
- ]
- }
- },
- {
- "nm": "description",
- "id": "3bfd6a1ff744915c746fda504d4d04fedebe001757c1b35da294e6e787bc2551",
- "kws": {
- "fr": [
- "description"
- ]
- }
- },
- {
- "nm": "exprimer",
- "id": "6c914bd24a52d77f11432458d7fdb023070f801949e3d92b1e5959783297253a",
- "kws": {
- "fr": [
- "exprimer",
- "dire"
- ]
- }
- },
- {
- "nm": "tournevis",
- "id": "c079006fd025561ec8da13d8c775cf007a8a20ae64c5f1c7260ad32c86c3a8e5",
- "kws": {
- "fr": [
- "tournevis"
- ]
- }
- },
- {
- "nm": "sole",
- "id": "6d22fb405469f2ced325172e50ca5350ce17be88d3abfeb642a58bb4270039fa",
- "kws": {
- "fr": [
- "sole"
- ]
- }
- },
- {
- "nm": "skis",
- "id": "0a9b215281b38c87881abd9d105cd9feaf2d40ef8fcf3b2c71c8bf399957c06a",
- "kws": {
- "fr": [
- "skis",
- "ski"
- ]
- }
- },
- {
- "nm": "aile",
- "id": "7bfd3e1478a46e8c8bf806658b9794258d7e53b896291256f0bf39033fcb5709",
- "kws": {
- "fr": [
- "aile"
- ]
- }
- },
- {
- "nm": "accident aérien",
- "id": "64f7b9da4ef8d87589dc5aee9fb238f010194c4257db5c1ab300ade111a2ad1c",
- "kws": {
- "fr": [
- "accident aérien",
- "accident d\u0027aviation",
- "accident"
- ]
- }
- },
- {
- "nm": "langouste",
- "id": "479288cd52f2b2c40b829d97184d84e83e5b7acd2baa01eb1d06615745151c3d",
- "kws": {
- "fr": [
- "langouste"
- ]
- }
- },
- {
- "nm": "sirène",
- "id": "718af94b15195d4a6598fd9ec00ca3bf0cb7f8ea9723ea3c5b7dd81aec826048",
- "kws": {
- "fr": [
- "sirène",
- "feu",
- "alarme incendie",
- "alarme"
- ]
- }
- },
- {
- "nm": "proposer",
- "id": "d4aca2d28cf8bcc1266e88a9d281c0c5769da84c1d4d79f6eb979455d3a926e2",
- "kws": {
- "fr": [
- "proposer",
- "suggestion",
- "suggérer"
- ]
- }
- },
- {
- "nm": "bouche",
- "id": "cd4f316f55a86dd9dd45a10b757270628a89974528be43edf231b54e7b7babd5",
- "kws": {
- "fr": [
- "bouche"
- ]
- }
- },
- {
- "nm": "publiciter",
- "id": "3cbe4229a0ba195fe19db3c64999162fb878794b87a8d5384fe28bf53e9f1fe5",
- "kws": {
- "fr": [
- "publiciter",
- "publicité",
- "affiche",
- "annonce"
- ]
- }
- },
- {
- "nm": "seins",
- "id": "44a34f2c12f5bdace241bb499a7a8ef03b48510077ffeee05587e3c3eecdefe8",
- "kws": {
- "fr": [
- "seins",
- "mamelles"
- ]
- }
- },
- {
- "nm": "couloir",
- "id": "1b4d325d412be82800e16a7ad9d1ecfc6ee5d8e7710e3c15ae07293583e23e99",
- "kws": {
- "fr": [
- "couloir"
- ]
- }
- },
- {
- "nm": "instrument musical",
- "id": "c550ad232dcc32dceb93ac3449fb4fe4a30a2086339dd41842c809ac9d121282",
- "kws": {
- "fr": [
- "instrument musical",
- "maracas"
- ]
- }
- },
- {
- "nm": "poupée",
- "id": "d1548e078cfd831f7ae4502c06c22cd4942afe12db781cbdf52c02ddcf84ba32",
- "kws": {
- "fr": [
- "poupée"
- ]
- }
- },
- {
- "nm": "manette joystick",
- "id": "bf546ec8b2ab5ef6885497bc2c1d50b3f60a9f01106af022066b83c748e55d77",
- "kws": {
- "fr": [
- "manette joystick",
- "manette"
- ]
- }
- },
- {
- "nm": "paquet de riz",
- "id": "ea32cb9614833e1f6fc6c392292a3a12a4e0d20bcab77fafd747a4f7ae29ec2a",
- "kws": {
- "fr": [
- "paquet de riz",
- "riz"
- ]
- }
- },
- {
- "nm": "pilule",
- "id": "fe70787af904be9ab72f383a169af12cad929dc35fc763d54208c9fdf648d5a3",
- "kws": {
- "fr": [
- "pilule",
- "contraceptif"
- ]
- }
- },
- {
- "nm": "douche adaptée",
- "id": "216b2c4ecf9fab98fba5f5edf47f3f560d040b59ad2929dbb02d9042ce5f8e11",
- "kws": {
- "fr": [
- "douche adaptée",
- "douche"
- ]
- }
- },
- {
- "nm": "jambon",
- "id": "bb288f415bb7721f6a315075766664daef9fa9c968c6ce94725609dc8727946d",
- "kws": {
- "fr": [
- "jambon"
- ]
- }
- },
- {
- "nm": "mal de dos",
- "id": "4f814cf64698bae46e97b47452cc304612bce45b27dbd1925a368e528453d6fe",
- "kws": {
- "fr": [
- "mal de dos"
- ]
- }
- },
- {
- "nm": "chemise",
- "id": "a2434717fa693e78ebf4a681710551900fc69d44507eaf44fa04e6078e72bb94",
- "kws": {
- "fr": [
- "chemise",
- "vêtement"
- ]
- }
- },
- {
- "nm": "empiler",
- "id": "7e37ecf9ff59012a0c8683dde09a74ae65344eed524474df9f338c6ddb6461b4",
- "kws": {
- "fr": [
- "empiler",
- "entasser"
- ]
- }
- },
- {
- "nm": "passagère",
- "id": "0d8d6a47ad278c0b5c1987754bda7dffadf7f2f75e3c0b1fadbe3d37a76a983c",
- "kws": {
- "fr": [
- "passagère",
- "voyageuse"
- ]
- }
- },
- {
- "nm": "clocher",
- "id": "17e4b86d20bf24a6c55a65306e2b03d41507f2567c5f38b2b6c1962d79cbc0b4",
- "kws": {
- "fr": [
- "clocher"
- ]
- }
- },
- {
- "nm": "dormir",
- "id": "81235f6a033b8805b626eba8bae8a89af6e9d976528cd877056ce038c2a2f2a5",
- "kws": {
- "fr": [
- "dormir"
- ]
- }
- },
- {
- "nm": "brûlure",
- "id": "2273d0c76a15c978461c3c0a5f3ffd7a6f362ca21f26bb150d40dd99eb02db05",
- "kws": {
- "fr": [
- "brûlure"
- ]
- }
- },
- {
- "nm": "commerce",
- "id": "1388d41681b182947247fcfbfdc737e90b9a2bd1cc00f6a29c2598bd24c434c3",
- "kws": {
- "fr": [
- "commerce",
- "établissement",
- "étal",
- "magasin"
- ]
- }
- },
- {
- "nm": "pic-nic",
- "id": "7db46b670f726d99eeacd9a03c4752ebc73c213014368d9e6b8ba9222f47e606",
- "kws": {
- "fr": [
- "pic-nic"
- ]
- }
- },
- {
- "nm": "douleur",
- "id": "16bfe4c2a4d42306dd34b43298ae72cbaf1d6e06ba78f47c16039fa129280f34",
- "kws": {
- "fr": [
- "douleur",
- "faire mal",
- "souffrir",
- "bobo",
- "supporter",
- "forte douleur",
- "mal de tête"
- ]
- }
- },
- {
- "nm": "tablier",
- "id": "b45844b05e9c796f8a15263bc4b828eec2ad5c6dd6025cb21ee2adaddc474519",
- "kws": {
- "fr": [
- "tablier"
- ]
- }
- },
- {
- "nm": "riz à la tomate",
- "id": "0eea6da9266654d63d8e234d20c0dff423c665c9dc885c89884d23aa114f9f06",
- "kws": {
- "fr": [
- "riz à la tomate",
- "riz"
- ]
- }
- },
- {
- "nm": "rouleau compresseur",
- "id": "936fe2b5642b8fd075ae711df8137e052055b03914a4cd2e60f0f42f2b9ab013",
- "kws": {
- "fr": [
- "rouleau compresseur"
- ]
- }
- },
- {
- "nm": "cheval",
- "id": "6d424e845749e90f0861a4db48261cadcc944af9549bc4ef50aa161e020b45ed",
- "kws": {
- "fr": [
- "cheval"
- ]
- }
- },
- {
- "nm": "palais des congrès de saragosse",
- "id": "9e44c11f1e88228d0c3dd39d0ec7a7bde47b1d8c1a8111feba09458b6076fcc7",
- "kws": {
- "fr": [
- "palais des congrès de saragosse",
- "palais des congrès"
- ]
- }
- },
- {
- "nm": "tarte aux pommes",
- "id": "870e77fe00f6855a12188f192cca4ffb91cf758cca86007b831dec2fc96643fa",
- "kws": {
- "fr": [
- "tarte aux pommes",
- "tarte"
- ]
- }
- },
- {
- "nm": "jumelles",
- "id": "2700ac5e31fbf94103458e00799550ac1397e49225b43a1f9d6fc9038bc6a2b6",
- "kws": {
- "fr": [
- "jumelles"
- ]
- }
- },
- {
- "nm": "brouette",
- "id": "350ef9aa5bf8534caa927bfbb460c7c40829a44c2d9f4b946d94ac000c6ea559",
- "kws": {
- "fr": [
- "brouette"
- ]
- }
- },
- {
- "nm": "groupe de pression",
- "id": "9f61ee2f87b37f44d355817c4abcc0d4d431d42f5050902ffaaebaf1f69bc42b",
- "kws": {
- "fr": [
- "groupe de pression"
- ]
- }
- },
- {
- "nm": "châle",
- "id": "d15bc77695dc5e29b5a4081e85953a5e224149328d9d9b105f5f8d3f72578b2a",
- "kws": {
- "fr": [
- "châle"
- ]
- }
- },
- {
- "nm": "truc",
- "id": "985262b7868900e1432f019194065b72b7157980fdc030f3a715f2aa9bee3eeb",
- "kws": {
- "fr": [
- "truc",
- "faire de la magie",
- "prestidigitateur",
- "magicien",
- "magie"
- ]
- }
- },
- {
- "nm": "se couper",
- "id": "3ec33cf763a8d8fa478d4232ffdddaf88add4a0c992c3f0c493adb98d9f61807",
- "kws": {
- "fr": [
- "se couper",
- "blesses"
- ]
- }
- },
- {
- "nm": "minéral",
- "id": "7935cb60d91dd813bab0065af23d6b2b4b0667234762169ca9bc69e7a0eb6b5a",
- "kws": {
- "fr": [
- "minéral"
- ]
- }
- },
- {
- "nm": "coureur",
- "id": "cec49863b23ce57c3854957c4cae968e238f67c3d883e5edac32beb3d3f778d3",
- "kws": {
- "fr": [
- "coureur",
- "courir"
- ]
- }
- },
- {
- "nm": "famille",
- "id": "0a60c432add44771c6d8a9c61c5a9763b6501742897446803710a99517f61738",
- "kws": {
- "fr": [
- "famille"
- ]
- }
- },
- {
- "nm": "divorce",
- "id": "b3b4911896a8eeb1908ae4207b1bee87b984de7e65b9ba9e4c5f45ba9fae32d1",
- "kws": {
- "fr": [
- "divorce"
- ]
- }
- },
- {
- "nm": "extraterrestre",
- "id": "f8c09d044fed493990f3693f98d582a7346b3652faea4a411e927eaef53e7e6a",
- "kws": {
- "fr": [
- "extraterrestre",
- "martien"
- ]
- }
- },
- {
- "nm": "gloutonne",
- "id": "d4320db61944ff8b96dee554937a7db53683e16434902e4ffbfaf1315bb0418a",
- "kws": {
- "fr": [
- "gloutonne"
- ]
- }
- },
- {
- "nm": "cours",
- "id": "2bd51a47d540b7c603b31f6d85ca180ddffe338551aaa8ddfd8c99bdbcfe97ac",
- "kws": {
- "fr": [
- "cours",
- "professeur de musique",
- "professeur"
- ]
- }
- },
- {
- "nm": "faire",
- "id": "a9276baf0f5f9a7cb830f94f49b64d9e155ccab54fbd979c63edc12c73dc42c1",
- "kws": {
- "fr": [
- "faire"
- ]
- }
- },
- {
- "nm": "bijou",
- "id": "bbc39317d53d183da69b7f3164cc1bc3b3dbe239e90cfa15ad3742cc4f834514",
- "kws": {
- "fr": [
- "bijou",
- "boucles d\u0027oreilles",
- "anneaux"
- ]
- }
- },
- {
- "nm": "bouton",
- "id": "7b2ae4186d2052fd2344f69dc34b8de1972fcfa7bf5f1b284aca1a8b89343251",
- "kws": {
- "fr": [
- "bouton"
- ]
- }
- },
- {
- "nm": "goûter",
- "id": "869eb6cc11e9dc40f111c7a95692af3fa65e2ce16e422afa1b32f8ffd5f2e50c",
- "kws": {
- "fr": [
- "goûter"
- ]
- }
- },
- {
- "nm": "coup de feu",
- "id": "d121b54b4aa64f6486b67a0b1ccca17852c0c778e0c084db1cc7e6302faa5904",
- "kws": {
- "fr": [
- "coup de feu"
- ]
- }
- },
- {
- "nm": "avion en papier",
- "id": "bee6a75f4988501e125438d5ff428f6e7dc2ff1c3f1122b17f100c91fa2fc0b0",
- "kws": {
- "fr": [
- "avion en papier"
- ]
- }
- },
- {
- "nm": "clouer",
- "id": "b5abe1e34e5cbe18ac4dc88716673b9bbf4e68075bb186ecb3a959d7a34d86e5",
- "kws": {
- "fr": [
- "clouer"
- ]
- }
- },
- {
- "nm": "chiffon",
- "id": "7bb4086bbfd469ed5de9171768a2d5665908e6739a343a539fd7cbba9e0af4a1",
- "kws": {
- "fr": [
- "chiffon"
- ]
- }
- },
- {
- "nm": "casier",
- "id": "96b57e11c073b8116fc352f4d7d61125b2f15ec3a5ca3dd9029d51b7b9303bb0",
- "kws": {
- "fr": [
- "casier"
- ]
- }
- },
- {
- "nm": "sens",
- "id": "f75e0d2836c462053ddf8df3a6c285ba3b33ec9dcd47ed22f69c3876b95d9596",
- "kws": {
- "fr": [
- "sens",
- "sentir"
- ]
- }
- },
- {
- "nm": "joueur de rugby",
- "id": "c745572f0ec8043868760e37741a5df52e94f94148771dd606d7175e8a14f148",
- "kws": {
- "fr": [
- "joueur de rugby"
- ]
- }
- },
- {
- "nm": "signalétique",
- "id": "d04f42646d6aebaf5c82a13dac80063581e355c5fb2bc6a79bd485868dd689a4",
- "kws": {
- "fr": [
- "signalétique",
- "salle de plâtres",
- "salle"
- ]
- }
- },
- {
- "nm": "aquifère",
- "id": "0e8b5f2668a815219fcd6c498c3aed840884be3cfee44e34a021f3bf3cd83b58",
- "kws": {
- "fr": [
- "aquifère"
- ]
- }
- },
- {
- "nm": "cube",
- "id": "c8baab9ffcf2560f3b6df4fe09e55e9c31342db5c6efc1e3324d6362c443f622",
- "kws": {
- "fr": [
- "cube",
- "cube avec des images"
- ]
- }
- },
- {
- "nm": "ronde",
- "id": "ed72cfcb9b88d06f411d725e870eb0beb2e88fd54d33c4d22dbeb1055c80312d",
- "kws": {
- "fr": [
- "ronde"
- ]
- }
- },
- {
- "nm": "information",
- "id": "d11c8e8d6df8509b7a1f6d673c66ba68b2a9bb1cda901669a8350b9bf6f8753a",
- "kws": {
- "fr": [
- "information",
- "office de tourisme"
- ]
- }
- },
- {
- "nm": "cendrier",
- "id": "1d3f8153946b435847c6cda93bf467cb185dbe893c7bb149e1d4aa8f4791c5bb",
- "kws": {
- "fr": [
- "cendrier"
- ]
- }
- },
- {
- "nm": "dance-thérapie",
- "id": "3cf434c96888035d32ca36d9fe8e4c1f78363c786ae6e2bd18b4d9a18470a479",
- "kws": {
- "fr": [
- "dance-thérapie"
- ]
- }
- },
- {
- "nm": "carpette",
- "id": "648bd7e9454e86deac0f7b95067cb00763de45ad9641e0a511b58c456deb8200",
- "kws": {
- "fr": [
- "carpette"
- ]
- }
- },
- {
- "nm": "grossir",
- "id": "830a5de95c456b8d9c1cdcd210c2cd298e607aba6f9201669c0d5e62bd5e18b3",
- "kws": {
- "fr": [
- "grossir"
- ]
- }
- },
- {
- "nm": "melilla",
- "id": "d718e882a3d45c05624ca43026b200c360f5822718e51f5b01c35a8dc93022a9",
- "kws": {
- "fr": [
- "melilla"
- ]
- }
- },
- {
- "nm": "plonger",
- "id": "7c4141ef9be2abbbab8d05903b581cfb4ae7f43c71295e4da9a058d33e486129",
- "kws": {
- "fr": [
- "plonger",
- "se jeter"
- ]
- }
- },
- {
- "nm": "poésie",
- "id": "826d29bc7aa1434db07e82c71f92ee9f840497339fc279461b5ba28b235d72e0",
- "kws": {
- "fr": [
- "poésie"
- ]
- }
- },
- {
- "nm": "squelette",
- "id": "b48bfab4df8272c8a159dcc2a8833899d35da4f368560de4268c51f37ecb8ec1",
- "kws": {
- "fr": [
- "squelette"
- ]
- }
- },
- {
- "nm": "centimes",
- "id": "1f31ad61b18be3429aa3e6318b8b351d132878dcf444452247ab8d705498b87e",
- "kws": {
- "fr": [
- "centimes",
- "20 centimes",
- "argent"
- ]
- }
- },
- {
- "nm": "souris",
- "id": "72a11c5f0fabe022eeb61d380e9c2882c8d4a2b902cd03af7c9c5c2735987b96",
- "kws": {
- "fr": [
- "souris",
- "rongeur"
- ]
- }
- },
- {
- "nm": "entrée",
- "id": "f75d91ab2e2725279ad65eb3a56e36a28ecea5582414596e671c27d9b4f16a7a",
- "kws": {
- "fr": [
- "entrée"
- ]
- }
- },
- {
- "nm": "jeune",
- "id": "66042c2f2acc8acc6d2d71c783ee922abc1ae6f8de12544fd8a68ddf949637fc",
- "kws": {
- "fr": [
- "jeune",
- "adolescent"
- ]
- }
- },
- {
- "nm": "fauteuil roulant de course",
- "id": "a537f2e0c45a07d69a35caeef6e1f3fabee10593f1c048ff1e9ebe4565d928b9",
- "kws": {
- "fr": [
- "fauteuil roulant de course"
- ]
- }
- },
- {
- "nm": "évangile",
- "id": "39a97b97294d3274554da08da8e28e7124e0a6f4c2b94e02b6633665eb176883",
- "kws": {
- "fr": [
- "évangile"
- ]
- }
- },
- {
- "nm": "respecter",
- "id": "103297a08271885c6c5a3b8dcf470727cf2f9ec8d98e5ef59dc318cce31f929d",
- "kws": {
- "fr": [
- "respecter"
- ]
- }
- },
- {
- "nm": "volontaire",
- "id": "565c49bc6c65bc765c09152fc3225037d0271a7290a83ecb819dbf28029c76b8",
- "kws": {
- "fr": [
- "volontaire"
- ]
- }
- },
- {
- "nm": "fleurs",
- "id": "6616ca6648c1c0ce0b2beec0ac4bd22ab86e4d13bc025643dd92391cfa394fd1",
- "kws": {
- "fr": [
- "fleurs"
- ]
- }
- },
- {
- "nm": "bibliothèque adaptée",
- "id": "7ef30efeaed40f5c87e5d670d84d96ac873a7aa3c71f5d7c5b6cc2f0518d500b",
- "kws": {
- "fr": [
- "bibliothèque adaptée"
- ]
- }
- },
- {
- "nm": "représentant des élèves",
- "id": "295ba6976690f5bd7c0511c30ca7519d96d70243942b019de63c46501cff7dc3",
- "kws": {
- "fr": [
- "représentant des élèves",
- "représentant"
- ]
- }
- },
- {
- "nm": "palette",
- "id": "cf69469f85a653587e7ba4384a6d510f38b308ec49cb449eda96ca9fdc63c535",
- "kws": {
- "fr": [
- "palette"
- ]
- }
- },
- {
- "nm": "laisser passer",
- "id": "bc584248aa1f473d45bf00e36837ebbd18e90c60adce38b129e3a075615be9f9",
- "kws": {
- "fr": [
- "laisser passer"
- ]
- }
- },
- {
- "nm": "diriger",
- "id": "ef8a8cc92debaae09e6d45c63ce82e8ab90378500dffc2a90222968dee8b9f91",
- "kws": {
- "fr": [
- "diriger",
- "aller"
- ]
- }
- },
- {
- "nm": "diriger",
- "id": "9b1c57d17beedcc0f14cab80ea208eca92e92d92ff41100c72aae1ff5ceb12f4",
- "kws": {
- "fr": [
- "diriger",
- "acheminer",
- "guider",
- "guide"
- ]
- }
- },
- {
- "nm": "invalidité",
- "id": "b42dfa0357fff3408b0262f2e77019d05507b77a2652c2a1caec361a714dddca",
- "kws": {
- "fr": [
- "invalidité",
- "handicapé"
- ]
- }
- },
- {
- "nm": "assiette creuse",
- "id": "dcf6c762151b8ccad1e2c57c40e0bee78353109ec01a86a896e121207a45a940",
- "kws": {
- "fr": [
- "assiette creuse",
- "assiette"
- ]
- }
- },
- {
- "nm": "coupure",
- "id": "64d3efd129402eb426037d6385374cb97dc4453c9b7731e443502172f6bfba82",
- "kws": {
- "fr": [
- "coupure",
- "blessure"
- ]
- }
- },
- {
- "nm": "raser",
- "id": "9daa8a59ed42c31273d87cc5d7f977a000676aea291a0d1818d1d99875b60c54",
- "kws": {
- "fr": [
- "raser",
- "se raser"
- ]
- }
- },
- {
- "nm": "attique",
- "id": "9d1a14f1380e1cf6e6106fead15a5a514e4630430fa0761c389dc918f1a4f3dd",
- "kws": {
- "fr": [
- "attique"
- ]
- }
- },
- {
- "nm": "ballon panier adapté",
- "id": "ba5ab7ea4d539f63e27e097cc0318eac4f8d653d8ca0a7e4df132f720e52ca47",
- "kws": {
- "fr": [
- "ballon panier adapté",
- "basket"
- ]
- }
- },
- {
- "nm": "chaussettes",
- "id": "f7fe91741b23378800d5cbc412fac2fd7aae724576542ff2b829aa091d2624e6",
- "kws": {
- "fr": [
- "chaussettes"
- ]
- }
- },
- {
- "nm": "sac à dos",
- "id": "3f7ea149696d1f00332e836163c227057f7f2556e2f35ec0e140d5072412c23c",
- "kws": {
- "fr": [
- "sac à dos"
- ]
- }
- },
- {
- "nm": "éjaculation",
- "id": "0aa7445dcc10d244f55f1f22ea10c42e020d898d29fd5f1539ba3d8fd6776f2f",
- "kws": {
- "fr": [
- "éjaculation"
- ]
- }
- },
- {
- "nm": "éviter",
- "id": "67e2ac501e95fee05aa1da6492cff9a522bb13663d479ba301ea011c07c92bd4",
- "kws": {
- "fr": [
- "éviter",
- "loterie nationale",
- "loterie"
- ]
- }
- },
- {
- "nm": "aérer",
- "id": "d28750f4debfd5a1907bfa515e06449995d062a46cd6bd77dfb532d06ea05bb3",
- "kws": {
- "fr": [
- "aérer"
- ]
- }
- },
- {
- "nm": "pruneau",
- "id": "0e2d456fd6a786bb323300c94ed6fb1e527e3465560d0fcad84dc93b59da0aac",
- "kws": {
- "fr": [
- "pruneau"
- ]
- }
- },
- {
- "nm": "mofette",
- "id": "5753a5cf7cb0a6d15a8fb38b3ac626bc129b82eb67d9f68d5d081823c92fdf2e",
- "kws": {
- "fr": [
- "mofette"
- ]
- }
- },
- {
- "nm": "zéro",
- "id": "a0dd23fc390e95aaf540778925d89b97b7b8b2cd3856e4cb293d3ab79710dbde",
- "kws": {
- "fr": [
- "zéro",
- "0"
- ]
- }
- },
- {
- "nm": "au milieu",
- "id": "013406267df9b6475fd59a9d1d448c87936caf7c59ceeae986a04ed7f2db85f1",
- "kws": {
- "fr": [
- "au milieu"
- ]
- }
- },
- {
- "nm": "mortier",
- "id": "4887e09a6e5170e3b1271dc5d8f2f7592786a6f11744d8b3ca32c3e945807b21",
- "kws": {
- "fr": [
- "mortier"
- ]
- }
- },
- {
- "nm": "sentiment",
- "id": "807ceadf422f40ac0e790fa479d41a5484aa5980b117abb9e8f8e799d4bb8f4b",
- "kws": {
- "fr": [
- "sentiment"
- ]
- }
- },
- {
- "nm": "neveu",
- "id": "feccaa0774ebe9cf602da743d63926e94e34a4ad1982cc31d01d6068362feb8a",
- "kws": {
- "fr": [
- "neveu"
- ]
- }
- },
- {
- "nm": "dépendance",
- "id": "734dfd5df98cd25e2493b77ee7b5d9c40be97a775b1721c1b1d1927cd306e385",
- "kws": {
- "fr": [
- "dépendance"
- ]
- }
- },
- {
- "nm": "expulser",
- "id": "bf514f59960e0442107c23bdd5cc13279d08f228f6970a8f129915b826286d48",
- "kws": {
- "fr": [
- "expulser",
- "expulsion",
- "congédier"
- ]
- }
- },
- {
- "nm": "peintre",
- "id": "a19064a072ca7567e072a192530df3865f2803ef0be7acf61f7b25a5663839d3",
- "kws": {
- "fr": [
- "peintre"
- ]
- }
- },
- {
- "nm": "coffre à bagages",
- "id": "4bb85b8a29bac1931892403946422747a03410e78d3530a4319ed82cfab3bfb8",
- "kws": {
- "fr": [
- "coffre à bagages",
- "galerie"
- ]
- }
- },
- {
- "nm": "comité syndical",
- "id": "31e2f7117c8643e7b2c9eaf98dfe9baa045669b2efc1bcd1cf13801136f42cf8",
- "kws": {
- "fr": [
- "comité syndical",
- "comité"
- ]
- }
- },
- {
- "nm": "gériatrie",
- "id": "4cf5422d877b69cf95bc877e785864be9dfd9768e61e418bef83df65aa85917e",
- "kws": {
- "fr": [
- "gériatrie"
- ]
- }
- },
- {
- "nm": "escalier mécanique",
- "id": "62b8b449379700668410885b28d8c9d84f6af78e3a474bfd8001b81a6b283663",
- "kws": {
- "fr": [
- "escalier mécanique"
- ]
- }
- },
- {
- "nm": "sauterelle",
- "id": "e737c39e045fa60c831eaf89c4d28cab5cca06982c2bc4c23884b9de99e1d962",
- "kws": {
- "fr": [
- "sauterelle"
- ]
- }
- },
- {
- "nm": "artisanat",
- "id": "210397cb956136edc700bba159d3004b07c089cce14da8d92e7dde70b1ad2387",
- "kws": {
- "fr": [
- "artisanat"
- ]
- }
- },
- {
- "nm": "goutte d\u0027eau",
- "id": "2b9c6a2733d67916e48b472c3017df061574638cbf17d805d7d14b7ba18f5495",
- "kws": {
- "fr": [
- "goutte d\u0027eau",
- "goutte"
- ]
- }
- },
- {
- "nm": "voie",
- "id": "7d60a0f27cf2eb6a4ab986abefba3c10a5e6b66b0c71aafafc1e573fbb76f6da",
- "kws": {
- "fr": [
- "voie"
- ]
- }
- },
- {
- "nm": "célébration",
- "id": "d0b869c399ec9515a593aaa5c42d213fb1f5a63b9ea3a36a4420cb9ed80d42f4",
- "kws": {
- "fr": [
- "célébration",
- "amusant",
- "amuser",
- "fête"
- ]
- }
- },
- {
- "nm": "vache",
- "id": "0ba30eb0d141931b226f6d8d99078ba12061f0a2cb653c2554fcf007d5601b65",
- "kws": {
- "fr": [
- "vache"
- ]
- }
- },
- {
- "nm": "bourse",
- "id": "74ff7a7c623aa4208ebc5daa5a4fb9f2b76d58619eb42fbf5f70eba2a26a79b9",
- "kws": {
- "fr": [
- "bourse"
- ]
- }
- },
- {
- "nm": "se lever de la chaise",
- "id": "c79bbbd79a60cf70eb3b9084103e6b9f6cdd3904b1564e9a81e22203ce2dfc71",
- "kws": {
- "fr": [
- "se lever de la chaise",
- "se lever"
- ]
- }
- },
- {
- "nm": "fermer",
- "id": "1eb7528f37352858da8014e23d09ef8f4a99e17c26ba7caa8eb26f0dc200fb59",
- "kws": {
- "fr": [
- "fermer"
- ]
- }
- },
- {
- "nm": "saucisson de majorque",
- "id": "d60cc912532d8bd7b87a788378ded2c8254a2a0b6f6a21941d2137d4f243b5d2",
- "kws": {
- "fr": [
- "saucisson de majorque"
- ]
- }
- },
- {
- "nm": "entrevue",
- "id": "ac49e2b5eed784f5731404b5ec0f39c9a73328e738d4f850b91462418c00bf4d",
- "kws": {
- "fr": [
- "entrevue",
- "interviewer"
- ]
- }
- },
- {
- "nm": "mettre de l\u0027essence",
- "id": "b6bfbe35fc943435c9e5369b7c331ed324d911a7028bb2bf82203eea4bca2824",
- "kws": {
- "fr": [
- "mettre de l\u0027essence"
- ]
- }
- },
- {
- "nm": "jus d\u0027ananas",
- "id": "ddb99e111738b68ebdca9d25c761de53baba848f788519bd20877ffa2cf61b03",
- "kws": {
- "fr": [
- "jus d\u0027ananas"
- ]
- }
- },
- {
- "nm": "courriel",
- "id": "a21885065c8d685a41a476234995d712240fe7f72cc7b3d0f9e706a3e5296533",
- "kws": {
- "fr": [
- "courriel",
- "courrier"
- ]
- }
- },
- {
- "nm": "pêcher",
- "id": "e09bb7c88e837ae3c6b91c95a0c6eeb4813491a4884dee9534557ea293afb5c9",
- "kws": {
- "fr": [
- "pêcher",
- "pêcheur",
- "pêche"
- ]
- }
- },
- {
- "nm": "rincer les cheveux",
- "id": "5610377a83a535c0a4c68d356e5b0e02cb72ca53d4419eb684452288566eb372",
- "kws": {
- "fr": [
- "rincer les cheveux",
- "rincer"
- ]
- }
- },
- {
- "nm": "chiffonnier",
- "id": "7d301450481ecf90726efaf3671608cd83ea1da9b13be0777346267c03d2533f",
- "kws": {
- "fr": [
- "chiffonnier",
- "commode"
- ]
- }
- },
- {
- "nm": "désinfecter",
- "id": "82d77fc706a8cabebeac2cf46ee9ec9de7c9d702215ada1b2ba3fed970bb0126",
- "kws": {
- "fr": [
- "désinfecter"
- ]
- }
- },
- {
- "nm": "lavoirs",
- "id": "c4404f210a0f524be5e448d3fe698e94c5a4dc4a57937a536873e65a9ef3e58f",
- "kws": {
- "fr": [
- "lavoirs"
- ]
- }
- },
- {
- "nm": "ville",
- "id": "255396028f719c82fd3bb5b8a4a65f79c6f75b6887df6c126998906e83e07772",
- "kws": {
- "fr": [
- "ville",
- "population",
- "localité"
- ]
- }
- },
- {
- "nm": "éducation",
- "id": "58fd3b9811ae85a7c75aab7e5f19694f97e65fb2cf3acbc2ea00f81e1ccf49dd",
- "kws": {
- "fr": [
- "éducation",
- "formation"
- ]
- }
- },
- {
- "nm": "boulangère",
- "id": "eeb258da5cb57b8aa9bc609acf75387d576311270951fe5391d53e0ff7ab9cef",
- "kws": {
- "fr": [
- "boulangère"
- ]
- }
- },
- {
- "nm": "veste",
- "id": "2ab80bb9e8b647806d9770c66d621957dcdf3a4bed6f0978a414fcd4fca77b36",
- "kws": {
- "fr": [
- "veste",
- "veste en laine",
- "vêtement"
- ]
- }
- },
- {
- "nm": "guide",
- "id": "cf729df922746259fbb7ae35d222473b5080c1eb163cfd9b790f7cc39366245f",
- "kws": {
- "fr": [
- "guide"
- ]
- }
- },
- {
- "nm": "demander",
- "id": "487b172ef0cac853e9bedbbe23c3aac841f53d4d43af6d14e9d49bee8876f851",
- "kws": {
- "fr": [
- "demander"
- ]
- }
- },
- {
- "nm": "amande",
- "id": "539f93dc7ca839980c987d684aa6eea5f8b2a6e2d9479c00c08e404c138feb47",
- "kws": {
- "fr": [
- "amande"
- ]
- }
- },
- {
- "nm": "artiste",
- "id": "8e5b36173922bd46c60a61796422b5f479c62254048f101b6905b213934de9a1",
- "kws": {
- "fr": [
- "artiste"
- ]
- }
- },
- {
- "nm": "bière",
- "id": "65f5432ae2014fb8c4094bb83d5cf1bd9ce149006e5fac8e50e91c970fc7fd7b",
- "kws": {
- "fr": [
- "bière"
- ]
- }
- },
- {
- "nm": "tablette de chocolat",
- "id": "3e0d13b59622d0e6bcc5f9e0574d9572171897728fb4c684c06785cc7ca52d92",
- "kws": {
- "fr": [
- "tablette de chocolat",
- "tablette",
- "chocolat"
- ]
- }
- },
- {
- "nm": "fumer",
- "id": "173e7704187f91e8e003818fc91a7c6546aa9567cfb0eb067053df79afb4c551",
- "kws": {
- "fr": [
- "fumer"
- ]
- }
- },
- {
- "nm": "sardine",
- "id": "cb719fa83e363618c737246fa286d9c0db7dc8d7cc353c726d818349125a73bf",
- "kws": {
- "fr": [
- "sardine"
- ]
- }
- },
- {
- "nm": "facteur",
- "id": "9c20c0c420710721107140c99c76690cb5fc63a38adc1edad33a38791b87bf7f",
- "kws": {
- "fr": [
- "facteur"
- ]
- }
- },
- {
- "nm": "eau de cologne",
- "id": "590551f73b5da1f68913af2db4ba3e03f5cb1753315a5d05b3f9ddc9ad57b37c",
- "kws": {
- "fr": [
- "eau de cologne",
- "parfum"
- ]
- }
- },
- {
- "nm": "pâté",
- "id": "76916d4cd61c121c310f0de46fa636a2e1629a1be58bc8f7eba44e13323e56a8",
- "kws": {
- "fr": [
- "pâté"
- ]
- }
- },
- {
- "nm": "tels",
- "id": "6e401d65ce51c07edad30f6d64af92216e12ab9eeab6d51fe30939f5d18ca5a4",
- "kws": {
- "fr": [
- "tels",
- "égal",
- "égaux",
- "même"
- ]
- }
- },
- {
- "nm": "jour du pilier",
- "id": "249318904db8399c80d500531b3c6633dcde38fd831806283a16050ba9e1ab21",
- "kws": {
- "fr": [
- "jour du pilier",
- "festivités du pilier"
- ]
- }
- },
- {
- "nm": "branchies",
- "id": "4ba38300729307f3817260a6c84d4db7d479e741d27454a280fd85da3cb76177",
- "kws": {
- "fr": [
- "branchies"
- ]
- }
- },
- {
- "nm": "collier",
- "id": "ba615c0d343499c1b1c37f24c2df03d65ffec6958fa92fadcf18b436c27e3b94",
- "kws": {
- "fr": [
- "collier",
- "bijou"
- ]
- }
- },
- {
- "nm": "cactus",
- "id": "873e1e42d50a398a7068f3bb8931c0b9b272620b93ff8d4863b9339879298de7",
- "kws": {
- "fr": [
- "cactus"
- ]
- }
- },
- {
- "nm": "gps",
- "id": "3309b8239e09b4731e5e424033b442dd70a98ef90bdf9a4785832efc3cf203bb",
- "kws": {
- "fr": [
- "gps"
- ]
- }
- },
- {
- "nm": "pas du tout",
- "id": "e9fc75e3fd67b6f886c54f75691b520dfdb1e3dab076f058966f0ce40a0b37b2",
- "kws": {
- "fr": [
- "pas du tout",
- "rien"
- ]
- }
- },
- {
- "nm": "passer l\u0027aspirateur",
- "id": "244897cc189563321513d47a94ac53fef29c6aa8c20a70fa7e4e9c416be80129",
- "kws": {
- "fr": [
- "passer l\u0027aspirateur",
- "aspirer"
- ]
- }
- },
- {
- "nm": "tour de contrôle",
- "id": "51176b7c47ae7305a62080cd55ead996290a0452c3fd6b76cd72fc7a15216858",
- "kws": {
- "fr": [
- "tour de contrôle"
- ]
- }
- },
- {
- "nm": "fleuves d\u0027espagne",
- "id": "03fb4f9415c4c89e16bdd3cc7f71eec63c22469ce20033fb40cfab8b218f4f6b",
- "kws": {
- "fr": [
- "fleuves d\u0027espagne",
- "rivières"
- ]
- }
- },
- {
- "nm": "agrafer",
- "id": "3d3bdf372c160905b53ff7ce5dc67d864137a5b9f6cc0b7b4f3c2b039eb2f89c",
- "kws": {
- "fr": [
- "agrafer"
- ]
- }
- },
- {
- "nm": "table",
- "id": "5d5506335b6709addfd1bf880ef21397f2bff7d2807f9a06d43418bb8152600e",
- "kws": {
- "fr": [
- "table",
- "bureau de travail"
- ]
- }
- },
- {
- "nm": "connaître",
- "id": "8622884d72fd69da89c459317baf06f560eb84e4bd2a4c8ab708664fff9e2d07",
- "kws": {
- "fr": [
- "connaître"
- ]
- }
- },
- {
- "nm": "griffe",
- "id": "df6eb280caad95e2ddc162e2c5ee45c53e5801b2b0303ea095aa8fdada9d9e54",
- "kws": {
- "fr": [
- "griffe"
- ]
- }
- },
- {
- "nm": "sin traduccion",
- "id": "e22036d18414ad0106bea2854e74679f4b15e5e457d3edccb3be3d49d9c3ab0c",
- "kws": {
- "fr": [
- "sin traduccion"
- ]
- }
- },
- {
- "nm": "candélabre",
- "id": "c931f829b90b515ebff2081a082d39490c3de221641467c833fd69415163b73d",
- "kws": {
- "fr": [
- "candélabre"
- ]
- }
- },
- {
- "nm": "bureau",
- "id": "709ffa1f5060401d8dae34c96c64c373dad6e241cf4e28ca856edc96bc6c6266",
- "kws": {
- "fr": [
- "bureau",
- "secrétariat"
- ]
- }
- },
- {
- "nm": "argenté",
- "id": "3c1b40c8e35bfe1ef6332e249d104468e5a8d5e7b86e0f3a7a7800653c8bf50e",
- "kws": {
- "fr": [
- "argenté"
- ]
- }
- },
- {
- "nm": "sucer",
- "id": "4a4072d22ceff78d610121b75a3dd7cab2be07601283a1b159d9ccb01721e4c2",
- "kws": {
- "fr": [
- "sucer"
- ]
- }
- },
- {
- "nm": "confetti",
- "id": "1400a7ad437a0ab621b21da2eee6af9acf384af3daff583c112976317e381849",
- "kws": {
- "fr": [
- "confetti"
- ]
- }
- },
- {
- "nm": "peindre",
- "id": "6609e9d5973166b2a763147ecce10550641138bd67e4d3b21919dd6f9c3cde18",
- "kws": {
- "fr": [
- "peindre",
- "peintre"
- ]
- }
- },
- {
- "nm": "milk-shake",
- "id": "91e75fbc9aa1a132a28214bdddf1af8ae7e16cf094202c733832b0f758179171",
- "kws": {
- "fr": [
- "milk-shake",
- "boisson en boîte"
- ]
- }
- },
- {
- "nm": "vous",
- "id": "ef42a937eda03bbf4110950ac6c63341edbf18bcf4ed57c22fb52f74854daf7a",
- "kws": {
- "fr": [
- "vous"
- ]
- }
- },
- {
- "nm": "série",
- "id": "aeb1f4af398d608eb5dc5301be99307cd09e9b26a42c9af4d227c71a9577535a",
- "kws": {
- "fr": [
- "série"
- ]
- }
- },
- {
- "nm": "terrasse",
- "id": "825118012bea00fe8764a46091db573969add53fac9c60d90cc8df60141b5a29",
- "kws": {
- "fr": [
- "terrasse"
- ]
- }
- },
- {
- "nm": "haut-parleur",
- "id": "df49669f2e8e481f3227ec16ae2bd4b7ad849ce1b388b235bad752fd319eafca",
- "kws": {
- "fr": [
- "haut-parleur"
- ]
- }
- },
- {
- "nm": "expression",
- "id": "028593e0e881c60efe3d1773522ed9aae10b55238ee81953aed273c8565b76de",
- "kws": {
- "fr": [
- "expression",
- "faire honte",
- "honte",
- "honteuse"
- ]
- }
- },
- {
- "nm": "demande de divorce",
- "id": "7ca0b7d8806ee163b8a0c8cd70353e6219df19b6e001edb043eeb68cfa4f499f",
- "kws": {
- "fr": [
- "demande de divorce"
- ]
- }
- },
- {
- "nm": "vendeur",
- "id": "05404e19dbdef691315129d598184ee7aa0a7d3d471107194fabe66d028eb0e2",
- "kws": {
- "fr": [
- "vendeur",
- "fruitier"
- ]
- }
- },
- {
- "nm": "réfrigérateur combi",
- "id": "bd688f00562e512779a39bfabb60aec2daeb5874bbb1460849435cb387f0df10",
- "kws": {
- "fr": [
- "réfrigérateur combi",
- "réfrigérateur"
- ]
- }
- },
- {
- "nm": "doubler",
- "id": "df86e6c5d3a70d4ac05a2cc0ca835c731a68b5a4604870b870f69102d398507e",
- "kws": {
- "fr": [
- "doubler",
- "faire un double de"
- ]
- }
- },
- {
- "nm": "voler",
- "id": "e75958df3f305c9a7798261d70a25daa60d46899e66cdc590c55dca569832080",
- "kws": {
- "fr": [
- "voler",
- "deltaplane"
- ]
- }
- },
- {
- "nm": "cafard",
- "id": "648ab1093217d97d94f248672cfc67b9819531d2d45711910766a7c4712f667d",
- "kws": {
- "fr": [
- "cafard"
- ]
- }
- },
- {
- "nm": "se réveiller",
- "id": "271fb68840fee5acb9d249ace5f524a3b354e3df3fc934f105c2a18122194482",
- "kws": {
- "fr": [
- "se réveiller",
- "réveiller",
- "s\u0027étirer"
- ]
- }
- },
- {
- "nm": "travaux manuels",
- "id": "0a2a34686e41fbe721de55ab2ca84f81cc2265126115abc84fe751854c076ad7",
- "kws": {
- "fr": [
- "travaux manuels",
- "travaux manuels",
- "manipulés"
- ]
- }
- },
- {
- "nm": "nettoyer la vitre",
- "id": "bee95f6e9bfb3ea1075badb2e06e0a6341e726548781b8282c5e45dae7d66af5",
- "kws": {
- "fr": [
- "nettoyer la vitre",
- "nettoyer les vitres",
- "laver les vitres"
- ]
- }
- },
- {
- "nm": "lavabo adapté",
- "id": "4e0af00f5d06ea238c58550f84cd201db89b58b5e414c54b57387a9267997970",
- "kws": {
- "fr": [
- "lavabo adapté",
- "lavabo"
- ]
- }
- },
- {
- "nm": "bette",
- "id": "4d1f45fcb9078da62751103defde91d38b144b8dfaa733b688d0bc1f2e6f5b54",
- "kws": {
- "fr": [
- "bette"
- ]
- }
- },
- {
- "nm": "éternuer",
- "id": "c0282c80ae9512bdf1e17e413b203b9e282895c31c4e200d9eaaa93c831c9c4c",
- "kws": {
- "fr": [
- "éternuer"
- ]
- }
- },
- {
- "nm": "ouvrir la bouche",
- "id": "afc66e527430b5b8e377d6770418ee4ce54ddba4a9ccc3979c8f2cb0c638cf2f",
- "kws": {
- "fr": [
- "ouvrir la bouche",
- "ouvrir",
- "praxie",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "famille adoptive",
- "id": "26c3e48f09853c7e9ea60538eba1b00344a31108c833a9c228f8502ae916b93c",
- "kws": {
- "fr": [
- "famille adoptive",
- "famille"
- ]
- }
- },
- {
- "nm": "largeur",
- "id": "24ac52cdd6172b29db270d8abb17d647c1f96d04a4940b2a77666098caa90e3f",
- "kws": {
- "fr": [
- "largeur"
- ]
- }
- },
- {
- "nm": "lampe à huile",
- "id": "fdf4f06942534a2b8ee4452c1120f7b279ebd76f42e354fbd1c4404a51467806",
- "kws": {
- "fr": [
- "lampe à huile",
- "lampe"
- ]
- }
- },
- {
- "nm": "café moka",
- "id": "43daf198aabb4755007edbbfcedb164b8ea77e3aa17c36ee989f6e6d2cafa376",
- "kws": {
- "fr": [
- "café moka"
- ]
- }
- },
- {
- "nm": "spaghettis",
- "id": "48f293a8a2dd119b6ffc0dd5972b5dfb4b023eefeb37a245025bd685a22a2928",
- "kws": {
- "fr": [
- "spaghettis",
- "assiette de spaghettis"
- ]
- }
- },
- {
- "nm": "conte",
- "id": "594ecbea8e05885785f65daed3d3f989372a47329169f6bb8237b38621e90ceb",
- "kws": {
- "fr": [
- "conte"
- ]
- }
- },
- {
- "nm": "paire",
- "id": "298b6206a4df37b34d179d4a476f9db97de0d7b82240ab74ae8adee21fcf739b",
- "kws": {
- "fr": [
- "paire",
- "dix",
- "numéro",
- "10"
- ]
- }
- },
- {
- "nm": "approuver",
- "id": "f13354b97b48b8ff5c36fc62286dcc26551d9da6db9b607071c829cb328824d4",
- "kws": {
- "fr": [
- "approuver"
- ]
- }
- },
- {
- "nm": "oxygène",
- "id": "1fc317d212a065cbc2324c38d2df45e70c8694acee46034873ff2344948ce5e6",
- "kws": {
- "fr": [
- "oxygène",
- "bonbonne d\u0027oxygène",
- "bonbonne"
- ]
- }
- },
- {
- "nm": "éclabousser",
- "id": "38e9c7ddc539c970f461460a635791150193c2df217409d0696184ba71bf0d39",
- "kws": {
- "fr": [
- "éclabousser"
- ]
- }
- },
- {
- "nm": "fideuá",
- "id": "027bceedfe149a4175d3c35e5aa8c9a3e251453df395b2816a01f33429bbeec8",
- "kws": {
- "fr": [
- "fideuá"
- ]
- }
- },
- {
- "nm": "central",
- "id": "3dacdc251efa0a2af1fc7feba1357205d010c3587bc3d856916b96e6268ffae3",
- "kws": {
- "fr": [
- "central"
- ]
- }
- },
- {
- "nm": "dire au revoir",
- "id": "b5b6c66153490779feacd9a7cdcb28a8ad0338b44b4964853ddb51cc17ea3b7e",
- "kws": {
- "fr": [
- "dire au revoir"
- ]
- }
- },
- {
- "nm": "professeur",
- "id": "4c0313bd345e4ca0a3731f156c4c87d0cdcbe3f6c97874867791910fb87c8d73",
- "kws": {
- "fr": [
- "professeur",
- "maîtresse"
- ]
- }
- },
- {
- "nm": "première communion",
- "id": "e9a4b69e6d6a72d58c3748fd3a2217f108760d73c22b31e66b6bf35d6bf09fc7",
- "kws": {
- "fr": [
- "première communion",
- "communier",
- "communion"
- ]
- }
- },
- {
- "nm": "tomber",
- "id": "b1b49a0ed6ad17de02864c00157e15cea487949bf947655ec01329d1046fc663",
- "kws": {
- "fr": [
- "tomber"
- ]
- }
- },
- {
- "nm": "front",
- "id": "eb898bc6c60328ccf8efb0853ba323b73b40acb01d3f144823aecdf5f2e331c8",
- "kws": {
- "fr": [
- "front"
- ]
- }
- },
- {
- "nm": "êtres vivants",
- "id": "8fd2cd52beb403c3c588ce2066745d65b9c8cdec95678837a4cfcca6321ba14f",
- "kws": {
- "fr": [
- "êtres vivants"
- ]
- }
- },
- {
- "nm": "fenêtre",
- "id": "9eb7c494d4821a4952f765d078a3628134feb1dd7a8602397fd4ec4282bf9975",
- "kws": {
- "fr": [
- "fenêtre"
- ]
- }
- },
- {
- "nm": "pompier",
- "id": "54791c058e0b65e89a9246fcc1ee74e982b83b76f91886909261dfc87437a56b",
- "kws": {
- "fr": [
- "pompier"
- ]
- }
- },
- {
- "nm": "petite fille",
- "id": "dc3420ee0e68486bea67e8e781a2de76c2a650bf14254fa908cfbec1d7c42cfb",
- "kws": {
- "fr": [
- "petite fille",
- "fille"
- ]
- }
- },
- {
- "nm": "gimblette",
- "id": "59e03f00ee012dc4de58632b29078391cf565346721fb31856499b7451d75fee",
- "kws": {
- "fr": [
- "gimblette"
- ]
- }
- },
- {
- "nm": "guipuzcoa",
- "id": "d4385b1e7ac3f60889f376b45fa70b72b63a65c5fd53d09d00bbe1a524549ad1",
- "kws": {
- "fr": [
- "guipuzcoa"
- ]
- }
- },
- {
- "nm": "sirène",
- "id": "6e8042165c0717152783e25c61b6a71aa4e24b0ca8f59f87b375ddd68fdbe92e",
- "kws": {
- "fr": [
- "sirène"
- ]
- }
- },
- {
- "nm": "égoutter",
- "id": "8c783dc5eb3940629544c097db49188c25fa3de8ac655744ece2cd0bdf70111e",
- "kws": {
- "fr": [
- "égoutter"
- ]
- }
- },
- {
- "nm": "scie",
- "id": "b7a6ef33ebc313e99c7586e1630d16f3553e70ed9169330fae436eff0111c816",
- "kws": {
- "fr": [
- "scie"
- ]
- }
- },
- {
- "nm": "skier",
- "id": "b93f7246c42e47ff392dc9082cdfa1d40962af63d0c7f4724505b8879c3f2c4e",
- "kws": {
- "fr": [
- "skier",
- "skieur",
- "ski"
- ]
- }
- },
- {
- "nm": "réserve",
- "id": "79d6d272d35e2efaf68b5529528be79179d762c914e8343ffe6fb19c51026112",
- "kws": {
- "fr": [
- "réserve"
- ]
- }
- },
- {
- "nm": "se mettre",
- "id": "f5426d3a2dda41050ffd59aa12d400dc1032d7ab655880efa838f9d2ad194b81",
- "kws": {
- "fr": [
- "se mettre",
- "s\u0027habiller"
- ]
- }
- },
- {
- "nm": "charger",
- "id": "718d1d39e980e1dc6cefaa01ce0b8a7eed0c09631600def199bdd17f6a7c1787",
- "kws": {
- "fr": [
- "charger",
- "chargé"
- ]
- }
- },
- {
- "nm": "vieux",
- "id": "3d2a23e6b780d774818727060305bb27664d0d891bfe2e4b553c93c0ff0bbfac",
- "kws": {
- "fr": [
- "vieux"
- ]
- }
- },
- {
- "nm": "essaim",
- "id": "026228aecc8e46577f5ff80fdd8b19c158c2f8519595152f03225963377f62b2",
- "kws": {
- "fr": [
- "essaim"
- ]
- }
- },
- {
- "nm": "stimulation",
- "id": "1fddda0c28a5447edfa59a49b10b750a153e42b3970510dfb73ac89c70cba4bf",
- "kws": {
- "fr": [
- "stimulation",
- "salle de stimulation",
- "salle multi-sensorielle"
- ]
- }
- },
- {
- "nm": "poulet rôti",
- "id": "40e57111f887870242f5a957ac44e605a16daa813929ab1e6b4bd3814b188711",
- "kws": {
- "fr": [
- "poulet rôti",
- "poulet"
- ]
- }
- },
- {
- "nm": "bracelet",
- "id": "9f4aeca95c318f333561af9a244b87e1dc508e6cfb13c1cf6e4cee6fcc14f28d",
- "kws": {
- "fr": [
- "bracelet"
- ]
- }
- },
- {
- "nm": "toilettes",
- "id": "4d8b9e7f05ffc44e2c7ac3eff970f94f2fa9a60375c14b0adee65a06f6a06cb2",
- "kws": {
- "fr": [
- "toilettes",
- "water",
- "wc",
- "cuve"
- ]
- }
- },
- {
- "nm": "vaccin",
- "id": "f644d0ca030d5758c95f339b58f3c8d085bcaa8af0a9992f24e90768c31f24b1",
- "kws": {
- "fr": [
- "vaccin",
- "vaccination",
- "vacciner"
- ]
- }
- },
- {
- "nm": "couette",
- "id": "f4e0953a52435c377fbe64d7a53719b24aec6b38297eef17f0bae7722eb66ff1",
- "kws": {
- "fr": [
- "couette"
- ]
- }
- },
- {
- "nm": "coquelicot",
- "id": "a6cb5d202be2639df71d3990ae8996a15b71990488fe18fa83afa5a26e715ae3",
- "kws": {
- "fr": [
- "coquelicot",
- "fleur"
- ]
- }
- },
- {
- "nm": "coopérer",
- "id": "2a15d7488d9adf1f6d5346534797d82b73fd3971beb20f6dfa518ba21c00d25f",
- "kws": {
- "fr": [
- "coopérer",
- "soutenir",
- "aider"
- ]
- }
- },
- {
- "nm": "tu as réussi !",
- "id": "315291235471b2bedec0c5b302c819d8e420dbfd8a1eab5cd87ffd182b0f5563",
- "kws": {
- "fr": [
- "tu as réussi !",
- "accepter",
- "assumer"
- ]
- }
- },
- {
- "nm": "embrasser",
- "id": "fed1516a88c3e4d811aefa07011f7bf4f6fcea6895e0017f9fde33e99acb811a",
- "kws": {
- "fr": [
- "embrasser",
- "praxie",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "dalí",
- "id": "650629e0ca00bf0a80656cf48a619a5df12bf128345e3c0ec0298c69254cbf7b",
- "kws": {
- "fr": [
- "dalí",
- "salvador dalí"
- ]
- }
- },
- {
- "nm": "malade mental",
- "id": "1468516e6bd7ae5f79e114d10a9b2c4cbadf9af8cdaee8ef3d015e07abddb279",
- "kws": {
- "fr": [
- "malade mental"
- ]
- }
- },
- {
- "nm": "planifier",
- "id": "f560a2bfa047208b5f423d597bf302562056df30013b4a4e80fc2b4c06e1df9c",
- "kws": {
- "fr": [
- "planifier"
- ]
- }
- },
- {
- "nm": "faire des claquements",
- "id": "a7a1046a47973794bcca309ff6c79feb67de49a4f2ea1fcdb2baed4d326e41e5",
- "kws": {
- "fr": [
- "faire des claquements",
- "praxie",
- "claquer la langue",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "banane",
- "id": "dfa1a5f48c33b61cf995ec1e5e7ac043d2c084a4c9484d71ca7b147f5f15bce8",
- "kws": {
- "fr": [
- "banane"
- ]
- }
- },
- {
- "nm": "pélican",
- "id": "4b326dcb8fd67b9f6c4ed64b7639054890143f2ad8bb654768eb1e0c8c77470e",
- "kws": {
- "fr": [
- "pélican"
- ]
- }
- },
- {
- "nm": "pelle à poussière",
- "id": "fdc5563ad85e19d6bdd5a835f057ec595ff7ebcfe7ae4a62325f2d809e5c6ef9",
- "kws": {
- "fr": [
- "pelle à poussière"
- ]
- }
- },
- {
- "nm": "téléphone",
- "id": "78837b2ac0d64d431f8adaf69e16bdc52cbe96d05b11acaeb9cec04616964b11",
- "kws": {
- "fr": [
- "téléphone"
- ]
- }
- },
- {
- "nm": "scotch",
- "id": "b6627b43d96d53bc7352fe078f0348e416953aaa7d3ab75ecb9c5b53c7a5d173",
- "kws": {
- "fr": [
- "scotch"
- ]
- }
- },
- {
- "nm": "jordanie",
- "id": "e65c6d5f2d3f59ee6f2d9a9b76fa3fd7d981fcd5bb63d527bde5d52ff543e530",
- "kws": {
- "fr": [
- "jordanie"
- ]
- }
- },
- {
- "nm": "gâteau farci",
- "id": "5a41213d66856410b5fd6a604fe75425573029ba90aa2a21dce3bf6dd7b8ca48",
- "kws": {
- "fr": [
- "gâteau farci"
- ]
- }
- },
- {
- "nm": "quel",
- "id": "c6c7129535ab1dbc6d85a8bcacda2aae3af571dfc5623ea2effacceb1c778ac3",
- "kws": {
- "fr": [
- "quel",
- "quoi"
- ]
- }
- },
- {
- "nm": "code barre",
- "id": "2df55974e8e0dd8239130ba7676d9c676bf68ee9090977a82ed136465eb0b556",
- "kws": {
- "fr": [
- "code barre",
- "code"
- ]
- }
- },
- {
- "nm": "display",
- "id": "67a8a5237954dd29422b6914f206fce971592f40084eed755bd4112ecfb9698a",
- "kws": {
- "fr": [
- "display"
- ]
- }
- },
- {
- "nm": "quatre",
- "id": "a3a96aa22a21ef39e28c1c85476357dcbd8dd9b41654a19c6ed7d9caf39d36e6",
- "kws": {
- "fr": [
- "quatre",
- "4 dé",
- "4"
- ]
- }
- },
- {
- "nm": "bosse",
- "id": "262eb0b7846516fa22cab2168c1d248e9708e7be75d55dc9859cf5e5d30a24b2",
- "kws": {
- "fr": [
- "bosse"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "d51423c653e00e91c49ea5aa5f5a719fcd4857d411d0b1208ca64f863898d1fb",
- "kws": {
- "fr": [
- "praxie",
- "bouger la mâchoire",
- "orthophonie",
- "remuer"
- ]
- }
- },
- {
- "nm": "vendeur",
- "id": "ffe4bc1f7349bc97871e56b96b10e304a0d58cdb796ebd2721f1d0be2be8f031",
- "kws": {
- "fr": [
- "vendeur",
- "épicier",
- "s\u0027occuper",
- "marchand de friandises"
- ]
- }
- },
- {
- "nm": "sortie",
- "id": "5c287c9b9570bc441eed56beea4bbf114484b45a7f8b8d73d3324624f2ce7b5f",
- "kws": {
- "fr": [
- "sortie"
- ]
- }
- },
- {
- "nm": "écrou",
- "id": "dd94cd2a1fc393cc97d14ab887abfaf2e642b31b218de1c78f107d85730b1915",
- "kws": {
- "fr": [
- "écrou"
- ]
- }
- },
- {
- "nm": "fleuriste",
- "id": "1a19360e369feb28256e40d7d1e6de4c055bc95a2f83a1c2b834e5a661e8809d",
- "kws": {
- "fr": [
- "fleuriste"
- ]
- }
- },
- {
- "nm": "se réunir",
- "id": "15b6799982f84d742337c335fcf7050a3858aaaabe27a097a81573fe5b7c17a5",
- "kws": {
- "fr": [
- "se réunir",
- "réunion"
- ]
- }
- },
- {
- "nm": "barrette",
- "id": "569c4effe3a034de9e848d65085c0be94d65440499bbef6e409c9f4c00a446be",
- "kws": {
- "fr": [
- "barrette"
- ]
- }
- },
- {
- "nm": "série",
- "id": "329cb70664ae90f1ef74c79ec8dfe69cf52a09e4dd31cfc5a33f6266ab6e4fec",
- "kws": {
- "fr": [
- "série"
- ]
- }
- },
- {
- "nm": "veuve",
- "id": "30cf3f16e9a873f3cfd984d81f500fb168ee97912312373425718a80616cc775",
- "kws": {
- "fr": [
- "veuve"
- ]
- }
- },
- {
- "nm": "placer",
- "id": "910283721d3c89e946cd370ad1c398dad29cb8db8580606089d88ace37cbc12d",
- "kws": {
- "fr": [
- "placer",
- "lâcher"
- ]
- }
- },
- {
- "nm": "en sueur",
- "id": "dd4ebf3bc882ce5849037a5faddead1e22fa97992699281715598f129969291f",
- "kws": {
- "fr": [
- "en sueur",
- "suer"
- ]
- }
- },
- {
- "nm": "verrerie",
- "id": "5f6fcc2367f98a1657e5a514476045a1d9c56d614db3be532c1d32d96c6243f0",
- "kws": {
- "fr": [
- "verrerie"
- ]
- }
- },
- {
- "nm": "aquarelles",
- "id": "d339dc1c87fab3e1012595322b9d8f523d1311df5122b6d5e84565069951aea8",
- "kws": {
- "fr": [
- "aquarelles"
- ]
- }
- },
- {
- "nm": "métreur",
- "id": "f611dc085fc583d4c405087e15675a787dc1d25ee56c095b803d028ba6ba25c3",
- "kws": {
- "fr": [
- "métreur",
- "architecte"
- ]
- }
- },
- {
- "nm": "grille-pain",
- "id": "45681ef485a9ac7ebcdd320c1bce27e1b0064cf38a7b4612a6b7118ed5666779",
- "kws": {
- "fr": [
- "grille-pain"
- ]
- }
- },
- {
- "nm": "attente",
- "id": "6e0694f5f1c933fa9955971e3a2cc4f5837c512ab0f353e4c063865485510da0",
- "kws": {
- "fr": [
- "attente"
- ]
- }
- },
- {
- "nm": "tant",
- "id": "f21b953ad9c40da12ce038e996a5bb4634c1ae3b73338cbb26552dd69f9aac2b",
- "kws": {
- "fr": [
- "tant",
- "fiches"
- ]
- }
- },
- {
- "nm": "expliquer",
- "id": "d984bbb7884d28f6ec11c52b2934df13204455695315adfa73e18d710997d044",
- "kws": {
- "fr": [
- "expliquer"
- ]
- }
- },
- {
- "nm": "plan",
- "id": "aedbac7c1eb556ef265faf12f770cde643491d338ed705c2bc7b83dbcd69109e",
- "kws": {
- "fr": [
- "plan"
- ]
- }
- },
- {
- "nm": "expulser",
- "id": "b26015bc7fd8d466373ad5887257447c9ef4ae5ef778d89485ff89f070a5d9e3",
- "kws": {
- "fr": [
- "expulser"
- ]
- }
- },
- {
- "nm": "jaune",
- "id": "6f6b5a304ba239eb7a56f2718f6dec6a608c1c79eea4fa3018aba457a0176d5d",
- "kws": {
- "fr": [
- "jaune"
- ]
- }
- },
- {
- "nm": "rangée",
- "id": "b25ac3730ffc5a4981d06e30c50fc8ba35a77d66450d8f6a44178aaee319ecda",
- "kws": {
- "fr": [
- "rangée"
- ]
- }
- },
- {
- "nm": "taille",
- "id": "be9cf0cf613af808be9781eb7a2979663045310745a2e9b54301ad6ee9dcbbf8",
- "kws": {
- "fr": [
- "taille"
- ]
- }
- },
- {
- "nm": "étendre",
- "id": "e5a5642ab94ca604e5e192d5550940ce02964d6975c8fdf82f02fefd8716fbc1",
- "kws": {
- "fr": [
- "étendre"
- ]
- }
- },
- {
- "nm": "cuisine",
- "id": "16128a73fc478b0822c303aac5bd04b67cb661edd58a7db07efede736990e2b8",
- "kws": {
- "fr": [
- "cuisine"
- ]
- }
- },
- {
- "nm": "étranger",
- "id": "607b1718a13e422cb01e9a8d21b882216fbb82d237ada2226058ff0a67123326",
- "kws": {
- "fr": [
- "étranger",
- "arabe"
- ]
- }
- },
- {
- "nm": "r",
- "id": "929fe7527627e391d65da922d79a23319d62ee8fbec12583ae83339667a0ad69",
- "kws": {
- "fr": [
- "r",
- "lettre"
- ]
- }
- },
- {
- "nm": "demi-point",
- "id": "2d07f700d43bb45cecb3bd6412ce4ce51cc684f635b46b91c0c90addd68ab190",
- "kws": {
- "fr": [
- "demi-point",
- "moyen"
- ]
- }
- },
- {
- "nm": "basse-cour",
- "id": "04f938535593ef791cdd715da1b1bd5d6bc63c9911fbcea28c8c3d00952d9ece",
- "kws": {
- "fr": [
- "basse-cour"
- ]
- }
- },
- {
- "nm": "accessible",
- "id": "477e68779e839050901910cdfd968bc13961d42d1e23420ef8591373992e85fe",
- "kws": {
- "fr": [
- "accessible"
- ]
- }
- },
- {
- "nm": "parasol",
- "id": "852bebe295d54d71759d7a3856dd80fe69f5f372f86d433e8e57fc867be36b06",
- "kws": {
- "fr": [
- "parasol"
- ]
- }
- },
- {
- "nm": "maroc",
- "id": "c77acad2a6fe78855ce1e76e660026191deb1daf98b830f4e157c188b04df9f7",
- "kws": {
- "fr": [
- "maroc"
- ]
- }
- },
- {
- "nm": "vendeuse",
- "id": "158ac15d57470d620bb8522b0463ce2e0972caa666a9c853be9d850ccd6a8d48",
- "kws": {
- "fr": [
- "vendeuse",
- "éleveuse de volaille"
- ]
- }
- },
- {
- "nm": "péter",
- "id": "754cec81f275e455b0815f6e899e452de4b6d4d9148426d3ace8dd6304d9a226",
- "kws": {
- "fr": [
- "péter",
- "se perdre",
- "avoir des vents"
- ]
- }
- },
- {
- "nm": "novembre",
- "id": "8da084bc3b10cbc249857c5821f11d838b2f9eefc76a30da9867bf127d6a9595",
- "kws": {
- "fr": [
- "novembre"
- ]
- }
- },
- {
- "nm": "long",
- "id": "54546a2ecd764539814b111a46ba9e22a48f46501c7208505fa126bbe6ef4e91",
- "kws": {
- "fr": [
- "long"
- ]
- }
- },
- {
- "nm": "changer la couche",
- "id": "a12ba82828dcd4ed972e1f22cc423cfd85a021fea0b2941347822ee558014a17",
- "kws": {
- "fr": [
- "changer la couche"
- ]
- }
- },
- {
- "nm": "bonbon",
- "id": "2f4a3f6e9bfd1c6b0f900c22e2538f49e308155d602520e8ab0127b455ab794c",
- "kws": {
- "fr": [
- "bonbon"
- ]
- }
- },
- {
- "nm": "tuyauterie",
- "id": "f9d166473aee927614c38ab76377fc1d3affa5e3cac96ffb0b6c6fd0866ce2bb",
- "kws": {
- "fr": [
- "tuyauterie"
- ]
- }
- },
- {
- "nm": "cousin",
- "id": "1a21345df3e1ea46f237a6bc9eaacbe127707db36f903fe5f8b8a6143f10e78a",
- "kws": {
- "fr": [
- "cousin"
- ]
- }
- },
- {
- "nm": "colonne vertébrale",
- "id": "373e26f4f5faae5eacf7767883aded8f090b9302e2dd98f7472ff60e0fc471fe",
- "kws": {
- "fr": [
- "colonne vertébrale"
- ]
- }
- },
- {
- "nm": "crochet",
- "id": "34853d5227201dd09340704191b490b553fdf30b4f58aa1e09baeb63aca03b21",
- "kws": {
- "fr": [
- "crochet"
- ]
- }
- },
- {
- "nm": "répondre",
- "id": "17c7e894b2a1062ec09fbb3aa81f5c9cf2757decfa67e56a8cc6c0eaf62718d2",
- "kws": {
- "fr": [
- "répondre"
- ]
- }
- },
- {
- "nm": "climatisation",
- "id": "d98c766facc0281aae1d185936a1d32d95a6db8a3c606599e651636977beb6a6",
- "kws": {
- "fr": [
- "climatisation",
- "appareil"
- ]
- }
- },
- {
- "nm": "conscience",
- "id": "19694af415da4082f87b80d2d7a12a92207d5a0aa2f3db078acc2e065fe53805",
- "kws": {
- "fr": [
- "conscience"
- ]
- }
- },
- {
- "nm": "lit",
- "id": "89f0cd4f9e6a2b6fdff15d07ed60b411c6bc9d52fe004009c8ea673cc5854330",
- "kws": {
- "fr": [
- "lit"
- ]
- }
- },
- {
- "nm": "extraction",
- "id": "156e1ad38daf7041be7d69a5b122d7c302c6d51cad5c8c46c16ed033df0e4b0d",
- "kws": {
- "fr": [
- "extraction",
- "extraire",
- "analyse de sang",
- "analyse"
- ]
- }
- },
- {
- "nm": "croissance",
- "id": "2599458a4e414b7fbc1b7301f16c5f628e6213bbe6b072f11636d4320290c8a9",
- "kws": {
- "fr": [
- "croissance"
- ]
- }
- },
- {
- "nm": "cafetière expresso",
- "id": "a1ded2b9671de538bf15190ac02158f5b62217860d2fd2686b60b6142a328c04",
- "kws": {
- "fr": [
- "cafetière expresso",
- "cafetière"
- ]
- }
- },
- {
- "nm": "autoroute",
- "id": "f6f9de1ab6091a698cd3fcf6af425717c0f6ff7c9a56b4d66cc6f4fa00afd541",
- "kws": {
- "fr": [
- "autoroute"
- ]
- }
- },
- {
- "nm": "tondre la pelouse",
- "id": "8e32a17a015749ba549fd0d2a288cd698c521448880b2aa15c0758b25f40adb1",
- "kws": {
- "fr": [
- "tondre la pelouse",
- "faucher",
- "couper"
- ]
- }
- },
- {
- "nm": "prostitution",
- "id": "58dd98f920415993ddc9a56ecc726b194229d08fac3258399a920b3f5c6a4d85",
- "kws": {
- "fr": [
- "prostitution"
- ]
- }
- },
- {
- "nm": "qu\u0027est-ce que c\u0027est ça",
- "id": "8ade6df7cdc1c3c6031144e8f2a97ccd8f234af3949d128d6491b55479841958",
- "kws": {
- "fr": [
- "qu\u0027est-ce que c\u0027est ça",
- "qu\u0027est-ce que c\u0027est"
- ]
- }
- },
- {
- "nm": "casier",
- "id": "cbf6fd83e853cf9b84b43c4ae97d8dead3e93cdb416d3dd54eeb6ea31c9e63ee",
- "kws": {
- "fr": [
- "casier"
- ]
- }
- },
- {
- "nm": "scie à découper",
- "id": "253b17c3119bf56d3b772512f6d3a8fd8bba0ad83042537ae4408a7b240da2bb",
- "kws": {
- "fr": [
- "scie à découper",
- "scie"
- ]
- }
- },
- {
- "nm": "oeuvre",
- "id": "9b391a019a8bd8fb6de3ae9d1aeeffe82d15bf378d18c70f074d3a78e980884e",
- "kws": {
- "fr": [
- "oeuvre"
- ]
- }
- },
- {
- "nm": "analyse d\u0027urine",
- "id": "d6f64fbd8c54bf210f310f121c72efdd5092fb0d157a578775e854cd890d36d5",
- "kws": {
- "fr": [
- "analyse d\u0027urine",
- "analyse"
- ]
- }
- },
- {
- "nm": "hôtel",
- "id": "6e5fa6efe1a6e43a49c1c6241550b10cd479425822190e120ee6dd47b761d60e",
- "kws": {
- "fr": [
- "hôtel"
- ]
- }
- },
- {
- "nm": "professeur d\u0027éducation spéciale",
- "id": "c7c215d2ff7c24e20945fe8d16c5c014de27b86e85967b777fb5bc3b4e7868cf",
- "kws": {
- "fr": [
- "professeur d\u0027éducation spéciale",
- "professeur de pédagogie thérapeutique",
- "professeur de soutien",
- "pt"
- ]
- }
- },
- {
- "nm": "cuillère adaptée",
- "id": "efc975fb5c04dd7d80fc33963ebfb73863b0985d7410c2ee9452c6ce35c67eff",
- "kws": {
- "fr": [
- "cuillère adaptée",
- "cuillère"
- ]
- }
- },
- {
- "nm": "donner un coup",
- "id": "475c27451ed02c80f90888e7465361e2cedb7edbd2ee4561d0500e9f38bbe9ff",
- "kws": {
- "fr": [
- "donner un coup",
- "attaquer",
- "donner un coup de poing",
- "maltraiter"
- ]
- }
- },
- {
- "nm": "veau",
- "id": "64ec17777a8696ecd86086c73162f760d58ca95d27f1baef52e2b83c21e987e6",
- "kws": {
- "fr": [
- "veau"
- ]
- }
- },
- {
- "nm": "mont",
- "id": "9f2ec3315a27c0b3ad4e7f469f26b963e0a2d37547781ca261993442318d3b84",
- "kws": {
- "fr": [
- "mont",
- "montagne"
- ]
- }
- },
- {
- "nm": "bobine",
- "id": "4b9a57e19070303ed375c964467ce22df595cc6450f6c62567bf647a99551c00",
- "kws": {
- "fr": [
- "bobine"
- ]
- }
- },
- {
- "nm": "slovénie",
- "id": "2831c1a1a460ba52f3238cd74185a626388e73744f70acb64242f8dc58f898d7",
- "kws": {
- "fr": [
- "slovénie"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "cc8a6870fcde2ef5addebf285fb96edd602ac072f1cb56fd7657f21f38dd5252",
- "kws": {
- "fr": [
- "communauté autonome",
- "la rioja"
- ]
- }
- },
- {
- "nm": "sortie",
- "id": "3b2fe46b30d3abd57f8a2e946f75a55acddaff937c9effde13a816fa46c8cad6",
- "kws": {
- "fr": [
- "sortie"
- ]
- }
- },
- {
- "nm": "grelot",
- "id": "298728c9037ee4a5a757ce91743da33bf8140de41fc4c0cd07bc86b03276337d",
- "kws": {
- "fr": [
- "grelot"
- ]
- }
- },
- {
- "nm": "nu",
- "id": "d237e7ac81bdceb29e65e145fde8754b2e988acab9f14e764d04ddc3925f9c23",
- "kws": {
- "fr": [
- "nu"
- ]
- }
- },
- {
- "nm": "rayer",
- "id": "3b1603e7502759ad5534fb89865acb6ce78d37ab205820b4ff53995cb85f5e64",
- "kws": {
- "fr": [
- "rayer"
- ]
- }
- },
- {
- "nm": "mètre",
- "id": "80c5636dfe05b4c8d120b7c4c1bea2e6314a6fadd06bb9275deee45d7e39bbcf",
- "kws": {
- "fr": [
- "mètre"
- ]
- }
- },
- {
- "nm": "demain",
- "id": "d9bba1c5052882f9ceb96a99aacb3d562e9a623ad9550aed23e9d5c1cdd8da5c",
- "kws": {
- "fr": [
- "demain",
- "futur",
- "matin"
- ]
- }
- },
- {
- "nm": "la",
- "id": "b7d450e84133a1b0fdc61a741329d0c621425a58f7f1eac45d88b98b53b055b2",
- "kws": {
- "fr": [
- "la",
- "le"
- ]
- }
- },
- {
- "nm": "fête des mères",
- "id": "1a904325353fb38301544382c2283539b882d6cd04f65fb5522c6c524ea8302d",
- "kws": {
- "fr": [
- "fête des mères"
- ]
- }
- },
- {
- "nm": "toussaint",
- "id": "0e46bcae62c3d319448b55a3fac9d1a9ec32f46cf60699d24f193f5a8bc86544",
- "kws": {
- "fr": [
- "toussaint",
- "citrouille d\u0027halloween",
- "citrouille",
- "jour de la toussaint",
- "halloween"
- ]
- }
- },
- {
- "nm": "placard de cuisine",
- "id": "f320de0fac4eeffc3f2b9517aabe47260f8d2bfa38c3e43d42ba556d0ba11a0f",
- "kws": {
- "fr": [
- "placard de cuisine"
- ]
- }
- },
- {
- "nm": "peinture à doigts",
- "id": "54d21c3bab7c1b2f2473d975dba7ba2e9f582f53bdb192de1d04373ce8fc97bc",
- "kws": {
- "fr": [
- "peinture à doigts",
- "peinture"
- ]
- }
- },
- {
- "nm": "estime de soi",
- "id": "e65b700476ec03007e1cb12e84a5823918fc2b1cfc85347d1cf82ad5902aae31",
- "kws": {
- "fr": [
- "estime de soi"
- ]
- }
- },
- {
- "nm": "tousser",
- "id": "c51374797c84dfa17b55a10d74ca8cc012e35f4338b9c2ab1c84842cb58b2d65",
- "kws": {
- "fr": [
- "tousser",
- "toux",
- "crise"
- ]
- }
- },
- {
- "nm": "loupe",
- "id": "4a5ba4398930f18eb989c2fd7cd6f2939f1f891e62ed9c15bb52b0743fdc7c4e",
- "kws": {
- "fr": [
- "loupe"
- ]
- }
- },
- {
- "nm": "pape",
- "id": "c02040e3ecc82e57961803c3fa72a7a35bc97062dc566b7f08992c827db044d0",
- "kws": {
- "fr": [
- "pape"
- ]
- }
- },
- {
- "nm": "faire des tours",
- "id": "b0cadba685d2a81db6984883522e946c2ed8644285986cf421f4605435a2c10c",
- "kws": {
- "fr": [
- "faire des tours",
- "mélanger",
- "remuer"
- ]
- }
- },
- {
- "nm": "étrille",
- "id": "82a9107af85cf56a380e9c17b568906617f40b886b4dd7985f9dc72510bca1eb",
- "kws": {
- "fr": [
- "étrille",
- "raclette"
- ]
- }
- },
- {
- "nm": "constipation",
- "id": "0f9c0be2cb5b284e5b325c6aed2bc0c0d239b7dab0600b02f8365fafe4782503",
- "kws": {
- "fr": [
- "constipation"
- ]
- }
- },
- {
- "nm": "bouchère",
- "id": "1614b1263d8f1ceb0833fa0ec5d678c8eba0b378f0d50952feaca8034cf49369",
- "kws": {
- "fr": [
- "bouchère"
- ]
- }
- },
- {
- "nm": "carte",
- "id": "b05458b2aa3f91666390fc16139f5c06e4700a646ff6fc16bd1d67e972b95f2c",
- "kws": {
- "fr": [
- "carte",
- "mappemonde"
- ]
- }
- },
- {
- "nm": "f",
- "id": "2e976cceee9fda6f150d7dcbd74121d084a97700f4bd799a1418ac53c6ec57ae",
- "kws": {
- "fr": [
- "f"
- ]
- }
- },
- {
- "nm": "crème à raser",
- "id": "6a02d4894cb4dd22eae5b1ff69b5a4674363349bfa21c6d3cd81e7a265e1a5e8",
- "kws": {
- "fr": [
- "crème à raser"
- ]
- }
- },
- {
- "nm": "il y a du soleil!",
- "id": "b4d6b5672b6f3268ee69d70850e08c9600d9b4c041388895d78b789e194732a5",
- "kws": {
- "fr": [
- "il y a du soleil!",
- "ll y a du soleil!"
- ]
- }
- },
- {
- "nm": "sud",
- "id": "3a8b4b4a92dd3e3377b0e01a152b1c9752ce3d6ae33491929f4cf806c44ccf36",
- "kws": {
- "fr": [
- "sud"
- ]
- }
- },
- {
- "nm": "lettre",
- "id": "04a88c77980a7d1d63063bd13c4721e157e6b72cfae80cb54b87dfeb73bdd24a",
- "kws": {
- "fr": [
- "lettre",
- "h"
- ]
- }
- },
- {
- "nm": "tube à essai",
- "id": "87808992b881aef9472236d09552bb5e77a245645af2f096393d24b9e9329897",
- "kws": {
- "fr": [
- "tube à essai"
- ]
- }
- },
- {
- "nm": "loutre",
- "id": "52ce5a22163304f1feb99510a6dd58e5c015b8783c58e039bb7f35b7cdc27ccd",
- "kws": {
- "fr": [
- "loutre"
- ]
- }
- },
- {
- "nm": "serbie",
- "id": "b04b83c3f674f826cead8c847e1649c0851dddc10992632af4ad642fe47a3b55",
- "kws": {
- "fr": [
- "serbie"
- ]
- }
- },
- {
- "nm": "kinésithérapeute",
- "id": "d452f7d04ef3b5edfe7e99f0774f24a6db3c28fd6b7d0b6a1431c34fdbf63ec8",
- "kws": {
- "fr": [
- "kinésithérapeute",
- "kinésithérapie"
- ]
- }
- },
- {
- "nm": "mienne",
- "id": "a8afdfb4cd889c4eee2b0021a11c001de75634da269b1b70a8d05f681abd2fda",
- "kws": {
- "fr": [
- "mienne",
- "mon",
- "le mien"
- ]
- }
- },
- {
- "nm": "avoir",
- "id": "0dfd8504189f25eec6c9cee949c323eb515862640dd447628967e19d3df0eabe",
- "kws": {
- "fr": [
- "avoir",
- "il y a"
- ]
- }
- },
- {
- "nm": "cure-dents",
- "id": "9b0946e2fc303254fb58db52845b538d321873f618f8a6cdcb39253b9d3a9ef3",
- "kws": {
- "fr": [
- "cure-dents"
- ]
- }
- },
- {
- "nm": "concert",
- "id": "d5885a5bec3d0a50db483aaeb5f0442261b170da027a79b9cdf9104f31c78720",
- "kws": {
- "fr": [
- "concert"
- ]
- }
- },
- {
- "nm": "tuile",
- "id": "847d3f1760a5fa7122f77c40f1de930bc5b1ed72b891ace8a262a0875552506b",
- "kws": {
- "fr": [
- "tuile"
- ]
- }
- },
- {
- "nm": "feu vert",
- "id": "ecb553b799891dc5e272fac5c5c43e350355f134fd2b509fa85e2074bee2cd3e",
- "kws": {
- "fr": [
- "feu vert",
- "feu"
- ]
- }
- },
- {
- "nm": "se sucer le doigt",
- "id": "6ecbc11e7703ed5a593a757da07621dcd163404bacba121925d0ff4680a8415e",
- "kws": {
- "fr": [
- "se sucer le doigt",
- "sucer"
- ]
- }
- },
- {
- "nm": "faire honte",
- "id": "0f8fab4f972d7bf13fcb0c0823c84630668e1e7cd2c964efe6b5d3eaf1de5f1c",
- "kws": {
- "fr": [
- "faire honte",
- "honteux",
- "honte",
- "avoir honte"
- ]
- }
- },
- {
- "nm": "conte",
- "id": "f57d83506a1bda1adb3309d7b94f9d08309c8ea397cb21ebad51127790f4c72d",
- "kws": {
- "fr": [
- "conte"
- ]
- }
- },
- {
- "nm": "ennuyeux",
- "id": "2c8e8bd08d2516358c933f7183434a52b8f5da7e3b604ca8e25f54925098a89e",
- "kws": {
- "fr": [
- "ennuyeux",
- "s\u0027ennuyer"
- ]
- }
- },
- {
- "nm": "niveau à bulle",
- "id": "e19801e11ec7faa625fb113ba1f74f1fee3b4589e7c192630de2a8cc682fb75e",
- "kws": {
- "fr": [
- "niveau à bulle",
- "niveau"
- ]
- }
- },
- {
- "nm": "islam",
- "id": "a7f57dab1da86043cc35b6143ba764f7dcb54d24cafae0dbe9dd3cfafd1a6ff6",
- "kws": {
- "fr": [
- "islam"
- ]
- }
- },
- {
- "nm": "magasin de chaussures",
- "id": "07192e74ff8f21ccdac8dc3734cc66af139bb10cb514d49d6dd1b6d7ef88f32d",
- "kws": {
- "fr": [
- "magasin de chaussures"
- ]
- }
- },
- {
- "nm": "médaille",
- "id": "5140acc09c1e9fa81356d23b46bb9a7d17ffe9bf450e7161879a2f082fd94f21",
- "kws": {
- "fr": [
- "médaille"
- ]
- }
- },
- {
- "nm": "équipe d\u0027intervention",
- "id": "77cc3ab1719184ada32030a293102edcd594a0ac36ff64774f04e6f1ac9e0e97",
- "kws": {
- "fr": [
- "équipe d\u0027intervention"
- ]
- }
- },
- {
- "nm": "musicien",
- "id": "49aacfaaa556046911f7481088bfb8e3c687aa310ce0016e2587aafab99dee66",
- "kws": {
- "fr": [
- "musicien",
- "artiste"
- ]
- }
- },
- {
- "nm": "troupeau",
- "id": "c2b46332d031392cdf4dfa1626ee6a9f2947e5f24154b113d4d23ba10b0960c3",
- "kws": {
- "fr": [
- "troupeau"
- ]
- }
- },
- {
- "nm": "vêtement",
- "id": "773b7d71cf7e88cb27182233a604e2fd368a05fcb95a59d2b7b288d45846d49b",
- "kws": {
- "fr": [
- "vêtement",
- "moufle"
- ]
- }
- },
- {
- "nm": "bonhomme",
- "id": "a58e0dcb49febda3f6b126ee21ada3a7766d3604818f3e78699bd10d88b0654e",
- "kws": {
- "fr": [
- "bonhomme"
- ]
- }
- },
- {
- "nm": "se lever de la chaise",
- "id": "eeea909e30a8e90a503864e43b14805a8e46f7b69aba39678938f6981be5f943",
- "kws": {
- "fr": [
- "se lever de la chaise",
- "se lever",
- "lever"
- ]
- }
- },
- {
- "nm": "chaussures",
- "id": "906b5b91a9d2395ba2cfbe9772fe97d3314e0a573c4d6cf88358a16495c16544",
- "kws": {
- "fr": [
- "chaussures"
- ]
- }
- },
- {
- "nm": "chercher",
- "id": "a65917147cf177a509c587ae09adaccd8e9112b72ce2f29415eec3c890d48a86",
- "kws": {
- "fr": [
- "chercher"
- ]
- }
- },
- {
- "nm": "collants",
- "id": "3d6a481d60f8af16d425cd81e6cffcd4d4c3ea09d0d3c20f1654d2d5f51ab8c9",
- "kws": {
- "fr": [
- "collants"
- ]
- }
- },
- {
- "nm": "egypte",
- "id": "96be808c6b258213ff528b7834ffbd27e04392c35c0e9af2ef0c7fd49123c916",
- "kws": {
- "fr": [
- "egypte"
- ]
- }
- },
- {
- "nm": "sous-marin",
- "id": "7f87737fbc76a1ff8c33eb66ef6b0f9ba8f66fc8948d1eab1592d601b9a26865",
- "kws": {
- "fr": [
- "sous-marin"
- ]
- }
- },
- {
- "nm": "urne",
- "id": "351652cd3a4dd67f6553619db1d3a64e045a516bb3a5a8d194a221ef3437471d",
- "kws": {
- "fr": [
- "urne"
- ]
- }
- },
- {
- "nm": "atelier de couture",
- "id": "b977a3f6dfed9bb95f22bf68b0892ea0fb1a73c4dacdfc2b9217c509ba1471c3",
- "kws": {
- "fr": [
- "atelier de couture"
- ]
- }
- },
- {
- "nm": "macédonie",
- "id": "68775943beee590a6f0499ace0d531f9a3ed59f71e64c23e28d23ed7c2c880b9",
- "kws": {
- "fr": [
- "macédonie",
- "salade de fruits"
- ]
- }
- },
- {
- "nm": "éclairer",
- "id": "65520900000400008db0db44d46d92d601a6ff0c5807d5f6c827e0faace48145",
- "kws": {
- "fr": [
- "éclairer",
- "illuminer"
- ]
- }
- },
- {
- "nm": "clouer",
- "id": "a359a81546f876bf1767ce4a6047d37cc103d114d3139eda6241ee0902d3b52e",
- "kws": {
- "fr": [
- "clouer"
- ]
- }
- },
- {
- "nm": "sexe oral",
- "id": "c81d587ca500a2bc7aef8a0d93f12808c0016b9acfe311e2197abd034fd80d4a",
- "kws": {
- "fr": [
- "sexe oral"
- ]
- }
- },
- {
- "nm": "cabochard",
- "id": "557a2bf3f397040519fc08e50d36713a8d8d5610bd6a7ea52111f3903015e613",
- "kws": {
- "fr": [
- "cabochard",
- "torero"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "8339b522e71f924c2a6590a1e6eec985592d0e6f6dc946bc7f7deca60de0dbe0",
- "kws": {
- "fr": [
- "communauté autonome",
- "asturies"
- ]
- }
- },
- {
- "nm": "carnaval",
- "id": "ff7c2ce2d559968bb592061e893d9ec3e22d66bd1bddd2dccdc1afd390d178c6",
- "kws": {
- "fr": [
- "carnaval"
- ]
- }
- },
- {
- "nm": "canaries",
- "id": "059b48ef0b27fbfbd61bd92bb560d2792f0bc2b5b503edb5957b396d6c01e205",
- "kws": {
- "fr": [
- "canaries",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "ennemis",
- "id": "cc781a4757eb95ed421b80478bda7f6317b93af2de6f8c296182bf55ecb8a9fd",
- "kws": {
- "fr": [
- "ennemis"
- ]
- }
- },
- {
- "nm": "jardin",
- "id": "dec50709a2255617adef4d535c6d898afe8b636b771a237c39ebb9448c905c88",
- "kws": {
- "fr": [
- "jardin"
- ]
- }
- },
- {
- "nm": "s\u0027allonger",
- "id": "7ecdd42832fe8330dc37ddc25cd7fa1f787071186f8048a130ff893b225a72e6",
- "kws": {
- "fr": [
- "s\u0027allonger"
- ]
- }
- },
- {
- "nm": "machine",
- "id": "e276dde10b546a9a9b636862fab22c9057a06bc190f7c99141719941628347a4",
- "kws": {
- "fr": [
- "machine",
- "machines"
- ]
- }
- },
- {
- "nm": "vase",
- "id": "22ee40341fb1df2500931aedeab3b9e694438ae5153061466031ea9d9920de7a",
- "kws": {
- "fr": [
- "vase"
- ]
- }
- },
- {
- "nm": "confortable",
- "id": "c397de6926196579eb81b3a00090c5562a4b8b35a20fe392643672cb119e8be5",
- "kws": {
- "fr": [
- "confortable"
- ]
- }
- },
- {
- "nm": "corbeille",
- "id": "2e64177c7d3c8a3e63f1ce8fda267d597cc3184ba987c95bf51ce3adc815bdb0",
- "kws": {
- "fr": [
- "corbeille"
- ]
- }
- },
- {
- "nm": "pomme de terre",
- "id": "7d6828aa7b2b3eb6fbbad3d5287bdb748bb9d68f5e2d8ed86109ac62475541af",
- "kws": {
- "fr": [
- "pomme de terre"
- ]
- }
- },
- {
- "nm": "deuil",
- "id": "bde24a5c7c94380e7713a4c22679449a74ec93511dfceb825580f59e29a7d25a",
- "kws": {
- "fr": [
- "deuil"
- ]
- }
- },
- {
- "nm": "carte du trésor",
- "id": "60e37c75449272d5c0b803949a894d02fb01483dfbeb55f2ab3066e4ecafed43",
- "kws": {
- "fr": [
- "carte du trésor"
- ]
- }
- },
- {
- "nm": "bouclier",
- "id": "6a5b308d3df5baa640cf55f76e79b69457dbde3334945c05624be5ab97032140",
- "kws": {
- "fr": [
- "bouclier"
- ]
- }
- },
- {
- "nm": "large",
- "id": "5b13c990a1a29349d818a6867361443d1f912457de141556840b619efb0c3b72",
- "kws": {
- "fr": [
- "large"
- ]
- }
- },
- {
- "nm": "musicien",
- "id": "76d41b597ce95534ba65a1a73b042f5520f6bc940d61250d585eb646fef92293",
- "kws": {
- "fr": [
- "musicien",
- "musique",
- "artiste"
- ]
- }
- },
- {
- "nm": "percussion",
- "id": "85cb500e2da032980cf1a2bc085184eecd5e880fdd0f3ee761d6111ebd702aec",
- "kws": {
- "fr": [
- "percussion"
- ]
- }
- },
- {
- "nm": "programme",
- "id": "906c9ce95cd177a67b745a191e82f6e9d708a4e49e27d866b1619ab9a7792327",
- "kws": {
- "fr": [
- "programme",
- "saison"
- ]
- }
- },
- {
- "nm": "salle de classe",
- "id": "957e662da7751ee99cf809dee103ddc8e92ee4992065d4c7a21ad53d3508cd05",
- "kws": {
- "fr": [
- "salle de classe",
- "salle de cours"
- ]
- }
- },
- {
- "nm": "donner un cadeau",
- "id": "ce3ecf8676c5882c24e6e8c19c975017dae64df851625bf1880b5135a7c02a35",
- "kws": {
- "fr": [
- "donner un cadeau",
- "offrir"
- ]
- }
- },
- {
- "nm": "camping-car",
- "id": "79fed6e9681de7bdb41dcab0e9011f984d1a083942a67511413a6524bb16f696",
- "kws": {
- "fr": [
- "camping-car",
- "caravane"
- ]
- }
- },
- {
- "nm": "table roulante",
- "id": "5bcdcd7cce73e45d965732efc1fde7644917c9e0d7381084a1280d486604ff2f",
- "kws": {
- "fr": [
- "table roulante",
- "table"
- ]
- }
- },
- {
- "nm": "utiliser le tableau de communication",
- "id": "35d24d1e6f9fb62fbc05bbfdb0ffc37f965cdff2f8306a9522f21a3692d1678c",
- "kws": {
- "fr": [
- "utiliser le tableau de communication"
- ]
- }
- },
- {
- "nm": "piste de ski",
- "id": "01c8bd8bdc5dc3e906acead73048465501af5376d311c92d5c554ed588d86ccc",
- "kws": {
- "fr": [
- "piste de ski",
- "piste",
- "station de ski"
- ]
- }
- },
- {
- "nm": "bouton",
- "id": "9e4a9170c865ab5186e402f667e1005dbb03473303229d3d066d4557feb2f9a5",
- "kws": {
- "fr": [
- "bouton",
- "commutateur"
- ]
- }
- },
- {
- "nm": "handicap moteur",
- "id": "2a46355b9b2a367f374505b7e8beabcff5b6ba1ce49fea98f634c4762d85750b",
- "kws": {
- "fr": [
- "handicap moteur"
- ]
- }
- },
- {
- "nm": "coopérer",
- "id": "0e70860ea8efc82772e8a92204f8c0a182f85ee60a922bb4dd02b640d5356396",
- "kws": {
- "fr": [
- "coopérer",
- "j\u0027ai besoin d\u0027aide",
- "aider",
- "assister"
- ]
- }
- },
- {
- "nm": "caissette",
- "id": "76166e9feaf3876c8adc16138ed7fca382a4ac9e30d4a9e19cdbdf42544a5bec",
- "kws": {
- "fr": [
- "caissette"
- ]
- }
- },
- {
- "nm": "travailler",
- "id": "5aeacf87388b4806ab1cf25fae3c0f60af1e1f68de68858b4d442abf722ee7ec",
- "kws": {
- "fr": [
- "travailler"
- ]
- }
- },
- {
- "nm": "pâtissière",
- "id": "2bd48e633d9739cf7539ee1e492739f4fff825276e992fec03420a64e2b5671c",
- "kws": {
- "fr": [
- "pâtissière"
- ]
- }
- },
- {
- "nm": "tourisme",
- "id": "c49da2ce118a1ab2f4834b8d7bbfe5f4a0efce0af5d99584ba11771a29132319",
- "kws": {
- "fr": [
- "tourisme",
- "voiture",
- "véhicule"
- ]
- }
- },
- {
- "nm": "trapéziste",
- "id": "6d0bbae99e81aecaa51f72c69629432caf11be854feb1d688be2c4bb720118ea",
- "kws": {
- "fr": [
- "trapéziste",
- "acrobate",
- "artiste"
- ]
- }
- },
- {
- "nm": "joueur de volley-ball",
- "id": "d94b1b1ed16afea3cc815cceb3a207bedfbc339b17bb030f69e9b8e107d75157",
- "kws": {
- "fr": [
- "joueur de volley-ball",
- "joueur"
- ]
- }
- },
- {
- "nm": "fête",
- "id": "40ef92747f3f908d880058f401ce70616796f83a2443c25ba67d6cbb86e8713a",
- "kws": {
- "fr": [
- "fête"
- ]
- }
- },
- {
- "nm": "cloches",
- "id": "5dca033fa1a10e70ae46b3ad00cf65779e2008d8cbbcb79253602df046c6e1f2",
- "kws": {
- "fr": [
- "cloches"
- ]
- }
- },
- {
- "nm": "signal",
- "id": "7b59c0b5922af5d5c397d385bd3b0297a644cb7de60b9f181f4cd083bc583003",
- "kws": {
- "fr": [
- "signal"
- ]
- }
- },
- {
- "nm": "essaim",
- "id": "382c7cc218eda1a23091dcd9cf6f3cfc3fbd77aed3daa440bd9f77afc87ad241",
- "kws": {
- "fr": [
- "essaim"
- ]
- }
- },
- {
- "nm": "statue",
- "id": "246f6e52732435e063d38439d420661ee2b367556b0c5deac6dff84f83b05165",
- "kws": {
- "fr": [
- "statue",
- "figure"
- ]
- }
- },
- {
- "nm": "frites",
- "id": "3fb10720b541006721bc1b873840cd0f9e0abf57a6004a50d20f61653a51fefa",
- "kws": {
- "fr": [
- "frites"
- ]
- }
- },
- {
- "nm": "quel est ton email",
- "id": "98d839ccece164a86b92047fb995a53aa8219c5309462874af06e165fe372274",
- "kws": {
- "fr": [
- "quel est ton email",
- "quelle est ton adresse électronique"
- ]
- }
- },
- {
- "nm": "confondre",
- "id": "8457ebd0d201e78f7a34aeb7d190e5e44f2f0552a6ad4b6a7d1c83551f6586f2",
- "kws": {
- "fr": [
- "confondre",
- "confus",
- "s\u0027être trompé"
- ]
- }
- },
- {
- "nm": "docteur",
- "id": "42cb46696127030b0abe62b9899775c202cf333540197450843785d1beb2f73c",
- "kws": {
- "fr": [
- "docteur",
- "médecin"
- ]
- }
- },
- {
- "nm": "radio portable",
- "id": "5a4d70edcceb63e0f169b61a5a0e11e603e2f2789408769e0262a873f5c0a623",
- "kws": {
- "fr": [
- "radio portable",
- "radio"
- ]
- }
- },
- {
- "nm": "paëlla",
- "id": "dc39fd29fe13a94d3541c196b9ddd32209bbefe3a914726fee8a1dd2acad948b",
- "kws": {
- "fr": [
- "paëlla"
- ]
- }
- },
- {
- "nm": "hémisphère sud",
- "id": "d7f774ff6c6022c596fa57aae2f182620604193a9f5fc4b64505de489de1dce9",
- "kws": {
- "fr": [
- "hémisphère sud"
- ]
- }
- },
- {
- "nm": "caviar",
- "id": "3d6e69032a90c1d3928ea27fff6119835a61d1ea15f67644f73e509ebe981773",
- "kws": {
- "fr": [
- "caviar"
- ]
- }
- },
- {
- "nm": "encourager",
- "id": "30666436b72207f125a909201d2676c1d2e1c2785562bce1ec1a9217c5f2709e",
- "kws": {
- "fr": [
- "encourager",
- "souffler",
- "haleine"
- ]
- }
- },
- {
- "nm": "famille",
- "id": "c9db7c155bf905fdfd0aa862d3345fd92ee783e883f6764a9067894e9aa3d911",
- "kws": {
- "fr": [
- "famille"
- ]
- }
- },
- {
- "nm": "puzzle",
- "id": "1a004cef9deaab65b0ea5d1c17d85e3cd82973344c4920383838f27d49ad4fc5",
- "kws": {
- "fr": [
- "puzzle"
- ]
- }
- },
- {
- "nm": "voiture de sport",
- "id": "fe3dd30f9594073aff137fb97e5f1c824ffabf96afd6bf57d3208f43369430ff",
- "kws": {
- "fr": [
- "voiture de sport",
- "de sport",
- "bolide"
- ]
- }
- },
- {
- "nm": "peigne et ciseaux",
- "id": "6fad56897e1f5190a1a3632cb52201e97721f8f3a65115298639904ae1ca78a8",
- "kws": {
- "fr": [
- "peigne et ciseaux"
- ]
- }
- },
- {
- "nm": "bercer",
- "id": "4dfc56c344f4a06ecee9eb68104e51c92981c4014a93e1b61576045f61c3d877",
- "kws": {
- "fr": [
- "bercer"
- ]
- }
- },
- {
- "nm": "décoiffée",
- "id": "5b04caea01d0d4ff3f6c0e9c001f079d46dcd1ffd15962cd89158365b434a65b",
- "kws": {
- "fr": [
- "décoiffée"
- ]
- }
- },
- {
- "nm": "prendre",
- "id": "e108b277ab2e668231a6c0ccdac246ff1b626b555b504a8f54dd8ad214795d51",
- "kws": {
- "fr": [
- "prendre",
- "boire"
- ]
- }
- },
- {
- "nm": "carte d\u0027identité",
- "id": "590149325f8a22da586dbb09c66ee40a9df6a7c258d63aeb4ed5146a3a7f9cf1",
- "kws": {
- "fr": [
- "carte d\u0027identité",
- "carte nacionale d\u0027identité",
- "carte"
- ]
- }
- },
- {
- "nm": "dinosaure",
- "id": "dba7c3b5ce04163cca44ab85d72b27aabc94fef11c09c10a728e1a58e536c7f3",
- "kws": {
- "fr": [
- "dinosaure"
- ]
- }
- },
- {
- "nm": "riz cantonais",
- "id": "2729291188d8965023dc3f97ab2e57b2b51b51f08f002b41e437310a66076d4f",
- "kws": {
- "fr": [
- "riz cantonais"
- ]
- }
- },
- {
- "nm": "lettre",
- "id": "bcec5c74f3747e0dbeb0e79aa9b86761b409545492d65d76e5c50963bbbae3a7",
- "kws": {
- "fr": [
- "lettre",
- "m"
- ]
- }
- },
- {
- "nm": "se réunir",
- "id": "f2d86109685534972f19b425691412c0cf1759779008244465203b1889774610",
- "kws": {
- "fr": [
- "se réunir",
- "réunion"
- ]
- }
- },
- {
- "nm": "glisser",
- "id": "1fd3116a02ff1fb2731b2048d3d4c3cb55f45334ba377392df8de86b6b239a51",
- "kws": {
- "fr": [
- "glisser"
- ]
- }
- },
- {
- "nm": "remuer avec le fouet",
- "id": "5e7865395caddb77972d9682675a895ea2e7408c5383d05a0dfaadf8d8a061d7",
- "kws": {
- "fr": [
- "remuer avec le fouet"
- ]
- }
- },
- {
- "nm": "plus loin",
- "id": "e8b6c3eb180ee3fab248707c31b9348e2c00d42a21577c66506e79d803a68412",
- "kws": {
- "fr": [
- "plus loin",
- "là-bas",
- "là"
- ]
- }
- },
- {
- "nm": "table électorale",
- "id": "0c9952b4098692542ccfa7409587c35b44701b3f239e622d9f79e696112bf657",
- "kws": {
- "fr": [
- "table électorale"
- ]
- }
- },
- {
- "nm": "parcourir",
- "id": "95f111535eabbcd1c697966db387a75fb7ef3852cb48ef3ee280770cbb6edd67",
- "kws": {
- "fr": [
- "parcourir",
- "voyager"
- ]
- }
- },
- {
- "nm": "salle de classe",
- "id": "72292b61e107c40a72dda0fbf4903998c875b66218c3b51c380cb156ef454f97",
- "kws": {
- "fr": [
- "salle de classe",
- "salle de cours"
- ]
- }
- },
- {
- "nm": "être",
- "id": "ce5e1693aebc269bb7e7ab31e91a0afdeaec12f00331323e6fe7bdc4e63080c6",
- "kws": {
- "fr": [
- "être"
- ]
- }
- },
- {
- "nm": "incendie",
- "id": "0779cf84e8f192f66a0d8046099bda63f6b8cfa4a564f632ba34cc9631cc26a4",
- "kws": {
- "fr": [
- "incendie"
- ]
- }
- },
- {
- "nm": "passer sans regarder",
- "id": "d0a177e8e42be7a9f82ef43045dc79f673ea1339bbcfe9af777290182523d891",
- "kws": {
- "fr": [
- "passer sans regarder",
- "abus",
- "maltraitance"
- ]
- }
- },
- {
- "nm": "chef d\u0027orchestre",
- "id": "c6b5d50f3375075baad852e4007701c533e022e9b1b170709903f409c398cd82",
- "kws": {
- "fr": [
- "chef d\u0027orchestre",
- "diriger"
- ]
- }
- },
- {
- "nm": "avertir",
- "id": "134043a477ffc5308c5116c40f6d095629d80809dbcd40d89716f1a53e470367",
- "kws": {
- "fr": [
- "avertir"
- ]
- }
- },
- {
- "nm": "cheminée",
- "id": "47dd6f208e60adbd481c536af07e5ff9ec8df828dec9a932947b3b9b28f1d4ce",
- "kws": {
- "fr": [
- "cheminée"
- ]
- }
- },
- {
- "nm": "ticket",
- "id": "e6dc04b379b18301f26cf8d09947a0ff1eb8734c3db1afbbd059b04258d0258d",
- "kws": {
- "fr": [
- "ticket",
- "tiquet"
- ]
- }
- },
- {
- "nm": "ananas au sirop",
- "id": "62c8faa00ad24d109e350ee14a5e528c04a7c12f32b8c3f820dbeddf0dd722b8",
- "kws": {
- "fr": [
- "ananas au sirop",
- "ananas"
- ]
- }
- },
- {
- "nm": "se nettoyer",
- "id": "d3cb946493b1bb996537faa4abd449d6079c34a1774f4928cfd49266ae0b5d3a",
- "kws": {
- "fr": [
- "se nettoyer"
- ]
- }
- },
- {
- "nm": "chat noir",
- "id": "0f7cc929f108acad5b177bfe285110fbf26fced8ae7f8bac72a0a5d590921f25",
- "kws": {
- "fr": [
- "chat noir",
- "chat"
- ]
- }
- },
- {
- "nm": "tricycle",
- "id": "32cd40ac4d0fdc372d0418ba3a46ee7efd005e6727089b7e52413df22110c6ca",
- "kws": {
- "fr": [
- "tricycle"
- ]
- }
- },
- {
- "nm": "vitrine",
- "id": "63d6f4ac370ff65d57d4e4321e2301483b4edfffe5ba61c08cf52a028a364631",
- "kws": {
- "fr": [
- "vitrine"
- ]
- }
- },
- {
- "nm": "combien y en a-t-il",
- "id": "79f676c1745017593269ebc5055b2e5d3a3996f43f39cc838c70f2253d5b4a5c",
- "kws": {
- "fr": [
- "combien y en a-t-il",
- "combien",
- "quantité"
- ]
- }
- },
- {
- "nm": "w",
- "id": "5e1032946978d698ed828355e4b12594631e6e5b8681eb1a4391e04d82906661",
- "kws": {
- "fr": [
- "w",
- "lettre"
- ]
- }
- },
- {
- "nm": "attendre",
- "id": "3beb0f7b3ddf0c21d12bab3ed93fcb44c28205f49089df389ce59f820629c1f2",
- "kws": {
- "fr": [
- "attendre"
- ]
- }
- },
- {
- "nm": "se changer",
- "id": "04ebde6da9f11321c6cf8b28b590a57a73f9a51c37408a866ff9988e4e5634d3",
- "kws": {
- "fr": [
- "se changer",
- "s\u0027habiller",
- "habiller"
- ]
- }
- },
- {
- "nm": "boîte à outils",
- "id": "f65b31225e4604bd48596ea15e5a911b38d7d9060c5db3cfa1af56f3e0524a7e",
- "kws": {
- "fr": [
- "boîte à outils"
- ]
- }
- },
- {
- "nm": "se réveiller",
- "id": "bc5233448326e60037773a39417951fb860821e2fbfe3362e509eda62f6f1edb",
- "kws": {
- "fr": [
- "se réveiller",
- "réveiller",
- "s\u0027étirer"
- ]
- }
- },
- {
- "nm": "amphore",
- "id": "46ac98957205aa36ea10265a6e97106610a3642a7c968ed492fff23753bd2b65",
- "kws": {
- "fr": [
- "amphore"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "9d2d907ada004b7ac64f88c31f7835876fd0267af0dfb40df570b89db919e648",
- "kws": {
- "fr": [
- "communauté autonome",
- "baléares"
- ]
- }
- },
- {
- "nm": "cuit",
- "id": "35494e9c41e12cd0f161cf60db04938375890cee718537bcb002a68b58506ac5",
- "kws": {
- "fr": [
- "cuit",
- "cuite"
- ]
- }
- },
- {
- "nm": "gâteau au chocolat",
- "id": "57cf093b8313c4ae5360b8e98fe0fe9a2c51d28c5b4fe43b7c314590aa4c2ca3",
- "kws": {
- "fr": [
- "gâteau au chocolat"
- ]
- }
- },
- {
- "nm": "cocotte minute",
- "id": "45e05d964b000c261c62308eaa13f175665dabf820d66dee3f31348da01877cd",
- "kws": {
- "fr": [
- "cocotte minute"
- ]
- }
- },
- {
- "nm": "champignons",
- "id": "ce3013dd699a46b1a6851ea3a87e86e6ccead8a7fcfe61ac41ff4ff1543d25a8",
- "kws": {
- "fr": [
- "champignons"
- ]
- }
- },
- {
- "nm": "cracher",
- "id": "4c52f03fc48ea860891b2caed3dc6769fde3acd5d60207ea481248374bb0bad4",
- "kws": {
- "fr": [
- "cracher"
- ]
- }
- },
- {
- "nm": "h",
- "id": "c46ad900011a5ae7bf27530de0e2e96f05f59758fade848e2d837b95d514a29c",
- "kws": {
- "fr": [
- "h",
- "lettre"
- ]
- }
- },
- {
- "nm": "bar",
- "id": "37735045522ef2612e73433ae1e722112a1a3b40c8966b383cd97de3ed543e7f",
- "kws": {
- "fr": [
- "bar"
- ]
- }
- },
- {
- "nm": "moule",
- "id": "2135f678da985369f4a28a2775ea40afc7003889488288eeff000e37260666a8",
- "kws": {
- "fr": [
- "moule"
- ]
- }
- },
- {
- "nm": "bouée",
- "id": "49e86b618b2c0315eac242a7343ca95f4ac95e2871189e400258c518d0bffeb3",
- "kws": {
- "fr": [
- "bouée",
- "frite de piscine",
- "frite"
- ]
- }
- },
- {
- "nm": "décorer",
- "id": "0354d8e2b9e5d6616c1eb1002601f96b9f79610a95ddb89c031db863d2d274e1",
- "kws": {
- "fr": [
- "décorer",
- "orner"
- ]
- }
- },
- {
- "nm": "usure",
- "id": "82d13095876f91cf9add38be4cf7a17118c5266a4ebb760d74b3d2bf3ad22f2c",
- "kws": {
- "fr": [
- "usure",
- "usé",
- "vieux"
- ]
- }
- },
- {
- "nm": "flotter",
- "id": "860669573c3b509b332cd089a0a41c3f4bb2329cc162c63e8f1cbcf96e99fcaa",
- "kws": {
- "fr": [
- "flotter"
- ]
- }
- },
- {
- "nm": "une",
- "id": "11b382e1fe022f02dc4d802e1094353fcb3c5d1acfb03368393b5d21226cd452",
- "kws": {
- "fr": [
- "une",
- "un"
- ]
- }
- },
- {
- "nm": "auberge",
- "id": "f99169a6e753fdcfc632cd55b4d197f11262d952a98ca4075e11d2dbbf261a41",
- "kws": {
- "fr": [
- "auberge"
- ]
- }
- },
- {
- "nm": "papillon",
- "id": "ba4e153f02e676d137a724932e4b06c65bed2e85e3ab8a2dfc1f835b3acbb48f",
- "kws": {
- "fr": [
- "papillon"
- ]
- }
- },
- {
- "nm": "enlever",
- "id": "a0b56943418d18393f1c396d568ee2d64c6d8cb9ecfe64720583c7773c804bb2",
- "kws": {
- "fr": [
- "enlever",
- "extraire",
- "retirer"
- ]
- }
- },
- {
- "nm": "ovni (objet volant non identifié)",
- "id": "c7dfd3a9b456fb5426882481c4ee32f015889cdad99f9501806003b640ebba16",
- "kws": {
- "fr": [
- "ovni (objet volant non identifié)",
- "ovni",
- "vaisseau spatial"
- ]
- }
- },
- {
- "nm": "taper",
- "id": "84cdbbf1c4379ec1cb484ea84943fb49cee697839cfb37a14b945f1d649af9e1",
- "kws": {
- "fr": [
- "taper",
- "écrire"
- ]
- }
- },
- {
- "nm": "venezuela",
- "id": "3eaf7650595429e1f1fe75e8ee6528bb073cbf20402cfc47f517c13ce1a133dd",
- "kws": {
- "fr": [
- "venezuela"
- ]
- }
- },
- {
- "nm": "écouter de la musique",
- "id": "fc4cb691aff517cd8f8d311ec96a57883c6f4cc025ff92afcea63b952f49867b",
- "kws": {
- "fr": [
- "écouter de la musique"
- ]
- }
- },
- {
- "nm": "poste",
- "id": "9f278f8d076bc2755d5c57081af12f243fb38fd83f53094a8de979a927590e46",
- "kws": {
- "fr": [
- "poste",
- "secrétaire"
- ]
- }
- },
- {
- "nm": "tablet pc",
- "id": "839490ec8210342c9cf8dff1d7ed8c545e82243be1972251b7b3e3f74650739d",
- "kws": {
- "fr": [
- "tablet pc",
- "tablet"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "0cdfd667346291c1e606e13c063c24588b0c7fc90ca0b5a1be56b591bc936196",
- "kws": {
- "fr": [
- "praxie",
- "sourire",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "j",
- "id": "a863d4d5f51ea23283b89e374673ce5dde74d0533f57c9344f47fe53575bed3e",
- "kws": {
- "fr": [
- "j",
- "ji",
- "lettre"
- ]
- }
- },
- {
- "nm": "noter",
- "id": "e0df295731c9ed446adf601fd68fca4daa586406f4176e0b5bda37e8562f25be",
- "kws": {
- "fr": [
- "noter"
- ]
- }
- },
- {
- "nm": "parce que",
- "id": "0957adf4a2839aa0760ce05e252507bf8d60628f872b323e313a52e368223d1c",
- "kws": {
- "fr": [
- "parce que"
- ]
- }
- },
- {
- "nm": "pessimisme",
- "id": "a3a342af638767b4bc1285004687a178ae138fc9105820eaaaa08f3f6e5ec99d",
- "kws": {
- "fr": [
- "pessimisme"
- ]
- }
- },
- {
- "nm": "piquer avec un poinçon",
- "id": "e86ea959b3cdddd56d3460f679c860b3d0d735480d2660429f402521ccc986d2",
- "kws": {
- "fr": [
- "piquer avec un poinçon",
- "piquer"
- ]
- }
- },
- {
- "nm": "bosquet",
- "id": "ffc838f316dbb28dd38f433a5c1091d743de671b3170135a9a9d2fe8a208170e",
- "kws": {
- "fr": [
- "bosquet",
- "forêt"
- ]
- }
- },
- {
- "nm": "courgette",
- "id": "f790dad469e4e0d21a85bdc4e43f9f2aa3b307e046bbf76ad667adf69583b81b",
- "kws": {
- "fr": [
- "courgette"
- ]
- }
- },
- {
- "nm": "pièce",
- "id": "670c1cddf3fcdeeb227aeba8456d2509f7541ba82128fda8437e8b4fef5cd7fc",
- "kws": {
- "fr": [
- "pièce",
- "quatrième position"
- ]
- }
- },
- {
- "nm": "renvoyer",
- "id": "1bb22275800e0e7b34efd6e8e44ce4c63e1b15dba2a2eba5d786d53d576230a1",
- "kws": {
- "fr": [
- "renvoyer"
- ]
- }
- },
- {
- "nm": "faire clic",
- "id": "689e4cbecf5f0fd9d7b8c9fd37676bfc58d65a8a57fce9b2cd8a1e9051e23880",
- "kws": {
- "fr": [
- "faire clic",
- "clic de souris",
- "clic",
- "cliquer"
- ]
- }
- },
- {
- "nm": "tee-shirt à manches longes",
- "id": "c30c6c78bd1afdfcd2f21d67f9a0101f15561d52c3df17bbb458494eeaf1954d",
- "kws": {
- "fr": [
- "tee-shirt à manches longes",
- "tee-shirt"
- ]
- }
- },
- {
- "nm": "plaire",
- "id": "2e200cf341ed44620ee55a2de35ba8d184417c1a9810605b991a1953e7e75d66",
- "kws": {
- "fr": [
- "plaire",
- "adorer"
- ]
- }
- },
- {
- "nm": "déodorant",
- "id": "4b600c5c26c5cb11cb28f51d9b901784ba776862e56cc7c95073eeadb0813893",
- "kws": {
- "fr": [
- "déodorant"
- ]
- }
- },
- {
- "nm": "kaki",
- "id": "9d10e828e11db773327581dda4b646a76f01e83ed5167541dedf37fac7447ce5",
- "kws": {
- "fr": [
- "kaki"
- ]
- }
- },
- {
- "nm": "terrain de football",
- "id": "50bb4a41b4867839ec52ef1707da6e116e186acea0c19010709d59e078f80539",
- "kws": {
- "fr": [
- "terrain de football"
- ]
- }
- },
- {
- "nm": "bactérie",
- "id": "a4231e5334677bb2b811ad20f4175daa4ae43ccaade489475c3eba088511b840",
- "kws": {
- "fr": [
- "bactérie"
- ]
- }
- },
- {
- "nm": "attendre",
- "id": "652dca6f0d1d43bcfe2d0fcccb9d436c007ea6f6798032b8dee2ff30d37521ff",
- "kws": {
- "fr": [
- "attendre"
- ]
- }
- },
- {
- "nm": "maison de campagne",
- "id": "300d65cdc4cb790de38d46b896b0c3590f50c040c29d4bc35636a9b9edeb9d2f",
- "kws": {
- "fr": [
- "maison de campagne"
- ]
- }
- },
- {
- "nm": "nettoyer les lunettes",
- "id": "0bd0d8a10ef527184d91f69dbb89a4697fa86be037462827304905aa6e520e94",
- "kws": {
- "fr": [
- "nettoyer les lunettes"
- ]
- }
- },
- {
- "nm": "cornet",
- "id": "49276c28a34e0275dd85425f9c7b8807b8db4fc22df73944d26ce207232f4ba9",
- "kws": {
- "fr": [
- "cornet"
- ]
- }
- },
- {
- "nm": "compresse",
- "id": "35ad2f5c24831aeea7dc5a2965fcfcf6c4d0d6351612030663ce31243d03ca82",
- "kws": {
- "fr": [
- "compresse",
- "règle",
- "menstruation"
- ]
- }
- },
- {
- "nm": "seul",
- "id": "1726752cb549965ee0e48e5502739034ea0407590f846e9cee4c725e627af857",
- "kws": {
- "fr": [
- "seul",
- "solitaire"
- ]
- }
- },
- {
- "nm": "réglisse",
- "id": "45307412ac5cac79f9873bf0d0d6a54f034f56f046fef2b411f9d159e594edb1",
- "kws": {
- "fr": [
- "réglisse"
- ]
- }
- },
- {
- "nm": "casque viking",
- "id": "664aead7da17e2687fc537ac72c176e1c4cbc2845af0de5a03303bb2c2c4228d",
- "kws": {
- "fr": [
- "casque viking"
- ]
- }
- },
- {
- "nm": "centre commercial",
- "id": "bacfebfe348ddeea70a7c029e83f3ebb2417f00ecb41b945455376803a7a5e77",
- "kws": {
- "fr": [
- "centre commercial"
- ]
- }
- },
- {
- "nm": "couronne",
- "id": "8a4e1095cfd002e31a05a222a8137534299be01d8e8c8b755de6302b3ec46263",
- "kws": {
- "fr": [
- "couronne",
- "gâteau traditionnel"
- ]
- }
- },
- {
- "nm": "petite table",
- "id": "0846481c52fb5d433d3929efc1be0564b0f7a4113367b8927d8772553771fb8f",
- "kws": {
- "fr": [
- "petite table"
- ]
- }
- },
- {
- "nm": "sécurité",
- "id": "e6a51eb6346ca31e67f27b701cebf79586d4e54ad961b1c0557624365d3bf319",
- "kws": {
- "fr": [
- "sécurité",
- "protection"
- ]
- }
- },
- {
- "nm": "phénomènes atmosphériques",
- "id": "8daa650652090505a6af734f7945bb54d8a13bfc8816468c6b36c271aa43169f",
- "kws": {
- "fr": [
- "phénomènes atmosphériques"
- ]
- }
- },
- {
- "nm": "sparadrap",
- "id": "720ce376ee76fe18c16942a0d3c41634b842068a2cc11dfbb74369240d41c6cd",
- "kws": {
- "fr": [
- "sparadrap"
- ]
- }
- },
- {
- "nm": "jeu des petits chevaux",
- "id": "64ea9708ebf7769bee6ac03673b8cf0a782a3fbde6c603c56d0d266fd556c472",
- "kws": {
- "fr": [
- "jeu des petits chevaux"
- ]
- }
- },
- {
- "nm": "rebondir",
- "id": "75e35013f4b20b579e5874a0e24598761d49645ce5c355680bc8d6c5252a0814",
- "kws": {
- "fr": [
- "rebondir"
- ]
- }
- },
- {
- "nm": "voie cyclable",
- "id": "863c21a159119e3864d9f395439aa2525a5d1e0825f0bdff75ae4efa6cb36f15",
- "kws": {
- "fr": [
- "voie cyclable"
- ]
- }
- },
- {
- "nm": "théâtre romain de mérida",
- "id": "d8deeba9594a81a61dd2ffc8f7e49a6a0c512316d14c9baad3edc3fa1dcc71de",
- "kws": {
- "fr": [
- "théâtre romain de mérida",
- "théâtre romain",
- "théâtre",
- "mérida"
- ]
- }
- },
- {
- "nm": "menuiserie",
- "id": "8d85ce81ab4d4f052d1717676bea17bc1983a09faf7a17e0b152f1af5b0dad66",
- "kws": {
- "fr": [
- "menuiserie"
- ]
- }
- },
- {
- "nm": "secouriste",
- "id": "387c261384a2e4fa468e1dc4e996cadbc259e445c377848b4f95e6f46f1b5b73",
- "kws": {
- "fr": [
- "secouriste"
- ]
- }
- },
- {
- "nm": "faire tourner la tête",
- "id": "e9f4c1f800c610e84e46af759a5f074b0737de15e08248b22a9f47e0246bd0be",
- "kws": {
- "fr": [
- "faire tourner la tête",
- "avoir la tête qui tourne",
- "mal au cœur"
- ]
- }
- },
- {
- "nm": "chariot d\u0027enfant",
- "id": "e2b529744336dd815ebe50b277e56d31902600a27c773dbf2004c34a98fccfe5",
- "kws": {
- "fr": [
- "chariot d\u0027enfant",
- "bon marcheur"
- ]
- }
- },
- {
- "nm": "monte-charge",
- "id": "53058eaa88fa00ff794cb40057d786d9eb54cb16d71e2e9bef73e5d9ab9b5446",
- "kws": {
- "fr": [
- "monte-charge",
- "ascenseur"
- ]
- }
- },
- {
- "nm": "raconter",
- "id": "ac0f50246d142239bfdb09c085a1ee5b509743fd53006a420c7b8debb50d5a8c",
- "kws": {
- "fr": [
- "raconter"
- ]
- }
- },
- {
- "nm": "puits",
- "id": "9a8c0b14bf4e726bcb33617fc42d0e4662b4eaa86d6603aae4fd3058488d45f7",
- "kws": {
- "fr": [
- "puits"
- ]
- }
- },
- {
- "nm": "continuer",
- "id": "b7bb29e1baf657117874036bd312681ae5b6a3fe197b6290a13a579512e60ab6",
- "kws": {
- "fr": [
- "continuer"
- ]
- }
- },
- {
- "nm": "saint jean",
- "id": "20434ac4fd7097fe245a40d088f43088c66ef8124ce4c01a6f30d0e16292e3cc",
- "kws": {
- "fr": [
- "saint jean"
- ]
- }
- },
- {
- "nm": "s\u0027asseoir sur les toilettes",
- "id": "0045d90c64902b0b7cca02318f8db21a39f692dad31d8e4d3bc5dd37a79a5df3",
- "kws": {
- "fr": [
- "s\u0027asseoir sur les toilettes",
- "s\u0027asseoir"
- ]
- }
- },
- {
- "nm": "singe",
- "id": "73f2fffa7e1db9480a18b2e769cbcc502f1c77132ec26371d6d06ac1a537422e",
- "kws": {
- "fr": [
- "singe"
- ]
- }
- },
- {
- "nm": "environnement",
- "id": "dd15f0f5f304d40c79c27dba6a3d19b99f93491580d884bfc7839768f419c509",
- "kws": {
- "fr": [
- "environnement"
- ]
- }
- },
- {
- "nm": "est",
- "id": "4636f32eebcb8956b60e07b7912013832f4a22abc01e5b0c2f3741f6eebe25e6",
- "kws": {
- "fr": [
- "est"
- ]
- }
- },
- {
- "nm": "escalader",
- "id": "bfbc39941c335766f87c5c1ea2e2e491c55bcb88ef42a178add0ccf53fea7684",
- "kws": {
- "fr": [
- "escalader",
- "grimpeur"
- ]
- }
- },
- {
- "nm": "el hierro",
- "id": "2a75382cc0afe065ce48c2288dc0d233ba8fa39b94cc178de5250ccb04ce6757",
- "kws": {
- "fr": [
- "el hierro"
- ]
- }
- },
- {
- "nm": "banque",
- "id": "9eac05bd8fe840d7dcf90c761a9adc89a2750f7e7d5882e3e89612629427454c",
- "kws": {
- "fr": [
- "banque"
- ]
- }
- },
- {
- "nm": "pièces",
- "id": "7529c55bad6cd27747ebdab469d371421c5888e922786e3bc4ae669904480e45",
- "kws": {
- "fr": [
- "pièces",
- "jetons de poker"
- ]
- }
- },
- {
- "nm": "lierre",
- "id": "4b8e53061d7101f08da3a42d8f40a53a13fae11d1a66b72a5b7e3ff006f5978e",
- "kws": {
- "fr": [
- "lierre"
- ]
- }
- },
- {
- "nm": "europe",
- "id": "223d29f5bf210f9d29f427d479967dda4c5f2a4074c06ff6f61d49ed9cfc6616",
- "kws": {
- "fr": [
- "europe",
- "continent"
- ]
- }
- },
- {
- "nm": "la rioja",
- "id": "ed80f1f0ed0de199aef76d8aaecd1d1fcbcf7d1c5437210eefac572631b01ec3",
- "kws": {
- "fr": [
- "la rioja"
- ]
- }
- },
- {
- "nm": "majorque",
- "id": "faa475202b00bd0be0502b1aba39797fba76596e39abf13b5c45540036ec7bcf",
- "kws": {
- "fr": [
- "majorque"
- ]
- }
- },
- {
- "nm": "sourd-muet",
- "id": "c5572c95942dc680e285693cd029ccb291386323c6c1853c1b22f43447a47b38",
- "kws": {
- "fr": [
- "sourd-muet"
- ]
- }
- },
- {
- "nm": "discrimination",
- "id": "d16aca512ffada899dd3cb81b8e7350247882ea36a01965b974392c38faa2489",
- "kws": {
- "fr": [
- "discrimination"
- ]
- }
- },
- {
- "nm": "jugement",
- "id": "d4ee58c45001bd50e49d61594d756a3116ac80d3b177c93c56e092d82b604045",
- "kws": {
- "fr": [
- "jugement",
- "juger"
- ]
- }
- },
- {
- "nm": "affiches",
- "id": "bbfaa410664d5ca53408d552cde054296aed50254cff5bcf3070f481839f2dfa",
- "kws": {
- "fr": [
- "affiches",
- "annonces"
- ]
- }
- },
- {
- "nm": "argent",
- "id": "6ea347eef7e1308ec7f67b37ef61f2da5bd29cdfdcc1ac725b704c9907eb4553",
- "kws": {
- "fr": [
- "argent"
- ]
- }
- },
- {
- "nm": "mettre",
- "id": "af9937da6ccb38e98749f3d2f5bc21af88639df79e55a0745ec5ed02fc8c1f26",
- "kws": {
- "fr": [
- "mettre"
- ]
- }
- },
- {
- "nm": "terrorisme",
- "id": "5391d530263babcb3a8b592692eacb3e0ea77ad10fe68ad49a021e3a694c0c4c",
- "kws": {
- "fr": [
- "terrorisme"
- ]
- }
- },
- {
- "nm": "carte",
- "id": "8add93410276b620ffc8c02af4d99c4df1f53cd323dc5f2c584a82463f1f4369",
- "kws": {
- "fr": [
- "carte"
- ]
- }
- },
- {
- "nm": "otan",
- "id": "245a53ec6f6e0d161c0f83bba12fc1f17272f2709b0ef1bc4556288dcd9bafab",
- "kws": {
- "fr": [
- "otan"
- ]
- }
- },
- {
- "nm": "fouiller",
- "id": "508fe72844d1b148a3a7d6e68b44ec5a5ee43aaa65daf3ded7e9829a711e15bb",
- "kws": {
- "fr": [
- "fouiller"
- ]
- }
- },
- {
- "nm": "moniteur",
- "id": "cb3f957025823285a99671f605e10ebf34a5d2979869a39b92929536463b4679",
- "kws": {
- "fr": [
- "moniteur",
- "soigneur"
- ]
- }
- },
- {
- "nm": "montre",
- "id": "0cb16ccf0b51403c08eae6f7a0f9d167b17602e4fde8bd71989daa0ae3ab9f6a",
- "kws": {
- "fr": [
- "montre"
- ]
- }
- },
- {
- "nm": "marionnette",
- "id": "ecfd1f3936dbbedb886bafcc12edce9bbdbf6bc240ab0f35d67601b8bcedc362",
- "kws": {
- "fr": [
- "marionnette"
- ]
- }
- },
- {
- "nm": "hurler",
- "id": "e6d3acd4a2f68bc1510a0d9d835a15ab82daea68b57637f92363fdfc03c623eb",
- "kws": {
- "fr": [
- "hurler"
- ]
- }
- },
- {
- "nm": "bar",
- "id": "995fbf3341e7782305a7ef16980fc30cdaa22fcc7b507816c5fcd8ff2709cb6a",
- "kws": {
- "fr": [
- "bar"
- ]
- }
- },
- {
- "nm": "remuer",
- "id": "dbf20fb2729e9f6e914c86ae682f89f87d6e9711999a99e487da65d3158d9e3b",
- "kws": {
- "fr": [
- "remuer",
- "agiter"
- ]
- }
- },
- {
- "nm": "concert",
- "id": "5ef84657bef1b587c9de6a34f1b8135d156d38807f928fa6dee72b2dd85fb0f7",
- "kws": {
- "fr": [
- "concert"
- ]
- }
- },
- {
- "nm": "serpillière",
- "id": "5351ee35e91b7834b3c9288421ae7abfd05dc6dd07365232fadee375aa2995fa",
- "kws": {
- "fr": [
- "serpillière"
- ]
- }
- },
- {
- "nm": "piscine couverte",
- "id": "61a7a1abbc67585ea5cbb88d0be52e3c32498f3eba9042c54a724152a46d857e",
- "kws": {
- "fr": [
- "piscine couverte",
- "piscine"
- ]
- }
- },
- {
- "nm": "génie",
- "id": "b11ed76900049d1a2fc7df9151d87ca33d5c352a08213363d13ec3a59ffee17c",
- "kws": {
- "fr": [
- "génie"
- ]
- }
- },
- {
- "nm": "montre réveil",
- "id": "e78033e184c614925f4f939b18716c314bc8405575ba7b294c63ae6798f92b32",
- "kws": {
- "fr": [
- "montre réveil",
- "montre",
- "réveil"
- ]
- }
- },
- {
- "nm": "cabochard robaculeros",
- "id": "7a607d369f5c8aa3128d06c9d3ddf844c70b25d7c29b94299460e3a0db485ad0",
- "kws": {
- "fr": [
- "cabochard robaculeros",
- "cabochard"
- ]
- }
- },
- {
- "nm": "ronfler",
- "id": "9c2197c1e524d8d1fe79e130da0fcfbb91153a28aca11ab0eeb1ee3bdca0bf5c",
- "kws": {
- "fr": [
- "ronfler"
- ]
- }
- },
- {
- "nm": "tetârd",
- "id": "9e7c47f412e877bedcd2faab628f8b014b656bd478f32958c7f426e8eb6198be",
- "kws": {
- "fr": [
- "tetârd"
- ]
- }
- },
- {
- "nm": "peindre",
- "id": "c0a1bb454edcbbf65d6adf592cb07d3c94527f574bba4ae01552705914feed80",
- "kws": {
- "fr": [
- "peindre"
- ]
- }
- },
- {
- "nm": "disque dur externe",
- "id": "498208e3212614b33f0e0cceecc86c8959af735742e42de20726a7e0d5798aca",
- "kws": {
- "fr": [
- "disque dur externe",
- "disque dur",
- "disque"
- ]
- }
- },
- {
- "nm": "envelopper",
- "id": "c50243bb16c602fb97c07b2c9ccb578abefb53c6d39576eaa164370daf98ef80",
- "kws": {
- "fr": [
- "envelopper",
- "couvrir"
- ]
- }
- },
- {
- "nm": "guitariste",
- "id": "e2829937441f858426150f6f7169322df6b56a95fdbf808c7093502609a32d6f",
- "kws": {
- "fr": [
- "guitariste"
- ]
- }
- },
- {
- "nm": "pantalon",
- "id": "4bd05e6b0c1f6d4547b4aa5cd86f3f87ce1566784ad0577552f9f015cd1f00e8",
- "kws": {
- "fr": [
- "pantalon",
- "vêtement"
- ]
- }
- },
- {
- "nm": "emploi",
- "id": "8079d1f419c595ce4e510cf596363f496ab3f52f7b5809609abdab6d7e10f805",
- "kws": {
- "fr": [
- "emploi",
- "travailleurs",
- "travailleur",
- "poste",
- "professionnels",
- "professionnel",
- "profession",
- "métier"
- ]
- }
- },
- {
- "nm": "commander",
- "id": "6a2104e4a081de0aa26f8a7d06c0df89361b4518447a7ae19bcf0a056ec8271a",
- "kws": {
- "fr": [
- "commander"
- ]
- }
- },
- {
- "nm": "slovaquie",
- "id": "8e820a579d7f70f527cabf74151abfb32e7df1e9f629962c86e40309f3154989",
- "kws": {
- "fr": [
- "slovaquie"
- ]
- }
- },
- {
- "nm": "étrangère",
- "id": "ce7d5fc0190fb2bf5ca7027e254a678566a4fe6a30b7ebb0ce40ddb831a9f8ca",
- "kws": {
- "fr": [
- "étrangère",
- "sud-américaine",
- "latino-américaine"
- ]
- }
- },
- {
- "nm": "se couvrir",
- "id": "66fe4a97446ed6c79f1e69f7531bce0ca185845ece9fd9b7331280b72d08d28a",
- "kws": {
- "fr": [
- "se couvrir",
- "formation"
- ]
- }
- },
- {
- "nm": "joueur de basket-ball",
- "id": "13cc456f2a2c49f2fe653fe6affaff4683eb43449f08d387d43a492092460ff1",
- "kws": {
- "fr": [
- "joueur de basket-ball",
- "joueur"
- ]
- }
- },
- {
- "nm": "recycler",
- "id": "0066d9497836316511f2ab346b500dd1e8bd8e2bacd6db8e8df95ce610cc79d7",
- "kws": {
- "fr": [
- "recycler"
- ]
- }
- },
- {
- "nm": "faussoir",
- "id": "349d0a24135e3bca776d052b812c38134a75f2237647920996aaab4f9415144f",
- "kws": {
- "fr": [
- "faussoir"
- ]
- }
- },
- {
- "nm": "housse",
- "id": "90b4c94797af54a11729372d2dd2b30d8c5ec4e95ad9683cbdf954fc098cd241",
- "kws": {
- "fr": [
- "housse"
- ]
- }
- },
- {
- "nm": "balai de wc",
- "id": "a7a11f8cfcf1f29789030966d4e3e2295bbd1207aa0aadbc38c6d758fbf05e01",
- "kws": {
- "fr": [
- "balai de wc"
- ]
- }
- },
- {
- "nm": "plantes",
- "id": "503a1470a994cab08e181e4eb325c1bc683475d848d6e31020e51603b85618b3",
- "kws": {
- "fr": [
- "plantes"
- ]
- }
- },
- {
- "nm": "déchausser",
- "id": "de222caa6e00fc34d1d1a3b8406e8022de5bcd7f02d94e0e1e30f2441e85eaf6",
- "kws": {
- "fr": [
- "déchausser"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "428e7a90b01224e7482373ef994ff0725ff846aa499fec45ceda8362ada54436",
- "kws": {
- "fr": [
- "communauté autonome",
- "murcie"
- ]
- }
- },
- {
- "nm": "corps géométriques",
- "id": "65836333f4b151cb29262afcb5b65e52bd17f4856d7c74ff7deee56fcd35d8b3",
- "kws": {
- "fr": [
- "corps géométriques",
- "corps",
- "figures"
- ]
- }
- },
- {
- "nm": "raconter",
- "id": "ea33bb4d950c8e280b080f3459e147afdba1b0a3c0301486f7444584b8a567ae",
- "kws": {
- "fr": [
- "raconter"
- ]
- }
- },
- {
- "nm": "se déshabiller",
- "id": "956c7e9160f49129a870374bf4ac87904bec253bb3644553fa117e8080d97b68",
- "kws": {
- "fr": [
- "se déshabiller",
- "baisser sa jupe",
- "baisser"
- ]
- }
- },
- {
- "nm": "vers luisants",
- "id": "db95ed6f2b22accd2e87a3337ce2b16f203f1b8df7adb34f52e7da39e758e0d3",
- "kws": {
- "fr": [
- "vers luisants"
- ]
- }
- },
- {
- "nm": "cinq",
- "id": "3b0a444781bc11744a60f8499b9edd9d512bf704d7b42f56abb52e6c304dde59",
- "kws": {
- "fr": [
- "cinq",
- "impair",
- "numéro"
- ]
- }
- },
- {
- "nm": "malade mental",
- "id": "31433084d16ffcd20535e3b42e724a160156e96d8dd340ce7a2ccd9a69443dd2",
- "kws": {
- "fr": [
- "malade mental"
- ]
- }
- },
- {
- "nm": "étrangère",
- "id": "07d483fa95bd5c561405d6c370d96261fd4543ffe608767323eac7645cf1dc2b",
- "kws": {
- "fr": [
- "étrangère",
- "arabe"
- ]
- }
- },
- {
- "nm": "bercer",
- "id": "6198f1ba2e93e6e725806fa59c3472363ba54a0048e423e5c2a430b8b66febb2",
- "kws": {
- "fr": [
- "bercer"
- ]
- }
- },
- {
- "nm": "mou",
- "id": "1c4c1a239c4aa5820732c0bf4c368e823a4dfccd8c9c6bb3f59f7fd772e66ccb",
- "kws": {
- "fr": [
- "mou"
- ]
- }
- },
- {
- "nm": "points cardinaux",
- "id": "678e202cf903797e4f6792102afe7401db1973066778ee62d2856c2c179f9b9b",
- "kws": {
- "fr": [
- "points cardinaux"
- ]
- }
- },
- {
- "nm": "ebre",
- "id": "7e4c3790fe85bc0b8e7b5d713868bac68ffca1a4926cebbd4fa913f8b342d9a3",
- "kws": {
- "fr": [
- "ebre",
- "fleuve"
- ]
- }
- },
- {
- "nm": "inclure",
- "id": "8eb7fbbcb0bf2a248480c0803ae269030abd058025396757148ac72b57f438a1",
- "kws": {
- "fr": [
- "inclure",
- "intégrer"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "87279bc5775bf5c81875a23e673033d7173d78d92f2905ba381d387fff2126af",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains aux épaules",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "hausser",
- "id": "585a734b1bca16ea247f8d06c12315d446c0886d5160db29678d2c071226fd79",
- "kws": {
- "fr": [
- "hausser"
- ]
- }
- },
- {
- "nm": "banane",
- "id": "d6a1a654d33a0f17a595694258f1717fb9b9c11beb484ea69f534dcbcb967877",
- "kws": {
- "fr": [
- "banane",
- "bananier",
- "bananière"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "f34445b0de06c9b8cbecf47a4eda31da873736b40460de1fe8c5b5c1baedcf57",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains aux épaules",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "instrument musical",
- "id": "d240d6ad293f4bff143c0e9bb93cea11462b3b0fb35ab564470d3ad2949486d0",
- "kws": {
- "fr": [
- "instrument musical",
- "bongos"
- ]
- }
- },
- {
- "nm": "jeter",
- "id": "aeccbf1667ffc3d76309cc97c7f3295c8e149b97e1d6d7e7b4d1b6638dbbb71f",
- "kws": {
- "fr": [
- "jeter"
- ]
- }
- },
- {
- "nm": "champignon",
- "id": "36341d65e05f4b98902e94a213826d3a4ec25d9fb49ebcd4c2217da8bfe6721d",
- "kws": {
- "fr": [
- "champignon"
- ]
- }
- },
- {
- "nm": "se lever tôt",
- "id": "6359ae0a8814423b91ac6b23bc4a26d2d050520f3749b8e625329bbbb9cad473",
- "kws": {
- "fr": [
- "se lever tôt"
- ]
- }
- },
- {
- "nm": "alava",
- "id": "45c4814d32ebf741c02177407bea2eb9cb6d24cec4c4d7d568333e9b863b258e",
- "kws": {
- "fr": [
- "alava"
- ]
- }
- },
- {
- "nm": "sortie d\u0027urgence",
- "id": "c7b11777d4058e373ee3f812d5f82a0b1ef0065ffdef706b60b6c3dffabac8fb",
- "kws": {
- "fr": [
- "sortie d\u0027urgence"
- ]
- }
- },
- {
- "nm": "souligner",
- "id": "c64b5f9d7f0c83c43605406ba275609077d43df7f1d2ab28fa7901468706add0",
- "kws": {
- "fr": [
- "souligner"
- ]
- }
- },
- {
- "nm": "tampon",
- "id": "9a5bd5d26bb52f09b7a241174eb4e7b61a2e36c5781cb20f64d3f0296e6270ab",
- "kws": {
- "fr": [
- "tampon"
- ]
- }
- },
- {
- "nm": "toilettes pour dames",
- "id": "bb2af5dc0274045cf776718a05820928476be14dcc921190ac8a99a54ad9cea5",
- "kws": {
- "fr": [
- "toilettes pour dames",
- "toilettes",
- "water",
- "baignoire",
- "salle de bains"
- ]
- }
- },
- {
- "nm": "parfumeuses",
- "id": "534e3d0f1cf9b8151a1e2a8aeb97a3a829c7513afcb5063d0c2b92f66fe6336c",
- "kws": {
- "fr": [
- "parfumeuses",
- "vendeuse"
- ]
- }
- },
- {
- "nm": "placer",
- "id": "1ef8c05b538df675b3179a67370d630931035a94bbb2b1beebd86b16cbc175c6",
- "kws": {
- "fr": [
- "placer",
- "mettre"
- ]
- }
- },
- {
- "nm": "lâcher",
- "id": "a4f7ef6570534141253140cc7bdca30276168e3443b499b89fb7039b823c985b",
- "kws": {
- "fr": [
- "lâcher"
- ]
- }
- },
- {
- "nm": "dévisser",
- "id": "aa04a4a71b991526e076722ee293ed65d15fd9026bf41c4aca296a4e27a990a9",
- "kws": {
- "fr": [
- "dévisser"
- ]
- }
- },
- {
- "nm": "chemin",
- "id": "7a11955e0010f83ba9d287aa90ea9c9119a2705b05d86abb24fe31a751fb8f3c",
- "kws": {
- "fr": [
- "chemin"
- ]
- }
- },
- {
- "nm": "quincaillier",
- "id": "e02c6237a6759c32b20e6a1b42bcea88c88fc95216600b811eabdf4210524b68",
- "kws": {
- "fr": [
- "quincaillier"
- ]
- }
- },
- {
- "nm": "rein",
- "id": "4a0f528686eafdab62d1ecd775f339f57155284d466ce6d6d9bbee27a20213d6",
- "kws": {
- "fr": [
- "rein"
- ]
- }
- },
- {
- "nm": "incliner",
- "id": "da8ea74874896a1eb08edba75884d253e08ce1875a7e2cda5a17d6cecf029e31",
- "kws": {
- "fr": [
- "incliner"
- ]
- }
- },
- {
- "nm": "piano",
- "id": "8bb8ed1d6782fa56b0fe09c784c81f639530cc95daa4568d68f5bfd6c7563d35",
- "kws": {
- "fr": [
- "piano",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "ligne cassée",
- "id": "f9abebe0e55057a538c300bb1a7b6b3c3dbcac5d670cd7c3c8c3c80229c314fa",
- "kws": {
- "fr": [
- "ligne cassée"
- ]
- }
- },
- {
- "nm": "semoule",
- "id": "0ff9e950405e7c9ef4836b40f24e7b7f63eb2f91fe695eb6bafabc7505ea19ad",
- "kws": {
- "fr": [
- "semoule"
- ]
- }
- },
- {
- "nm": "nous",
- "id": "510f098b6f2032b22ec58dea6d0c552ceb9edc9cc6f06dd2746fefa2e5ac1920",
- "kws": {
- "fr": [
- "nous"
- ]
- }
- },
- {
- "nm": "podologue",
- "id": "d4c4e6a1670f898441aa88a7867d14533b7119702defdb3fbbbb6da59f752406",
- "kws": {
- "fr": [
- "podologue"
- ]
- }
- },
- {
- "nm": "gant pour four",
- "id": "8425c15e4a2b961633528ea1f2bbf71e39ab4be300c7d86c9ea32a61f47484fc",
- "kws": {
- "fr": [
- "gant pour four",
- "gant"
- ]
- }
- },
- {
- "nm": "clip",
- "id": "379907c084c8f0c73958e0582ea4a5b614b730dc234462ff74dee35584a41b66",
- "kws": {
- "fr": [
- "clip"
- ]
- }
- },
- {
- "nm": "manège",
- "id": "35f1e814bc4eb08875cf0b100465e0994dea4645d0009196de5d2ca31806643f",
- "kws": {
- "fr": [
- "manège"
- ]
- }
- },
- {
- "nm": "poste",
- "id": "2355b41aa3df20a5cfb7e651061f40ef706b3bd154cf44c893769bce826a338c",
- "kws": {
- "fr": [
- "poste",
- "secrétaire"
- ]
- }
- },
- {
- "nm": "coasser",
- "id": "6470448f864abec8b13f0356b11e29e5fb1e7be71d0c6d975dc11cdde48937ce",
- "kws": {
- "fr": [
- "coasser"
- ]
- }
- },
- {
- "nm": "chrétienne",
- "id": "0b8a0bdf2b2998909467051644f04925df1f3dd0118aa6dd07aa9f5ff7cae0f3",
- "kws": {
- "fr": [
- "chrétienne"
- ]
- }
- },
- {
- "nm": "salle à manger",
- "id": "e1f2be3ff6dfa54160c23cc527842703034ade5e40518eaf2f95c052f1398dba",
- "kws": {
- "fr": [
- "salle à manger"
- ]
- }
- },
- {
- "nm": "petit jésus",
- "id": "df7c0539846d3f39c6a35a3d322b2c7fc3180ca8fd7c491ae3c5f9b8dd5686b9",
- "kws": {
- "fr": [
- "petit jésus"
- ]
- }
- },
- {
- "nm": "cyclisme",
- "id": "66df89ec31f5c1137a545590dac88fb29ec33cb76e529a5854c8d67ba79c83a0",
- "kws": {
- "fr": [
- "cyclisme",
- "cycliste"
- ]
- }
- },
- {
- "nm": "comprendre",
- "id": "75894efb7511da51c7469019bd2b225edeb769b75aca884b250e35b15908d031",
- "kws": {
- "fr": [
- "comprendre",
- "compréhensible",
- "intelligible"
- ]
- }
- },
- {
- "nm": "sculpter",
- "id": "4ba30e05048e719b487daf69d8c2d0081032f758bad1ffa7a76ba2df377f13b6",
- "kws": {
- "fr": [
- "sculpter"
- ]
- }
- },
- {
- "nm": "napolitaine",
- "id": "9679744717cf0d712d936ad37d1641239ae4bda547860a5ef1750fe00f162359",
- "kws": {
- "fr": [
- "napolitaine"
- ]
- }
- },
- {
- "nm": "câble",
- "id": "fabef64d7b0d3bace6bd343525951753bc5d9c57b3a3c325ae997f33394003ed",
- "kws": {
- "fr": [
- "câble"
- ]
- }
- },
- {
- "nm": "scène",
- "id": "310403bc57e58cb4b1ae0a448a5eb110afae54f1a3f6e2b61e01ec4a15ce32f8",
- "kws": {
- "fr": [
- "scène"
- ]
- }
- },
- {
- "nm": "secouer",
- "id": "1eb465029fdf7d63268736f411073640d2bb79dcfb7c8a73894fea403b1a688f",
- "kws": {
- "fr": [
- "secouer"
- ]
- }
- },
- {
- "nm": "beaucoup",
- "id": "a715c27a914630d7b02b2d3a8036b66ecb58534b48d7857805517ae1f49c0f9f",
- "kws": {
- "fr": [
- "beaucoup"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "d2a9ec9b7c4480dd628a3f6b7f956bbda3850d812017cd42660ee48dbef770dd",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains derrière la tête",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "prêter attention",
- "id": "f7d98eef34e20041241963b77294814e9e0552867e426a4915678204fc3479ab",
- "kws": {
- "fr": [
- "prêter attention",
- "s\u0027occuper"
- ]
- }
- },
- {
- "nm": "peureuse",
- "id": "c67e1c829ad2cf73da8b160869c9e1e991caacb186d6025faca577f6796b1ff7",
- "kws": {
- "fr": [
- "peureuse",
- "hasardeuse"
- ]
- }
- },
- {
- "nm": "trouver la balle",
- "id": "9157c416cabf984b8931a1e7a769a585d17b3854dfdc327f256465e131af5de0",
- "kws": {
- "fr": [
- "trouver la balle"
- ]
- }
- },
- {
- "nm": "lettonie",
- "id": "476ad33b7d5e2a86c1713810e3e3a2b93aba7a808a2bb5cb0e59838a232d0bfb",
- "kws": {
- "fr": [
- "lettonie"
- ]
- }
- },
- {
- "nm": "dans quoi tu travailles",
- "id": "df2a104436c490f6ac96ef91bb7a57cebf59727dde29b80416e2279427b9293a",
- "kws": {
- "fr": [
- "dans quoi tu travailles",
- "quel est ton métier",
- "quel est ton travail"
- ]
- }
- },
- {
- "nm": "stylo",
- "id": "ac3652ee6360d1b6098ca6d04895dfd48b83679980b7ff1e21f35f7028b5449c",
- "kws": {
- "fr": [
- "stylo"
- ]
- }
- },
- {
- "nm": "tâche",
- "id": "1d502f9d2ba2e0f004d5acb7c8adb23e740a4c2b97cecd641d1708125eae6adc",
- "kws": {
- "fr": [
- "tâche"
- ]
- }
- },
- {
- "nm": "big ben",
- "id": "0e69b6adc618d2f7c4d26463abe4ebbdd7155d57b69562512cc8f315f4f035f1",
- "kws": {
- "fr": [
- "big ben"
- ]
- }
- },
- {
- "nm": "ergothérapeute",
- "id": "9afa8493c5e81f1387afd70c4e5956f27f12cc6b5d1cdd74005fd9ec4cb9f46b",
- "kws": {
- "fr": [
- "ergothérapeute"
- ]
- }
- },
- {
- "nm": "bébé",
- "id": "57aea4d71eb5f3d546a15eb1631b6835e0106f4951113c3c5387ca02a26f7e02",
- "kws": {
- "fr": [
- "bébé"
- ]
- }
- },
- {
- "nm": "langue de belle-mère",
- "id": "2d993cf7fe456a5b43bc2ecae901f95c9703e7963254364b4a38316a08cf3658",
- "kws": {
- "fr": [
- "langue de belle-mère"
- ]
- }
- },
- {
- "nm": "isoler",
- "id": "4be9d679472b3611aa01a736403e878279c3d7a192c79fc47d5ac95f16895956",
- "kws": {
- "fr": [
- "isoler"
- ]
- }
- },
- {
- "nm": "pinces",
- "id": "00562b6826f3d86abef6b1b141844d5781178ff5c17c246456ec30a9ac37b106",
- "kws": {
- "fr": [
- "pinces"
- ]
- }
- },
- {
- "nm": "sensibilisation",
- "id": "8f5bd2241567d8584b64ca51df7ccc67a69d0138f41dccdfb3da93b3ec35e4fb",
- "kws": {
- "fr": [
- "sensibilisation"
- ]
- }
- },
- {
- "nm": "feuille",
- "id": "d0afa0a406fd71e922939e7eab45fe023900e9325fa67b42c60705a0cdff83d1",
- "kws": {
- "fr": [
- "feuille"
- ]
- }
- },
- {
- "nm": "être à genoux",
- "id": "66d30a6d4832b38a845506481146ca5a3f19a2ac4c0ddac23aef33f0ef5f5c59",
- "kws": {
- "fr": [
- "être à genoux",
- "agenouiller",
- "s\u0027agenouiller"
- ]
- }
- },
- {
- "nm": "levure",
- "id": "2a957f25737ab18b843b3bb202055aa418c467f83fda9c10c39d9ba601bfa923",
- "kws": {
- "fr": [
- "levure"
- ]
- }
- },
- {
- "nm": "bolivie",
- "id": "d90ab902edced6ab6af331c0e17b77ef4bc3d029e07161e2eca0a01691df8dec",
- "kws": {
- "fr": [
- "bolivie"
- ]
- }
- },
- {
- "nm": "magasin de musique",
- "id": "b0cdbd90bcd6ec1558ce5383f441566bbcd38f68e44b415a23fca554d5a28b49",
- "kws": {
- "fr": [
- "magasin de musique"
- ]
- }
- },
- {
- "nm": "tableau d\u0027affichage",
- "id": "d9d33a283059e5aa0ae1002e81ab100841fdddc63a1014e774896356c21c005e",
- "kws": {
- "fr": [
- "tableau d\u0027affichage",
- "tableau en liège",
- "tableau"
- ]
- }
- },
- {
- "nm": "ce",
- "id": "aac772e17e55c4a02f630d2aa17fecd11395401021d833c7287e4fd19a93aea2",
- "kws": {
- "fr": [
- "ce",
- "se",
- "siens",
- "le",
- "le",
- "oui"
- ]
- }
- },
- {
- "nm": "couper des tranches",
- "id": "fe44138d27ed40f5389f7ba38bc67a4c3a2861ed7e2a60eedc5ab7dc8dbd49a2",
- "kws": {
- "fr": [
- "couper des tranches",
- "couper le pain",
- "couper"
- ]
- }
- },
- {
- "nm": "rapiécer",
- "id": "9168a5ce658521caf8f5431e382bd6d8c22b94bc4c609d5e9bc1e232bb87119c",
- "kws": {
- "fr": [
- "rapiécer"
- ]
- }
- },
- {
- "nm": "visiter",
- "id": "8588c6f0ed773014a1c2c42fc5b9bed422fb7b123dc93b0fc1a7dfff407b4597",
- "kws": {
- "fr": [
- "visiter",
- "visite"
- ]
- }
- },
- {
- "nm": "douleur",
- "id": "8fcf07d392d797826155bbdea5d1b114b988498bc5b0bef2a438ed27e445555f",
- "kws": {
- "fr": [
- "douleur",
- "faire mal",
- "souffrir",
- "forte douleur",
- "mal au cul",
- "mal aux fesses"
- ]
- }
- },
- {
- "nm": "foie",
- "id": "a2aeabf98cc849edf1218dc300aa99f755988f652a425650299362ea53879d34",
- "kws": {
- "fr": [
- "foie"
- ]
- }
- },
- {
- "nm": "mal de dent",
- "id": "2801ba115e9029fd7e49ac346789966868eb64f5ce723996f32543a053a33830",
- "kws": {
- "fr": [
- "mal de dent"
- ]
- }
- },
- {
- "nm": "clous",
- "id": "d551e21e0d1f013604654e643a0d81dd214aec5c28ebaa336ef08fccdbd0d325",
- "kws": {
- "fr": [
- "clous"
- ]
- }
- },
- {
- "nm": "dentifrice",
- "id": "36ce122248a7ccc2e4ea84edffe72a4288844af12d5c78e1fc4d526a84fd1f98",
- "kws": {
- "fr": [
- "dentifrice",
- "pâte dentifrice"
- ]
- }
- },
- {
- "nm": "associer",
- "id": "e118482799cb2d3536932c16a209e8490259693b1039ae4f9f2a1915d9574f73",
- "kws": {
- "fr": [
- "associer",
- "mettre en relation"
- ]
- }
- },
- {
- "nm": "doigts",
- "id": "9f255f39d703ce9cd0d44a11b60f3348a9a398025d01bd6ad409803c1952839f",
- "kws": {
- "fr": [
- "doigts"
- ]
- }
- },
- {
- "nm": "sauver",
- "id": "8b40f76e97511425e4af0b35690db60dec41d4bb1a84e5c6d84414053b60610b",
- "kws": {
- "fr": [
- "sauver",
- "secourir",
- "aider"
- ]
- }
- },
- {
- "nm": "café",
- "id": "0d00f3f1d16433d3cafedccab69b02d70bbd1b4f6c3446e7a357291b4fd85d0c",
- "kws": {
- "fr": [
- "café",
- "couleur café"
- ]
- }
- },
- {
- "nm": "banquier",
- "id": "6890261d20b59ddb71207092fd75f007cc3e0cc0606e9debfd72e9d54b2bc3ed",
- "kws": {
- "fr": [
- "banquier"
- ]
- }
- },
- {
- "nm": "pince à linge",
- "id": "45de73177fbc169ba1ed58bf8f7d754560b71fbfc45edda846e19aa501cfc930",
- "kws": {
- "fr": [
- "pince à linge",
- "pinces"
- ]
- }
- },
- {
- "nm": "x",
- "id": "0c7578466ec722c0fc03e06f6279d685f52e2d7fa1a957d36e39d645eae0857c",
- "kws": {
- "fr": [
- "x",
- "lettre"
- ]
- }
- },
- {
- "nm": "se déplacer",
- "id": "5630da382e326fd812d7284a5a05bb2dcfd386c1c38ceac40d356a586b153bc2",
- "kws": {
- "fr": [
- "se déplacer"
- ]
- }
- },
- {
- "nm": "opticien",
- "id": "a873a34238d119cbbad171b6a5a8a34d1c5c609c2348c0d4ccc8471d8e697ca2",
- "kws": {
- "fr": [
- "opticien"
- ]
- }
- },
- {
- "nm": "ouvrir la porte",
- "id": "9319c7c0edb5d86ac61d07ee2bff2b997d83a6d0fbb54f097f13d3adc00b93cc",
- "kws": {
- "fr": [
- "ouvrir la porte",
- "ouvrir",
- "tirer"
- ]
- }
- },
- {
- "nm": "téléphone portable",
- "id": "01e44bd68e782108447b42aad0a829dd08cc06b7d2d7a298f8f80a69a1b5c996",
- "kws": {
- "fr": [
- "téléphone portable",
- "portable"
- ]
- }
- },
- {
- "nm": "écran tactile",
- "id": "bda2085d1e85bf0faf969be89078acd214f58558956cc2b56895b8f3800aa603",
- "kws": {
- "fr": [
- "écran tactile"
- ]
- }
- },
- {
- "nm": "goûter",
- "id": "d3078963acfd3b140b9e1458ebcdf79d96a6a313fd21452e4177f7359c94a046",
- "kws": {
- "fr": [
- "goûter"
- ]
- }
- },
- {
- "nm": "libre",
- "id": "74dbd4062080520971512d93fbfa4f753814a99e4c579102a7ec9c9db73c4215",
- "kws": {
- "fr": [
- "libre",
- "libérer"
- ]
- }
- },
- {
- "nm": "étendre",
- "id": "280469358f55e991f539faab8250454f4052348ac4775735c4d9ddabdb3e84ea",
- "kws": {
- "fr": [
- "étendre"
- ]
- }
- },
- {
- "nm": "saccarine",
- "id": "01cc3f400f56206cc91f7440b9a146efbfaa87429af5e16587decef563e02638",
- "kws": {
- "fr": [
- "saccarine"
- ]
- }
- },
- {
- "nm": "tien",
- "id": "fb15ff801cdb04989d2a6723e38553ee667e1ad226fbf6b901853da045d27fe1",
- "kws": {
- "fr": [
- "tien",
- "tienne",
- "ton"
- ]
- }
- },
- {
- "nm": "faire des courses",
- "id": "de68cdf0b298c5fc26ca83083f02c2573da4c9df4b72d28888d5a008786d9481",
- "kws": {
- "fr": [
- "faire des courses",
- "faire les courses",
- "acheter"
- ]
- }
- },
- {
- "nm": "rideaux",
- "id": "2afc83106624779469d0864cf9bdfd3c869e8ef690117a92dad76f1ae206267e",
- "kws": {
- "fr": [
- "rideaux"
- ]
- }
- },
- {
- "nm": "pouding",
- "id": "f93c3c689fe6b4d4c9975d42eda188ce84fb15c7d1aa9f0ee0f25f2b1e9a1d9f",
- "kws": {
- "fr": [
- "pouding"
- ]
- }
- },
- {
- "nm": "chou-fleur",
- "id": "f5d5a310f85288a84c9a4fd5c20675988ba59681f36cd4d81e6ced28a05265de",
- "kws": {
- "fr": [
- "chou-fleur"
- ]
- }
- },
- {
- "nm": "tee-shirt",
- "id": "b5f51f99e7d03606f06b4aca53ea24f2d14f158c0dc4f4c3c2b3a564218b5f56",
- "kws": {
- "fr": [
- "tee-shirt",
- "vêtement"
- ]
- }
- },
- {
- "nm": "rapprocher",
- "id": "7fe0a401b20bf82de9a511d046de32816e75b595d90a20c989e37ec5ea867423",
- "kws": {
- "fr": [
- "rapprocher",
- "s\u0027approcher"
- ]
- }
- },
- {
- "nm": "étrangler",
- "id": "2f22dddabc7a9284c297f7f1082cca7ac007d1c5b5a5657bbe9acd171de164e7",
- "kws": {
- "fr": [
- "étrangler",
- "noyer"
- ]
- }
- },
- {
- "nm": "sérum",
- "id": "54cc76f31d990aa6212c4ef0b9079504c49c3cfcb295c683741a9022a9e38a62",
- "kws": {
- "fr": [
- "sérum"
- ]
- }
- },
- {
- "nm": "téléviseur",
- "id": "799dcbecce41caafa489c1003f0873045f160af5e9d69559bdbad2e4e3afe30f",
- "kws": {
- "fr": [
- "téléviseur",
- "télévision",
- "télé"
- ]
- }
- },
- {
- "nm": "attacher",
- "id": "6bd0ecdb9ef8947994057de35205312eff555a1893b43ad1ee83f35577ed51b9",
- "kws": {
- "fr": [
- "attacher",
- "nouer",
- "amarrer"
- ]
- }
- },
- {
- "nm": "falla",
- "id": "1f196137b7a85bcf06d54ff335c148c2d480e396285a6ecb34722f41af91deab",
- "kws": {
- "fr": [
- "falla"
- ]
- }
- },
- {
- "nm": "caïman",
- "id": "e009f5735b3bbca8602fcd66d7ca17b4660b3ea1587a7ec573bb78c2a2346d8b",
- "kws": {
- "fr": [
- "caïman"
- ]
- }
- },
- {
- "nm": "jour et nuit",
- "id": "a93995f6735956e006a58c8740de52e1dd14bc762537dd4ab72cf2a3c3d7b166",
- "kws": {
- "fr": [
- "jour et nuit"
- ]
- }
- },
- {
- "nm": "orge",
- "id": "244d1fa4e55dfdb483b778f0235b52f895f9d5ebe565f8db6a78645ca025ad22",
- "kws": {
- "fr": [
- "orge"
- ]
- }
- },
- {
- "nm": "cosmonautes",
- "id": "f00b94ccf67598ef2f4ecf83b7f623b31f46ea267009c5fecda726015363584e",
- "kws": {
- "fr": [
- "cosmonautes",
- "astronautes"
- ]
- }
- },
- {
- "nm": "fermer",
- "id": "5473b38561ad5043c75be3b036cfd0d2b4a36c46d9877ba9b1c64a1cd36883c2",
- "kws": {
- "fr": [
- "fermer"
- ]
- }
- },
- {
- "nm": "employé de pompes funèbres",
- "id": "1a020684041c47e612ebb4c184803449ab711ec43997f4ceb1356dde181c7ddf",
- "kws": {
- "fr": [
- "employé de pompes funèbres"
- ]
- }
- },
- {
- "nm": "ouvrir la porte",
- "id": "794e44a3c9c5fa5ebe3ae748f7b3ab8e87779d205442234ea3ff775e55db2d17",
- "kws": {
- "fr": [
- "ouvrir la porte",
- "ouvrir",
- "tirer"
- ]
- }
- },
- {
- "nm": "repasser",
- "id": "1a1f58463d6fd4f30151941e45135e238bc8ee27afd6289c7324be191cc88cfe",
- "kws": {
- "fr": [
- "repasser"
- ]
- }
- },
- {
- "nm": "érection",
- "id": "ac63763a51eb37328fa08e3f00831c35fc23d92c4308e7006cb7e05a2a25dd71",
- "kws": {
- "fr": [
- "érection"
- ]
- }
- },
- {
- "nm": "chaussées",
- "id": "8daa65ec351a97435e694083573183d155e0d2ecdbd8951d7e652d4bf8fbcc0f",
- "kws": {
- "fr": [
- "chaussées",
- "routes"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "212bd62de0fe14572067a5265cc34aedc36bdec8effc063c8c5a4de4b032a8e5",
- "kws": {
- "fr": [
- "communauté autonome",
- "andalousie"
- ]
- }
- },
- {
- "nm": "jeter",
- "id": "a149b2dbb9b8ff4f37a25866135b653a5d9988cb43b8adca0052a024784bf3bc",
- "kws": {
- "fr": [
- "jeter",
- "lancer"
- ]
- }
- },
- {
- "nm": "serviette de bain",
- "id": "faf0a61bd2f6bb1e3d5b548f678f4a05356bd830006ac6d1ed305fe8f529e379",
- "kws": {
- "fr": [
- "serviette de bain"
- ]
- }
- },
- {
- "nm": "dé à coudre",
- "id": "35dc94f004a5f713e6c67f3e897914bcb16f3bcce6e46819459767077dc6e7dd",
- "kws": {
- "fr": [
- "dé à coudre"
- ]
- }
- },
- {
- "nm": "banquier",
- "id": "814e465f3a2dae00ba1190b347bed937403797f5988c91f200e3c2632c66de5a",
- "kws": {
- "fr": [
- "banquier"
- ]
- }
- },
- {
- "nm": "verre",
- "id": "67dfdfc546a5c56333b899dedd077de92c7dca0fd4d0527a6ddaced919189b39",
- "kws": {
- "fr": [
- "verre"
- ]
- }
- },
- {
- "nm": "prescrire",
- "id": "4a78107f4cb335c58e05f92fe13c4df15551eaa91f6e231c95e771d59d23c573",
- "kws": {
- "fr": [
- "prescrire",
- "ordonner"
- ]
- }
- },
- {
- "nm": "plate-forme suspendue",
- "id": "251d031dd623b2d844d80b2a693fc8a871b9b760f7f614df62bb379d4e4d1abf",
- "kws": {
- "fr": [
- "plate-forme suspendue",
- "plateforme oscillante"
- ]
- }
- },
- {
- "nm": "ailes",
- "id": "78178387e2e18ea0424f324cc141268cc10f536a672a3302d1735a7360ea5ae7",
- "kws": {
- "fr": [
- "ailes"
- ]
- }
- },
- {
- "nm": "peindre",
- "id": "8be74ac672aef67d461a05cb91ffe49bf7f7d1bd530ff6482a1e8a796621c4cb",
- "kws": {
- "fr": [
- "peindre",
- "colorier"
- ]
- }
- },
- {
- "nm": "cubes empilables",
- "id": "bc1c00f757a01632264bc3ea1d01841c1b0946da0c3d5f0588680c150be22464",
- "kws": {
- "fr": [
- "cubes empilables"
- ]
- }
- },
- {
- "nm": "avoir l\u0027habitude",
- "id": "689d4433390d6afffd9e1d7168062864f138c78368eb26cb2a6b154f9d6f4468",
- "kws": {
- "fr": [
- "avoir l\u0027habitude",
- "joyeux anniversaire !",
- "joyeux anniversaire",
- "anniversaire"
- ]
- }
- },
- {
- "nm": "berger",
- "id": "9bf705afa86d9137b20b36f04063d53ebf8705f5fdf21a6d55c523a78bf1ac7c",
- "kws": {
- "fr": [
- "berger"
- ]
- }
- },
- {
- "nm": "qu\u0027as-tu dit",
- "id": "13f21c46099a3f0bea8cce1c5caec051a5bf3acea50a72211287dc130b4618f7",
- "kws": {
- "fr": [
- "qu\u0027as-tu dit",
- "que dis-tu"
- ]
- }
- },
- {
- "nm": "arc",
- "id": "61f3485b4baf910c7cdc28b1731993ce7c6594653ba6d5e4e328c6995ce1ee0b",
- "kws": {
- "fr": [
- "arc"
- ]
- }
- },
- {
- "nm": "gris",
- "id": "dc5f5b601c1a7661bfb4a1e0e82d659cb8b6da8634c24272af75631deb677b85",
- "kws": {
- "fr": [
- "gris"
- ]
- }
- },
- {
- "nm": "drap",
- "id": "2d4c9d729e79bc6041e9003066d5ce17b16277747558185d96f36b5407ed7730",
- "kws": {
- "fr": [
- "drap"
- ]
- }
- },
- {
- "nm": "brosse pour les mains",
- "id": "7aa47dc62675a20a9f81954ffe02eae4b5cd837ab1ef531996f9a4877b9b2de6",
- "kws": {
- "fr": [
- "brosse pour les mains",
- "brosse"
- ]
- }
- },
- {
- "nm": "cours d\u0027éducation physique",
- "id": "ea97bf1af37ca544edcf7d1f4edb6d33c52eab675d8dd25defdeacb1f69fcbed",
- "kws": {
- "fr": [
- "cours d\u0027éducation physique",
- "éducation physique et sportive (e.p.s.)",
- "matière"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "542e48f39ce338cc71293b56c1ff1b545207d29dbd3fe9290241fee174c86fda",
- "kws": {
- "fr": [
- "praxie",
- "claquements de lèvres",
- "sortir la langue",
- "orthophonie",
- "retirer"
- ]
- }
- },
- {
- "nm": "couper le pain",
- "id": "6c7192e882c152a8a84271a58bf06c265885392eef3ed555d293ec23517a5127",
- "kws": {
- "fr": [
- "couper le pain",
- "couper"
- ]
- }
- },
- {
- "nm": "tribunal",
- "id": "e88f6d4d3556c85c8ca6a96eb17dca2929e307aece0f1fa91793606595c977f5",
- "kws": {
- "fr": [
- "tribunal",
- "juge"
- ]
- }
- },
- {
- "nm": "sympathique",
- "id": "1e9c5681652727b8017b7f6138234f814adfa9d04f1d6c4fba96a416d2c8dec0",
- "kws": {
- "fr": [
- "sympathique",
- "agréable"
- ]
- }
- },
- {
- "nm": "hôtel",
- "id": "07e8015f1464d64a5007088c5098763ecbeac0bb0f979fd6b8895613aa6107de",
- "kws": {
- "fr": [
- "hôtel"
- ]
- }
- },
- {
- "nm": "quinze",
- "id": "8bacaa8cd237908976929dcb8cbfcf519fae86738de1341732ed82bad93ebeee",
- "kws": {
- "fr": [
- "quinze",
- "15"
- ]
- }
- },
- {
- "nm": "paire",
- "id": "3bd97b59f066c8793d68c7831dd6982b46ceca07fd2dc83ed839ffd9b9868160",
- "kws": {
- "fr": [
- "paire",
- "deux",
- "numéro",
- "2"
- ]
- }
- },
- {
- "nm": "entretemps",
- "id": "0337f8eb4e99f8333e8badc087afcf9979c15bb01ba5ef3660adc37b58bdedad",
- "kws": {
- "fr": [
- "entretemps",
- "pendant"
- ]
- }
- },
- {
- "nm": "plumeau",
- "id": "0da53bf464485bf0b4942430bf23cd38dda648384cd8733fb5bba5760420d0b1",
- "kws": {
- "fr": [
- "plumeau"
- ]
- }
- },
- {
- "nm": "fleur de safran",
- "id": "39a7a86a60d5c40760509fac2174b831f5796e93d79dc85d4a2da502d8904921",
- "kws": {
- "fr": [
- "fleur de safran",
- "safran"
- ]
- }
- },
- {
- "nm": "exclusion sociale",
- "id": "dbd27efd98d2e14bd35e18a50dc68ea5ff81b25142db3fdb2df9f5c024b24b74",
- "kws": {
- "fr": [
- "exclusion sociale",
- "discrimination"
- ]
- }
- },
- {
- "nm": "cible",
- "id": "63b914d8763fb5e4ab4dc827d579ddb373b7aebb2236ca6a72552ad8998323d7",
- "kws": {
- "fr": [
- "cible"
- ]
- }
- },
- {
- "nm": "continent",
- "id": "20785a0c7aa53a3479c824d4823d2a18573bd7ca279deef1cef8949b3d315aef",
- "kws": {
- "fr": [
- "continent",
- "amérique"
- ]
- }
- },
- {
- "nm": "salle d\u0027entretiens",
- "id": "5126f33e4bae59781064de77c5f7154c9adcb3b938808b90f23412ff8945a8e2",
- "kws": {
- "fr": [
- "salle d\u0027entretiens"
- ]
- }
- },
- {
- "nm": "faire la liste",
- "id": "594fe70f62adef0c8eed9576596ac6a091e4827e25f9577e571e75b27fb1d90d",
- "kws": {
- "fr": [
- "faire la liste"
- ]
- }
- },
- {
- "nm": "dynamite",
- "id": "bfcb907feaf6b552c7431e4c0157281af7e0c3ade8e98191508f61b634836a46",
- "kws": {
- "fr": [
- "dynamite",
- "explosif"
- ]
- }
- },
- {
- "nm": "iguane",
- "id": "bda4da38fef0d18e82805428ffa7460e9fb39a26aa3b226e02aeb8efce0d61b0",
- "kws": {
- "fr": [
- "iguane"
- ]
- }
- },
- {
- "nm": "cabine électorale accessible",
- "id": "f60dcd2b047644a60da5d474d7be4c13543b8c39010c6a3a8d55d841e7ccc0f1",
- "kws": {
- "fr": [
- "cabine électorale accessible",
- "cabine électorale"
- ]
- }
- },
- {
- "nm": "la belle au bois dormant",
- "id": "409c83ed330fd0dbb39f68b2a522f4131c02b7be550e43dd18dd31bb681da73d",
- "kws": {
- "fr": [
- "la belle au bois dormant"
- ]
- }
- },
- {
- "nm": "contracter",
- "id": "0468288f22c29862c2b788e5ec849279da1c437b4ff6212e995418e59cb82f98",
- "kws": {
- "fr": [
- "contracter"
- ]
- }
- },
- {
- "nm": "diligence",
- "id": "d5edf852cd0cb775be8afeb7352bc9bd65186fe616f391bd645dec34ba227ba6",
- "kws": {
- "fr": [
- "diligence"
- ]
- }
- },
- {
- "nm": "bidet",
- "id": "52920b42d8ecd605b5072d69246be267932f5075e7885c80324426c5baa32dc5",
- "kws": {
- "fr": [
- "bidet"
- ]
- }
- },
- {
- "nm": "placer",
- "id": "218e9df62424babab44b681c8ef35dd22ee524c8fce42e0109253812955780c2",
- "kws": {
- "fr": [
- "placer",
- "mettre"
- ]
- }
- },
- {
- "nm": "opticien",
- "id": "b0c4defa966430a45b4808f1a06702e8f47840348b0c4c07da35cb20113d1c5c",
- "kws": {
- "fr": [
- "opticien"
- ]
- }
- },
- {
- "nm": "papier et stylo plume",
- "id": "cc07306114e36b84fcfaf810694223b560e7c66b13c053e0433ca84e5ef4bb6a",
- "kws": {
- "fr": [
- "papier et stylo plume"
- ]
- }
- },
- {
- "nm": "trapéziste",
- "id": "9f0600ff005e9c5763c2e6b2e913dba5a9f22b299b48d67d8790bf96d9055a1b",
- "kws": {
- "fr": [
- "trapéziste",
- "acrobate",
- "artiste"
- ]
- }
- },
- {
- "nm": "chèvre",
- "id": "8cad0ac9b9a108fb06b50db56f795521319da0916362a022d7a4d43b64890a18",
- "kws": {
- "fr": [
- "chèvre"
- ]
- }
- },
- {
- "nm": "superman",
- "id": "69a9881e9645c9cecf5f8ebe64d794d953992fe7509367f85a8860d3ab223c50",
- "kws": {
- "fr": [
- "superman"
- ]
- }
- },
- {
- "nm": "escalader",
- "id": "784dde6738d7708ebb24bd9f4dda91b899408b90d38047225c8fe45101fa47a8",
- "kws": {
- "fr": [
- "escalader"
- ]
- }
- },
- {
- "nm": "courir",
- "id": "7f4eaee0d509905c770f00b02636386bd65d9320a3a73d0e63baf50b9169679e",
- "kws": {
- "fr": [
- "courir"
- ]
- }
- },
- {
- "nm": "diminuer",
- "id": "552cc13c2c23223a202d6123641cb89d97224d6b98db4994890863edeb9de08d",
- "kws": {
- "fr": [
- "diminuer",
- "baisser"
- ]
- }
- },
- {
- "nm": "bouddha",
- "id": "28fff2869760d3f2024daeb1c9b922a922a73b35756b5d7a7d121f5a2accd4b2",
- "kws": {
- "fr": [
- "bouddha"
- ]
- }
- },
- {
- "nm": "famille monoparentale",
- "id": "c9fc614b131294a165db3024561825f849e13dbdf796f2ab5098722a4cda6da6",
- "kws": {
- "fr": [
- "famille monoparentale",
- "famille"
- ]
- }
- },
- {
- "nm": "sucette",
- "id": "995fa731374c92a8a8021cd0844505e4f3a2d8bb974f84e4b80df39eccd8c5cd",
- "kws": {
- "fr": [
- "sucette"
- ]
- }
- },
- {
- "nm": "équipe",
- "id": "7f4af1e525cc6025c62ac2e1772f6e81a3ece5dc91f0e46fa03f502c4d2fd396",
- "kws": {
- "fr": [
- "équipe"
- ]
- }
- },
- {
- "nm": "tête de profil",
- "id": "bf604cfc986c5d9534f57ea01bafe0db9b09d3f830f58f7150258eade134c0d5",
- "kws": {
- "fr": [
- "tête de profil",
- "profil"
- ]
- }
- },
- {
- "nm": "logopédie",
- "id": "5c37bb0caa6c75ea59a3cc3916452cfe952cfa6f48a1e900f4bb57b30b158616",
- "kws": {
- "fr": [
- "logopédie"
- ]
- }
- },
- {
- "nm": "froisser",
- "id": "c1885435c4575205aeedbee8409bc8ebfa06331d3e3a2d8c5412d4e86695eef0",
- "kws": {
- "fr": [
- "froisser"
- ]
- }
- },
- {
- "nm": "impair",
- "id": "22bc5d84f40b8dc6b671da0734f71f751be90e787ba6b4bff2d6c0772adb8bcb",
- "kws": {
- "fr": [
- "impair",
- "sept",
- "numéro",
- "7"
- ]
- }
- },
- {
- "nm": "noé",
- "id": "19241db1e06fe657b6b5e5aefc84fa3bea0aad93d4c7f4b1a7c410528acb83e5",
- "kws": {
- "fr": [
- "noé"
- ]
- }
- },
- {
- "nm": "sauterelle",
- "id": "22ce212b0d78195e2141639ce819580da5e51ab6fc3ee7f106ce727160d0c4e4",
- "kws": {
- "fr": [
- "sauterelle"
- ]
- }
- },
- {
- "nm": "casques",
- "id": "bb9609a1be655723da822c8b4febc7b2f0561a72840998818eb0a2270e2d4706",
- "kws": {
- "fr": [
- "casques"
- ]
- }
- },
- {
- "nm": "ennuyer de l\u0027",
- "id": "6a35e444f26ff4e9524464cbe4118b0f6d021e07f5c570569baa9cea4ee0eb6c",
- "kws": {
- "fr": [
- "ennuyer de l\u0027",
- "regarder la télévision"
- ]
- }
- },
- {
- "nm": "ocre",
- "id": "80fc3c8a951040a2f99ee470a376a9b2db86db8643e3ba5951a31405992fcbbd",
- "kws": {
- "fr": [
- "ocre"
- ]
- }
- },
- {
- "nm": "papier cuisine",
- "id": "ed39d442fc086a18ad75e6e36a443cdbf31ae8cec9eb598c58293a518470f16d",
- "kws": {
- "fr": [
- "papier cuisine"
- ]
- }
- },
- {
- "nm": "nid",
- "id": "3a893503e54eaea6ae4eb97e03182def5a93af3551e47bc4c0d4322273973d1b",
- "kws": {
- "fr": [
- "nid"
- ]
- }
- },
- {
- "nm": "canal",
- "id": "9ecf5a75fccb5999a0496c8f949c24c58884ceba4c44cb3b015a0c383321627c",
- "kws": {
- "fr": [
- "canal",
- "gouttière"
- ]
- }
- },
- {
- "nm": "vendeurs",
- "id": "2a17fa48166e3dd82e91e9b032793cbed95ed80e558b395e1011bbad2ba3365f",
- "kws": {
- "fr": [
- "vendeurs",
- "vendeur",
- "vendeuses",
- "vendeuse"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "575966cf647fc5ebe1c93c715e4845fbefb482925e8224abbc5b4a6d54d4336f",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains derrière la tête",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "informatique",
- "id": "5b37b6478f4e591f5ef449d66dc25a6c93fb9a6012d4e50132fa17893e2d8623",
- "kws": {
- "fr": [
- "informatique"
- ]
- }
- },
- {
- "nm": "comité d\u0027honneur",
- "id": "179feeb88ee12c9cc1ca9f8dc4492aa376e85866d46dd0555990ce194ba76dce",
- "kws": {
- "fr": [
- "comité d\u0027honneur"
- ]
- }
- },
- {
- "nm": "respirer",
- "id": "ee84591402c9b14b57826ae2ec963646a4b04af5afc74cf18c8c3082f588577d",
- "kws": {
- "fr": [
- "respirer",
- "aspirer"
- ]
- }
- },
- {
- "nm": "voir la télé crème renversée",
- "id": "20cfc76363894cf29815044727461ff65a3535cd5a38db817684930637aec98a",
- "kws": {
- "fr": [
- "voir la télé crème renversée",
- "clinique",
- "hôpital"
- ]
- }
- },
- {
- "nm": "interdiction de manger",
- "id": "663e239cbf1620708cf2e5999739afbd7fd15badbf5a5fe3eb4b10f35e702c27",
- "kws": {
- "fr": [
- "interdiction de manger"
- ]
- }
- },
- {
- "nm": "ver à soie",
- "id": "1d86fccf7e890b51c2e4594c810e41e1917628952be497f4fff0de886c7cb5ea",
- "kws": {
- "fr": [
- "ver à soie",
- "ver",
- "chenille"
- ]
- }
- },
- {
- "nm": "fermer",
- "id": "97bb29ad98bba377b2b5effa05548c296a03cb50c2c972748173749ae703762b",
- "kws": {
- "fr": [
- "fermer",
- "boucher"
- ]
- }
- },
- {
- "nm": "remercier",
- "id": "48ff77005f34c5025ac3d6363a96c8b500d837acf86aef7184d1bdfbfafed708",
- "kws": {
- "fr": [
- "remercier",
- "merci"
- ]
- }
- },
- {
- "nm": "sentir",
- "id": "719839b2842cb2a2b33cfa64df741f85c05583e2c6689bfd0ae1ecfe44b69cbd",
- "kws": {
- "fr": [
- "sentir",
- "odeur",
- "odorat"
- ]
- }
- },
- {
- "nm": "garage",
- "id": "2e66fe7e4215023a60b71dae696dbf91a34876257fe791849dafb4a928a8d0b5",
- "kws": {
- "fr": [
- "garage"
- ]
- }
- },
- {
- "nm": "webcam",
- "id": "b9e3fc8ee918d3f157604c87a21c582c84171cd6e1615c21223f4acb645726c0",
- "kws": {
- "fr": [
- "webcam"
- ]
- }
- },
- {
- "nm": "soigner",
- "id": "0d4d916d44bac45466d94dd9a9d7014d9ed029f3f5fdc74cf94a4063841be162",
- "kws": {
- "fr": [
- "soigner"
- ]
- }
- },
- {
- "nm": "pavage",
- "id": "2fa69713478351a15f88f656ec4e88deb6419576b3f0bbe18906db4953e7a270",
- "kws": {
- "fr": [
- "pavage",
- "chaussée"
- ]
- }
- },
- {
- "nm": "light",
- "id": "62aa842ac52cc9a3eaa9cabbec2fb8b6e7a1921c1c7be836df71dfafca069c7e",
- "kws": {
- "fr": [
- "light"
- ]
- }
- },
- {
- "nm": "couronne",
- "id": "af3a47daa36f17fd97c7b832f69509b31f3fef2f76bd5ad5d90ecfba3f0daf89",
- "kws": {
- "fr": [
- "couronne"
- ]
- }
- },
- {
- "nm": "lottes",
- "id": "99485d1749e2d275d6761b62febeda7700af75ae2d72fb89c24fdcc198c80b54",
- "kws": {
- "fr": [
- "lottes"
- ]
- }
- },
- {
- "nm": "finlande",
- "id": "4e8f4446a8c874902f5e54597e14f6f76229446d919517318a45f2cd97b29a83",
- "kws": {
- "fr": [
- "finlande"
- ]
- }
- },
- {
- "nm": "boisson en boîte",
- "id": "85d62490a17263603a0d923e239bf433699fb3fa92fe8e0ea578950bb52b107c",
- "kws": {
- "fr": [
- "boisson en boîte",
- "jus"
- ]
- }
- },
- {
- "nm": "ouvrir les yeux",
- "id": "a6627fc07911ca04d01c259ad4b6cb8234a5df813bac958b27bd7fc0644e5238",
- "kws": {
- "fr": [
- "ouvrir les yeux"
- ]
- }
- },
- {
- "nm": "directrice",
- "id": "861ea0c4028d60063ea54a1c70daf1e3f7e78be6712059b186907c8bdf6e5e87",
- "kws": {
- "fr": [
- "directrice"
- ]
- }
- },
- {
- "nm": "vingt-huit",
- "id": "19b4c911d7b87a8751f4e32940c1be9fcad70809feb73c223c730abeaaf49b1b",
- "kws": {
- "fr": [
- "vingt-huit",
- "28"
- ]
- }
- },
- {
- "nm": "chien",
- "id": "76d37ac871f8326c59c05b4201e4d93ce0cdc9da3a068374167a5f2258d97f8c",
- "kws": {
- "fr": [
- "chien"
- ]
- }
- },
- {
- "nm": "menton",
- "id": "dbbb02c099696c788c5162e32be31a8fae937df6822a9467fbb82abf72408195",
- "kws": {
- "fr": [
- "menton"
- ]
- }
- },
- {
- "nm": "deuxième",
- "id": "335b849f7f92c48ea1950f9694a15f037caf9d70a85ee78a87190c26e465b82b",
- "kws": {
- "fr": [
- "deuxième",
- "seconde",
- "second"
- ]
- }
- },
- {
- "nm": "s",
- "id": "8403d9426b5fb58b4656d6ac348723b99e86043f905cdc31c536fc7020fcd4c0",
- "kws": {
- "fr": [
- "s",
- "lettre"
- ]
- }
- },
- {
- "nm": "candidat",
- "id": "a74193d04883dd16079dae7c5398f8c19e27fe59df1b827f25b4dbac18d56376",
- "kws": {
- "fr": [
- "candidat"
- ]
- }
- },
- {
- "nm": "maigrir",
- "id": "99deda0b122c6e2922a4cb6bb46655acb2c3170d68b93d6f70962cf46ca45e54",
- "kws": {
- "fr": [
- "maigrir"
- ]
- }
- },
- {
- "nm": "énergie éolienne",
- "id": "5dfefcda126a96ba8b5daed70ca74d243705fee377b0e8ce28cee6da3d9547fb",
- "kws": {
- "fr": [
- "énergie éolienne"
- ]
- }
- },
- {
- "nm": "dromadaire",
- "id": "9ded36ff62355218cf34847389b00a94ec07cea45e0a9a38bef2c9472116f738",
- "kws": {
- "fr": [
- "dromadaire"
- ]
- }
- },
- {
- "nm": "épingle",
- "id": "773ae9494e58bee777f7913ee8dcea21c8fd395b404190254605c34a4b3a6ade",
- "kws": {
- "fr": [
- "épingle"
- ]
- }
- },
- {
- "nm": "hémicycle",
- "id": "bb1be7a88f8c0b54e653c336464287199921485ffc4cfeb881f01cd919eb6db2",
- "kws": {
- "fr": [
- "hémicycle"
- ]
- }
- },
- {
- "nm": "faire cercle",
- "id": "a857d971822ad3bec4b1c36549d31512e675566e06ef7c396394d0786b76fb97",
- "kws": {
- "fr": [
- "faire cercle",
- "s\u0027asseoir en cercle"
- ]
- }
- },
- {
- "nm": "chardon",
- "id": "08db7618672b4e78e45e47ea8140efb15e0137346ac04a601c0a896d4ebd7dc1",
- "kws": {
- "fr": [
- "chardon"
- ]
- }
- },
- {
- "nm": "égout",
- "id": "875765f26ce07fd4e90e787896bd1e2da35250cb5fc91e5682cfbfed9d10af7d",
- "kws": {
- "fr": [
- "égout"
- ]
- }
- },
- {
- "nm": "pasteur luthérien",
- "id": "99aaaa6d3e73b0775b77213b8995c973fbd56de23c7b82ecb6e5f4ad82f11f48",
- "kws": {
- "fr": [
- "pasteur luthérien"
- ]
- }
- },
- {
- "nm": "shooter",
- "id": "7cb8868678e0880983f26755345dbf33c77c2cb1bad7e076acdce1f56078e61d",
- "kws": {
- "fr": [
- "shooter"
- ]
- }
- },
- {
- "nm": "galette",
- "id": "6f81e22aa70ecf58751ecc7237b903735931d8b190afb4cad6a737f013d932ee",
- "kws": {
- "fr": [
- "galette"
- ]
- }
- },
- {
- "nm": "génisse",
- "id": "b9926f63fa45b198a2a209e2e97091491f9169f114b17747ec1a34dac9381696",
- "kws": {
- "fr": [
- "génisse"
- ]
- }
- },
- {
- "nm": "bien ou mal",
- "id": "b7c457207541a519b7c3162de9f1a00586fa4b6bd4586e502cb272dcbaf9dc66",
- "kws": {
- "fr": [
- "bien ou mal"
- ]
- }
- },
- {
- "nm": "personne",
- "id": "121af0f2db4f7d3bbd46d91907c4f48b0b60a07cb1cd1205b99211355655b9a7",
- "kws": {
- "fr": [
- "personne",
- "petite fille",
- "petite",
- "fille"
- ]
- }
- },
- {
- "nm": "scruter",
- "id": "b0bb0c2866c1137911594f9e7463a9074d0a814e34e08cb0543abe3b82d71070",
- "kws": {
- "fr": [
- "scruter",
- "surveiller"
- ]
- }
- },
- {
- "nm": "se promener",
- "id": "efc6f2e8182c54ec4577e70a609156afb79a8ed7af843bdf88d8521a790cf1b8",
- "kws": {
- "fr": [
- "se promener"
- ]
- }
- },
- {
- "nm": "galipette",
- "id": "95463f246ac2e80142f9d92a239baac4e5595a1033dc47c3751405892628ce75",
- "kws": {
- "fr": [
- "galipette"
- ]
- }
- },
- {
- "nm": "beurre",
- "id": "eb5b324722f1d0b8c0a3702ab658592a32d0c231de80f5df020f202535e35e28",
- "kws": {
- "fr": [
- "beurre"
- ]
- }
- },
- {
- "nm": "ses",
- "id": "48ba24626c29c5b3f8e70b261746e300e8a71923aa6fac1fc37da06e34f3e295",
- "kws": {
- "fr": [
- "ses",
- "siennes",
- "siens"
- ]
- }
- },
- {
- "nm": "chaîne",
- "id": "3aafb39f7a803d700aba85720b7cbb46dcd695f466892f3107083fed0324231a",
- "kws": {
- "fr": [
- "chaîne"
- ]
- }
- },
- {
- "nm": "laver le linge",
- "id": "504c4834bbc491c8cb2571473f6664f57be38dc49b0c85a33013ebb90c5e563e",
- "kws": {
- "fr": [
- "laver le linge",
- "laver"
- ]
- }
- },
- {
- "nm": "oreiller",
- "id": "52fb3929facec76b4a3e20969041c125dd82b3a8a5c25c102a5371254827521f",
- "kws": {
- "fr": [
- "oreiller"
- ]
- }
- },
- {
- "nm": "hélicoptère",
- "id": "fc459a9d696f475ca4f0807768a48a3f53c32b19436417f39e3c3c85797e0d6d",
- "kws": {
- "fr": [
- "hélicoptère"
- ]
- }
- },
- {
- "nm": "salle d\u0027étude",
- "id": "46899e5d7ad16aa4cf11dc11895441ee6fd40f70f391e06ca2aea4c28d26818e",
- "kws": {
- "fr": [
- "salle d\u0027étude"
- ]
- }
- },
- {
- "nm": "tourillon",
- "id": "a95148bc0b884a58a629e8dc7decfb48f6d60212e01205b2f65228245d752c15",
- "kws": {
- "fr": [
- "tourillon"
- ]
- }
- },
- {
- "nm": "scie table",
- "id": "e3844e80e3ada7151245089344c8a8649ae21cefc71dee51499e16487eed84be",
- "kws": {
- "fr": [
- "scie table",
- "scie"
- ]
- }
- },
- {
- "nm": "autisme",
- "id": "76c00b3cba4c26c903927cb6d9622f31faca783e9519f7e1f91505d6c97defab",
- "kws": {
- "fr": [
- "autisme"
- ]
- }
- },
- {
- "nm": "liste",
- "id": "d05c08b5c27efd2ceb79e109eb28398df6192ce74428322f7d88305edcd4a3d9",
- "kws": {
- "fr": [
- "liste"
- ]
- }
- },
- {
- "nm": "opaque",
- "id": "b1c6ad45ae980a1303da10efbca4e32a462c8285bcd95719d710c36c46e05ff5",
- "kws": {
- "fr": [
- "opaque"
- ]
- }
- },
- {
- "nm": "saucisse catalane",
- "id": "850224c2eb24b430551536c561cec15a621697b0b3a6676453e004ccf4cfecc5",
- "kws": {
- "fr": [
- "saucisse catalane"
- ]
- }
- },
- {
- "nm": "buts",
- "id": "afe8cbf0ee01612d7bc7fe907307550079951eef153afb3e94bc23acf62fe112",
- "kws": {
- "fr": [
- "buts"
- ]
- }
- },
- {
- "nm": "kinésithérapie",
- "id": "0d64b9ea026dc66e71e9d696c61b94f34a26cae641dd3f8db751dc29cf05f18f",
- "kws": {
- "fr": [
- "kinésithérapie"
- ]
- }
- },
- {
- "nm": "racine",
- "id": "fb2d217753817fee1de51a9963beda4f2406b85580b795687b5ebe67ff997ff1",
- "kws": {
- "fr": [
- "racine",
- "racines"
- ]
- }
- },
- {
- "nm": "chaussures",
- "id": "3157def905272cccfd476f4c922ed44dcd74ec668f7d1a8774f656abb2a1aa10",
- "kws": {
- "fr": [
- "chaussures",
- "bottes"
- ]
- }
- },
- {
- "nm": "ici",
- "id": "d261737b2c6b3e3639239117c4d057f2889da4733d56b085c4860b61c7d37ca9",
- "kws": {
- "fr": [
- "ici"
- ]
- }
- },
- {
- "nm": "tableau",
- "id": "7c5b40c9a94b69a9bf52e36a4653b76293249f17658dfda67ed2fcdd3e8f4c01",
- "kws": {
- "fr": [
- "tableau",
- "oeuvre"
- ]
- }
- },
- {
- "nm": "pot de fleur",
- "id": "9f094b561fa0e4782944da96584e12a6e99ce2a3de4c0b1c52c94f74742bca9c",
- "kws": {
- "fr": [
- "pot de fleur"
- ]
- }
- },
- {
- "nm": "cuisiner",
- "id": "af4bd4c13fef2ed82a53e75dd682d0df84cc06af6a9993f04edf7f53b5b7e02f",
- "kws": {
- "fr": [
- "cuisiner",
- "rôtir"
- ]
- }
- },
- {
- "nm": "planter",
- "id": "5504e954cc617ab344006e827b0c0979127a420769c9e841f3f70013b88abc33",
- "kws": {
- "fr": [
- "planter"
- ]
- }
- },
- {
- "nm": "pomme",
- "id": "8a22ab090db59cbc8b38759e0ad6f19150eeeef207b7d4277da4492a6eb9d5a3",
- "kws": {
- "fr": [
- "pomme"
- ]
- }
- },
- {
- "nm": "jouet",
- "id": "854ec789d3a8cfd5dca33d53f049c9a0a8e7e79acb875f76b1598382e766ac0d",
- "kws": {
- "fr": [
- "jouet",
- "jouets"
- ]
- }
- },
- {
- "nm": "produits de soutien",
- "id": "1f562cfbec7b2cbde5949463394cb04670f669953febb26569c3181a9a02dfdc",
- "kws": {
- "fr": [
- "produits de soutien",
- "aides"
- ]
- }
- },
- {
- "nm": "labourer",
- "id": "e40d5476b021f18f81d15a8ca44526ea97475113265d8b4da7ec032427e568e4",
- "kws": {
- "fr": [
- "labourer"
- ]
- }
- },
- {
- "nm": "brancard",
- "id": "be8b817f53975bb69689ceb47f4442ea3f9c52bdafb8d44cb2346e540b2b1d7f",
- "kws": {
- "fr": [
- "brancard"
- ]
- }
- },
- {
- "nm": "gambie",
- "id": "0e48bc79ab76256fd414b5250b7fb423d742901a0dba2d556a1e96ffcf9ae770",
- "kws": {
- "fr": [
- "gambie"
- ]
- }
- },
- {
- "nm": "faim",
- "id": "ce5c50da16bdbfbdd9917868f38cb8d4f40be5b7f157b7067a1b164fab290324",
- "kws": {
- "fr": [
- "faim",
- "avoir faim",
- "affamé"
- ]
- }
- },
- {
- "nm": "laine",
- "id": "cb8bb4f02da972b26aeca4672162d5562d763ac78425772d01bc603b717de655",
- "kws": {
- "fr": [
- "laine"
- ]
- }
- },
- {
- "nm": "piment vert ou rouge",
- "id": "9ba64ca6cc864afeb0571487b5db21285b274c24dc6195c561d606a99f16ab9b",
- "kws": {
- "fr": [
- "piment vert ou rouge",
- "piment vert"
- ]
- }
- },
- {
- "nm": "patins",
- "id": "a24e5c61fd3d8b9402cb8375c984073cf58f242e6f2288db408de71e3e59426e",
- "kws": {
- "fr": [
- "patins"
- ]
- }
- },
- {
- "nm": "s\u0027allonger sur le dos",
- "id": "5ff73aab803111495ab7c8b1332cfb835c83a72b545cb1949de6b972fa593f72",
- "kws": {
- "fr": [
- "s\u0027allonger sur le dos",
- "s\u0027allonger"
- ]
- }
- },
- {
- "nm": "jouer avec l\u0027eau",
- "id": "0cd46d53459cf931d85b12ba29fdaa7ab5ce642480dffc93e3a5ae2d05a55486",
- "kws": {
- "fr": [
- "jouer avec l\u0027eau"
- ]
- }
- },
- {
- "nm": "judo",
- "id": "248fa7c46896aebf343f1ec860b2602ebc6f003140b21b224b00f7f40c4e5ddf",
- "kws": {
- "fr": [
- "judo"
- ]
- }
- },
- {
- "nm": "répondre",
- "id": "bd6f277d0f10cb03ee6bd1566abcb9ac3bcc4f9c5f4b2f2efce8ec453757e98a",
- "kws": {
- "fr": [
- "répondre"
- ]
- }
- },
- {
- "nm": "fruiterie",
- "id": "3ca02113dd2c0e0c98b929b56f2cf30f1268c0b2c1716f688a5585436d92c889",
- "kws": {
- "fr": [
- "fruiterie"
- ]
- }
- },
- {
- "nm": "thermo",
- "id": "00a49cae2b19407b06f980c414d3582c1c12f0b0e3726ab114fcd903695ba439",
- "kws": {
- "fr": [
- "thermo"
- ]
- }
- },
- {
- "nm": "ouvre-boîte électrique",
- "id": "e10b53ca7c9299018d686775916363776ae375fb2655294b0a436a85f9452934",
- "kws": {
- "fr": [
- "ouvre-boîte électrique",
- "ouvre-boîte"
- ]
- }
- },
- {
- "nm": "secouriste",
- "id": "3cbfff7e969bcfed30ef888f1cff536eddd0f8e181ec8546f86276fb74b96faa",
- "kws": {
- "fr": [
- "secouriste"
- ]
- }
- },
- {
- "nm": "chef d\u0027études",
- "id": "b15d3dc276926f3c0c1a109234a21093485ad847906f99ca74ae75d157ce135f",
- "kws": {
- "fr": [
- "chef d\u0027études"
- ]
- }
- },
- {
- "nm": "trois",
- "id": "b8ea389fedc737a76b3653e138fe966c3f8b346aed896b530e650652040e054c",
- "kws": {
- "fr": [
- "trois",
- "3 dé",
- "3"
- ]
- }
- },
- {
- "nm": "pois chiches",
- "id": "1550ff31b9a0d043402968f5e9f504be1874d06e7f74a2ab1cc3ef48c0d3b24d",
- "kws": {
- "fr": [
- "pois chiches",
- "légumes secs"
- ]
- }
- },
- {
- "nm": "serveuse",
- "id": "a6220193c0b1e7e59238a5b75911d779a1e4d7336ddef794b5c753f9d56f527b",
- "kws": {
- "fr": [
- "serveuse"
- ]
- }
- },
- {
- "nm": "constellations",
- "id": "e8b43d1c27ceea88c6303ccf02307249bbb9f2538c24e785b9608d3c9f400ff9",
- "kws": {
- "fr": [
- "constellations"
- ]
- }
- },
- {
- "nm": "crayon et papier",
- "id": "02be6cd8a39fa077f63fa52932aedbb3c57d795954491087b920a70f8c3f6e83",
- "kws": {
- "fr": [
- "crayon et papier"
- ]
- }
- },
- {
- "nm": "remonter la fermeture éclair",
- "id": "d471ccca4df7de8d56b93b733d0855360c4c51a54ab104687fa93daee0de554e",
- "kws": {
- "fr": [
- "remonter la fermeture éclair"
- ]
- }
- },
- {
- "nm": "chef d\u0027orchestre",
- "id": "61343ef45d6257e371aca2cfe2276f9fa776a3237a9aa04b9dbbefef1adc2e56",
- "kws": {
- "fr": [
- "chef d\u0027orchestre",
- "diriger"
- ]
- }
- },
- {
- "nm": "nord",
- "id": "cf53a7f5245f5b5402e984b0ad6c6dfd1d80f94c70a455e5f83d066a606cc5f9",
- "kws": {
- "fr": [
- "nord"
- ]
- }
- },
- {
- "nm": "aqueduc",
- "id": "347819202a67897ff28c6ba31511642fcbbe931760d58b6b8344b441d554c08b",
- "kws": {
- "fr": [
- "aqueduc"
- ]
- }
- },
- {
- "nm": "canada",
- "id": "c8646b544b85c57adfaedb881964abc5d5b2caf5812ca7cef70e1d3337682e9e",
- "kws": {
- "fr": [
- "canada"
- ]
- }
- },
- {
- "nm": "peu nombreux",
- "id": "aa9cdd60176cbe5bc7737ade46a7b801d0289f05360900c4e7fa95fb7c988502",
- "kws": {
- "fr": [
- "peu nombreux",
- "peu",
- "un petit peu de"
- ]
- }
- },
- {
- "nm": "boucher",
- "id": "89c3877066fea0f046bfc721527defe65b6296bd76897341e0a1cdfe4d925560",
- "kws": {
- "fr": [
- "boucher"
- ]
- }
- },
- {
- "nm": "précipitations",
- "id": "ae6f46f2c3b85f9b59d33e6ee4f86f8b525332f09cf983fe18735843a7bbbd25",
- "kws": {
- "fr": [
- "précipitations"
- ]
- }
- },
- {
- "nm": "carafe",
- "id": "c9790c22c7face544eb7660401b61b5732ed72cbd7cc9c173a9e776ffd623923",
- "kws": {
- "fr": [
- "carafe"
- ]
- }
- },
- {
- "nm": "electrothérapie",
- "id": "82da4b36aad287a66140336c054e8aaa5dc6259b090bed67b6cf2bab7ab1d437",
- "kws": {
- "fr": [
- "electrothérapie"
- ]
- }
- },
- {
- "nm": "discuter",
- "id": "985330f2018fc31db5f02d024360ee30161415d6b739e5d525667259aedb5832",
- "kws": {
- "fr": [
- "discuter"
- ]
- }
- },
- {
- "nm": "yoyo",
- "id": "cc7350549c207ebc59322e72054aed04aabcedf6cfd201fe9d004292d6b9ed02",
- "kws": {
- "fr": [
- "yoyo"
- ]
- }
- },
- {
- "nm": "oiseaux",
- "id": "8cdb5c81a0a11020a28c9643f67889953ad564025d56874201c99e8aaa4adad3",
- "kws": {
- "fr": [
- "oiseaux"
- ]
- }
- },
- {
- "nm": "lance",
- "id": "38e6bf4e8b7c515d92026a55fe3215207ceb70db3bd4d412837b3f1a9ea772e4",
- "kws": {
- "fr": [
- "lance"
- ]
- }
- },
- {
- "nm": "fiancés",
- "id": "1f0270faf108fc8ce0e076919bfa3469f97af13c453a957223f54aa07e04b5b5",
- "kws": {
- "fr": [
- "fiancés",
- "acte",
- "mariage"
- ]
- }
- },
- {
- "nm": "bisexualité",
- "id": "d058cf380ad0115caa7ed123e36d9d853ae3f80f9f31f750d2809c29407bcef2",
- "kws": {
- "fr": [
- "bisexualité",
- "bisexuel"
- ]
- }
- },
- {
- "nm": "presser",
- "id": "85554af8aebf1fe1b51010d9463e8a94f977d9c47c88184f6cf93cc6a81d001a",
- "kws": {
- "fr": [
- "presser",
- "serrer avec le cric",
- "appuyer"
- ]
- }
- },
- {
- "nm": "cuisiner",
- "id": "8d8d8437d6e1266f98ce36783b6007d67c85190af422a138dc29ac6e6949071e",
- "kws": {
- "fr": [
- "cuisiner",
- "cuisine",
- "programme de cuisine",
- "programme"
- ]
- }
- },
- {
- "nm": "immeuble",
- "id": "76212bbfa37305fcb54a8f77bc3aa4d1760cace78b03316ad5c3d509c4f04063",
- "kws": {
- "fr": [
- "immeuble",
- "adresse",
- "logement",
- "maison"
- ]
- }
- },
- {
- "nm": "buanderie",
- "id": "3c22bae1050d09e3c2d8e0c78817644a83d340d84cc05db7ceb9770ec131cd31",
- "kws": {
- "fr": [
- "buanderie",
- "pièce",
- "signalétique"
- ]
- }
- },
- {
- "nm": "guidon",
- "id": "af7fa924367584378b9219f7707d686573da31ba18d4f5db64f086a1fc634131",
- "kws": {
- "fr": [
- "guidon"
- ]
- }
- },
- {
- "nm": "orienter",
- "id": "9df6f9bac9769827ec67993db6a0c61571bfef75d7b2966b477dce25008387a7",
- "kws": {
- "fr": [
- "orienter",
- "s\u0027orienter"
- ]
- }
- },
- {
- "nm": "pantalon",
- "id": "60ebabca13b4dccb070d40b090d5cbf2661c1b08ef9c22b2c0b47ab5849d296e",
- "kws": {
- "fr": [
- "pantalon",
- "jean"
- ]
- }
- },
- {
- "nm": "nager",
- "id": "d4f9ef3c293501b8510c71bdd23c8e14c71559f0d5a846477a3b772073d7cfee",
- "kws": {
- "fr": [
- "nager",
- "natation"
- ]
- }
- },
- {
- "nm": "activité",
- "id": "d7a696c275e6854638ea4fddaa18a6cb819bfa5bc2c25572c3c9cb06276a279d",
- "kws": {
- "fr": [
- "activité",
- "activités"
- ]
- }
- },
- {
- "nm": "entendre",
- "id": "81fa85021ecd8f33a4bf7aea848b1741d71e781098684d3b6bb35248aa2268d7",
- "kws": {
- "fr": [
- "entendre",
- "écouter"
- ]
- }
- },
- {
- "nm": "compte",
- "id": "decf8313727d4629d33742b310a30b5bbfd10aecc3147d221101803bb1678283",
- "kws": {
- "fr": [
- "compte",
- "diviser",
- "division",
- "opération"
- ]
- }
- },
- {
- "nm": "compas",
- "id": "2cfa4fb54d592b7a055bf7c48800f86d854f7f5f74a65456796989f527d50112",
- "kws": {
- "fr": [
- "compas"
- ]
- }
- },
- {
- "nm": "palmier",
- "id": "73ddcf164107939664a3b6c856b968efa4e4f5c7f5ded652c5fe61031296df2f",
- "kws": {
- "fr": [
- "palmier"
- ]
- }
- },
- {
- "nm": "couronne de porte",
- "id": "b99846eaa5532f4af61baaf6abeacd87e2f83726d7818777f26b6ab8bf55316f",
- "kws": {
- "fr": [
- "couronne de porte",
- "couronne"
- ]
- }
- },
- {
- "nm": "famille",
- "id": "e1b8f5bae7ca3ae95b8e9a494f4b54be860e06e7d037aa0c49a5d6af3d56baff",
- "kws": {
- "fr": [
- "famille"
- ]
- }
- },
- {
- "nm": "brasse",
- "id": "6aaa21976ac4b48a5ec21171e8bb3e747d1952bbb5cd4bfcdc9f40f98329e350",
- "kws": {
- "fr": [
- "brasse",
- "nager"
- ]
- }
- },
- {
- "nm": "pluie",
- "id": "fb18a70096497d1c25a7b033a9e61e2631085da68c918731687fb48133de537e",
- "kws": {
- "fr": [
- "pluie"
- ]
- }
- },
- {
- "nm": "bronze",
- "id": "2d5a30deb7e93fcbe7e811e566e7bb5c18e9e62fd74214334caa21822521eff5",
- "kws": {
- "fr": [
- "bronze"
- ]
- }
- },
- {
- "nm": "faire l\u0027amour",
- "id": "f7f835404c9b9a18df1ade589584f2bef97dafb15e1d35a2e508bf78c2f50929",
- "kws": {
- "fr": [
- "faire l\u0027amour",
- "coït",
- "baiser",
- "relation sexuelle"
- ]
- }
- },
- {
- "nm": "géranium",
- "id": "d175ba02240ca4b2f2dc2a3809ec4fdbb2c777a31f0b0f689ec7de7bb643f35e",
- "kws": {
- "fr": [
- "géranium"
- ]
- }
- },
- {
- "nm": "pastilles",
- "id": "275f445a989725d0cb3d2b5d7ce96798f211e184fce17f15c40afabc011d055e",
- "kws": {
- "fr": [
- "pastilles"
- ]
- }
- },
- {
- "nm": "lavabo",
- "id": "04d6aca25a4f8de435586ef974597a56ce08898af128ca73b5b33dc6f8725f37",
- "kws": {
- "fr": [
- "lavabo"
- ]
- }
- },
- {
- "nm": "arrêt",
- "id": "4fceebacad2d349b9ed4010fbe9c361438251dc56f805ce3f769686092866145",
- "kws": {
- "fr": [
- "arrêt"
- ]
- }
- },
- {
- "nm": "point d\u0027exclamation",
- "id": "d7559c94bdd78e26e6ea9805f4e6f7736764c5d7b9f7dd640b049c4434d4cce2",
- "kws": {
- "fr": [
- "point d\u0027exclamation"
- ]
- }
- },
- {
- "nm": "hôtel",
- "id": "1f7de7ad0c166c4b369ed7bf6b9bafbadd87a107caa6eb80a758ae65d1831891",
- "kws": {
- "fr": [
- "hôtel"
- ]
- }
- },
- {
- "nm": "vomir",
- "id": "b9f2f6a6de6a3d28a0d01d4cb28c4581b49d181b45c78108922bb0d8fd41cb33",
- "kws": {
- "fr": [
- "vomir"
- ]
- }
- },
- {
- "nm": "point",
- "id": "7cc30eae79c3cdd4cf0b2d5b7e0ac3e27427b84e76114dcaf61a9810b8443ca9",
- "kws": {
- "fr": [
- "point"
- ]
- }
- },
- {
- "nm": "k",
- "id": "c6e4112ab56bcb9b6d9178aca92ed17f6afce75182aae6eaad14c1bbc8e295c9",
- "kws": {
- "fr": [
- "k",
- "lettre"
- ]
- }
- },
- {
- "nm": "saint sébastien",
- "id": "34e86d8e75de0f63d917edbc7c8633bd5acb3334427f2180b50289cfb2b55f29",
- "kws": {
- "fr": [
- "saint sébastien"
- ]
- }
- },
- {
- "nm": "selle",
- "id": "bcaada096e0d6a106bfdbbd870f9da0ec63edc602d6cb07ff8c7ea989f7c9f51",
- "kws": {
- "fr": [
- "selle"
- ]
- }
- },
- {
- "nm": "fraise",
- "id": "217d573c7252fd985013ca077bcfcb05a07f57b624f21a5aee04e0298da83a61",
- "kws": {
- "fr": [
- "fraise"
- ]
- }
- },
- {
- "nm": "bras en croix",
- "id": "c6120bee46a965e0cd429236487f814771b0bfd80e3f75fd74acaef3af76edd4",
- "kws": {
- "fr": [
- "bras en croix",
- "faire de l\u0027exercice",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "semaine",
- "id": "e46e81a61e4636a43244e15f3bed4d9b793e88cd15d6784fed102a12961ca91c",
- "kws": {
- "fr": [
- "semaine"
- ]
- }
- },
- {
- "nm": "jouer à la console vidéo",
- "id": "10197f8eca968ffd30e910dce781878157f64376c5b2deca896d295c02503655",
- "kws": {
- "fr": [
- "jouer à la console vidéo"
- ]
- }
- },
- {
- "nm": "pas",
- "id": "50cc29ab1b212ab5f819050c7c2d8626b787755aedb833fa25d8d6b5ec90684f",
- "kws": {
- "fr": [
- "pas",
- "marcher"
- ]
- }
- },
- {
- "nm": "fort",
- "id": "20e3f2f7ba3b715f089500b5998cb817b2bb79735d38178da2ef924f5df33683",
- "kws": {
- "fr": [
- "fort"
- ]
- }
- },
- {
- "nm": "enlever",
- "id": "31c6fef94fbdd1720e0cb70d1799b0659b19094446df3a77d29817b7adff7e18",
- "kws": {
- "fr": [
- "enlever"
- ]
- }
- },
- {
- "nm": "peser",
- "id": "7383ea17832cddb520a28ef78fa4ba4636810b3e4baf9fb5694e61fe090b2726",
- "kws": {
- "fr": [
- "peser",
- "poids",
- "lourd"
- ]
- }
- },
- {
- "nm": "chili",
- "id": "4918ddcb6956f615eb9e39f093e57fa132c05c6d9083800f78faf8fe432a0606",
- "kws": {
- "fr": [
- "chili"
- ]
- }
- },
- {
- "nm": "paresseux",
- "id": "65adf4501f01ae32c9d0d34f0664300d218b03b716ce795834d54616a213a493",
- "kws": {
- "fr": [
- "paresseux",
- "féniant"
- ]
- }
- },
- {
- "nm": "cloche",
- "id": "4016774999b3f72ef353ff70e7270245c9a7cbeec057b35944edd0331a83aff3",
- "kws": {
- "fr": [
- "cloche",
- "cloches"
- ]
- }
- },
- {
- "nm": "qui appelle",
- "id": "759dbe675b0ffd3fb277d92cfaab23039c04e350a1a753076eddbdd928cac01b",
- "kws": {
- "fr": [
- "qui appelle"
- ]
- }
- },
- {
- "nm": "comité",
- "id": "4d6be8afaaf10b483ff1d9ec69f39e73f06a12eed13a3410e6234985b5e186a3",
- "kws": {
- "fr": [
- "comité",
- "comité d\u0027entreprise"
- ]
- }
- },
- {
- "nm": "tante",
- "id": "7652249a5db3cedaf686520ca68d666cea1f595f93b8700a03d5653cd5aa5a58",
- "kws": {
- "fr": [
- "tante"
- ]
- }
- },
- {
- "nm": "salle d\u0027attente",
- "id": "3ce924338b0e94129b1144664ab45480c17bc2230e855392f790014288f201bc",
- "kws": {
- "fr": [
- "salle d\u0027attente"
- ]
- }
- },
- {
- "nm": "machine à laver",
- "id": "0b2fd1e6bf0573577353ce12804f7e492afaefe2d25203d57abe78948bf2df95",
- "kws": {
- "fr": [
- "machine à laver"
- ]
- }
- },
- {
- "nm": "saint georges",
- "id": "b0e432d9ab444437b335397878e11305562361a7402039b87bd830059edac64b",
- "kws": {
- "fr": [
- "saint georges"
- ]
- }
- },
- {
- "nm": "bêtise",
- "id": "0b95e9238b073d5476761b39676ae7ae9ff6b57efecaa88c9badc00dfab9f9d3",
- "kws": {
- "fr": [
- "bêtise"
- ]
- }
- },
- {
- "nm": "maintenir",
- "id": "069aaeb1f027df9d0c67c3a6f130fc86b61c5f8660b17bf5e04552a06f544a15",
- "kws": {
- "fr": [
- "maintenir"
- ]
- }
- },
- {
- "nm": "bouton",
- "id": "5a2a1bf99a17ce3a47e71abc50840fb2ddbc0a534ed10f02aa039e6e7e1aa2a1",
- "kws": {
- "fr": [
- "bouton",
- "fleur",
- "rose"
- ]
- }
- },
- {
- "nm": "exposer",
- "id": "91e4a36d93289ac702daf6a9d5a168a692c8d50c0f82c5a9b06d8087ea69bb17",
- "kws": {
- "fr": [
- "exposer",
- "exposition",
- "projeter",
- "présentation",
- "présenter",
- "communication"
- ]
- }
- },
- {
- "nm": "nettoyant pour sol",
- "id": "65765d128317342f3b984a420e21fefa04e3bd9c7d004930a5836f976df27a03",
- "kws": {
- "fr": [
- "nettoyant pour sol",
- "nettoyeur"
- ]
- }
- },
- {
- "nm": "réprimander",
- "id": "f09ee7e49878dd9222f9d0798119a4d334f90210c6a40e01246326813ca47cfe",
- "kws": {
- "fr": [
- "réprimander",
- "gronder"
- ]
- }
- },
- {
- "nm": "planche de surf",
- "id": "fb0f50109b06ff651932e9dab426db8dbc5c092ee8f61fff4c83bcd61601dfa0",
- "kws": {
- "fr": [
- "planche de surf",
- "planche",
- "surf"
- ]
- }
- },
- {
- "nm": "marcher à quatre pattes",
- "id": "d6741cbe268a0fc7768c2f5b21a800bf4650560553c2e3f3c058b774e7e12134",
- "kws": {
- "fr": [
- "marcher à quatre pattes"
- ]
- }
- },
- {
- "nm": "magasin de sport",
- "id": "b706a21d72f4144e2a286ddc76f979b083a9f0fcd4117a35d56eb0dc0e38f2ab",
- "kws": {
- "fr": [
- "magasin de sport"
- ]
- }
- },
- {
- "nm": "ramasser les jouets",
- "id": "3e8b53e21780575b197f017b76fe5f4dd97036954b0406833083a4bcacf5b78c",
- "kws": {
- "fr": [
- "ramasser les jouets",
- "ramasser"
- ]
- }
- },
- {
- "nm": "partiellement couvert",
- "id": "104c3007bb1b88760400164ab987f4b3c3645a17e383303b2c8248b20c6a04d2",
- "kws": {
- "fr": [
- "partiellement couvert",
- "couvert",
- "se couvrir",
- "nuageux"
- ]
- }
- },
- {
- "nm": "magasin de fleurs",
- "id": "b9c9d6ca9ba2fe5b4cf7d0080bd6afb0377c76c18e38f478d541866fc2487ac6",
- "kws": {
- "fr": [
- "magasin de fleurs"
- ]
- }
- },
- {
- "nm": "sauter à pieds joints",
- "id": "20b65aec98729bb6215020ace507818041998fa0a737478004cda1dd4460d75c",
- "kws": {
- "fr": [
- "sauter à pieds joints",
- "sauter"
- ]
- }
- },
- {
- "nm": "secouer",
- "id": "ff6056170dd019e54cbc044b2af2e3929e678e4847dc8d027e6f655f28f6441d",
- "kws": {
- "fr": [
- "secouer"
- ]
- }
- },
- {
- "nm": "ludothèque",
- "id": "651bb73d611f513855d313012954218d5e5c08e41bac649c9e995c5309e677ce",
- "kws": {
- "fr": [
- "ludothèque"
- ]
- }
- },
- {
- "nm": "francisco de goya y lucientes",
- "id": "e36edf3a7b2ae5b8fe76da15070a4b04e7de6472ad4ce105cc3f585115e45d26",
- "kws": {
- "fr": [
- "francisco de goya y lucientes",
- "goya"
- ]
- }
- },
- {
- "nm": "graine",
- "id": "648ed73d3813d18d271e6ada7f7db36f4d48a0ff07256156e753abaae809e004",
- "kws": {
- "fr": [
- "graine"
- ]
- }
- },
- {
- "nm": "plâtre",
- "id": "24afee58df0ccd6c99eb6f8e44eae38653860ac233a0f06e73c34958e5c1ffed",
- "kws": {
- "fr": [
- "plâtre",
- "plâtré"
- ]
- }
- },
- {
- "nm": "verser",
- "id": "74d303bd7bd3ceaf2f27479ce9ada32dcf204dfe646a3a7794951ff885f042cd",
- "kws": {
- "fr": [
- "verser"
- ]
- }
- },
- {
- "nm": "soja",
- "id": "79de4176d24e2a8978f0521fc13ae8b9fe23d296e04c6058f426bb9d44dac18b",
- "kws": {
- "fr": [
- "soja",
- "graines de soja"
- ]
- }
- },
- {
- "nm": "four",
- "id": "6ad0c0e6fb06206aa818697319013b6ea0a41af85acd6e2c85094f4464076f95",
- "kws": {
- "fr": [
- "four"
- ]
- }
- },
- {
- "nm": "vainqueur",
- "id": "f7ff20c5e70530a962be0279b128dea7de79f6096cabffaa661f2f3649d39e6f",
- "kws": {
- "fr": [
- "vainqueur"
- ]
- }
- },
- {
- "nm": "rugby",
- "id": "43f39302bd2ee57cec4bdcd8f06954a773832c66f3fdee14605cf826aa679760",
- "kws": {
- "fr": [
- "rugby"
- ]
- }
- },
- {
- "nm": "éventail",
- "id": "ddac017c78843c9caef5c2d16f1494fa6688e6025e3b3cce95acca94642d5b7e",
- "kws": {
- "fr": [
- "éventail"
- ]
- }
- },
- {
- "nm": "tout terrain",
- "id": "b7b7650b26ea1c733d8a608eb2dd0d80d7406bdc608f437e39a7758c67e08cd9",
- "kws": {
- "fr": [
- "tout terrain"
- ]
- }
- },
- {
- "nm": "feu rouge",
- "id": "9eafffa7bb75d2b6cdca6f9cc37345bbb987ec4621b79e9fd70aed488236e429",
- "kws": {
- "fr": [
- "feu rouge",
- "feu"
- ]
- }
- },
- {
- "nm": "emballer",
- "id": "8dac2f2ab002560efa54743bb0310ae85342ea492870d23425517fdc5dfad3e7",
- "kws": {
- "fr": [
- "emballer"
- ]
- }
- },
- {
- "nm": "données personnelles",
- "id": "e373f724111c0f29cb4eaebd6d086e36d84d97134b87541e4035a0c2346b89cf",
- "kws": {
- "fr": [
- "données personnelles"
- ]
- }
- },
- {
- "nm": "résidence pour handicapés",
- "id": "836a967c695036fd01df7aaaa9dae459c720d584b08bc6f4ddc71cd10faaf15d",
- "kws": {
- "fr": [
- "résidence pour handicapés"
- ]
- }
- },
- {
- "nm": "santé",
- "id": "bc29175e32c132299e540d329c58a80a605695246e0c2cacda7e2c7f7cf1b4e1",
- "kws": {
- "fr": [
- "santé"
- ]
- }
- },
- {
- "nm": "tomber amoureux",
- "id": "f5eb2c10e0678d1cd705705b7d82114858ced38c4209496b76e445a53bf7dcfc",
- "kws": {
- "fr": [
- "tomber amoureux",
- "amoureux"
- ]
- }
- },
- {
- "nm": "relief",
- "id": "6488502406b593b18cfecd64619d254c3c1cbd107c4fd0493ef2a7e7bf939c3b",
- "kws": {
- "fr": [
- "relief"
- ]
- }
- },
- {
- "nm": "librairie",
- "id": "f4ba94b1b073b2fb1f5b72110e933507398c661b246a964769764c9201ac59c5",
- "kws": {
- "fr": [
- "librairie"
- ]
- }
- },
- {
- "nm": "coing",
- "id": "7e30e5c9f43ee47142ce5f62dd22f8cf65506c2ef35c62ae3713da35ae5c156a",
- "kws": {
- "fr": [
- "coing"
- ]
- }
- },
- {
- "nm": "descendre",
- "id": "076a0b7d7a7f0a9e7ff3e0bb67c0735df3b0735ccaf1f094fd46ab620ff3261a",
- "kws": {
- "fr": [
- "descendre"
- ]
- }
- },
- {
- "nm": "empreinte digitale",
- "id": "3708205a8c6e9120f928d818a777a4c25dc21faf9c92ea915e631d727ea14bf8",
- "kws": {
- "fr": [
- "empreinte digitale"
- ]
- }
- },
- {
- "nm": "phénomène atmosphérique",
- "id": "3a9e24c52fdb1004adc53c5bd1268dd875b5a95ed637aa747d04889e73be3449",
- "kws": {
- "fr": [
- "phénomène atmosphérique",
- "éclair",
- "orage",
- "orageux",
- "rayons"
- ]
- }
- },
- {
- "nm": "volant",
- "id": "db18a3b72e032161740c30f6fcba2f853a8bd687a3d22ad7e1bea8424d58e3b2",
- "kws": {
- "fr": [
- "volant"
- ]
- }
- },
- {
- "nm": "s\u0027opposer",
- "id": "fa220a9f39bbff9b56d58e689aa856fc5280440eeb7fdf55601cfd433b6a43a8",
- "kws": {
- "fr": [
- "s\u0027opposer"
- ]
- }
- },
- {
- "nm": "soûl",
- "id": "9f348379f18e06ecbed490382fe3de5fa90515637f8b0060e136e3b2ae72d93e",
- "kws": {
- "fr": [
- "soûl"
- ]
- }
- },
- {
- "nm": "figurines",
- "id": "e718bf6582e2174806981ffd01eca019d785fc6409e4ce4025447d43ae5b7d3e",
- "kws": {
- "fr": [
- "figurines"
- ]
- }
- },
- {
- "nm": "crique",
- "id": "e32fb8df8141b35cf0740c984842742b8993bef29700146554aae15b44ca7340",
- "kws": {
- "fr": [
- "crique"
- ]
- }
- },
- {
- "nm": "toilettes pour hommes",
- "id": "51e4debece1984493f694fe38bfa57180d6d9c05790e74390a1c73df5d075caa",
- "kws": {
- "fr": [
- "toilettes pour hommes",
- "water",
- "baignoire",
- "salle de bain"
- ]
- }
- },
- {
- "nm": "archer",
- "id": "0567def61971ba8f62795158a37503ff3ddfb7ecc9e0f7b6b97a03ab3551fc51",
- "kws": {
- "fr": [
- "archer"
- ]
- }
- },
- {
- "nm": "marmite",
- "id": "9ce4d1999d9741952639646c009f2855368a50fb1f416f58819188c5bd5f83d8",
- "kws": {
- "fr": [
- "marmite"
- ]
- }
- },
- {
- "nm": "sœur",
- "id": "ed997c2e07c297341816777d21aab2acaa99725b42ff3d6dd2a1c3396240d72f",
- "kws": {
- "fr": [
- "sœur"
- ]
- }
- },
- {
- "nm": "insulter",
- "id": "67d53f1b8c3775c6afe3f7b40d89a554c240fc1b38d4370b8ecde17562ea3486",
- "kws": {
- "fr": [
- "insulter"
- ]
- }
- },
- {
- "nm": "feux d\u0027artifice",
- "id": "0ee1c700bb2121cf9493ec6f85272a1725bdd0aa4e3892187588e86996f26ac0",
- "kws": {
- "fr": [
- "feux d\u0027artifice"
- ]
- }
- },
- {
- "nm": "remorque",
- "id": "397ed61a63ccb5258f7f6aefef0b423caf70ae735c1286982a1988ac9c2bdc2f",
- "kws": {
- "fr": [
- "remorque"
- ]
- }
- },
- {
- "nm": "épouvantail",
- "id": "31a133af3c0e603b46111540c78b6649f439d0a21c25774f574a880b7749f88a",
- "kws": {
- "fr": [
- "épouvantail"
- ]
- }
- },
- {
- "nm": "réhabilitation",
- "id": "7b9c787f342e3c8d3267108a889bdc9c1fdf92c7d5d0c8d9ecaaa303487bc8c4",
- "kws": {
- "fr": [
- "réhabilitation"
- ]
- }
- },
- {
- "nm": "changer de chaîne",
- "id": "7d36b227400909f37b9f33a3492d7eedb129a76813fc3422d64cb5dbe1cb380f",
- "kws": {
- "fr": [
- "changer de chaîne"
- ]
- }
- },
- {
- "nm": "espagnol",
- "id": "21870f108ddb4e79b7cdf5151f9674cd83fc26ff8c3ec94ff43220b984ae3824",
- "kws": {
- "fr": [
- "espagnol"
- ]
- }
- },
- {
- "nm": "haut-parleur",
- "id": "eb6561b4526621d597f4b7d1d82a73aa002307ee849e826248386b68c0c8a859",
- "kws": {
- "fr": [
- "haut-parleur"
- ]
- }
- },
- {
- "nm": "tourisme",
- "id": "110215087651670dd1e7845c1cf7bd67879afd27301b2e377848b9ce2383ea51",
- "kws": {
- "fr": [
- "tourisme",
- "voiture pour enfants",
- "voiture",
- "véhicule"
- ]
- }
- },
- {
- "nm": "pain blanc",
- "id": "0a20b24f0b5efea25afccfea65cfad0108741bf9f555360b529314b270a27cff",
- "kws": {
- "fr": [
- "pain blanc",
- "pain français",
- "pain"
- ]
- }
- },
- {
- "nm": "harmonica",
- "id": "3bb78880d61a189017611c43fc65bbebd0758c3c308d59b9fce134f3358c9ef9",
- "kws": {
- "fr": [
- "harmonica",
- "instrument musical"
- ]
- }
- },
- {
- "nm": "téléopérateur",
- "id": "d61dcbf40cd14074065278a944a0af9c028189b48588934be5fb143116dc3161",
- "kws": {
- "fr": [
- "téléopérateur"
- ]
- }
- },
- {
- "nm": "tête",
- "id": "39fa59936dfdf1d8ca5902b0e2a7f197bad4f85c16416c83054f1baafb3bd5b1",
- "kws": {
- "fr": [
- "tête"
- ]
- }
- },
- {
- "nm": "cantabrie",
- "id": "3e6a90b2139a8d20344f6fd70975a626de9a2ac8994a077e215cadd3555a0c0e",
- "kws": {
- "fr": [
- "cantabrie"
- ]
- }
- },
- {
- "nm": "étiqueter",
- "id": "adfbae09be1a6225b942b403ab565f0e794e521c1d7d1f8174a7c7d6156a73a7",
- "kws": {
- "fr": [
- "étiqueter"
- ]
- }
- },
- {
- "nm": "anguille",
- "id": "5bef995c97eba86111399d493fc1f69d14b39791c3367a0be78433e18a0700d9",
- "kws": {
- "fr": [
- "anguille"
- ]
- }
- },
- {
- "nm": "fissurer",
- "id": "39975508a93fb235757bea1ca010438387ccb487f205a70038e5ad6eae1da730",
- "kws": {
- "fr": [
- "fissurer"
- ]
- }
- },
- {
- "nm": "abandonner",
- "id": "221afd6c83ea5c8995142eb3ef03d9151d495c9ffb2729b70e9969bf9cfe5daa",
- "kws": {
- "fr": [
- "abandonner"
- ]
- }
- },
- {
- "nm": "téléphoner",
- "id": "5f526b2dd3e9a605e14def174b290ddfa70a639b574519f83356fb2b4e8f2f02",
- "kws": {
- "fr": [
- "téléphoner",
- "appeler",
- "marquer"
- ]
- }
- },
- {
- "nm": "expression",
- "id": "fdf53bb5d8e508dbbb4486f1d6402bf6923bb98a547e26a545d53fe3419f9278",
- "kws": {
- "fr": [
- "expression",
- "content",
- "heureux",
- "joie",
- "joyeux",
- "optimiste",
- "réjouir"
- ]
- }
- },
- {
- "nm": "surprendre",
- "id": "406f474bd482e3cf78ca32faabdfc6845a4ac80fc2201d81109e57cb0e3a30ab",
- "kws": {
- "fr": [
- "surprendre"
- ]
- }
- },
- {
- "nm": "nettoyeur",
- "id": "29e2f5a6222638b02ecfa87fa627819e0daebf71815852db2dc3fea947b963cf",
- "kws": {
- "fr": [
- "nettoyeur"
- ]
- }
- },
- {
- "nm": "cicatrice",
- "id": "b934a5a83f6829a379847528fd91b558f5d4a0d93db315ca715ff5189e1899a1",
- "kws": {
- "fr": [
- "cicatrice"
- ]
- }
- },
- {
- "nm": "vaisselle",
- "id": "c29a5047bc3f0402b2bd0148be7101f42e1be41c095878411949faeac173f2f1",
- "kws": {
- "fr": [
- "vaisselle"
- ]
- }
- },
- {
- "nm": "vin",
- "id": "4297ddb3d978211e05698f5e43243abc3cc9283c51f6e138dcb4f77bb5a03866",
- "kws": {
- "fr": [
- "vin"
- ]
- }
- },
- {
- "nm": "coiffeur",
- "id": "89f225a8aafbd087dbd4a99db129ccc7f19a01bd176b7e0feaef16420f4b7942",
- "kws": {
- "fr": [
- "coiffeur"
- ]
- }
- },
- {
- "nm": "comment",
- "id": "c02576eba01b05804948ca7d25388495554143291366988b5af23c63fa9cf0cf",
- "kws": {
- "fr": [
- "comment"
- ]
- }
- },
- {
- "nm": "février",
- "id": "e8898903f639c5be07630013ab6d9f3a18ba5c94f2a06c7685ed7e16f93ec390",
- "kws": {
- "fr": [
- "février"
- ]
- }
- },
- {
- "nm": "terminer",
- "id": "a5d64d760c42eb384a836462423058908f0100e634231e2dacc8a810f059f6ec",
- "kws": {
- "fr": [
- "terminer",
- "finir"
- ]
- }
- },
- {
- "nm": "glisser",
- "id": "556d6bc3a1b02437d9e5be45591caf531fe91a30404a829a9a3b7a0e5a1d6584",
- "kws": {
- "fr": [
- "glisser"
- ]
- }
- },
- {
- "nm": "k",
- "id": "bad3d7858b2695c3a2ffbbd97f0ab29240c5eeb56d91143136faa4a169592dbe",
- "kws": {
- "fr": [
- "k",
- "lettre"
- ]
- }
- },
- {
- "nm": "préparer",
- "id": "d78eb3201626b2e7aa5828f99fc5c4723cc35fe0abf647b63505e75276f01e93",
- "kws": {
- "fr": [
- "préparer"
- ]
- }
- },
- {
- "nm": "capeline",
- "id": "47bdc95b87813732e24f64a49bcee572bb357f48a6455f44b0c9410b754fdf07",
- "kws": {
- "fr": [
- "capeline"
- ]
- }
- },
- {
- "nm": "vêtement",
- "id": "9862b63029431d90e97f37482d80bbb6e3aebcc60690a48a9e01374b604b7015",
- "kws": {
- "fr": [
- "vêtement",
- "sweet-shirt"
- ]
- }
- },
- {
- "nm": "banane",
- "id": "bbbd9bfeccdbea111ce28517875d77af31ef54f07e97dad8fec62fa82056abd2",
- "kws": {
- "fr": [
- "banane"
- ]
- }
- },
- {
- "nm": "carrosse",
- "id": "6a20609c4e4597624d3bd995fe830012091f4de3e3347ffc6f458d5f56ea7a62",
- "kws": {
- "fr": [
- "carrosse",
- "voiture à cheval",
- "voiture"
- ]
- }
- },
- {
- "nm": "ovaires",
- "id": "2961213dad1e38ab6f20759abbca141ed693965950105cb7875c4d6688793a1c",
- "kws": {
- "fr": [
- "ovaires"
- ]
- }
- },
- {
- "nm": "fauteuil",
- "id": "efe559606fbfb3a20ca494492bc2119f3404148cdb19a57b8273afdbb0f5decb",
- "kws": {
- "fr": [
- "fauteuil"
- ]
- }
- },
- {
- "nm": "moteur",
- "id": "5f86c1a81d732c2a72993f7852b57000a4b7066279238d09a5034414ebf66759",
- "kws": {
- "fr": [
- "moteur"
- ]
- }
- },
- {
- "nm": "pectoraux",
- "id": "0ed96748a9fa60bc6ca4ffb69484c75178caa4e0440cd81026c221847309d231",
- "kws": {
- "fr": [
- "pectoraux"
- ]
- }
- },
- {
- "nm": "pois",
- "id": "6a26b3feb1496b041b6cc3eb9b42066723a19d0d9b2c3f3b040a92991805da03",
- "kws": {
- "fr": [
- "pois"
- ]
- }
- },
- {
- "nm": "avoir du temps",
- "id": "6bf61a7df1e1c80ba323077dfd868e10ae80ac3afbf32657d7da26640fecc088",
- "kws": {
- "fr": [
- "avoir du temps"
- ]
- }
- },
- {
- "nm": "riche",
- "id": "705f86a645261e40c5abf9f8bcf56f33f4e01ff46099fafb6c6042a1cacb81ba",
- "kws": {
- "fr": [
- "riche"
- ]
- }
- },
- {
- "nm": "nettoyer la vitre",
- "id": "3586cf0d95706e845094c70110cb6df3785f5c1d96afeecd40eb0ec1452e260e",
- "kws": {
- "fr": [
- "nettoyer la vitre",
- "nettoyer les vitres",
- "nettoyer",
- "laver les vitres"
- ]
- }
- },
- {
- "nm": "école",
- "id": "d8dd39e18407d2c1c4759984a8052ce4dff4b908a6de02cfbdd01fb9f8e5a237",
- "kws": {
- "fr": [
- "école",
- "collège"
- ]
- }
- },
- {
- "nm": "gares",
- "id": "7ecef68d0d70b83797b3405fc6eb94e1249215044c96f6bb421a825e232d23c2",
- "kws": {
- "fr": [
- "gares",
- "saisons"
- ]
- }
- },
- {
- "nm": "brocoli",
- "id": "a61bec5ad308c69db104f98dd1fbe6f9609821d1e2f3afbc1938ba8878f491b3",
- "kws": {
- "fr": [
- "brocoli"
- ]
- }
- },
- {
- "nm": "remporter",
- "id": "8bdcc4e58a5ec938af0254052629aa859a08aca84d2518da8871663ca110db9b",
- "kws": {
- "fr": [
- "remporter",
- "retirer de l\u0027argent"
- ]
- }
- },
- {
- "nm": "fourgonnette",
- "id": "b2e808ec7b0b197602cf72eabb64517c11a59932cf7fff11502a82d10fa958dd",
- "kws": {
- "fr": [
- "fourgonnette"
- ]
- }
- },
- {
- "nm": "souffler les bougies",
- "id": "b9edc286244074574e7a56f6dc4451001a09cf1c02d77e22b7c7b4b23045404f",
- "kws": {
- "fr": [
- "souffler les bougies",
- "souffler"
- ]
- }
- },
- {
- "nm": "égalité des chances",
- "id": "be4ba5732f89683eccf1cc5dd553c1b79f95e222272de24d6a7473a33c542247",
- "kws": {
- "fr": [
- "égalité des chances"
- ]
- }
- },
- {
- "nm": "électroencéphalogramme",
- "id": "67485af1f66d7907b7bff3467a1afabe6a1ad95be5321229932d1c0ac882a3a5",
- "kws": {
- "fr": [
- "électroencéphalogramme",
- "éléctro"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "e629129a8c5989b7f77ebc939ab8a5ab9fdb93294281c588431f756212599852",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains sur le ventre",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "tricycle",
- "id": "6f62085708f45893c37524c6008dcc08b12fad0924bf39e5afd962c9e15be394",
- "kws": {
- "fr": [
- "tricycle"
- ]
- }
- },
- {
- "nm": "tirer",
- "id": "01b455d9b0305b65eb1f22bcce2fcd4e33790623e37ba775f5a2a805dee82acc",
- "kws": {
- "fr": [
- "tirer"
- ]
- }
- },
- {
- "nm": "vendeur",
- "id": "396a54870807d9c071cb85b33b2d614071ee59d983b594837c8c493211299fcc",
- "kws": {
- "fr": [
- "vendeur",
- "pâtissier"
- ]
- }
- },
- {
- "nm": "dessert aux amandes et au caramel",
- "id": "28fa84f8362e45d19a0ab658319015e231e01b521c736b2b5a3efbb8a4f7e90c",
- "kws": {
- "fr": [
- "dessert aux amandes et au caramel"
- ]
- }
- },
- {
- "nm": "madeleine",
- "id": "a5638b07422d4a2927f6b65460d4049ee1cb77e934c6df71e51e05c69a1a6ef3",
- "kws": {
- "fr": [
- "madeleine"
- ]
- }
- },
- {
- "nm": "cabochard pilara",
- "id": "c625c4735a028c4bb791c62bf55baa772b757e20941e707a0bd54eea48a30e50",
- "kws": {
- "fr": [
- "cabochard pilara",
- "cabochard"
- ]
- }
- },
- {
- "nm": "c\u0027est nuageux!",
- "id": "c91887ecfd4e74995b4347945516fe4cb70547a490c690d2fb316d7d88dfd88d",
- "kws": {
- "fr": [
- "c\u0027est nuageux!",
- "il y a des nuages!"
- ]
- }
- },
- {
- "nm": "batman",
- "id": "d51697e11a33c6da7b765325b41f349c019325dd1c77819dfba0fbc4a76b7144",
- "kws": {
- "fr": [
- "batman"
- ]
- }
- },
- {
- "nm": "ferme",
- "id": "d868391892a9bb5edb089945bee5b3c0bee2dd7ccbda4d9cd7e09d6cca4a1bee",
- "kws": {
- "fr": [
- "ferme"
- ]
- }
- },
- {
- "nm": "plein",
- "id": "a25a721d5a3eb9b1143528217920219426195f5ac1cdeab1f85e5b4130acc3bc",
- "kws": {
- "fr": [
- "plein"
- ]
- }
- },
- {
- "nm": "laurier",
- "id": "29ca5e4b6f941abe2a2f92ac1c382738dc03130cf8553de0bdb19d386401723c",
- "kws": {
- "fr": [
- "laurier"
- ]
- }
- },
- {
- "nm": "ail",
- "id": "7280e3c7011de60657339fc05d69eb3295249a746250f212d24773175374e68d",
- "kws": {
- "fr": [
- "ail",
- "gousse d\u0027ail"
- ]
- }
- },
- {
- "nm": "pièces",
- "id": "3a9f231addd9381ead8021f64f9fdf5aa178a6a5852a9000d4005ce63d942aa3",
- "kws": {
- "fr": [
- "pièces",
- "argent"
- ]
- }
- },
- {
- "nm": "se laver",
- "id": "66b12969baff8749b9dc1ed7f98cadffd8becf6e50938ed55e397faa591cfcea",
- "kws": {
- "fr": [
- "se laver",
- "se rincer",
- "laver le visage",
- "laver"
- ]
- }
- },
- {
- "nm": "vert foncé",
- "id": "96bf9c37f74bdd6a4e225af5aab0840c407e475ad64fb4eb469fa7e496a9558c",
- "kws": {
- "fr": [
- "vert foncé",
- "vert"
- ]
- }
- },
- {
- "nm": "source",
- "id": "40530fd5a727500d67323a76a1df32b30d413e659a947c83359354d5decdef03",
- "kws": {
- "fr": [
- "source",
- "fontaine ornementale"
- ]
- }
- },
- {
- "nm": "couette",
- "id": "ce3378d002fa200d9074bcf16cc292dc3f0eded58aa1d21cf217ec60bc71d74f",
- "kws": {
- "fr": [
- "couette"
- ]
- }
- },
- {
- "nm": "terrain de basket-ball",
- "id": "b26befae3e9cfb35206d82b8bec5caa4b79057eb4425e32e3a723bbb44dc4315",
- "kws": {
- "fr": [
- "terrain de basket-ball"
- ]
- }
- },
- {
- "nm": "ne pas aimer",
- "id": "5389f0bc6b960f7445736867ef0c8f4b104378e0f3d6fccc9b398de200aef694",
- "kws": {
- "fr": [
- "ne pas aimer"
- ]
- }
- },
- {
- "nm": "balancer",
- "id": "d462b9b60495eeff03bf951e21ccc732d2671ac9690d6b01b5e3b82b18cde94b",
- "kws": {
- "fr": [
- "balancer"
- ]
- }
- },
- {
- "nm": "aérer",
- "id": "05c442f3bcd160eed05c85342cde7556c8620136a0f110e89636545e12c5354d",
- "kws": {
- "fr": [
- "aérer"
- ]
- }
- },
- {
- "nm": "sin traduccion",
- "id": "3f84fffb920a9d06ac515f6f3dddc91b2710ee1932df07d2c5c31c7fd6f056f1",
- "kws": {
- "fr": [
- "sin traduccion"
- ]
- }
- },
- {
- "nm": "sombre",
- "id": "167c052b308a8c05dbc74de67268da2f236746140ed53295e78ffb96c0be4ae8",
- "kws": {
- "fr": [
- "sombre"
- ]
- }
- },
- {
- "nm": "trousse",
- "id": "f7fa6afd8441fee578f37499bd2f6df4b177381055b1f34143d0bf31cc3501af",
- "kws": {
- "fr": [
- "trousse"
- ]
- }
- },
- {
- "nm": "hockey",
- "id": "720c76e940226b0ac203fc343eb225b47be460b1eb71bc177b5b687f2a3f2a90",
- "kws": {
- "fr": [
- "hockey",
- "joueur de hockey sur glace",
- "joueur"
- ]
- }
- },
- {
- "nm": "ajuster dose",
- "id": "4425a0a7cb849d8e1350c6a69f8c2dcfd75b82cfcec8b04bcf8229a1ea25cca3",
- "kws": {
- "fr": [
- "ajuster dose"
- ]
- }
- },
- {
- "nm": "magasin de la ludothèque",
- "id": "6eb298f78f42146998c7642a10ec55a901ace7fb22b72d532a9474158c523121",
- "kws": {
- "fr": [
- "magasin de la ludothèque"
- ]
- }
- },
- {
- "nm": "nettoyer le peigne",
- "id": "6de48f30ca2b908954348b66b4b22eec4f39b6660ed973b8c8fb32d54ff69414",
- "kws": {
- "fr": [
- "nettoyer le peigne",
- "nettoyer"
- ]
- }
- },
- {
- "nm": "lève-personne hospitalier",
- "id": "812194b59312ee788cd0e2eaf452fa973fa504e4add2876b3add8ba8d537e676",
- "kws": {
- "fr": [
- "lève-personne hospitalier",
- "grue"
- ]
- }
- },
- {
- "nm": "politique",
- "id": "e5de9e142df9364af1177fdd98e3219372effe900e3c3dad26619c734eb94ebb",
- "kws": {
- "fr": [
- "politique"
- ]
- }
- },
- {
- "nm": "camion de pompiers",
- "id": "6f798595e886464cb7de7eb8c47f781388a754fe3bca5bf77fb2512a72d9bafd",
- "kws": {
- "fr": [
- "camion de pompiers",
- "voiture de pompier pour enfants"
- ]
- }
- },
- {
- "nm": "prompt",
- "id": "967a3fa4527c0bff99b8041e7609fb22d8fee6d61f45d61c0525645589c84a1b",
- "kws": {
- "fr": [
- "prompt",
- "rapide",
- "rapidement"
- ]
- }
- },
- {
- "nm": "déprimé",
- "id": "bba7ef464af14915e13b62192d3f2b3f69a4a2f08354a313c3ffa001d5ef8b0f",
- "kws": {
- "fr": [
- "déprimé",
- "pessimiste",
- "tristesse",
- "triste",
- "expression",
- "affligé",
- "malheureux"
- ]
- }
- },
- {
- "nm": "eaux thermales",
- "id": "94aa0a71fe0afb6df4439a19b0deb1c0cd49a53823d85ae2dd0113c8ed816876",
- "kws": {
- "fr": [
- "eaux thermales",
- "hydrothérapie",
- "spa"
- ]
- }
- },
- {
- "nm": "bâtons de merlu",
- "id": "6c6066f67caa8bfa2f92f211a29bd39438cbc77b381af58682b2525fd657d8e4",
- "kws": {
- "fr": [
- "bâtons de merlu",
- "poisson pané",
- "poisson",
- "merlu"
- ]
- }
- },
- {
- "nm": "poitrine",
- "id": "db5c2d57e78a9b8bc7a569a26e2bf68ea2a69033576fc407a4a40f47abe537b1",
- "kws": {
- "fr": [
- "poitrine",
- "sein",
- "néné"
- ]
- }
- },
- {
- "nm": "s\u0027opposer",
- "id": "b40a32c2ecdc1991065be5e0617fd9152e898b1117ff62581f94debec88bbc59",
- "kws": {
- "fr": [
- "s\u0027opposer"
- ]
- }
- },
- {
- "nm": "moule",
- "id": "67f14c1bbe6b2aee7ee281953712b1190c1fd9f4d14d66c604a7e9204b1cbcdb",
- "kws": {
- "fr": [
- "moule"
- ]
- }
- },
- {
- "nm": "dinde au four",
- "id": "de0de9bd1cf6f232c6ca15d40e2842092f4ac1b5c105218fd35d00cc2d297af0",
- "kws": {
- "fr": [
- "dinde au four"
- ]
- }
- },
- {
- "nm": "distraire",
- "id": "920ce1f2cd217a6bdc51093a84974e60c092259e13391e9694deb63c677e43b8",
- "kws": {
- "fr": [
- "distraire",
- "distrait",
- "s\u0027égarer"
- ]
- }
- },
- {
- "nm": "porte-clés",
- "id": "7ed56deaf1813635f8d06a1abb66f35978994b52e4c7dd77a0c31f43f1bae100",
- "kws": {
- "fr": [
- "porte-clés"
- ]
- }
- },
- {
- "nm": "bonbon",
- "id": "da7fe636b1efe182048492f3c7520b5eedaca9ccc1a97a54dea9f59c7e541870",
- "kws": {
- "fr": [
- "bonbon"
- ]
- }
- },
- {
- "nm": "prendre le petit déjeuner",
- "id": "430f49a9e4fa9be0b05ad758fac58b44ea16d5d9fb4304325a285627a8100802",
- "kws": {
- "fr": [
- "prendre le petit déjeuner"
- ]
- }
- },
- {
- "nm": "morceau de fromage",
- "id": "a0ad19866ff1ce6f14cd5b95a4ab1ce078d363528c910bc0a429e8586fbf8ff9",
- "kws": {
- "fr": [
- "morceau de fromage",
- "fromage"
- ]
- }
- },
- {
- "nm": "voiture de rallye",
- "id": "5c818c18d77f21d89f2c3473de3675d86def4c20048b53f7a002796e52fc0a76",
- "kws": {
- "fr": [
- "voiture de rallye",
- "voiture de sport"
- ]
- }
- },
- {
- "nm": "café",
- "id": "f843c6ba5dec27b96a7d0969278ec144798914fe76a9eb88cf979008080f50b6",
- "kws": {
- "fr": [
- "café"
- ]
- }
- },
- {
- "nm": "personne autiste",
- "id": "efa1bac275d127be5afabf204ae9bc20c41f68bca10446adc75512405c3d528a",
- "kws": {
- "fr": [
- "personne autiste"
- ]
- }
- },
- {
- "nm": "euros",
- "id": "2c68300172e52900dfb98d07d56f42fa571f4794b548e726ace2a3812ecf42cf",
- "kws": {
- "fr": [
- "euros",
- "2 euros"
- ]
- }
- },
- {
- "nm": "scarabée",
- "id": "dfc9e6e8357504bbdef77a6d1b0f043c48f23fc11e3747a8d5be965b6b1e6154",
- "kws": {
- "fr": [
- "scarabée"
- ]
- }
- },
- {
- "nm": "lecteur cd",
- "id": "1de684614f02f659db2dd49ef537c12f9af5bbbed32a47a99ed7c72da135736b",
- "kws": {
- "fr": [
- "lecteur cd",
- "lecteur"
- ]
- }
- },
- {
- "nm": "galant",
- "id": "87de1eabad16b6c5a7043c8963485b4f6fd32f7100f6f92f6cd0d298ffa3d145",
- "kws": {
- "fr": [
- "galant",
- "armature"
- ]
- }
- },
- {
- "nm": "parler au téléphone",
- "id": "3cdfaec747de1cf8e5b7c6f03704f5c01252ef1d96e434af141d2108d7f3e507",
- "kws": {
- "fr": [
- "parler au téléphone",
- "téléphoner",
- "appeler"
- ]
- }
- },
- {
- "nm": "conciergerie",
- "id": "18db890c1c1e9b9983e0305eba037c4a2dc5725a34f76a8440a52809685fdef2",
- "kws": {
- "fr": [
- "conciergerie"
- ]
- }
- },
- {
- "nm": "main droite",
- "id": "a89c2c624a1e74039c89b0f2955f79a888cf2248d89acf0502ec7a7db7318bfd",
- "kws": {
- "fr": [
- "main droite",
- "main"
- ]
- }
- },
- {
- "nm": "vestiaires",
- "id": "df5945353e31409eeacdb1a2f15778a86e79753bd5969d39848ada4001aa2270",
- "kws": {
- "fr": [
- "vestiaires"
- ]
- }
- },
- {
- "nm": "responsable",
- "id": "ca2319e950bb31a8a7733d4fa0003e81bb3d4785d942fa503ce44063861a4a49",
- "kws": {
- "fr": [
- "responsable"
- ]
- }
- },
- {
- "nm": "valladolid",
- "id": "78730d8e535224e92078132e95577b8ba35663091afecf94dde06e548fb40b1a",
- "kws": {
- "fr": [
- "valladolid"
- ]
- }
- },
- {
- "nm": "rincer les cheveux",
- "id": "0d9cdf1ad6ef23f4cf77bed1e53d8bfa53fddf8b8a58a389cecc5986e90ddba3",
- "kws": {
- "fr": [
- "rincer les cheveux",
- "rincer"
- ]
- }
- },
- {
- "nm": "piquer",
- "id": "49ac35196652d0afab718bbadd44267a32d2b7297d623ef715bdd5f8a7a65438",
- "kws": {
- "fr": [
- "piquer"
- ]
- }
- },
- {
- "nm": "chauffeur",
- "id": "235e8d635be4de1ed253e16af3d4ce3d8b744856293ec081c44e5596b21b59fc",
- "kws": {
- "fr": [
- "chauffeur",
- "conductrice"
- ]
- }
- },
- {
- "nm": "père noël",
- "id": "d461baaf0a7202c2f938205cf71f15d0b4172011bd397632c39f1da5c4e7a87e",
- "kws": {
- "fr": [
- "père noël",
- "père-noël"
- ]
- }
- },
- {
- "nm": "le salvador",
- "id": "db05afb57ac67ead337f4298c1c8d9380f3459fa8ddccd53e93cb5aea3fef723",
- "kws": {
- "fr": [
- "le salvador"
- ]
- }
- },
- {
- "nm": "ceinture",
- "id": "b16d6b3a52ad032e8cd0f3bc9bdfe0bd6204be439a4006cf5c38f0a4b3bfff00",
- "kws": {
- "fr": [
- "ceinture",
- "courroie"
- ]
- }
- },
- {
- "nm": "machine à plastifier",
- "id": "948ed80127e797f72c92222c0150009536ad789b5ad3ad7713bad370053f3039",
- "kws": {
- "fr": [
- "machine à plastifier"
- ]
- }
- },
- {
- "nm": "danemark",
- "id": "47657b664cd92281c9183a0696b84b931ca8e504cc350ca2ba98c8023c99d536",
- "kws": {
- "fr": [
- "danemark"
- ]
- }
- },
- {
- "nm": "pays",
- "id": "1659e6ef1dc76407a7255036d40e8d079d5cf1190d710c8c49a4b86e385d01b4",
- "kws": {
- "fr": [
- "pays",
- "italie"
- ]
- }
- },
- {
- "nm": "instrument musical",
- "id": "40734523876a850a66480abfa7039367f28ebc1d41136b164eee85318213dab2",
- "kws": {
- "fr": [
- "instrument musical",
- "mandoline"
- ]
- }
- },
- {
- "nm": "statue de la liberté",
- "id": "5e04c09a192637627c3ef10504ffde5081f8e5c5ef748d7fa8b05bab615f30ea",
- "kws": {
- "fr": [
- "statue de la liberté"
- ]
- }
- },
- {
- "nm": "saluer",
- "id": "9acf731b6ce9d79b8c3e70b5437f545c7e83f6f2b25d81c3b5446fad020bfbaa",
- "kws": {
- "fr": [
- "saluer",
- "salut"
- ]
- }
- },
- {
- "nm": "synagogue",
- "id": "4c5fa914991de28fcb4706ff118df4c913d49188a2659ccc37ef6f2521291cd1",
- "kws": {
- "fr": [
- "synagogue"
- ]
- }
- },
- {
- "nm": "bruyant",
- "id": "07434fd3ac855c5e3bb6750163a6370c043366548501670f4d10a558212dfaa2",
- "kws": {
- "fr": [
- "bruyant",
- "dérangeant",
- "déranger",
- "le bruit me dérange"
- ]
- }
- },
- {
- "nm": "parking",
- "id": "b103a7954997cfa23129c51bfd3e6bc4f71300206741db0e9af8c456f4e63db5",
- "kws": {
- "fr": [
- "parking"
- ]
- }
- },
- {
- "nm": "châssis",
- "id": "51ce2e4f4315f1928732c81db3a40c2bca9facc4437dfc2214c12613e772a2c3",
- "kws": {
- "fr": [
- "châssis"
- ]
- }
- },
- {
- "nm": "informaticien",
- "id": "5bacb7b0c277833158769a5506aba905449f72ec3ec5491d36ab6bbdfa6fb3b7",
- "kws": {
- "fr": [
- "informaticien"
- ]
- }
- },
- {
- "nm": "draps",
- "id": "e172145b769fa5d884cdd87162adebf9f0fd030dd3ceccdf0ebdb2fba73b116e",
- "kws": {
- "fr": [
- "draps"
- ]
- }
- },
- {
- "nm": "électricité",
- "id": "9633b9af8fdf70e883749c28b22c458db2a44889029d50c16a07fed3900711a7",
- "kws": {
- "fr": [
- "électricité"
- ]
- }
- },
- {
- "nm": "bisexualité",
- "id": "493b9c9b62a8f2e23af071f2bdd933f32e5af41734b71f356e2480d7b709aa80",
- "kws": {
- "fr": [
- "bisexualité",
- "bisexuel"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "ef1e4e19253738bf44528065f5fd7fd69e27d03b320083fc5fcb65fad824adc8",
- "kws": {
- "fr": [
- "praxie",
- "crier",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "droits",
- "id": "670895359436c12652d266812a984d6cc3046e7ba8fc890f71cf05fd3d6dff5a",
- "kws": {
- "fr": [
- "droits"
- ]
- }
- },
- {
- "nm": "séchoir",
- "id": "2b62df5afc0944afad1b8582168040bd7173c27d59dc1e73b8f9dc825ebfd8f5",
- "kws": {
- "fr": [
- "séchoir"
- ]
- }
- },
- {
- "nm": "poireau",
- "id": "d2e5b89b9ca6c2e64dd0831d55b96037243fe829d5025b957692d27132c1b631",
- "kws": {
- "fr": [
- "poireau",
- "poireaux"
- ]
- }
- },
- {
- "nm": "casque",
- "id": "6b3de3c03f85e5d41d29e983dc4506158f8d500308d0262d0f0c2e182d352049",
- "kws": {
- "fr": [
- "casque"
- ]
- }
- },
- {
- "nm": "lièvre",
- "id": "8b98c8a6df9e615afbaf49a1db24f708cf8e53a16e32c5370ec489d8412cb331",
- "kws": {
- "fr": [
- "lièvre"
- ]
- }
- },
- {
- "nm": "montre",
- "id": "b14a9900eb1cb19bfb1e41b05bedf7000cab767a18fee4fd817c81e5b0426879",
- "kws": {
- "fr": [
- "montre"
- ]
- }
- },
- {
- "nm": "coopération",
- "id": "4271c1c8059cb49fee0c53049be4c096a96d210521777d441573de9b8f8b5233",
- "kws": {
- "fr": [
- "coopération",
- "collaboration",
- "aide"
- ]
- }
- },
- {
- "nm": "scanner",
- "id": "a59e99cf32c6e44abb058f4ab66465242f77bb8ca2dcfee0556efafc3b32e79c",
- "kws": {
- "fr": [
- "scanner"
- ]
- }
- },
- {
- "nm": "fiv",
- "id": "c132813fc275f6c63e9e5506194a7ebf4aa582737566a9ae439065c8b1aae31f",
- "kws": {
- "fr": [
- "fiv",
- "reproduction assistée",
- "fécondation in vitro"
- ]
- }
- },
- {
- "nm": "grève",
- "id": "895a14ba73124bdcb0f7992c15c946d4ef23729a7f54acf2c014093a575bafd0",
- "kws": {
- "fr": [
- "grève"
- ]
- }
- },
- {
- "nm": "nous ne nous comprenons pas",
- "id": "85d800ca078bb3ecd20d0a5868b830d6736cbf9a32ae41e97705237557fad410",
- "kws": {
- "fr": [
- "nous ne nous comprenons pas"
- ]
- }
- },
- {
- "nm": "bottines",
- "id": "b6f7d4277abd3ed5c126c9b9639fc8db014dc0cf910425dee77aed9142d7f04b",
- "kws": {
- "fr": [
- "bottines"
- ]
- }
- },
- {
- "nm": "atmosphère",
- "id": "1adc2b7c435171cd84a9f648d3bdf9f2875de397ad90f880d9147393903725c5",
- "kws": {
- "fr": [
- "atmosphère"
- ]
- }
- },
- {
- "nm": "ensemencement",
- "id": "9697c2bcbe2191ca93aff70429421f4054d5c06fa73abc77a10aa84a2f1a6dda",
- "kws": {
- "fr": [
- "ensemencement",
- "ensemencer",
- "planter"
- ]
- }
- },
- {
- "nm": "belette",
- "id": "baa7b7ec75ca340a31b661b688b285236e817912e4a660954f225a85f6bb9ea0",
- "kws": {
- "fr": [
- "belette"
- ]
- }
- },
- {
- "nm": "oeufrier",
- "id": "86e1f0ef609f917b3d731c78c06cfe6e56cfab1ab2be6140e0346803fca82ee0",
- "kws": {
- "fr": [
- "oeufrier"
- ]
- }
- },
- {
- "nm": "vélo",
- "id": "76eeba524e4af0b5b49e6c19c574f0ad87ef873f3f34d2724558ac13339d4a8b",
- "kws": {
- "fr": [
- "vélo",
- "bicyclette"
- ]
- }
- },
- {
- "nm": "piquer",
- "id": "33a6aca42746749a2b5a555c26a352ce8c04066a46b2c0a0414dec793d309caa",
- "kws": {
- "fr": [
- "piquer",
- "gratter"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "64978ff23e5164f48c54111ad5a455baf252b91b05084cae160c3decd9abfaf6",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains à la taille",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "chapelet de pétards",
- "id": "c89b8a210d7ae6dbf430f633445b4e5e2db24c1abcaf28bebaae4cda9e90aabd",
- "kws": {
- "fr": [
- "chapelet de pétards",
- "mascletá"
- ]
- }
- },
- {
- "nm": "à soupe",
- "id": "8de9573cfe30204db6408987963bf8b9a27aaa837b8149d8dfae3cde6bec6da9",
- "kws": {
- "fr": [
- "à soupe"
- ]
- }
- },
- {
- "nm": "chaud",
- "id": "fbac4eefedbcaa424576b73615310af9dcb145562fd17f81377f1582d7cb7b4a",
- "kws": {
- "fr": [
- "chaud",
- "astre",
- "soleil"
- ]
- }
- },
- {
- "nm": "il neige!",
- "id": "f86cb0f2f854ba4d3e8ec486fb86d65ebd160916db49b0aeb1fb2f35772c4984",
- "kws": {
- "fr": [
- "il neige!"
- ]
- }
- },
- {
- "nm": "esquimau",
- "id": "a851fe16e3355d0a7da09cc408a36fd6f5c75c665132020654a0b5a74369255a",
- "kws": {
- "fr": [
- "esquimau",
- "étranger"
- ]
- }
- },
- {
- "nm": "horizontal",
- "id": "0f158bb1a0d6e2e55fba30419298aaae07cdcb0ff6a8703784ec41b1fa6afab6",
- "kws": {
- "fr": [
- "horizontal"
- ]
- }
- },
- {
- "nm": "chirurgienne",
- "id": "6d78d8de31e85233ffa5188d85b072916d159068ce3c9db780d9d9248459deae",
- "kws": {
- "fr": [
- "chirurgienne"
- ]
- }
- },
- {
- "nm": "évènement",
- "id": "efcf2625a95bd8fda1bde297ec98412c9875690444cc86aeab3879cd1bedbc16",
- "kws": {
- "fr": [
- "évènement",
- "affiche",
- "annonce"
- ]
- }
- },
- {
- "nm": "hanche",
- "id": "96cb5074ac0276900ae2aed222841e1c0d9b9dfd9b0f779eb9e6ba502e51e9da",
- "kws": {
- "fr": [
- "hanche"
- ]
- }
- },
- {
- "nm": "sensibiliser",
- "id": "dafbb8241597c385dd26c99ad86127ae1b020ce88df96d349241ad2676f81336",
- "kws": {
- "fr": [
- "sensibiliser"
- ]
- }
- },
- {
- "nm": "se mettre la main dans le pantalon",
- "id": "56ee979af5ac53d5c23a491c6d2ebfc106a4729496f30578a7447cf2870bff75",
- "kws": {
- "fr": [
- "se mettre la main dans le pantalon"
- ]
- }
- },
- {
- "nm": "embrasser",
- "id": "9cab3097774ed5b5b288614a5a281002a7c59d75711f2db619e7429599905ae2",
- "kws": {
- "fr": [
- "embrasser",
- "donner un bisou",
- "baiser"
- ]
- }
- },
- {
- "nm": "naître",
- "id": "5877847d2772f06f6681dab25946d1fdf9be86539efa2713a22f6392ccb3f134",
- "kws": {
- "fr": [
- "naître"
- ]
- }
- },
- {
- "nm": "inquiet",
- "id": "223c7f2f5db3ab1ba32e9f52731dba5de33b467e0fc0d4477331af14ea0dae42",
- "kws": {
- "fr": [
- "inquiet"
- ]
- }
- },
- {
- "nm": "pompier",
- "id": "487b2dc8f476bb7990a62fcb819dcc9a5de569278d8a3ba7da0f4d25b9a7f5ef",
- "kws": {
- "fr": [
- "pompier"
- ]
- }
- },
- {
- "nm": "prendre",
- "id": "5b82757d7bfc40f67b0c0cc48c688b727059cf9273e25a31e16465285d642143",
- "kws": {
- "fr": [
- "prendre"
- ]
- }
- },
- {
- "nm": "cabochard",
- "id": "81b2d90ee98c0dada83c1b9c3f54902fb5d0302320d6e4385a722539c2fe5910",
- "kws": {
- "fr": [
- "cabochard"
- ]
- }
- },
- {
- "nm": "détruire",
- "id": "1cbba614adab07c38e461e33df98ceb00cf3a77d0d43da8f007283363b086c97",
- "kws": {
- "fr": [
- "détruire"
- ]
- }
- },
- {
- "nm": "presser",
- "id": "0b06178036f38345da050ac2a452fa9779d2ca77965f62a79e6af46f36143c2e",
- "kws": {
- "fr": [
- "presser"
- ]
- }
- },
- {
- "nm": "éprouver",
- "id": "87595426ad736942dd45e7404a908c3cb71e607759491383fa8221a436791f93",
- "kws": {
- "fr": [
- "éprouver"
- ]
- }
- },
- {
- "nm": "cidre",
- "id": "132404f341eafb3769abe2a937f940d788f8c15734e896c35882558707d9343f",
- "kws": {
- "fr": [
- "cidre"
- ]
- }
- },
- {
- "nm": "doser",
- "id": "7626f079cac992bab0d4387dbec1517d299247b161125117b11d435f53d95039",
- "kws": {
- "fr": [
- "doser"
- ]
- }
- },
- {
- "nm": "boutons",
- "id": "840f455ff8e5d5d06420a7826ea92ce37d51e4af7e9d6cab41721a0527fdf0bf",
- "kws": {
- "fr": [
- "boutons"
- ]
- }
- },
- {
- "nm": "ou",
- "id": "edf7f0e8c99323aea3bd81d2142cd4c79f73189813500fea68cf6bfe605a8f21",
- "kws": {
- "fr": [
- "ou"
- ]
- }
- },
- {
- "nm": "rouleau",
- "id": "9b9a5b61949d39ec6f62029339682c19b7172b93c8ac41d19d833e9637b6bd5d",
- "kws": {
- "fr": [
- "rouleau"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "04c9c6aeaa9b674225987c9aa0b9ae0345a16db9e9d4f69c23210c0494c9bf36",
- "kws": {
- "fr": [
- "praxie",
- "sortir la langue",
- "orthophonie",
- "retirer"
- ]
- }
- },
- {
- "nm": "compost",
- "id": "7cb9bafa4fac5b042a50a3e0cc72f83a9ddae239c36551a0d7d297a4dce606ca",
- "kws": {
- "fr": [
- "compost",
- "compostage"
- ]
- }
- },
- {
- "nm": "château de sable",
- "id": "55bb6bb6d7e8cc05159fbc2ca7ed92521a9b2ce80c51f789e592382f8d4f47c3",
- "kws": {
- "fr": [
- "château de sable"
- ]
- }
- },
- {
- "nm": "pupille",
- "id": "9bd82b0dbc4894cd49c7f64f6471216307a2a59cdf777916cf1ee85807eff629",
- "kws": {
- "fr": [
- "pupille"
- ]
- }
- },
- {
- "nm": "se déshabiller",
- "id": "7aea508a628633cd873a7981d17a63d82630aa91e515cc089600d70f037ea80d",
- "kws": {
- "fr": [
- "se déshabiller",
- "baisser le pantalon",
- "baisser"
- ]
- }
- },
- {
- "nm": "vestiaires",
- "id": "39a5ade4f766d03d5c71e9bec147ea6869f1e08d83e3d7a8f77626b8d3332411",
- "kws": {
- "fr": [
- "vestiaires"
- ]
- }
- },
- {
- "nm": "sin traduccion",
- "id": "b832779f838b32bad091f2ee9c49dbdb1dc331d36f2952cab2eb56a46963a87c",
- "kws": {
- "fr": [
- "sin traduccion"
- ]
- }
- },
- {
- "nm": "coller",
- "id": "1bb17d5d40e7e330c8d481e635b2c272b649fa436cab5e8cbca069ae102c5d54",
- "kws": {
- "fr": [
- "coller"
- ]
- }
- },
- {
- "nm": "piailler",
- "id": "838cf23e4f3d4e223735b8261ac51ab2e77192ef41a3fb28745818b05aeb983c",
- "kws": {
- "fr": [
- "piailler"
- ]
- }
- },
- {
- "nm": "pologne",
- "id": "7130278b9074b434668e8e9af70657ab4b360dc82ba2184f0aefa837143c5fb7",
- "kws": {
- "fr": [
- "pologne"
- ]
- }
- },
- {
- "nm": "neveu",
- "id": "4714afa30be435c531f55cd62376a236b4ce7ee2800b039eb65f3a0ed8f9e9a3",
- "kws": {
- "fr": [
- "neveu"
- ]
- }
- },
- {
- "nm": "rendre",
- "id": "1ed0ac370a79221eb28cd17fac2109e795c18020f5c69eb6e20a271496d8a572",
- "kws": {
- "fr": [
- "rendre",
- "récupérer"
- ]
- }
- },
- {
- "nm": "plonger",
- "id": "53d392ec15aced2334e05d99390ea8ba2068ed425dc0ca86a42527d88e40b8b8",
- "kws": {
- "fr": [
- "plonger",
- "plongeur",
- "immersion",
- "submergé"
- ]
- }
- },
- {
- "nm": "amie",
- "id": "1f54c91e09ae5c94ab9846c7c6f497a1935ad10b9984abdb5a92b983b1798bf8",
- "kws": {
- "fr": [
- "amie"
- ]
- }
- },
- {
- "nm": "neveu",
- "id": "402526768d6d88a489d47e4c535933e4052534f426d946977613e5e8032b08ce",
- "kws": {
- "fr": [
- "neveu"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "b7bdaf5fb77a7d0f4bfe2185605e16807cbfd08521bf9f86ca716e888935b4a8",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains derrière la tête",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "euros",
- "id": "48a39821a887926d2b449217a6dd18d7340279af4639e78b293f92fe7afa01da",
- "kws": {
- "fr": [
- "euros",
- "billet",
- "20 euros",
- "argent"
- ]
- }
- },
- {
- "nm": "chercher",
- "id": "5d276aae3e645d0505d07e4a0bb9753502f5ebf48bcf7bff19d0228b817a816b",
- "kws": {
- "fr": [
- "chercher",
- "rechercher"
- ]
- }
- },
- {
- "nm": "libraire",
- "id": "bcbb7179a84c19cc438f67ceba8ceb8a4dea5990f699a8176c125e73c96f6984",
- "kws": {
- "fr": [
- "libraire"
- ]
- }
- },
- {
- "nm": "après-shampoing",
- "id": "c74866b7d386733c9f37b21b4e3375a0dfb8f03f5329051cae31a0046dd7abed",
- "kws": {
- "fr": [
- "après-shampoing"
- ]
- }
- },
- {
- "nm": "pêcheuse",
- "id": "6b2b7357075a6e3fa0b41f5b798434d8d69b0b934e400842d758c0396f4ac6f3",
- "kws": {
- "fr": [
- "pêcheuse",
- "pêche",
- "marinière"
- ]
- }
- },
- {
- "nm": "tronc",
- "id": "5a70ab4d6e1e38bec8a3e16573b0eaa0c7f9acc3a6d78798e70ce443c684e6d7",
- "kws": {
- "fr": [
- "tronc"
- ]
- }
- },
- {
- "nm": "appareil",
- "id": "4afdcedc7e75b9414658cf174b364f802e24e57d763430bc74925d3ee556c464",
- "kws": {
- "fr": [
- "appareil"
- ]
- }
- },
- {
- "nm": "hippopotame",
- "id": "aca04f2a86622b5cb4edb598c1d14735f85fb9c5cc7e4444f670b5082f07b4ab",
- "kws": {
- "fr": [
- "hippopotame"
- ]
- }
- },
- {
- "nm": "tatou",
- "id": "f4fcb4600db3c0d56271ad00f53e551ac08c9373904ebebace21b88ff96c55de",
- "kws": {
- "fr": [
- "tatou"
- ]
- }
- },
- {
- "nm": "faire du patin à glace",
- "id": "9c812bed9a5ebcb490d60e75d19c736a9c42e7457dc6601eb973819eeaa993e7",
- "kws": {
- "fr": [
- "faire du patin à glace",
- "faire du patin"
- ]
- }
- },
- {
- "nm": "rapprocher",
- "id": "c824ed5fc546e80aed1ffeb3a3f5421d275925156238084df73cdf246bc8d6ef",
- "kws": {
- "fr": [
- "rapprocher",
- "s\u0027approcher"
- ]
- }
- },
- {
- "nm": "travailler",
- "id": "d90ab4a5a23f7c681a9c35627011be95909d7110527c0ffd9271b0e1393966ab",
- "kws": {
- "fr": [
- "travailler"
- ]
- }
- },
- {
- "nm": "étendoir",
- "id": "8fce7f3d32c403f1ec212552cae8583c678299d2660a0894d052b176649b9883",
- "kws": {
- "fr": [
- "étendoir"
- ]
- }
- },
- {
- "nm": "prisme",
- "id": "d0421bce7d6368dfd4a26d2a4e5ec81586c66edd40df4d9fe6c4d37a2dbf2ac1",
- "kws": {
- "fr": [
- "prisme"
- ]
- }
- },
- {
- "nm": "hibou",
- "id": "c9de55d8a80c456409b96c575784c9e3a175ca298f8213a5f47907995ca0799d",
- "kws": {
- "fr": [
- "hibou"
- ]
- }
- },
- {
- "nm": "terroriste",
- "id": "1f7d82ddf9d3a648e30db3a20af9a03d04cb4459d6e54115afb19ab40ddd9af3",
- "kws": {
- "fr": [
- "terroriste"
- ]
- }
- },
- {
- "nm": "intégration",
- "id": "6286222eddc8342920bc4e46a94a176adbaeef5c5af1b916fa1ad241a8f2bdae",
- "kws": {
- "fr": [
- "intégration"
- ]
- }
- },
- {
- "nm": "pic",
- "id": "2f4df307ce73e65ae83c307469b10268c02caaba8bb7554bc24fb56b88726793",
- "kws": {
- "fr": [
- "pic",
- "sommet"
- ]
- }
- },
- {
- "nm": "tombe",
- "id": "930cb139d240062d309789bea14549ddb45daceac1501f3d2092ef44eb7455da",
- "kws": {
- "fr": [
- "tombe"
- ]
- }
- },
- {
- "nm": "escalader",
- "id": "aae1231a6f8cc607e075d31b7d930b459d041a2bbf5003111380043af0207f37",
- "kws": {
- "fr": [
- "escalader",
- "remonter",
- "grimper"
- ]
- }
- },
- {
- "nm": "piéton",
- "id": "b1b83a29375460bede61d713ba1fb1df1f0c8f7ef3d157484bb1a3d2f7b0d170",
- "kws": {
- "fr": [
- "piéton"
- ]
- }
- },
- {
- "nm": "formulaire",
- "id": "f61a5fb6e9aeaea32839f97e8d2c6ae7069f7a1f9d55ac89b5c114fd44280e4c",
- "kws": {
- "fr": [
- "formulaire"
- ]
- }
- },
- {
- "nm": "déshabiller",
- "id": "4ef96498077864394a01006f2e8fda98e62e7bc2ef4559b5847ca81725e13cee",
- "kws": {
- "fr": [
- "déshabiller",
- "dévêtir",
- "se déshabiller"
- ]
- }
- },
- {
- "nm": "grenade",
- "id": "c5507456948a176cebf61a3dc81cf75501d3f4dd6d17c59efd59782e82a9ed63",
- "kws": {
- "fr": [
- "grenade"
- ]
- }
- },
- {
- "nm": "réhabiliter",
- "id": "5e027e1df3f0835f3db1f2d116a2c82a358360bf95fd5e72389c4cf68ee49eb5",
- "kws": {
- "fr": [
- "réhabiliter"
- ]
- }
- },
- {
- "nm": "troupeau",
- "id": "b53729566d8797219b9ff85ca12ffdb4e0ef5ca6cc95b97957fe184c1a0e637e",
- "kws": {
- "fr": [
- "troupeau"
- ]
- }
- },
- {
- "nm": "indépendant",
- "id": "7d023c5db9bfe600ba5e46bf951cb42c48f0ae382c4dc85ffd6e9243e8193a1a",
- "kws": {
- "fr": [
- "indépendant"
- ]
- }
- },
- {
- "nm": "circonférence",
- "id": "9ee332aa81ef9083f2f1bd2f784d8e99b7a04e23c85338f5ce6f6ed351c88b83",
- "kws": {
- "fr": [
- "circonférence"
- ]
- }
- },
- {
- "nm": "entre",
- "id": "f3bca63c7315fc4d1eea49e2337b822f3b4b7a0a88216b7911ed2996ae0684fd",
- "kws": {
- "fr": [
- "entre"
- ]
- }
- },
- {
- "nm": "mille",
- "id": "7913e1805ecf52034a5e760aee363fa4f63ca7f692c3bdcdeb8cb353834e9a82",
- "kws": {
- "fr": [
- "mille"
- ]
- }
- },
- {
- "nm": "ordinateur",
- "id": "56adf1efad21b343085e45db67e39aeaab71c3ac93cf8f60f585ace404dfc792",
- "kws": {
- "fr": [
- "ordinateur",
- "ordinateur"
- ]
- }
- },
- {
- "nm": "tanière",
- "id": "78b02692ab17de65b26a32ba13e528c541db9861bfef2e9c5c614df8b77d2346",
- "kws": {
- "fr": [
- "tanière",
- "cado"
- ]
- }
- },
- {
- "nm": "cuite",
- "id": "bba48ad4c6fd1523273d59c45c02d0514fc3e6718985afe2bdc95a4c13b40299",
- "kws": {
- "fr": [
- "cuite",
- "se soûler",
- "ivre"
- ]
- }
- },
- {
- "nm": "sèche",
- "id": "21c142ef91d35e9a743faa0fb0aa3332c5dcce4d197fb818a82b7dc2c9221f1c",
- "kws": {
- "fr": [
- "sèche",
- "feuille marron",
- "feuille"
- ]
- }
- },
- {
- "nm": "clown",
- "id": "51bd26beb08701c6254bc1ca0553170e0342d6321f014aea14ad9f51602df69d",
- "kws": {
- "fr": [
- "clown"
- ]
- }
- },
- {
- "nm": "boucher",
- "id": "bcd3bcf2df8dda9a2cfcb3582e127b23d63fc1e47975636bac6d7518f0360580",
- "kws": {
- "fr": [
- "boucher"
- ]
- }
- },
- {
- "nm": "veuf",
- "id": "23ce1577b1e48981488c0bbeafb5ad7dbdf686d91f77ec8a28c8d4285f219e97",
- "kws": {
- "fr": [
- "veuf"
- ]
- }
- },
- {
- "nm": "jouer au football",
- "id": "b32c0566619979082096dd281eae5ec058064cb8d82a37a9c5ee0c900ef0e3da",
- "kws": {
- "fr": [
- "jouer au football",
- "football",
- "match"
- ]
- }
- },
- {
- "nm": "réussir",
- "id": "87c25cfffdaf669476ed543ad29a927df638a684714eb979f0e49c3013ba25c2",
- "kws": {
- "fr": [
- "réussir"
- ]
- }
- },
- {
- "nm": "peindre",
- "id": "a53b62713fd9ef79bd4834ceb268d88268d3ad92aa146f24b06395458255d2b1",
- "kws": {
- "fr": [
- "peindre"
- ]
- }
- },
- {
- "nm": "bol",
- "id": "c8c4d4cf71a0fffc831183f0d64cfb97755b774178c75744d8662489b8fd845d",
- "kws": {
- "fr": [
- "bol"
- ]
- }
- },
- {
- "nm": "quand",
- "id": "e484b40a64f56308ab9dc41172edbdce4345edd20859ef3adcb973026bee52ae",
- "kws": {
- "fr": [
- "quand"
- ]
- }
- },
- {
- "nm": "épinard",
- "id": "d6b35663de9e71565fc38225a00ef7a99b26d15a962c662afe0ee7874b72ab93",
- "kws": {
- "fr": [
- "épinard"
- ]
- }
- },
- {
- "nm": "orense",
- "id": "1a38eb38bf43d9a7656298159c278bd3aa28e42cb02f65aa6652856e0d2be817",
- "kws": {
- "fr": [
- "orense"
- ]
- }
- },
- {
- "nm": "hache de boucher",
- "id": "0db61f05a06837f8ac5ef093719d277f5c39b95912909f429a97ce302b9f2631",
- "kws": {
- "fr": [
- "hache de boucher"
- ]
- }
- },
- {
- "nm": "temple",
- "id": "17c615881b688528fa1eb010c64aede7137bf7c0980701f42a8b5ac05e3b22e0",
- "kws": {
- "fr": [
- "temple",
- "église"
- ]
- }
- },
- {
- "nm": "sonner à la porte",
- "id": "e2bd1bb83cfbcfed10c41fcd8823319430b34167fbfdf9613da6ef89b76cfd26",
- "kws": {
- "fr": [
- "sonner à la porte",
- "appeler"
- ]
- }
- },
- {
- "nm": "poirier",
- "id": "3c095506fdbeaac96f7c4b575e70ec1714c935587cb573eedbde109c2fd74757",
- "kws": {
- "fr": [
- "poirier",
- "arbre fruitier"
- ]
- }
- },
- {
- "nm": "norvège",
- "id": "cb07905f72701fd27e0f392f6a9806c927d66eefbf4867804513bd9877ef7447",
- "kws": {
- "fr": [
- "norvège"
- ]
- }
- },
- {
- "nm": "tous",
- "id": "0b15469faf18fef929fbc979cdd4536f1a1bce215b180c341475592798da8f37",
- "kws": {
- "fr": [
- "tous",
- "toutes",
- "toute",
- "tout"
- ]
- }
- },
- {
- "nm": "petit ours",
- "id": "04ba9b4a8e0077e776775afa20ee177b63307af11fc7781decb530275e18ae34",
- "kws": {
- "fr": [
- "petit ours"
- ]
- }
- },
- {
- "nm": "œuf à la poêle",
- "id": "96b347d39d98a8c7dcbb65188fae20052003c716348043284e89aa2dfc537bfe",
- "kws": {
- "fr": [
- "œuf à la poêle"
- ]
- }
- },
- {
- "nm": "baptiser",
- "id": "a8c35b9279b2977dd77cd83701df8abe089a2c6b3520d1353607d64a4c7a783e",
- "kws": {
- "fr": [
- "baptiser",
- "baptême"
- ]
- }
- },
- {
- "nm": "dentiste",
- "id": "c517b2c67e7175d7caab0b3a0d11663d42c326dd00434f20fef512a81a48ff13",
- "kws": {
- "fr": [
- "dentiste",
- "odontologie",
- "odontologiste"
- ]
- }
- },
- {
- "nm": "nouveau",
- "id": "640aec1159ba0b616e9d914b706f5431a4d2230360a9fa8fda7850a09d3d49c0",
- "kws": {
- "fr": [
- "nouveau"
- ]
- }
- },
- {
- "nm": "mauve",
- "id": "4a1b40bfdb43c65c20db26e643eb7562356680dcd6251d35f2348d604a26eb2f",
- "kws": {
- "fr": [
- "mauve"
- ]
- }
- },
- {
- "nm": "autocollants",
- "id": "7e62371abbac6868cd833a69c39c0e6317b5d0fa25f7af4c850b14c43d46b6a4",
- "kws": {
- "fr": [
- "autocollants"
- ]
- }
- },
- {
- "nm": "ouragan",
- "id": "456d0cd358166b9abb4f13757639c9fce28f2514edc9522dada2fe5a04aa4fe7",
- "kws": {
- "fr": [
- "ouragan",
- "tornade",
- "phénomène atmosphérique"
- ]
- }
- },
- {
- "nm": "carpe",
- "id": "fe4601431896802f324ac8008334072189c06dd1399f23b5dee5168b97400c56",
- "kws": {
- "fr": [
- "carpe"
- ]
- }
- },
- {
- "nm": "prendre",
- "id": "c4ea2a68d6e7f7540367d3a16f14ecfd133d1e9202f269e0d947a0fa33efc3d7",
- "kws": {
- "fr": [
- "prendre"
- ]
- }
- },
- {
- "nm": "qui sont-ils",
- "id": "892eb4c164b60f27b2d4c27020e01a046e7316fb35abd6cddf5f1c7241d0c9d5",
- "kws": {
- "fr": [
- "qui sont-ils",
- "qui",
- "inconnus"
- ]
- }
- },
- {
- "nm": "baisser le couvercle",
- "id": "95d980345bf1f4497e000089bc81cab888a2a567265f8c81a04b98a40ee71dbc",
- "kws": {
- "fr": [
- "baisser le couvercle",
- "baisser"
- ]
- }
- },
- {
- "nm": "virus",
- "id": "11d465a1a5927699ade1a5ca22fd363fc3dbb3b437916ee73d17ff20ae6cc578",
- "kws": {
- "fr": [
- "virus"
- ]
- }
- },
- {
- "nm": "récipient",
- "id": "c9344d8513a92c4ad2ee8eb0a539d17a6815bc71df875ebe49671fc703102c51",
- "kws": {
- "fr": [
- "récipient"
- ]
- }
- },
- {
- "nm": "projection",
- "id": "ee526af56b81a8ea21e43b1a91ca2df9d9b3026c53e381eb6771d87aace1daa7",
- "kws": {
- "fr": [
- "projection",
- "projeter"
- ]
- }
- },
- {
- "nm": "joyeux anniversaire !",
- "id": "c40b9addd6a7daed762c4d88de846bb0ed8dcafc1d48eab5978f7efc9361c777",
- "kws": {
- "fr": [
- "joyeux anniversaire !",
- "joyeux anniversaire"
- ]
- }
- },
- {
- "nm": "colisée de rome",
- "id": "2764b6b160090d5a045da023bb889f30995420ebdf74aac240fb504dbbaf07b5",
- "kws": {
- "fr": [
- "colisée de rome"
- ]
- }
- },
- {
- "nm": "poignée de main",
- "id": "1ebd22151006385d2465bc5fbd6e6f833d4a610e29600a59989ef7fd0ba8e242",
- "kws": {
- "fr": [
- "poignée de main",
- "donner la main",
- "saluer"
- ]
- }
- },
- {
- "nm": "sources",
- "id": "a26c69e5ce2048e7a6142a7db703ad5f58808e93f632b498880cb3d8590875c0",
- "kws": {
- "fr": [
- "sources"
- ]
- }
- },
- {
- "nm": "bidon",
- "id": "6f1924efb64a62e6bbed3944f113fe6476f87d49ef2e0e68ce0153e564138977",
- "kws": {
- "fr": [
- "bidon"
- ]
- }
- },
- {
- "nm": "lituanie",
- "id": "28e73630586f68e18f3d94b4521411082c1caf2113f8c1f0fcfc35edcb49afe5",
- "kws": {
- "fr": [
- "lituanie"
- ]
- }
- },
- {
- "nm": "guerre",
- "id": "d3cae7af1cd09d1b257b7a592b0c3d7b3baf811ad9f112a27902df8d575b85c0",
- "kws": {
- "fr": [
- "guerre"
- ]
- }
- },
- {
- "nm": "ivre",
- "id": "cf4c99c639250e627285193ac28b27a5093ca6ea920c5cdabb1ba6f6f48c4e97",
- "kws": {
- "fr": [
- "ivre",
- "soûle"
- ]
- }
- },
- {
- "nm": "parchemin",
- "id": "c1f93dbb63ada0f953d74d6d8dfe57f022550a13286f6e2d12b4681f00dff6c1",
- "kws": {
- "fr": [
- "parchemin"
- ]
- }
- },
- {
- "nm": "voir",
- "id": "1ffbc041e41fa2efb79ae6a4f5599dad05beeb56ef01e24ca5ef003d6ad69abd",
- "kws": {
- "fr": [
- "voir",
- "observer",
- "regarder",
- "regard"
- ]
- }
- },
- {
- "nm": "bâtonnets",
- "id": "b1e8951d766bcd6af9e64b6eb36a9ed9ebf89adf2c731fec33ae6a5259a4dac2",
- "kws": {
- "fr": [
- "bâtonnets"
- ]
- }
- },
- {
- "nm": "récompenser",
- "id": "53d5019f81158a0e71e287c355dbdc273d35501c40549e45a5ff62b4df9a7ff4",
- "kws": {
- "fr": [
- "récompenser"
- ]
- }
- },
- {
- "nm": "rappeler",
- "id": "c3f2ff817418eb171c3121afd1e2192e17e3c4e3e9aab759d4184701e9ef1042",
- "kws": {
- "fr": [
- "rappeler",
- "se souvenir"
- ]
- }
- },
- {
- "nm": "poule",
- "id": "ada0332a25b63d57d4ed41382a5bf9381123935b105d8bd125b1e25a47c77d7c",
- "kws": {
- "fr": [
- "poule"
- ]
- }
- },
- {
- "nm": "ministre",
- "id": "b6282bf6a66784055f89a0f6cf9d44f6b7d29bfc438d81ebee2f82d7aa273f16",
- "kws": {
- "fr": [
- "ministre"
- ]
- }
- },
- {
- "nm": "gâteaux",
- "id": "38a285e51d9de107b9812e3c81d72752b94b3c1d3ea1edf341bd23deef39e277",
- "kws": {
- "fr": [
- "gâteaux"
- ]
- }
- },
- {
- "nm": "fléchette",
- "id": "824662934c614079d1ffb39b99297b8c57a029dce47b6f1b3ef42d0702c11759",
- "kws": {
- "fr": [
- "fléchette"
- ]
- }
- },
- {
- "nm": "caddie de supermarché",
- "id": "3752e52e150d77eb6088e0e590ac5eabacc8c0cb97ac0c20d027b666d88764ac",
- "kws": {
- "fr": [
- "caddie de supermarché",
- "charriot"
- ]
- }
- },
- {
- "nm": "vendeuse",
- "id": "c657384474e5759c7d0e00c7a02950daab831832c49980012e399c622deb06b7",
- "kws": {
- "fr": [
- "vendeuse",
- "s\u0027occuper",
- "marchande de bonbons"
- ]
- }
- },
- {
- "nm": "salopette",
- "id": "d101acfec389cef9f8529f769d05e53925954a64fff1ed7139a932c92113fdeb",
- "kws": {
- "fr": [
- "salopette"
- ]
- }
- },
- {
- "nm": "impulsion",
- "id": "eeb8ef7ba9f3eb5c4f4e94e1ca140a105e4ccc92fbc058b785d302283880eaec",
- "kws": {
- "fr": [
- "impulsion"
- ]
- }
- },
- {
- "nm": "poisson pané",
- "id": "730472d0da27a187c66edd71bd111b9c56dc78bf5c8d9c3b4ff1c23da0a85ef3",
- "kws": {
- "fr": [
- "poisson pané",
- "poisson",
- "filet de poisson pané",
- "filet"
- ]
- }
- },
- {
- "nm": "fatiguer",
- "id": "e9dd370baea8c337561df3335eb48686be2e3d8ac10dc9c8ab9c935843ee862c",
- "kws": {
- "fr": [
- "fatiguer",
- "fatigué",
- "épuiser",
- "épuisé"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "bc2b6219e8d8964d43a093a263662f50bbeaf32594629e868b2a7eba1241608a",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains à la taille",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "brouillon",
- "id": "24f01803a4c357c1a4e18d7280e862bae56696e0f563176f8048d03f85ad02a8",
- "kws": {
- "fr": [
- "brouillon"
- ]
- }
- },
- {
- "nm": "discrimination",
- "id": "65bf72b0105d4a427f586da0944fdc2ed866244d804af14ab5beb9541bf76068",
- "kws": {
- "fr": [
- "discrimination"
- ]
- }
- },
- {
- "nm": "atelier de couture",
- "id": "ca9b3222e8d008db226e6600fc86b44d5955856a206c38717bbf14abcb809a4f",
- "kws": {
- "fr": [
- "atelier de couture"
- ]
- }
- },
- {
- "nm": "souder",
- "id": "fa318b0f58236a89463d9c3437ecbbfb623d460d09c2eee40bbf97380f1fe0f8",
- "kws": {
- "fr": [
- "souder"
- ]
- }
- },
- {
- "nm": "poste",
- "id": "aa8a88a5b5277df9f88934c001bc26bb7eeda205e98fa7b49b14f9c3d538fe6b",
- "kws": {
- "fr": [
- "poste",
- "courrier"
- ]
- }
- },
- {
- "nm": "chaussure en caoutchouc",
- "id": "a8bdd26099ee5dc66d36688715735628090484f79c5764b467ea3ddf08dd5e58",
- "kws": {
- "fr": [
- "chaussure en caoutchouc"
- ]
- }
- },
- {
- "nm": "femelle",
- "id": "fa1dde1e771718d1e15f2d2076f7007adb5ed81a83e6e563fef17691b69adbba",
- "kws": {
- "fr": [
- "femelle",
- "femme",
- "féminin"
- ]
- }
- },
- {
- "nm": "description",
- "id": "d4f4e732944cf822b8c26ce8370b7eb4c4d240e70c5bd3596cbf90466138b65d",
- "kws": {
- "fr": [
- "description"
- ]
- }
- },
- {
- "nm": "enfiler",
- "id": "4c4f6b7d07eb3cdac6dbf6db38f153ed5a75bb3441ca3c59619b11e3b93838d9",
- "kws": {
- "fr": [
- "enfiler"
- ]
- }
- },
- {
- "nm": "éviter",
- "id": "f8d2db2ba2931823dfbd89acf386876bf8673abf394486ffa0b1ab0a18203914",
- "kws": {
- "fr": [
- "éviter"
- ]
- }
- },
- {
- "nm": "à côté de",
- "id": "bbd31936022f82eef562130b5d293919473000e19156d5d48ada534ffe28645e",
- "kws": {
- "fr": [
- "à côté de",
- "près de",
- "conjoint",
- "les deux"
- ]
- }
- },
- {
- "nm": "compte-gouttes",
- "id": "937a04313370b92716d3a36c94de40187108edd85a819691aba7478afb9c63c9",
- "kws": {
- "fr": [
- "compte-gouttes"
- ]
- }
- },
- {
- "nm": "chaussures",
- "id": "d0b699d1b7a8943393ed9b1b8ca7cf4737ab3305c721b29f140a21b963e962f8",
- "kws": {
- "fr": [
- "chaussures"
- ]
- }
- },
- {
- "nm": "passer les menottes",
- "id": "7bfbb3fd2ef679e794e5c85f153bc85564a6dbd42b846d072369e1989be14eb8",
- "kws": {
- "fr": [
- "passer les menottes",
- "menotté"
- ]
- }
- },
- {
- "nm": "plume",
- "id": "38e2b9de5a826ec5b3f585a3f217433da271d04417bf3f8245e609d9461a3020",
- "kws": {
- "fr": [
- "plume"
- ]
- }
- },
- {
- "nm": "carrosserie",
- "id": "1b216de617bf590a21dd33d5248416c2ffa98c5de4fba32e3d92d89126553a82",
- "kws": {
- "fr": [
- "carrosserie"
- ]
- }
- },
- {
- "nm": "lunettes de natation",
- "id": "c96c60f147f660c138a244e446162bf92e6a8c8b31ed230127f31efabd616c53",
- "kws": {
- "fr": [
- "lunettes de natation",
- "lunettes"
- ]
- }
- },
- {
- "nm": "pomme d\u0027amour",
- "id": "b9b15feb996d40838464c5f2ec3dd2d75dd48fd575f541b53aa6e5b1b3a77bde",
- "kws": {
- "fr": [
- "pomme d\u0027amour"
- ]
- }
- },
- {
- "nm": "perdre",
- "id": "828796e197ea7f852405d0f7b267db0c1102fa9092fc18ea347eb8f1f1edec77",
- "kws": {
- "fr": [
- "perdre"
- ]
- }
- },
- {
- "nm": "zèbre",
- "id": "c05c2886be31796d46d6f2d529e81420777c530d297a8071ba58406fcb33e394",
- "kws": {
- "fr": [
- "zèbre"
- ]
- }
- },
- {
- "nm": "mettre des gomettes",
- "id": "ef00ab01434b8406143f8764e5e5c406eec4221be3eab16d8f358d4bca4bb0b0",
- "kws": {
- "fr": [
- "mettre des gomettes",
- "mettre"
- ]
- }
- },
- {
- "nm": "tapis",
- "id": "cf6fe42032580f039df6abc74d4207a36afebf5c7f9b5782fac197077b2f315d",
- "kws": {
- "fr": [
- "tapis"
- ]
- }
- },
- {
- "nm": "nombril",
- "id": "099b2e0498bf592e23d295c0a9b6714dd283ec0a7fc3d7f0a47ecb13c34fb304",
- "kws": {
- "fr": [
- "nombril"
- ]
- }
- },
- {
- "nm": "impair",
- "id": "dcb41b7afb0a30cafc5e0727fb5b8853df50f91d01c10d334bd46375bc533958",
- "kws": {
- "fr": [
- "impair",
- "neuf",
- "numéro",
- "9"
- ]
- }
- },
- {
- "nm": "en-haut",
- "id": "f19975f4023c6febb1e057f5f59163e8b73a56137844bd175686446f718324fa",
- "kws": {
- "fr": [
- "en-haut"
- ]
- }
- },
- {
- "nm": "mouchoirs",
- "id": "586ea28dde6104371c3322c0bb85a147b46fb8ac808ac047baffaa98e7ba4686",
- "kws": {
- "fr": [
- "mouchoirs"
- ]
- }
- },
- {
- "nm": "olivier",
- "id": "1a100b3e7d278ca02f6f4bd784397a4ed26d7ae6971e962627fef384b15f76a1",
- "kws": {
- "fr": [
- "olivier"
- ]
- }
- },
- {
- "nm": "être debout",
- "id": "718d7f708a30968ad3f1747639afa18c407ce50d006e59da66a4ca0387837d23",
- "kws": {
- "fr": [
- "être debout"
- ]
- }
- },
- {
- "nm": "fléau",
- "id": "f1d390dfe159f822dfcfeb3a561586a1993b9e2020638b4fb7efa297bdcaf18a",
- "kws": {
- "fr": [
- "fléau"
- ]
- }
- },
- {
- "nm": "doux",
- "id": "e468a7c7569d43416a065576ef0c01cb56e7dc65ddbabf541fb66a49fceab29c",
- "kws": {
- "fr": [
- "doux"
- ]
- }
- },
- {
- "nm": "chaleur",
- "id": "c9e24072f3c545677041adf28dfd42629e5ca9ccef68445ef47c7eac3c7ef6f0",
- "kws": {
- "fr": [
- "chaleur",
- "chaud",
- "échauffer",
- "bouffées de chaleur"
- ]
- }
- },
- {
- "nm": "percussion",
- "id": "583fdbf0c3d5876d3ec632c88c3307fb4c86451a064bc3b28c24220461aefb90",
- "kws": {
- "fr": [
- "percussion"
- ]
- }
- },
- {
- "nm": "ennuyer de l\u0027",
- "id": "bc1a1818145a11f9eb9d35f0b52593fabf5c1e4ad4136907052b8fe9099db28c",
- "kws": {
- "fr": [
- "ennuyer de l\u0027",
- "voir",
- "regarder la télévision"
- ]
- }
- },
- {
- "nm": "sucer",
- "id": "7bbcc385c017b0cdd1e19e88d1507fce80927664e244f5e287dd00a0825006b0",
- "kws": {
- "fr": [
- "sucer"
- ]
- }
- },
- {
- "nm": "vestiaires",
- "id": "d0bafba4afe36ab82e5d2b034e1f6a547a7723aaacf80508e28722172f25f139",
- "kws": {
- "fr": [
- "vestiaires"
- ]
- }
- },
- {
- "nm": "nœud papillon",
- "id": "c0ff28bc2bb6f5368ece93b4a6cd2386f065ded390b8dcca0749425366a36d24",
- "kws": {
- "fr": [
- "nœud papillon"
- ]
- }
- },
- {
- "nm": "brosser",
- "id": "434e3b6e22e5b112ada2e9e1e51f15509410a4dd4596a3baf4dc8350323efb6a",
- "kws": {
- "fr": [
- "brosser"
- ]
- }
- },
- {
- "nm": "coupe à fruits",
- "id": "17f6a804b2457627bf757c6ae5ea7634edddef64b44ee5f192b4b235e3adb1fa",
- "kws": {
- "fr": [
- "coupe à fruits"
- ]
- }
- },
- {
- "nm": "interdit de regarder",
- "id": "85674fb1124534cf02cbaba65642930af210d5202f08357dc7525bbac8ddee2a",
- "kws": {
- "fr": [
- "interdit de regarder"
- ]
- }
- },
- {
- "nm": "burgos",
- "id": "321f096687eb0289822bf2d39051f39101f367fe7ee7bda7275c23741b8fde58",
- "kws": {
- "fr": [
- "burgos"
- ]
- }
- },
- {
- "nm": "volley-ball",
- "id": "8556aa50d04b8463727129ecf207818cc4dd18951b26b711e4c255e07f9d0d63",
- "kws": {
- "fr": [
- "volley-ball",
- "jouer au volley-ball"
- ]
- }
- },
- {
- "nm": "balançoire",
- "id": "f422e0950abcf17ed17912e6f1da1a6cc9035570542fae5bb699b4f78717a588",
- "kws": {
- "fr": [
- "balançoire"
- ]
- }
- },
- {
- "nm": "soigneur",
- "id": "75a0b8ceda59931a928ecfb6ce54bd0e9c8e2b2abe71a8f2830ec5ca834e28da",
- "kws": {
- "fr": [
- "soigneur"
- ]
- }
- },
- {
- "nm": "phénomène atmosphérique",
- "id": "9f180c1722686fdacd334d681b12f2d520b9fb6e130a65ed031d19f283f2be9b",
- "kws": {
- "fr": [
- "phénomène atmosphérique",
- "chute de neige",
- "neiger",
- "neige"
- ]
- }
- },
- {
- "nm": "selon",
- "id": "d3aea76912b0a6c8dbb0e7b106e58ef60e685b32bbba6e72283199b2dd639de6",
- "kws": {
- "fr": [
- "selon"
- ]
- }
- },
- {
- "nm": "teindre",
- "id": "0f30b55363c29c45dd1522965d4a30b9ee78cdd9e2ae02e99339dc19d8ec55cc",
- "kws": {
- "fr": [
- "teindre"
- ]
- }
- },
- {
- "nm": "cabochard",
- "id": "c53bea1dc4b5489cc56654b900dc971d06f814d30c65714c7653af8a9336a062",
- "kws": {
- "fr": [
- "cabochard",
- "pharmacien"
- ]
- }
- },
- {
- "nm": "vestiaires",
- "id": "17022a4d2bde3004741718cd05406bf8ca750c59e360db4b55e58549797fc13c",
- "kws": {
- "fr": [
- "vestiaires"
- ]
- }
- },
- {
- "nm": "uruguay",
- "id": "141623d75ddb09f42bc40f3214675fefe29adafa4aa48505919ccba69b6ac0c9",
- "kws": {
- "fr": [
- "uruguay"
- ]
- }
- },
- {
- "nm": "arbitre",
- "id": "f5626be419050e38e9178c00f00c402de6e17bde064d2386a32e2438ff78e82c",
- "kws": {
- "fr": [
- "arbitre"
- ]
- }
- },
- {
- "nm": "vendeuse",
- "id": "6dcdfc748185fc556057725dde4e9af6c96e0c07ff55d4a830da16764798e3ce",
- "kws": {
- "fr": [
- "vendeuse",
- "cordonnière"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "78533dee4463d8c0e82469d70b72a368b02a244db86f2da0f96d9b9f5b86f404",
- "kws": {
- "fr": [
- "communauté autonome",
- "melilla"
- ]
- }
- },
- {
- "nm": "oncle",
- "id": "a73b2a85366ca24d755fff966ec2a0e95599b373b04348e93d91b39c71b407fd",
- "kws": {
- "fr": [
- "oncle"
- ]
- }
- },
- {
- "nm": "partir en excursion",
- "id": "812d53afb7e82732cb0837c21375f55a91207dd235717ec82414ddc347e25058",
- "kws": {
- "fr": [
- "partir en excursion",
- "excursion",
- "voyageurs",
- "suivre",
- "aller"
- ]
- }
- },
- {
- "nm": "ouvrir",
- "id": "a957941fab7f6a99cffda00e235438add9770fa725996069febe1d00ad59584e",
- "kws": {
- "fr": [
- "ouvrir"
- ]
- }
- },
- {
- "nm": "ninjakous",
- "id": "46c83d31e5b55535ec917eec97ad8a678e454a8c8e35b9e6a26ea358bb5d28a0",
- "kws": {
- "fr": [
- "ninjakous"
- ]
- }
- },
- {
- "nm": "adulte",
- "id": "4d3b017bfd28076d1162043f4741de02a0210cda54b4f78df73be1665e91a553",
- "kws": {
- "fr": [
- "adulte"
- ]
- }
- },
- {
- "nm": "valencia",
- "id": "b696e79519d76ad9ec4e757f516e8bba7e0b092709cc9625777c1d6db6afe764",
- "kws": {
- "fr": [
- "valencia",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "poster",
- "id": "3821bcd8ff1d866e476f8ddf61ac3610ef756819d61bfde081ffb4e71186c648",
- "kws": {
- "fr": [
- "poster"
- ]
- }
- },
- {
- "nm": "fragile",
- "id": "601866d11a1a22be7240b7d92bb1a74640bc1b31ac5fef223bbbef6834a6a5a8",
- "kws": {
- "fr": [
- "fragile"
- ]
- }
- },
- {
- "nm": "arroser",
- "id": "9a2c573fc1037b1588c56c715b2ecb964392152ee28cac88ae14a7861101ae60",
- "kws": {
- "fr": [
- "arroser"
- ]
- }
- },
- {
- "nm": "sécher les cheveux",
- "id": "8563c504c54da2fe71d65650ca72b51d5c022e94cc0be99a43e963e42364b017",
- "kws": {
- "fr": [
- "sécher les cheveux",
- "sécher"
- ]
- }
- },
- {
- "nm": "cocktail",
- "id": "d8afc2efccad76a66f42114722aade05f931382aa3ad6448900f42fb520aa939",
- "kws": {
- "fr": [
- "cocktail"
- ]
- }
- },
- {
- "nm": "footballeur",
- "id": "bce3f32289549e9adb1487926b873ffa757b5856670332047031754d5a4e0058",
- "kws": {
- "fr": [
- "footballeur"
- ]
- }
- },
- {
- "nm": "viande d\u0027agneau",
- "id": "e44f2cc7237ab6a8b8ea49ddd52505bc70ec28e08bb2286da1142acce429da83",
- "kws": {
- "fr": [
- "viande d\u0027agneau",
- "viande",
- "côte"
- ]
- }
- },
- {
- "nm": "bleu foncé",
- "id": "cee381980ea8878048f2ed35d50fde97e41deb1314f0e9a40eed66c06b52d638",
- "kws": {
- "fr": [
- "bleu foncé",
- "bleu"
- ]
- }
- },
- {
- "nm": "militaire",
- "id": "02362a11bee99f2d1b876edc8bc79e496d71e20190c4c0c5a1a21496f29c2a8e",
- "kws": {
- "fr": [
- "militaire",
- "soldat"
- ]
- }
- },
- {
- "nm": "sonnette",
- "id": "e6a84d4149609d86d9aae8c88370352bc3b42cd687df788ed406a56c2d6a0962",
- "kws": {
- "fr": [
- "sonnette"
- ]
- }
- },
- {
- "nm": "contrôle de l\u0027environnement",
- "id": "c9a18aae4b09728a5f6c1e33c1b8deafa6ac1c9011689ca7f6c161586bfe0cc9",
- "kws": {
- "fr": [
- "contrôle de l\u0027environnement"
- ]
- }
- },
- {
- "nm": "feu",
- "id": "4d336bfa5b2cf56d72d045a254a9d2919bc92f506631890ffe50ac7a50922392",
- "kws": {
- "fr": [
- "feu"
- ]
- }
- },
- {
- "nm": "frit",
- "id": "12eeca1de00599b63e31d53799d97b82fe5b307e5a396a701312e0fb55db3a8a",
- "kws": {
- "fr": [
- "frit"
- ]
- }
- },
- {
- "nm": "remplir",
- "id": "6a68a06105aa83b3d36372e739cc0200859a3c8ba4f9c83d0cf464a160c9db07",
- "kws": {
- "fr": [
- "remplir"
- ]
- }
- },
- {
- "nm": "amaque",
- "id": "518e00625c7167705adb9e661459cc6eede95b5a1b51aaca2d0883dba49ff143",
- "kws": {
- "fr": [
- "amaque",
- "hamac suspendu"
- ]
- }
- },
- {
- "nm": "grenat",
- "id": "095c4b80ef162138b2dec1a06aacfae4edfa470cd1dd91462898b6a447c76662",
- "kws": {
- "fr": [
- "grenat"
- ]
- }
- },
- {
- "nm": "coq",
- "id": "f6e620a4dc218f6754fc45f3aae7d6c540bc0293521452e6c8fcd20f55ef1ba1",
- "kws": {
- "fr": [
- "coq"
- ]
- }
- },
- {
- "nm": "eau",
- "id": "983b3e7f89f919f7f51b17264c003dc89db3e3b4be5f506d313b434f2a86047a",
- "kws": {
- "fr": [
- "eau"
- ]
- }
- },
- {
- "nm": "crème solaire",
- "id": "1e0f8f4f72af0a6da4e6416337259c34ab2752a594e1dd2b13daa7b348db7f61",
- "kws": {
- "fr": [
- "crème solaire",
- "crème"
- ]
- }
- },
- {
- "nm": "avoir l\u0027habitude",
- "id": "93fbbeb9d1b86e544115c34d77a725c9a07838b71305888d7cdedc569d788abe",
- "kws": {
- "fr": [
- "avoir l\u0027habitude",
- "anniversaire"
- ]
- }
- },
- {
- "nm": "mine",
- "id": "6425b4b9d08037f20f49f2983ea2e8b96c065c2fb8994f04bb81bcfe4e80d5fd",
- "kws": {
- "fr": [
- "mine"
- ]
- }
- },
- {
- "nm": "peindre",
- "id": "8306674aca2136491b36f5ed63a742975f2e022cfe8a130624b316260d9860ae",
- "kws": {
- "fr": [
- "peindre"
- ]
- }
- },
- {
- "nm": "boîte de conserve d\u0027olives",
- "id": "4aeaa87968246cbc0ff5652ca5a15445b952ec6a523749d93876816f55f97f18",
- "kws": {
- "fr": [
- "boîte de conserve d\u0027olives",
- "boîtes de conserve d\u0027olives farcies"
- ]
- }
- },
- {
- "nm": "album photos",
- "id": "d81f976cff0a70195bac86f667f2bc94f28ef77f4e73f8ccbc52adc6c7321a77",
- "kws": {
- "fr": [
- "album photos",
- "album"
- ]
- }
- },
- {
- "nm": "farine",
- "id": "c14aeac45b18d338ce97663c2dc557d47e5b537a83b319e5f3ab4a92844c4b73",
- "kws": {
- "fr": [
- "farine"
- ]
- }
- },
- {
- "nm": "presser",
- "id": "07c4b6e015e858f16d96387efbffdef16bb96be0eadd18379eded2dff4564ac3",
- "kws": {
- "fr": [
- "presser",
- "aplatir"
- ]
- }
- },
- {
- "nm": "zéro",
- "id": "9e042ea9eac5082def1d6981c1bf803fc0d0578b9bec51ec12ccbf2a4655f77a",
- "kws": {
- "fr": [
- "zéro",
- "0 dé",
- "0"
- ]
- }
- },
- {
- "nm": "tondre la pelouse",
- "id": "09999c70264a5babfa5bffa74cebd6fdec0fb435c66e87d476e00cc9cc8e28bb",
- "kws": {
- "fr": [
- "tondre la pelouse",
- "faucher",
- "couper"
- ]
- }
- },
- {
- "nm": "rampe",
- "id": "93c57238eed50955fb8065a9f99b177eba155fde9daa7c29a61cb5e6cfc4d410",
- "kws": {
- "fr": [
- "rampe"
- ]
- }
- },
- {
- "nm": "sarcophage",
- "id": "f1237d6a1c14e2d145e2f831a11f22475eb8292299bf5598997df6f751ee6b8f",
- "kws": {
- "fr": [
- "sarcophage"
- ]
- }
- },
- {
- "nm": "planning",
- "id": "4781a0bb786986813541ba34ba4a7f77a80a712fcbd06c36eb91f964f236324a",
- "kws": {
- "fr": [
- "planning",
- "agenda"
- ]
- }
- },
- {
- "nm": "bosse",
- "id": "dba4150cd301d785e4e59e8fcf90a642c20fcd39d96fa8bc2f78b3a964746973",
- "kws": {
- "fr": [
- "bosse"
- ]
- }
- },
- {
- "nm": "chanter",
- "id": "d15d0a1ab306a1cf2337e912046823b5bffa60575ae446270176d5fde7e7ad2f",
- "kws": {
- "fr": [
- "chanter"
- ]
- }
- },
- {
- "nm": "neuropsychologue",
- "id": "b3b14a011321f163f4e517dfbc9ee6094bc4f4235b18ec7ec59342e68f818507",
- "kws": {
- "fr": [
- "neuropsychologue"
- ]
- }
- },
- {
- "nm": "donner un coup",
- "id": "58c336ec93941a77d8b7acdf70e0f951826010b9a870a26f37d99e58a6e5a307",
- "kws": {
- "fr": [
- "donner un coup",
- "coller",
- "maltraiter"
- ]
- }
- },
- {
- "nm": "rincer les mains",
- "id": "32581d94fbe0560c1d2c4b90f5d2eaf79e73b4ebdf7f360b5019a481ff1edb29",
- "kws": {
- "fr": [
- "rincer les mains",
- "rincer"
- ]
- }
- },
- {
- "nm": "perceuse",
- "id": "12a3d66f32fbea07786523f6e85d11a4ba6af8424285c5bc11bbb2bd75cd8a15",
- "kws": {
- "fr": [
- "perceuse"
- ]
- }
- },
- {
- "nm": "mèche",
- "id": "4b8c58816e38153dfde795fac7f3aa5fc35cb7d7a600166330541328ac711b7a",
- "kws": {
- "fr": [
- "mèche"
- ]
- }
- },
- {
- "nm": "rater",
- "id": "2af353989eed2362c90ca58a16cd7bc7921393eb139791f0e230f6dcf62955c0",
- "kws": {
- "fr": [
- "rater"
- ]
- }
- },
- {
- "nm": "être allongé",
- "id": "1fea052c70154fbf84a80fac18e4d13e64471b1734d6144bf9e7f6b5d117d8d3",
- "kws": {
- "fr": [
- "être allongé"
- ]
- }
- },
- {
- "nm": "diriger la circulation",
- "id": "a5f13474aafa9e36051b86c7b461bc21983894973ca6baf650ef41fc5f60fdb8",
- "kws": {
- "fr": [
- "diriger la circulation",
- "diriger"
- ]
- }
- },
- {
- "nm": "cyclisme",
- "id": "e83dc625162415a80a4a75f3d46e86ecfcaaf0af88a04dbf3d5fb774ea77c3ff",
- "kws": {
- "fr": [
- "cyclisme",
- "se ballader en vélo",
- "monter à vélo"
- ]
- }
- },
- {
- "nm": "tarte",
- "id": "71696b736794b1118afeb87634dc4e4ccb117c599a3ef1060a9435d4ebbf4a61",
- "kws": {
- "fr": [
- "tarte",
- "gâteau d\u0027anniversaire"
- ]
- }
- },
- {
- "nm": "tante",
- "id": "cc4b44e8c6b4dcab1e4dd766d254cdbf337e94e8b85513eef538ca1280615b9d",
- "kws": {
- "fr": [
- "tante"
- ]
- }
- },
- {
- "nm": "pièces",
- "id": "516c1ff44dbf1a6b44b4183823fd9d19f12c53cf987e48c047669742a4e4af66",
- "kws": {
- "fr": [
- "pièces"
- ]
- }
- },
- {
- "nm": "coq",
- "id": "60606d529d37310e45caa4c1761829fcb9446b9b0242b1a68253795e7db62ca3",
- "kws": {
- "fr": [
- "coq"
- ]
- }
- },
- {
- "nm": "plante",
- "id": "c68afa9ef5af29e3c4a1d7077d1b031afd68dfc487e0eb0cac194ccdf7493db7",
- "kws": {
- "fr": [
- "plante"
- ]
- }
- },
- {
- "nm": "louer",
- "id": "4f69569e33b6c9bdf037ee887544a5215d3207c3ab8e0954263b2ffa516ac42e",
- "kws": {
- "fr": [
- "louer"
- ]
- }
- },
- {
- "nm": "ranger",
- "id": "0479abc9ba82ea76cdb17c740e7313612e06c6e0be1ddfd3d73e372898362364",
- "kws": {
- "fr": [
- "ranger",
- "réparer"
- ]
- }
- },
- {
- "nm": "froid",
- "id": "35626114bcf99b0caf5a5288621ce7e08fbb70794472a538abbf148584ab2128",
- "kws": {
- "fr": [
- "froid",
- "glacé"
- ]
- }
- },
- {
- "nm": "magasin de téléphonie",
- "id": "bb52fb0cf97c05fa409d8f4db7206df5761f02dedda2b4f6642ddfbe0c0acc5f",
- "kws": {
- "fr": [
- "magasin de téléphonie"
- ]
- }
- },
- {
- "nm": "sèche-cheveux",
- "id": "f71010bbc89b316fbdd1119de688696447e57478f47605c066bea70d7a785a58",
- "kws": {
- "fr": [
- "sèche-cheveux"
- ]
- }
- },
- {
- "nm": "guichet automatique",
- "id": "27310841d36e510d53c7e6b686a696b7f0f38ba463507d2de35916fcae469f53",
- "kws": {
- "fr": [
- "guichet automatique"
- ]
- }
- },
- {
- "nm": "un",
- "id": "27aedab9864075fa4661e4a22891da08fad8d30bf3ea871f4458c57c8765a3d8",
- "kws": {
- "fr": [
- "un",
- "impair",
- "numéro",
- "1"
- ]
- }
- },
- {
- "nm": "police",
- "id": "eb8c14bc4c31400d4fd1e0db413d320366864b2ea7b4994177a7c679cfa35e62",
- "kws": {
- "fr": [
- "police"
- ]
- }
- },
- {
- "nm": "mètre",
- "id": "5f3a15d51420adda5df6d06acb05d3d316dd9ac9533ec73aefdfa0f55202bbeb",
- "kws": {
- "fr": [
- "mètre"
- ]
- }
- },
- {
- "nm": "bol",
- "id": "b6c7114f7b623e1e26f633964c79af0410674b8600b48b9a330937d73e83169a",
- "kws": {
- "fr": [
- "bol"
- ]
- }
- },
- {
- "nm": "cocotte en papier",
- "id": "887cd5ac9e0d0da818694a969ca19f34846889e6a60f9036f6451e948457c99b",
- "kws": {
- "fr": [
- "cocotte en papier",
- "art du pliage"
- ]
- }
- },
- {
- "nm": "crème",
- "id": "55d7a5aeb9b4751ff979e609cabd31e7d451e183a4ee9b826819faef44ab5151",
- "kws": {
- "fr": [
- "crème"
- ]
- }
- },
- {
- "nm": "absorber",
- "id": "da79b46de7c7db0a1263b88caca5a27b0b7f762ff18e30ba530692b712b1b850",
- "kws": {
- "fr": [
- "absorber"
- ]
- }
- },
- {
- "nm": "blond",
- "id": "2416fecd6cf9914236dfa5f0bcd07c01ce7b25a3466711839a63484ec2783b3c",
- "kws": {
- "fr": [
- "blond",
- "blonde"
- ]
- }
- },
- {
- "nm": "chignon",
- "id": "539b2302df218c0117e1345202bc8ace19f9d2ed709f3e58ab07782b32c48249",
- "kws": {
- "fr": [
- "chignon"
- ]
- }
- },
- {
- "nm": "chef d\u0027entreprise",
- "id": "a6434fe3ca215d38b3ed3f04f883d45fcab14065cecb5bbdf39bbd8b3c09b3b3",
- "kws": {
- "fr": [
- "chef d\u0027entreprise"
- ]
- }
- },
- {
- "nm": "tasse",
- "id": "92c844ef9b99623c047c7251c6cb5124134dbfc6a36884ace16904f727d9f752",
- "kws": {
- "fr": [
- "tasse"
- ]
- }
- },
- {
- "nm": "connecter",
- "id": "fb26701dcc8c051437b4823ef6cbfb9cc36535d6b0fc55f01f8229055205f8e0",
- "kws": {
- "fr": [
- "connecter"
- ]
- }
- },
- {
- "nm": "flûte traversière",
- "id": "e1bb1035ac50770477a7bf4a9aa5805eeb297d90227708e9c8b00f27ce4fc28f",
- "kws": {
- "fr": [
- "flûte traversière"
- ]
- }
- },
- {
- "nm": "acide",
- "id": "6505f3cf1637dc4fbcd8b4ea10027876b033b2537f67e66d3ac0bcde7f974212",
- "kws": {
- "fr": [
- "acide"
- ]
- }
- },
- {
- "nm": "chaussure de clown",
- "id": "420bf5a2f47ca530b85afadb77e5d1868b13d852cdd12def690c944a9e6ecfaf",
- "kws": {
- "fr": [
- "chaussure de clown"
- ]
- }
- },
- {
- "nm": "gorille",
- "id": "0907755ab5582e1301b493f31c5ddf79af335d765568a9c09ab4e5c99d128ebd",
- "kws": {
- "fr": [
- "gorille"
- ]
- }
- },
- {
- "nm": "arbre d\u0027hiver",
- "id": "c809262a0d1dce43718f65815d801c356fcd30ba72ebdee381150a927f860283",
- "kws": {
- "fr": [
- "arbre d\u0027hiver",
- "arbre"
- ]
- }
- },
- {
- "nm": "cordoue",
- "id": "87af429163a6010f2ab5bcaa0c7229dc536b40b8a61f924071bdca1447c8cbc8",
- "kws": {
- "fr": [
- "cordoue"
- ]
- }
- },
- {
- "nm": "chef d\u0027orchestre",
- "id": "64e938bf625a2db32192a99dc1953d1f7315917bc990bfcf6a96b17ac28ae9ab",
- "kws": {
- "fr": [
- "chef d\u0027orchestre",
- "diriger"
- ]
- }
- },
- {
- "nm": "page",
- "id": "7dd0d362b0cd53c3bab30d2d4da8b20f587f3a60443330d01f04eaa06f4c6124",
- "kws": {
- "fr": [
- "page"
- ]
- }
- },
- {
- "nm": "vendeur",
- "id": "e4c02a5bc99ecdf6fee0b82bfc4265117650979a2a5fe1b34fdccd1ae03a4064",
- "kws": {
- "fr": [
- "vendeur",
- "cordonnier"
- ]
- }
- },
- {
- "nm": "neuf heures pile",
- "id": "1379b42868ea02151f0736797a0b3d314e1612ac0cf17e7fd567daf30f858553",
- "kws": {
- "fr": [
- "neuf heures pile",
- "neuf heures"
- ]
- }
- },
- {
- "nm": "buvette",
- "id": "da446a606436b2a4df9c68920bcd38525c12475803e26d4727847854ebfdc218",
- "kws": {
- "fr": [
- "buvette"
- ]
- }
- },
- {
- "nm": "éplucheur",
- "id": "d79b59cb7c6f705b44b681935fbccfe715af47288eea8b09e2412d9c94ba9405",
- "kws": {
- "fr": [
- "éplucheur"
- ]
- }
- },
- {
- "nm": "bande",
- "id": "9a0aaf92859b7ffbcf344c80ffd2abdc8094ea0ab613ab4c560c594ffa668600",
- "kws": {
- "fr": [
- "bande"
- ]
- }
- },
- {
- "nm": "paquet de café",
- "id": "816e6061e6e106c95a3b9e7165512081e5a6c235574ea6d7c729c415a62e4eae",
- "kws": {
- "fr": [
- "paquet de café",
- "café"
- ]
- }
- },
- {
- "nm": "interprète",
- "id": "0f935bc070a4083bd8f2cf010f09f39482c7a5f4c89b8159963df15833e3249d",
- "kws": {
- "fr": [
- "interprète",
- "interpréter",
- "jouer",
- "acteur",
- "artiste"
- ]
- }
- },
- {
- "nm": "vivre",
- "id": "19b1aabe032d2548e0f2155e66725ee1dec3e0b55b03d7534a829343f5f810b7",
- "kws": {
- "fr": [
- "vivre",
- "résider",
- "habiter"
- ]
- }
- },
- {
- "nm": "fémur",
- "id": "128b081e20b3d3e99f121d7f4bb6cfd770126638ea3a1e9d9feffaa5565e7082",
- "kws": {
- "fr": [
- "fémur"
- ]
- }
- },
- {
- "nm": "queimada",
- "id": "f1d77670df0396309085d6e79f23511bdbb64565c71441f30d0594f71613b7b7",
- "kws": {
- "fr": [
- "queimada"
- ]
- }
- },
- {
- "nm": "analyse d\u0027urine",
- "id": "4ad553bbdfa4d20e5056da96794f290c25eec71378f01d2c72aca61a5d6baa33",
- "kws": {
- "fr": [
- "analyse d\u0027urine",
- "analyse"
- ]
- }
- },
- {
- "nm": "chargeur",
- "id": "8426c9666d87555c61bbb371090e22c3703947a7296e55d856c56b140e16cd28",
- "kws": {
- "fr": [
- "chargeur"
- ]
- }
- },
- {
- "nm": "bande",
- "id": "08c04075e3a8da94a532de324293e40f7bd99c98ed0a1fcfca084f5868ce216c",
- "kws": {
- "fr": [
- "bande"
- ]
- }
- },
- {
- "nm": "fourgonnette",
- "id": "f43fa1847f110fe31712ed18e24d0440c69cba94fa68024846037ff876881376",
- "kws": {
- "fr": [
- "fourgonnette"
- ]
- }
- },
- {
- "nm": "chef cuisinier",
- "id": "6e0d13d5b8cabd5cc288c0ce90ea565bf5345da280e6d4baca1d610f18b4de8e",
- "kws": {
- "fr": [
- "chef cuisinier",
- "chef de cuisine",
- "cuisinier"
- ]
- }
- },
- {
- "nm": "cormoran",
- "id": "61e0044e7930c82557bb8e223f7e3fa049e28fb752d487121eeec7b2a547eaa8",
- "kws": {
- "fr": [
- "cormoran"
- ]
- }
- },
- {
- "nm": "enduire",
- "id": "50b03dee4d6366684019f12eea099461cea419c4ca7ab2624bf557b39355c8b0",
- "kws": {
- "fr": [
- "enduire",
- "badigeonner"
- ]
- }
- },
- {
- "nm": "hennir",
- "id": "dbe261f624d3ea09178f58fb444caf87844052c7ce65c71f1f435cbe1fe3c070",
- "kws": {
- "fr": [
- "hennir"
- ]
- }
- },
- {
- "nm": "euro",
- "id": "3882f0e48e74e9a227b00bacc0c5f478d7e3d0fcad9a24d226eadc973d9c83dd",
- "kws": {
- "fr": [
- "euro",
- "1 euro"
- ]
- }
- },
- {
- "nm": "cru",
- "id": "3151468e10a32e7df06c2743d91bec87a3892e68baac187d85c1b21f59e1c22b",
- "kws": {
- "fr": [
- "cru"
- ]
- }
- },
- {
- "nm": "autre",
- "id": "e4891a54579bd4aedb4b6d321f36349566a8db7e96414c1d50e13c1d24a3a7cf",
- "kws": {
- "fr": [
- "autre"
- ]
- }
- },
- {
- "nm": "doute",
- "id": "9a35ba5f4f77a12711f216c74882bf83908b79362f153d28ae12ec9800e6c66d",
- "kws": {
- "fr": [
- "doute",
- "douter"
- ]
- }
- },
- {
- "nm": "bibliothécaire",
- "id": "a441aae36ade22598a96b6cc3c5541cf8b54c10291a4c5c258a1e21beabcc86e",
- "kws": {
- "fr": [
- "bibliothécaire"
- ]
- }
- },
- {
- "nm": "baguette magique",
- "id": "4eeb450dafc44e884b2c66b138c948f3c5cc89885c4041de527f2557c2d16000",
- "kws": {
- "fr": [
- "baguette magique",
- "baguette"
- ]
- }
- },
- {
- "nm": "charcuterie",
- "id": "adf6bd34a84a312e94e32a57da585ba183bd6b1ce8b5400e242b55d42f4157b7",
- "kws": {
- "fr": [
- "charcuterie"
- ]
- }
- },
- {
- "nm": "voix digitalisée",
- "id": "4b748d4b3d4173daccb8a5c037b47b14617a0a338e3b243bc482aa8c4b431bef",
- "kws": {
- "fr": [
- "voix digitalisée"
- ]
- }
- },
- {
- "nm": "tuer",
- "id": "6c46abe5d32ccd09e8e046e2f82a903a46c5274a6c7f0f96ba247bf27b66ceac",
- "kws": {
- "fr": [
- "tuer",
- "assassiner"
- ]
- }
- },
- {
- "nm": "corail",
- "id": "17d2722c74e0c9ea4ae48f662546581dbbd416a8541f32e64bb3fcf12c02894d",
- "kws": {
- "fr": [
- "corail",
- "chœur",
- "interpréter"
- ]
- }
- },
- {
- "nm": "pêcheuse",
- "id": "473e1a86a6dd4d779377aa7c32057692e788098eaf488b12527ab8da084da936",
- "kws": {
- "fr": [
- "pêcheuse",
- "pêche"
- ]
- }
- },
- {
- "nm": "lecture",
- "id": "6744e24932125dadf6f426e923f1c720c546f31db8a3e07d50b32e39c952f3b4",
- "kws": {
- "fr": [
- "lecture",
- "lire"
- ]
- }
- },
- {
- "nm": "longue-vue",
- "id": "2eefc862e3d0ddcc2079002f28e69bc09ac2a48f5eb9d62b1adadc26f3dd576d",
- "kws": {
- "fr": [
- "longue-vue"
- ]
- }
- },
- {
- "nm": "divorcer",
- "id": "14640f5d0ff3afb5a6fe0441437e962be0e77ae99703033857e2f2a1ac1b3717",
- "kws": {
- "fr": [
- "divorcer"
- ]
- }
- },
- {
- "nm": "taille-crayon",
- "id": "4a094bd2a446912cba1800b3d03f002ce393e05b37189e64ac07e93f9faa4784",
- "kws": {
- "fr": [
- "taille-crayon"
- ]
- }
- },
- {
- "nm": "étranger",
- "id": "7c8a6e60f2fea778c319a8011951ead0c1f2666c1404bb6b6def7ed72c73112a",
- "kws": {
- "fr": [
- "étranger",
- "sud-américain",
- "latino-américain"
- ]
- }
- },
- {
- "nm": "sauver",
- "id": "a5d3c459d86563bda3462c7bdc6641e57c9b69c8eb7f2effb6b28a8986481fd5",
- "kws": {
- "fr": [
- "sauver",
- "secourir",
- "aider"
- ]
- }
- },
- {
- "nm": "fleur",
- "id": "0b6342d40748921bb6425ab1ee8ba618d0ed33fadb4438332ed1b141f4ea3125",
- "kws": {
- "fr": [
- "fleur",
- "rose"
- ]
- }
- },
- {
- "nm": "surprendre",
- "id": "804937abe4fe4f6b65a895d0b36f1c6f5b00f93616a16fec726b8a81eedbaf41",
- "kws": {
- "fr": [
- "surprendre"
- ]
- }
- },
- {
- "nm": "épinards",
- "id": "9b249601d3ed45ccb4e7fcbecd2cccfd7f140918599045403e03304822a9a9ff",
- "kws": {
- "fr": [
- "épinards"
- ]
- }
- },
- {
- "nm": "dromadaire",
- "id": "7e569e679b52b4d0f2b9af039e4f8ccf8196279b81eb70b0b17e4c689cb3a850",
- "kws": {
- "fr": [
- "dromadaire"
- ]
- }
- },
- {
- "nm": "koala",
- "id": "f9387ad2d134896b9394e4cb684ef9c939ac1152b42819fb30ef98249694fb50",
- "kws": {
- "fr": [
- "koala"
- ]
- }
- },
- {
- "nm": "cousine",
- "id": "cad242cbf7a52aa06363c770985f3e465a43f4fee809736a40497b10922c91f6",
- "kws": {
- "fr": [
- "cousine"
- ]
- }
- },
- {
- "nm": "entrepôt",
- "id": "c6f32cf6f8ce1cf16e75bf3ccf0a9cea7e531917195b73d4bf10faeb058fbc9a",
- "kws": {
- "fr": [
- "entrepôt",
- "range-vaisselle",
- "signalétique"
- ]
- }
- },
- {
- "nm": "se mettre de la crème",
- "id": "bb27e582df33e2f8ee4a4bacee1da1019741bdad042772fe0deb521851c34d0a",
- "kws": {
- "fr": [
- "se mettre de la crème"
- ]
- }
- },
- {
- "nm": "eeuu",
- "id": "274e6294e30273d8c582afcb13a27c5c0657d1f99f64e26f11f55ab8cc2996a0",
- "kws": {
- "fr": [
- "eeuu",
- "etats-unis"
- ]
- }
- },
- {
- "nm": "accrocher",
- "id": "45b5fc6c68af05e540ecd10829e433cd10b79ceadcffac090f24902015a4251b",
- "kws": {
- "fr": [
- "accrocher"
- ]
- }
- },
- {
- "nm": "nourriture pour chats",
- "id": "742ce6f03d569d7efd9e9b9d9b9a2bc021c4642c86686f4249768062231bde35",
- "kws": {
- "fr": [
- "nourriture pour chats",
- "nourriture"
- ]
- }
- },
- {
- "nm": "recherche",
- "id": "33b0037de502509e4bad7d82a427dbdbcaccf2bdbeee5c4f7e88feab30f22688",
- "kws": {
- "fr": [
- "recherche"
- ]
- }
- },
- {
- "nm": "plume",
- "id": "44820fba7c6645a952adba8239f4eded5e0e78fe9b307f52d48ce148a13f1edb",
- "kws": {
- "fr": [
- "plume"
- ]
- }
- },
- {
- "nm": "soigner",
- "id": "95727bec8c8c772388c2bd674d797aec125e6d4620d06f55db0adf947a2adb5e",
- "kws": {
- "fr": [
- "soigner"
- ]
- }
- },
- {
- "nm": "ver",
- "id": "447f5b06f9310c0e5542525d5d3dcfe15d7f4a3a872ce6c37055b3b1206d221f",
- "kws": {
- "fr": [
- "ver"
- ]
- }
- },
- {
- "nm": "taureau",
- "id": "c779e36af92a7f79d7e456f33a62f912f4b12a6000ea6b6695afea03e7517c7e",
- "kws": {
- "fr": [
- "taureau"
- ]
- }
- },
- {
- "nm": "voler",
- "id": "965ac35b0d6e72ffd9f926166dad0aa05b1460fca0b3c9e66f38eb7a63101dbd",
- "kws": {
- "fr": [
- "voler"
- ]
- }
- },
- {
- "nm": "dattes",
- "id": "5e2c4f8a506fb4eaf9dc5fcce153b17412c3d35d0a8e2cc71b94dd4b07dbe258",
- "kws": {
- "fr": [
- "dattes"
- ]
- }
- },
- {
- "nm": "coccinelle",
- "id": "03ec92289e9bbd105714938407d3ef94d86a6047c7bfc743b5a8cadefb5dff8c",
- "kws": {
- "fr": [
- "coccinelle"
- ]
- }
- },
- {
- "nm": "dehors",
- "id": "aaf6fad2ca0c6c21593902e19ad714052076b121026f0a522858e40a5e7d110b",
- "kws": {
- "fr": [
- "dehors"
- ]
- }
- },
- {
- "nm": "oncle",
- "id": "5ce755596f6003e5ce020606bd9be5c5dd12de1e4ff4e17074e686c984210258",
- "kws": {
- "fr": [
- "oncle"
- ]
- }
- },
- {
- "nm": "virgule",
- "id": "3e2be4d75d435805e9b726baed937fea58c7a148065f6b4041ea630b6370591f",
- "kws": {
- "fr": [
- "virgule"
- ]
- }
- },
- {
- "nm": "pays basque",
- "id": "9de9bf0afd0585b09543b70bc2a442a44c5ab33fdd092ab3f88d5d259c5a4650",
- "kws": {
- "fr": [
- "pays basque",
- "pays-basque",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "mammifère",
- "id": "b5a98a376fb60c44c0c138141f09ad6ce5004c11946c024920cfd2468b232ccc",
- "kws": {
- "fr": [
- "mammifère",
- "mammifères"
- ]
- }
- },
- {
- "nm": "chambres",
- "id": "65e02cfd4d4de45eb81eae3b83c6f791d31404b6e836b5b86ae7328e6a5c694d",
- "kws": {
- "fr": [
- "chambres",
- "cuisines",
- "signalétique"
- ]
- }
- },
- {
- "nm": "bureau pour l\u0027emploi",
- "id": "d8f2655d1f799601437b2b1d243e600b819aaf41c0838c5b5a1c991053d544fb",
- "kws": {
- "fr": [
- "bureau pour l\u0027emploi"
- ]
- }
- },
- {
- "nm": "effilocher",
- "id": "4e565e01d66b1125fcb20de065a19480feca0bae5cd8f8d07013634341c7c36f",
- "kws": {
- "fr": [
- "effilocher"
- ]
- }
- },
- {
- "nm": "technicien d\u0027activités sportives",
- "id": "af785b075c7b46147b340b958dc5e86493343cbee91fe6eed321b9b78c7c6c3f",
- "kws": {
- "fr": [
- "technicien d\u0027activités sportives"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "8eb453346499e012de71479dba71aed70285d10004cf1f0df70d057cfb475b54",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains en haut",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "ceuta",
- "id": "46b313496917180d00b1a35151cc44da7b8ff52cacd2ab8a9c006c680d6ca061",
- "kws": {
- "fr": [
- "ceuta",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "comédie musicale",
- "id": "294c099670c725f2d710be6a2254b3d9a83a5da147825d09e2c6f9eb12d694e6",
- "kws": {
- "fr": [
- "comédie musicale"
- ]
- }
- },
- {
- "nm": "euro",
- "id": "aed81396fb31fd3ab6b87bd349872a776b184bda226b963e511c1d3976e1a986",
- "kws": {
- "fr": [
- "euro",
- "signe euro"
- ]
- }
- },
- {
- "nm": "écosse",
- "id": "aebc3b430231cd0e5760feeedbb4790c6be1982579967ff3f7a2eb99bc8b4939",
- "kws": {
- "fr": [
- "écosse"
- ]
- }
- },
- {
- "nm": "commissariat",
- "id": "95a1187fb6ca6ab554d03e5271021ad437a64502d2aba3ecbdc3a6701666bf24",
- "kws": {
- "fr": [
- "commissariat"
- ]
- }
- },
- {
- "nm": "rebondir",
- "id": "29cf0ce1c6c4c6b668bbcf366eae77e10f8144dbd15f1cb594eaecfe1402182c",
- "kws": {
- "fr": [
- "rebondir"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "1c25e781c7200b8175666e1444f31e8e1c4ebd38732a49da2834f21fb0423934",
- "kws": {
- "fr": [
- "praxie",
- "orthophonie",
- "lécher"
- ]
- }
- },
- {
- "nm": "rapprocher",
- "id": "a0fb9ecb51f63e3aea4f0483289cd16b15b49dbf4059c0033ba86d2445634840",
- "kws": {
- "fr": [
- "rapprocher",
- "s\u0027approcher"
- ]
- }
- },
- {
- "nm": "pétanque",
- "id": "af409a7228632e42e83e404d4da11c256d548dbd26911bf50117705ebef5ac3e",
- "kws": {
- "fr": [
- "pétanque"
- ]
- }
- },
- {
- "nm": "communiquer",
- "id": "851313ed29052577c1ebacb93220701329fbfe00676161c9cf4a9a0be84d3aef",
- "kws": {
- "fr": [
- "communiquer"
- ]
- }
- },
- {
- "nm": "sec",
- "id": "51d7be525beafb20bfbc848bc3fc48ad93df106c798f83c71beba30afdbde4cc",
- "kws": {
- "fr": [
- "sec"
- ]
- }
- },
- {
- "nm": "clé de fa",
- "id": "de15ca935a000185c332dc29377f2e7a991b0ab9ffeeedbbfc71968a68c0776d",
- "kws": {
- "fr": [
- "clé de fa"
- ]
- }
- },
- {
- "nm": "lancer",
- "id": "6366687a92baeb8e83f410e473b163d4368b8b946db23d718b5aecb533dc48af",
- "kws": {
- "fr": [
- "lancer"
- ]
- }
- },
- {
- "nm": "vendeuse",
- "id": "b126d92168e2a15f614593b2c8efcba8ca21bb7a67e21bb304bf608cb6e8e917",
- "kws": {
- "fr": [
- "vendeuse",
- "pâtissière"
- ]
- }
- },
- {
- "nm": "patte",
- "id": "d3882a0c33ca7352c9df3c88c144d9d9e1e71e5c7c7aa1922826470fcd1c19b3",
- "kws": {
- "fr": [
- "patte"
- ]
- }
- },
- {
- "nm": "groupe électrogène",
- "id": "de7c81a1bc77513710600a416053df815f1b443e118b2c5e9f7ef7b0467a0f05",
- "kws": {
- "fr": [
- "groupe électrogène",
- "générateur"
- ]
- }
- },
- {
- "nm": "candidats",
- "id": "e67e9260a07b4ecee8dac50157bd0d180d1902f759c145465af9d7487a8d0b8e",
- "kws": {
- "fr": [
- "candidats"
- ]
- }
- },
- {
- "nm": "sortie",
- "id": "233ae33fa310133e661a88007dfea6a8e739e27a236634aa441e7e5b0344c82a",
- "kws": {
- "fr": [
- "sortie"
- ]
- }
- },
- {
- "nm": "gazelle",
- "id": "18fe47efe3cdc100976ae0e07b414d043a6f89521fbd6c4e433a9bdfa3a7161f",
- "kws": {
- "fr": [
- "gazelle"
- ]
- }
- },
- {
- "nm": "lunettes cassées",
- "id": "9a0e702db48b22933930bb60b24f902b48af6e82ef4b1d4fa825d92c3a910ec9",
- "kws": {
- "fr": [
- "lunettes cassées"
- ]
- }
- },
- {
- "nm": "où habites-tu",
- "id": "f5d6333ec53a23b9084a9e6164ad3508b6685229571a713712b132a1729ce68e",
- "kws": {
- "fr": [
- "où habites-tu",
- "direction",
- "quelle est ton adresse"
- ]
- }
- },
- {
- "nm": "demander",
- "id": "f0bb6749c656941f844e8e3ba23a4d832b10d548ec11545c34496501e235913b",
- "kws": {
- "fr": [
- "demander"
- ]
- }
- },
- {
- "nm": "poulet rôti",
- "id": "e6ceb9e615eeafe7f0b3416e88a5173b33a906aecb9e74617699bd2779cbd5da",
- "kws": {
- "fr": [
- "poulet rôti",
- "cuisse de poulet"
- ]
- }
- },
- {
- "nm": "chambre",
- "id": "ccc26f4b3f2c83d3974265abf8d6f0deb89bca954c7db6cec2e04243ba073906",
- "kws": {
- "fr": [
- "chambre",
- "cuisine",
- "signalétique"
- ]
- }
- },
- {
- "nm": "lecto-écriture",
- "id": "b01b6386c9648eed1b898554b7d9d4a9a4ebe24c1e25e623936211af7d7037f7",
- "kws": {
- "fr": [
- "lecto-écriture"
- ]
- }
- },
- {
- "nm": "laitue",
- "id": "86bb36b54159c60b9851ad4ad5483eed7ee68692f22079d62b6bc8955977754c",
- "kws": {
- "fr": [
- "laitue"
- ]
- }
- },
- {
- "nm": "oiseau",
- "id": "71bb6cf249a47cbe6b29f8ad4a0f7b8e7dace435e001ca26a5eaf6b09f77e18f",
- "kws": {
- "fr": [
- "oiseau"
- ]
- }
- },
- {
- "nm": "moment",
- "id": "beb3d6e85d2dccf491fc2b5f9f05d0cfd3c5463f041d135fc33a3e04caf0aa77",
- "kws": {
- "fr": [
- "moment"
- ]
- }
- },
- {
- "nm": "téléphones portables interdits",
- "id": "b6a6fb058b013d0d6e66f5a9065775a4baf03a841ce80237117b5d1221592dfa",
- "kws": {
- "fr": [
- "téléphones portables interdits"
- ]
- }
- },
- {
- "nm": "dépendant",
- "id": "74687bc609b3f384b9862932bc9ebf490d782fd8249dccde315a702b86107a2c",
- "kws": {
- "fr": [
- "dépendant"
- ]
- }
- },
- {
- "nm": "croasser",
- "id": "24fbd4bd6ade5c0b4d3bef6909153eb4ac28b459eb6a67c4975dec46ff4dc64f",
- "kws": {
- "fr": [
- "croasser"
- ]
- }
- },
- {
- "nm": "malaga",
- "id": "783117d8c4e50fd7bc78df0d2d03e7ebac15f991aca27f671d11eeae4766ae2a",
- "kws": {
- "fr": [
- "malaga"
- ]
- }
- },
- {
- "nm": "perceuse",
- "id": "136cef379723cb63e13b8a13bebd1e4a4ff49903c7cdb3ff2d90e4aca06b5a81",
- "kws": {
- "fr": [
- "perceuse"
- ]
- }
- },
- {
- "nm": "traces de pas",
- "id": "84ce2ae29cf012a117b961ce42c202f798828176f55c33fdd5c23e40752e259f",
- "kws": {
- "fr": [
- "traces de pas",
- "traces"
- ]
- }
- },
- {
- "nm": "étrangler",
- "id": "9695dce6a4358f9368b977845a49da68f4d6510fe1fdf4f39298cd095496c3b5",
- "kws": {
- "fr": [
- "étrangler",
- "noyer"
- ]
- }
- },
- {
- "nm": "noisette",
- "id": "b43e76889c2cd01c35d094ca9ff88c5a8df6ba7e2ab17e55ac4695abe259bf51",
- "kws": {
- "fr": [
- "noisette",
- "fruits secs"
- ]
- }
- },
- {
- "nm": "juin",
- "id": "1a8b9e89dceda9109a2f7f60e3e88beaec08720ff6d41cad04013965937b5824",
- "kws": {
- "fr": [
- "juin"
- ]
- }
- },
- {
- "nm": "quel jeu veux-tu",
- "id": "23f2666826a2f27adece1a156a8c9fbbc8a5eb674e5b71ad5a78126a36d93db9",
- "kws": {
- "fr": [
- "quel jeu veux-tu"
- ]
- }
- },
- {
- "nm": "sceau d\u0027eau",
- "id": "b9f7484cc03227a708d87b8b3f4abfe0062ba56ebdc7d6afd377ee7f6bbaeb95",
- "kws": {
- "fr": [
- "sceau d\u0027eau",
- "sceau"
- ]
- }
- },
- {
- "nm": "paille",
- "id": "0b371344bfe27364d20fe81d6d59fdcd15865a6e2c70548ac2bca2e305c09f83",
- "kws": {
- "fr": [
- "paille",
- "balle"
- ]
- }
- },
- {
- "nm": "toza",
- "id": "5b65a487cd0a61c95f8f1f30d0fc06147769aab4468604c822186ec17162dab0",
- "kws": {
- "fr": [
- "toza",
- "tronc de noël",
- "oncle de noël"
- ]
- }
- },
- {
- "nm": "viande d\u0027agneau",
- "id": "46514620b5bec37aad07302e69d41e8d16b777c0ba9fc9a680e10021fd31acc9",
- "kws": {
- "fr": [
- "viande d\u0027agneau",
- "côtelettes"
- ]
- }
- },
- {
- "nm": "chorizo",
- "id": "16926c973c574cdeb542de27f1f11eeca8121d40a7e9199739a5b581692fd5e3",
- "kws": {
- "fr": [
- "chorizo"
- ]
- }
- },
- {
- "nm": "famille",
- "id": "883b407c5000a57f7d840ef6ed6039d8c51739f72d0def3dc38de0f0f02769ca",
- "kws": {
- "fr": [
- "famille"
- ]
- }
- },
- {
- "nm": "thé instantané",
- "id": "cfa39eaf7d5bc6ef0bd047c110e3a77324f50578a706351dae800d612c8965aa",
- "kws": {
- "fr": [
- "thé instantané",
- "thé"
- ]
- }
- },
- {
- "nm": "sandwich",
- "id": "dc2d2b9d9d52724334d68d4de9db5d40452ecd31c068d76bfc09623d8e354443",
- "kws": {
- "fr": [
- "sandwich"
- ]
- }
- },
- {
- "nm": "interdit d\u0027utiliser l\u0027ascenseur",
- "id": "b2e6c2b83bf7efbeaaa26157608c1538deee825d016b1c692f3bcd74a06b329f",
- "kws": {
- "fr": [
- "interdit d\u0027utiliser l\u0027ascenseur"
- ]
- }
- },
- {
- "nm": "imprimante laser",
- "id": "b7e391adb767168f42e5ae1dd140329ab598fcb70b1686c5e59395a9f7cf7bae",
- "kws": {
- "fr": [
- "imprimante laser",
- "imprimante"
- ]
- }
- },
- {
- "nm": "signe",
- "id": "bfa7baf54b8b281e789834784abdcb84c4cf0f54f2cec8f591e372a3178ee8f1",
- "kws": {
- "fr": [
- "signe"
- ]
- }
- },
- {
- "nm": "spray",
- "id": "1e762d47a969f2bdfc2751eed5f2d6e76b7ca443817f83018e477ea0b1522ab0",
- "kws": {
- "fr": [
- "spray"
- ]
- }
- },
- {
- "nm": "tempête de neige",
- "id": "3c2c16dcf076b485c11c20ef98aa5cd2b96006d15ffd7a3afe89b8db7c99f363",
- "kws": {
- "fr": [
- "tempête de neige",
- "chute de neige",
- "neiger",
- "neige"
- ]
- }
- },
- {
- "nm": "muffin",
- "id": "c1c6871885cf8fe98b36f83203e6afb048236e9614dd2e072b933da519c6e607",
- "kws": {
- "fr": [
- "muffin"
- ]
- }
- },
- {
- "nm": "chaise adaptée",
- "id": "f595ad63762ef83a74a4f5cf9eba972abfbad237aa08cb5b1f722076eb635e78",
- "kws": {
- "fr": [
- "chaise adaptée"
- ]
- }
- },
- {
- "nm": "élections",
- "id": "e647c7335bbb396427aab7b5c1dc92163e404c5d7a96a957c4f68bd5c746f259",
- "kws": {
- "fr": [
- "élections"
- ]
- }
- },
- {
- "nm": "derrière",
- "id": "8f523ef03449ea4ba30eea53806916fcabd611db0557766752a8608cb11d7a7f",
- "kws": {
- "fr": [
- "derrière"
- ]
- }
- },
- {
- "nm": "armoire",
- "id": "0eb8f6274720cafdd15f1bc24016db259da99b80df5692ec0b752da0a10fc6e0",
- "kws": {
- "fr": [
- "armoire"
- ]
- }
- },
- {
- "nm": "ligne ondulée",
- "id": "c843895832f460e9b1a3964914cd40c15bc75d7d4a2d425fae5d25cba24662fa",
- "kws": {
- "fr": [
- "ligne ondulée"
- ]
- }
- },
- {
- "nm": "sens",
- "id": "80b71b9003e84cc0fcfa2b70584c52c42b5180affb41003be1be3ece5766199b",
- "kws": {
- "fr": [
- "sens",
- "sentir"
- ]
- }
- },
- {
- "nm": "livreur",
- "id": "a374fee6446ab4eee6a4f90bd0d78f18ace65731120b0692ff9d8ec4582bbf0a",
- "kws": {
- "fr": [
- "livreur"
- ]
- }
- },
- {
- "nm": "mansarde",
- "id": "43f289a6a900b62fa1e1509ccc36178ff9bb3b8eb3b38d7c5ecf5bd12281a919",
- "kws": {
- "fr": [
- "mansarde"
- ]
- }
- },
- {
- "nm": "troisième",
- "id": "2ec31b748b895b3dc843f2a85ef18729668643ce8fc912243c9195aeda50e57e",
- "kws": {
- "fr": [
- "troisième"
- ]
- }
- },
- {
- "nm": "vouloir",
- "id": "cd55d014043f19b67ff0b7ec3a5fb33b282155f694f3ae95484c953e37d7c4a2",
- "kws": {
- "fr": [
- "vouloir",
- "aimer",
- "amoureux"
- ]
- }
- },
- {
- "nm": "pyramide",
- "id": "5ddb421eb6ba1cb59c96807ff55b411bed487a7b15478d1d3a155d2780653a9e",
- "kws": {
- "fr": [
- "pyramide"
- ]
- }
- },
- {
- "nm": "téléphone",
- "id": "2a8505aa96348c2c4de8cc3fb06d459327e4512967269badc18d169b186fa187",
- "kws": {
- "fr": [
- "téléphone"
- ]
- }
- },
- {
- "nm": "oncle",
- "id": "fc6c105bd1d76a69de0226d2ecf74f434ef40718f19ef6f473c1fba5748cb35b",
- "kws": {
- "fr": [
- "oncle"
- ]
- }
- },
- {
- "nm": "manivelle",
- "id": "081e74d828d687cc4e2c39c901aa59b412f31fb6882407eaf228574d04d9104e",
- "kws": {
- "fr": [
- "manivelle"
- ]
- }
- },
- {
- "nm": "prendre du sang",
- "id": "cee2f8fbe786ebb8e806192ece17431f99899d8134f3b67bf73aa37b53e5eacb",
- "kws": {
- "fr": [
- "prendre du sang"
- ]
- }
- },
- {
- "nm": "salle de lecture",
- "id": "ab168593f50040c34ea5d2fb770e34737dda7d2069834e1722e605ff2e35e099",
- "kws": {
- "fr": [
- "salle de lecture"
- ]
- }
- },
- {
- "nm": "pile",
- "id": "02c63e1d737c335e510a9a33f49110af7e3a6ed326268d4060571241109d7925",
- "kws": {
- "fr": [
- "pile"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "3b37dccd2649020a9dd123d0c9cd7a644f812299ea085bfe48c35c0c8f4f747f",
- "kws": {
- "fr": [
- "praxie",
- "bouger la mâchoire",
- "orthophonie",
- "remuer"
- ]
- }
- },
- {
- "nm": "radio réveil",
- "id": "a8fa62dbb13ca5079cc27894c2f488115394ed5eef3f05cc821b8f78f52d2bf4",
- "kws": {
- "fr": [
- "radio réveil"
- ]
- }
- },
- {
- "nm": "vinaigre",
- "id": "176d6b7498ddee59e63c19be01cbbdece0d3768cf83fffdf0e3eaa66569d8b7e",
- "kws": {
- "fr": [
- "vinaigre",
- "ornement"
- ]
- }
- },
- {
- "nm": "mortadelle",
- "id": "53c38016c323c98fee058eb6135804fbc0390b6b5faa642fd42139dd65aff4f9",
- "kws": {
- "fr": [
- "mortadelle"
- ]
- }
- },
- {
- "nm": "déboucheur chimique",
- "id": "739e9d936fea3563b7d0edf9b15174516142f6dc6636e0f650214c2aa8b4b157",
- "kws": {
- "fr": [
- "déboucheur chimique",
- "déboucheur",
- "nettoyeur"
- ]
- }
- },
- {
- "nm": "fauteuil roulant",
- "id": "feb1928b997be65bde40c9385db8b2bfa6452e24e18ca5094577da00e0043d3a",
- "kws": {
- "fr": [
- "fauteuil roulant",
- "produit de soutien"
- ]
- }
- },
- {
- "nm": "crème pour les mains",
- "id": "75cf08e0017082e5b9449d1416604e1eef84743a74d94375b76ae79482bc52d0",
- "kws": {
- "fr": [
- "crème pour les mains",
- "crème"
- ]
- }
- },
- {
- "nm": "analyse d\u0027urine",
- "id": "a979694bca56b651da918c3e1490a18d2829b6652c8a1707a3632e89ba144dc6",
- "kws": {
- "fr": [
- "analyse d\u0027urine",
- "analyse"
- ]
- }
- },
- {
- "nm": "par",
- "id": "5c3402b8b5cc196155595c761ee388f251eaef12554f349124349081ccb4eaed",
- "kws": {
- "fr": [
- "par",
- "environ",
- "aux alentours de"
- ]
- }
- },
- {
- "nm": "ceuta",
- "id": "9c73fa74f7ad96e743273998cfaa9d1d24169cb9b35e569181c5f24952d5189d",
- "kws": {
- "fr": [
- "ceuta"
- ]
- }
- },
- {
- "nm": "appui",
- "id": "90302a609e4ca3606ae4ce21d90d407362920418e5c8f36e94bf0fffd8a28174",
- "kws": {
- "fr": [
- "appui"
- ]
- }
- },
- {
- "nm": "se curer le nez",
- "id": "1d1111faa6f289ba6333b9f3befca80501f67b33feff9e6e871cf504f84c42d3",
- "kws": {
- "fr": [
- "se curer le nez",
- "remuer"
- ]
- }
- },
- {
- "nm": "nom de famille",
- "id": "bf8f0569a670261561047c6f15f0949438e562ce3149dde1cacd52850543427f",
- "kws": {
- "fr": [
- "nom de famille"
- ]
- }
- },
- {
- "nm": "relier",
- "id": "a13a27ac603057e11561d70ae0cfe943e01d8856a91f48647624dc100e27a0ca",
- "kws": {
- "fr": [
- "relier",
- "arts graphiques"
- ]
- }
- },
- {
- "nm": "petit canard en plastique",
- "id": "2ec82a2d7e60c86894c8d395c5391fbfeeb3b0495cdc6a7e0f4b24fddcd125b1",
- "kws": {
- "fr": [
- "petit canard en plastique"
- ]
- }
- },
- {
- "nm": "cuisinière",
- "id": "d2703d6e5211b5db74c03fa2470973d3bf2bf898c8372030f50e5183f8b7c170",
- "kws": {
- "fr": [
- "cuisinière"
- ]
- }
- },
- {
- "nm": "insecticide",
- "id": "100de6adf25dfe96ac78af7eee791f044e6a49115b343349e1eb36666aadd09a",
- "kws": {
- "fr": [
- "insecticide"
- ]
- }
- },
- {
- "nm": "vase à fleurs",
- "id": "8ce00befca87a6d8a931a9b47931ac24a1d0e68ee33a58598e8fcedcb1eaea27",
- "kws": {
- "fr": [
- "vase à fleurs",
- "vase"
- ]
- }
- },
- {
- "nm": "castilla-leon",
- "id": "fa9dd2f04c71a7526d44e1de2fb03981eed2910ec6fabe588e6e0f611f3757c1",
- "kws": {
- "fr": [
- "castilla-leon",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "bleu clair",
- "id": "3c0b5bca5ef9c10c3441912f6415c4567455def9df73adae8f0cb871f2d9c54a",
- "kws": {
- "fr": [
- "bleu clair",
- "bleu"
- ]
- }
- },
- {
- "nm": "animatrice",
- "id": "ce26637d4485b29f7fff9d0364b0bc2f642dd413f2e75796cecf35c520b6ad83",
- "kws": {
- "fr": [
- "animatrice"
- ]
- }
- },
- {
- "nm": "hippocampe",
- "id": "ff3de820b9c71809d5d426381d258418cd536d2df81e43bb0742fab1859d4c46",
- "kws": {
- "fr": [
- "hippocampe"
- ]
- }
- },
- {
- "nm": "se mettre",
- "id": "3ba81235075080fa2c5472df73d664cabd89e91404cf3815978bc957aa79c65d",
- "kws": {
- "fr": [
- "se mettre",
- "mettre un soutien-gorge"
- ]
- }
- },
- {
- "nm": "pistaches",
- "id": "42f472d5907dea384e8a99231432fb9ebad1ec33e541270a1f4f421481f3ee49",
- "kws": {
- "fr": [
- "pistaches"
- ]
- }
- },
- {
- "nm": "laver",
- "id": "af22f8f7d009b67c02aa3fc5a09f874edd5f75a3c2b0ea9bbd805264b0ed2c23",
- "kws": {
- "fr": [
- "laver"
- ]
- }
- },
- {
- "nm": "infusion",
- "id": "24bdc7530980998cf42fb195a5c946deb92d8acb2824db445796252015820341",
- "kws": {
- "fr": [
- "infusion"
- ]
- }
- },
- {
- "nm": "ses",
- "id": "a2b52eae3e3a5fad9b84de9d1fb87ffab1f5b4e5f023622d13b5f9168fb51f76",
- "kws": {
- "fr": [
- "ses",
- "siennes",
- "siens"
- ]
- }
- },
- {
- "nm": "adopter",
- "id": "e20e7344145a7bc1e4ebf81249bd6351fa2092cd433c0b37b46c0cc75c48a70d",
- "kws": {
- "fr": [
- "adopter"
- ]
- }
- },
- {
- "nm": "docteur",
- "id": "b9ddb58dcb8d2d4ef46aa6331c9ecb20da6d60aade2488b52d3b2d71b389cc41",
- "kws": {
- "fr": [
- "docteur",
- "médecin"
- ]
- }
- },
- {
- "nm": "pain",
- "id": "2dc880c340d8b4994d471f3d87a920a565c3a47feb36a49bfeb4de481759eab7",
- "kws": {
- "fr": [
- "pain"
- ]
- }
- },
- {
- "nm": "se baisser",
- "id": "aec46ee88629c2ccbb4814fce5b2be688775fbfa4aef28eba41673fe95e0e58f",
- "kws": {
- "fr": [
- "se baisser",
- "baisser"
- ]
- }
- },
- {
- "nm": "passe-montagnes",
- "id": "bc797bbe9dc0b0f1186cdce73c3c9304177a975384d875977e5629664f3fb8ca",
- "kws": {
- "fr": [
- "passe-montagnes"
- ]
- }
- },
- {
- "nm": "jouer",
- "id": "6d14a9847edbb0c966ee9b9d6d4b83aebd1a0c2da05395f0afa642bc81682c8c",
- "kws": {
- "fr": [
- "jouer"
- ]
- }
- },
- {
- "nm": "homosexualité",
- "id": "4dc689eb5cb75bcb07bbff90451718deb1bab77049622fc6db7ab193e3dd5f9a",
- "kws": {
- "fr": [
- "homosexualité",
- "homosexuel",
- "lesbianisme",
- "lesbienne",
- "lesbiennes"
- ]
- }
- },
- {
- "nm": "concert",
- "id": "d6d1eeef166ef814831b1e6ae799f25675705ef0107b44cfc7ead6b23b3da3f5",
- "kws": {
- "fr": [
- "concert"
- ]
- }
- },
- {
- "nm": "cinéma",
- "id": "2f8e0dd2d6e2cb01b58fa074e8910b090cd1dc4dbcc0811ed188f13f153d101b",
- "kws": {
- "fr": [
- "cinéma",
- "représentation"
- ]
- }
- },
- {
- "nm": "couvrir",
- "id": "cd92c2515687c6822c6f74fb7e14a039c0dd50a06a0d8aacba817663a69dd53f",
- "kws": {
- "fr": [
- "couvrir"
- ]
- }
- },
- {
- "nm": "femme",
- "id": "4da93c9de3df31a5e062b8e0649fbab8c812086a62c80ec60900faf306a27f7d",
- "kws": {
- "fr": [
- "femme"
- ]
- }
- },
- {
- "nm": "équitation",
- "id": "616ff45a64717fc5b3fc264d2ce65a7c440c4c96816681e66aa905a0f31d98b1",
- "kws": {
- "fr": [
- "équitation",
- "monter"
- ]
- }
- },
- {
- "nm": "s\u0027opposer",
- "id": "d2226297b9ddc643a19810fb22dc5eb06c7296443a78a02c1adfa27369bb9537",
- "kws": {
- "fr": [
- "s\u0027opposer"
- ]
- }
- },
- {
- "nm": "vert clair",
- "id": "693343e7ccc6a8a4248276abfa0da754d36b1b8f8bdda472f65c24a73ef7e207",
- "kws": {
- "fr": [
- "vert clair",
- "vert"
- ]
- }
- },
- {
- "nm": "déshabiller",
- "id": "57ce0ab474b8751384f6a4c6ab20130fb142aa6b431bb9994c8d5b60c929c8c1",
- "kws": {
- "fr": [
- "déshabiller",
- "se déshabiller"
- ]
- }
- },
- {
- "nm": "ouvrier",
- "id": "5a5dfe757d0e8985e856455bd7b7d18db6d09b64ab331d8e211bd45cacbc2b8e",
- "kws": {
- "fr": [
- "ouvrier",
- "travailleur"
- ]
- }
- },
- {
- "nm": "six heures pile",
- "id": "de432858d3ea04f8a3e9d683aeb4715fc77959c5336191cd9a9c2a91459afaa1",
- "kws": {
- "fr": [
- "six heures pile",
- "six heures"
- ]
- }
- },
- {
- "nm": "gouttes d\u0027eau",
- "id": "88491e19e38bcf110642a1cdf221bc241f0c0faacd3e516e1ad2f20a51b979a5",
- "kws": {
- "fr": [
- "gouttes d\u0027eau",
- "goutttes"
- ]
- }
- },
- {
- "nm": "pleine lune",
- "id": "67358b2364c57047dc233ba02f8750df17e784776cab171651cf95ef62bdfe88",
- "kws": {
- "fr": [
- "pleine lune",
- "lune"
- ]
- }
- },
- {
- "nm": "tipi",
- "id": "367b157c4049040f514a2de4facc1bab3b84f75c7e9a0c5d2ecd921b519bda76",
- "kws": {
- "fr": [
- "tipi"
- ]
- }
- },
- {
- "nm": "toit",
- "id": "e4e740e54faf26cbf41536d61baaacfe53c795039aea7d66311b88fc97d14a7d",
- "kws": {
- "fr": [
- "toit"
- ]
- }
- },
- {
- "nm": "patte",
- "id": "815ba8c83fb0531f3e97fafb3ce898f4da01767402f0ffc5d7f2f2b8fe023766",
- "kws": {
- "fr": [
- "patte"
- ]
- }
- },
- {
- "nm": "catalogne",
- "id": "5f920d01a89a4979418de53131dd528d77537018517cfa2a4354de6219f4be70",
- "kws": {
- "fr": [
- "catalogne",
- "communauté autonome"
- ]
- }
- },
- {
- "nm": "favori",
- "id": "b1fb024af3381b6195826b8ac720b89a00f98d3514461a0bf413d944585ee6f8",
- "kws": {
- "fr": [
- "favori"
- ]
- }
- },
- {
- "nm": "représentation graphique",
- "id": "68777431ade606b924f48de94cb7b0bda81feddb86cff2e3cf6ebbb49640b76d",
- "kws": {
- "fr": [
- "représentation graphique",
- "graphique"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "ef922912fbce19d2183eedff672463caa719bc039302fb157b93c79278ea1aed",
- "kws": {
- "fr": [
- "praxie",
- "sortir la langue",
- "orthophonie",
- "retirer"
- ]
- }
- },
- {
- "nm": "états parties",
- "id": "7d6fd2d8913eda443df74ec7423fd34e75f51a16d2d2e7bb4fbfa4d1630ee245",
- "kws": {
- "fr": [
- "états parties"
- ]
- }
- },
- {
- "nm": "cours",
- "id": "e3caaf15340a8940f422b5db18990690b7141c7afeb2660ed9634a8018ad356d",
- "kws": {
- "fr": [
- "cours",
- "professeur d\u0027éducation physique",
- "professeur"
- ]
- }
- },
- {
- "nm": "pignons",
- "id": "2cbbbe27342139a8ca948d7fe188355b0fb94a5893590f7bd1005be95a4afe4b",
- "kws": {
- "fr": [
- "pignons",
- "fruits secs"
- ]
- }
- },
- {
- "nm": "laboratoire",
- "id": "9a349540532ba16be96791a1197cb6f17a3a96c42a7ecaedcd4930c4ee4c8639",
- "kws": {
- "fr": [
- "laboratoire"
- ]
- }
- },
- {
- "nm": "caries",
- "id": "9983fb47bc968a5dbab4523f76a3951144f17f543ed59aa3c209e1ceb82c1fc1",
- "kws": {
- "fr": [
- "caries"
- ]
- }
- },
- {
- "nm": "crâne",
- "id": "03e74f10595e59ffed6c7ccb49cb6b78b4cf9af2e7b22fbc1fd8320c33b79fe0",
- "kws": {
- "fr": [
- "crâne"
- ]
- }
- },
- {
- "nm": "ennui",
- "id": "11399e3d133c999f18a1e2ce11030baacb8dae03e345c4802312cc189fe15f06",
- "kws": {
- "fr": [
- "ennui"
- ]
- }
- },
- {
- "nm": "cyclisme",
- "id": "bccc77baa088bc38e25f0ce479ca127d31015735da9ca67e1749c188a051c569",
- "kws": {
- "fr": [
- "cyclisme",
- "cyclistes"
- ]
- }
- },
- {
- "nm": "aucune",
- "id": "4bb6a2b128a4b442a47fb870c0ced16bdd93b4e16bd8a4fbf3ecd3f4fae81364",
- "kws": {
- "fr": [
- "aucune",
- "aucun"
- ]
- }
- },
- {
- "nm": "riz",
- "id": "8516b630e67bc4ac8c1563fd98b06696b915bfc3a16c7c2896e9ef7538ec5b3a",
- "kws": {
- "fr": [
- "riz"
- ]
- }
- },
- {
- "nm": "chapiteau",
- "id": "30e2b3a9a309a4ed259b9f8bad37139808b92b6bae68fedfab824695df0000c0",
- "kws": {
- "fr": [
- "chapiteau",
- "cirque"
- ]
- }
- },
- {
- "nm": "poupée",
- "id": "6154725cfdd95b19886f6364c91a52b486f3176c95530102e6ffc6500155bfe3",
- "kws": {
- "fr": [
- "poupée",
- "bonhomme"
- ]
- }
- },
- {
- "nm": "cheville",
- "id": "da6ab7ae42220bcede04670d250306d9ba438a7e14b90e0acf6a318ed137cf4b",
- "kws": {
- "fr": [
- "cheville"
- ]
- }
- },
- {
- "nm": "dauphin",
- "id": "56fa55e57c3647329d345aab5ac7585290f97c35cf1340aeff0d12435f8f2060",
- "kws": {
- "fr": [
- "dauphin"
- ]
- }
- },
- {
- "nm": "cd-rom",
- "id": "8205acc94dcfb09f815ff160414da47a8fdfaf05b119d385387d9702cc1d3113",
- "kws": {
- "fr": [
- "cd-rom",
- "cd"
- ]
- }
- },
- {
- "nm": "chiffon",
- "id": "22556daab492adc30ff44ad6275585c64755efb63bc458a3e9d446439faf59d3",
- "kws": {
- "fr": [
- "chiffon"
- ]
- }
- },
- {
- "nm": "monnaie",
- "id": "62b5e6b7b4aa5e7032fe7264f51b19e21398b9a4bb8021af979a53998e9cb5b6",
- "kws": {
- "fr": [
- "monnaie"
- ]
- }
- },
- {
- "nm": "rosaire",
- "id": "8af9024de802e9e9ce6fa84b227a8a468cda8e0fb9505634e46744ef988f13c2",
- "kws": {
- "fr": [
- "rosaire"
- ]
- }
- },
- {
- "nm": "eau douce",
- "id": "969c1f469e1035a085ece7acdb0aefec8f99f2d05ac93b3e3a481f24b0ca5b7a",
- "kws": {
- "fr": [
- "eau douce"
- ]
- }
- },
- {
- "nm": "augmenter",
- "id": "398798c99311b03ccb5697134c5ce47a7a39ff8707cc3386ca80f2f2c937695b",
- "kws": {
- "fr": [
- "augmenter"
- ]
- }
- },
- {
- "nm": "pérou",
- "id": "da926a79e424a392e349bb7d7e6dd8caa1a18c17133bace72ee70a0c04dfd5c2",
- "kws": {
- "fr": [
- "pérou"
- ]
- }
- },
- {
- "nm": "camion pour enfants",
- "id": "0944f77f8543965c4730236a925f51d0e59c7e5d99675559c59010687f3e0c2a",
- "kws": {
- "fr": [
- "camion pour enfants"
- ]
- }
- },
- {
- "nm": "ligne droite",
- "id": "99b2d53cabe0115afee363db5dab17602b3fa6fa7cc2967b1461cc0dd3687a9d",
- "kws": {
- "fr": [
- "ligne droite",
- "ligne"
- ]
- }
- },
- {
- "nm": "escalader",
- "id": "b9bf10cfe64e0bf04463374e888b39c5d455e1aba34c0e50f7a25caa4953a2b0",
- "kws": {
- "fr": [
- "escalader"
- ]
- }
- },
- {
- "nm": "poulpe",
- "id": "14c56f2105627cc19863d04337f3b96c79ac086cbf098b42f73d447b3d7ad12f",
- "kws": {
- "fr": [
- "poulpe"
- ]
- }
- },
- {
- "nm": "petite",
- "id": "c9c752152eae541e6affd762cd11592cc5ce23c24bcb8e9394efb6a10b2e77cb",
- "kws": {
- "fr": [
- "petite",
- "petit",
- "inférieur"
- ]
- }
- },
- {
- "nm": "lettre",
- "id": "9b554c72016ab70b661a526cafb5aaf25d797e6c2acface5aa6c03eadd1cbc2f",
- "kws": {
- "fr": [
- "lettre",
- "f"
- ]
- }
- },
- {
- "nm": "kinésithérapeute",
- "id": "e12d704bd7c5dfc827888889a567e60cf9da391a8fab8cac42a616c55eb93556",
- "kws": {
- "fr": [
- "kinésithérapeute"
- ]
- }
- },
- {
- "nm": "débrancher",
- "id": "ca0cdb38e269c70d653203cdf0c4d8a1dcaab0abf30c886634c525ab503434c9",
- "kws": {
- "fr": [
- "débrancher"
- ]
- }
- },
- {
- "nm": "rincer la bouche",
- "id": "419e0f1eb47b0944bc1377fd63498c9b513411e4d8812a03dd249452d5bc1653",
- "kws": {
- "fr": [
- "rincer la bouche",
- "rincer"
- ]
- }
- },
- {
- "nm": "ouvrier dans le bâtiment",
- "id": "94a0d43c81f250b0f16ad51a9098d2852761be43c0de3f1f551596c17885c123",
- "kws": {
- "fr": [
- "ouvrier dans le bâtiment",
- "maçon"
- ]
- }
- },
- {
- "nm": "donner un coup",
- "id": "48d6f496ce08c16a8338599cb68e8483988697b8ba9b4f2b6368599e3ef643a5",
- "kws": {
- "fr": [
- "donner un coup",
- "casser"
- ]
- }
- },
- {
- "nm": "chômeurs",
- "id": "d3f1acd6fddd3f5cd2bb1bcc995eadc3ff1b78374bccb0ad22d21c0129318efc",
- "kws": {
- "fr": [
- "chômeurs"
- ]
- }
- },
- {
- "nm": "pince",
- "id": "71017f9cc461f0f383c01578fa4e5fef423354b3ae1db7ccc6eef3c843043514",
- "kws": {
- "fr": [
- "pince"
- ]
- }
- },
- {
- "nm": "fruits secs",
- "id": "e3a5b7856b62a77101cd5eb3017ffa6e9982476f36016eee40cb9a6f43bb1454",
- "kws": {
- "fr": [
- "fruits secs"
- ]
- }
- },
- {
- "nm": "écailles",
- "id": "80fc08f2ba9df5522594f4fcc6197c1fcdcda0054659ba4477f92d000dd4c625",
- "kws": {
- "fr": [
- "écailles"
- ]
- }
- },
- {
- "nm": "célibataire",
- "id": "acd599e8f057f3edcdbcc6446f1d82d984e7f35799f1441ae2363c2a349eed96",
- "kws": {
- "fr": [
- "célibataire"
- ]
- }
- },
- {
- "nm": "aide à domicile",
- "id": "7ce08a90fbd7cde865540862d5457b165b8f5c02810190196822e02c4c4901e6",
- "kws": {
- "fr": [
- "aide à domicile"
- ]
- }
- },
- {
- "nm": "cordonnier",
- "id": "9c79c525f243f8bdf6d3b088bda59a15fe00066b721c6f63dd5520967f65077b",
- "kws": {
- "fr": [
- "cordonnier"
- ]
- }
- },
- {
- "nm": "casque",
- "id": "31b0722c6640e8ec905f5bf28de906d82323641cf51aae1f2f8581fafb6f2dfb",
- "kws": {
- "fr": [
- "casque"
- ]
- }
- },
- {
- "nm": "petit pois",
- "id": "ea15ef1c04ecb9e753c85426f77a173a4ccb801626887dacc3ea063890f62850",
- "kws": {
- "fr": [
- "petit pois",
- "petits pois"
- ]
- }
- },
- {
- "nm": "petit déjeuner",
- "id": "f7334a3a3964c8c6ef68ad25258fbea428eb380e4888e870a7d90580a8cd2c1b",
- "kws": {
- "fr": [
- "petit déjeuner"
- ]
- }
- },
- {
- "nm": "aubergine",
- "id": "4442c2c63538b5677bdc0894e21ba8cc8534aa433ec121b7c08306c7bf992346",
- "kws": {
- "fr": [
- "aubergine"
- ]
- }
- },
- {
- "nm": "l",
- "id": "b106521d1e692d58fb06bf8dbd00c18d0a6e2d1a3adedbd3ed4c7d38d0a6a74b",
- "kws": {
- "fr": [
- "l",
- "lettre"
- ]
- }
- },
- {
- "nm": "projecteur",
- "id": "efa8da4976a56def0571c62eeecfa77f7a186abaa392a8417eab41b05ee3ad21",
- "kws": {
- "fr": [
- "projecteur"
- ]
- }
- },
- {
- "nm": "police municipale",
- "id": "004615d9ed43c7b66e52ea3a40502623f02c145dbbff958e829aba6905a45077",
- "kws": {
- "fr": [
- "police municipale",
- "police",
- "agent de police municipale",
- "garde"
- ]
- }
- },
- {
- "nm": "se promener",
- "id": "0971e9614a0acf98cf483d6fbfff2ea9dcee2aefe80716dd256c571cf39bf875",
- "kws": {
- "fr": [
- "se promener"
- ]
- }
- },
- {
- "nm": "viande",
- "id": "44a67184c980dedf2fb0e4b744325e17ee04eb28edc3ebddbb5f562c4366750e",
- "kws": {
- "fr": [
- "viande",
- "filet de viande",
- "filet"
- ]
- }
- },
- {
- "nm": "prendre le petit déjeuner",
- "id": "436c33f25abe8bc7bd70b76866676bdaf382aab4325467b5286caf413fbfcd3a",
- "kws": {
- "fr": [
- "prendre le petit déjeuner"
- ]
- }
- },
- {
- "nm": "combien",
- "id": "b4d5574576a4010d3bfa0b15d10f2f6286814971c9a01cfdaa2b156394319b9d",
- "kws": {
- "fr": [
- "combien"
- ]
- }
- },
- {
- "nm": "fermer",
- "id": "9142cbc06fddc799ec583f0f7e6a192f19dd0a1812f5d3fabe292fc219186355",
- "kws": {
- "fr": [
- "fermer",
- "pousser"
- ]
- }
- },
- {
- "nm": "autriche",
- "id": "b1eab42294a29aaff1a6fb1ac68735a8e384778255f9d220caaf38dd33d199ea",
- "kws": {
- "fr": [
- "autriche"
- ]
- }
- },
- {
- "nm": "se déshabiller",
- "id": "aba9bb5701c0259a41711a4b60597912fec5526a9635b795b2ce9da20c331081",
- "kws": {
- "fr": [
- "se déshabiller",
- "baisser sa culotte",
- "baisser"
- ]
- }
- },
- {
- "nm": "manger",
- "id": "479f60c9729f15e08fc7eff4b813259db7ed1be9ac85400492b8c66196c0c762",
- "kws": {
- "fr": [
- "manger"
- ]
- }
- },
- {
- "nm": "tomber",
- "id": "057430b79e303a3e24cbc2f7b7accb58b8f0e1424db2911e033cdf7fa46fc0eb",
- "kws": {
- "fr": [
- "tomber"
- ]
- }
- },
- {
- "nm": "sens",
- "id": "dd928f6ced72782a951748f96938b617bae16b732d66b59d20351ce927369fb4",
- "kws": {
- "fr": [
- "sens",
- "sentir"
- ]
- }
- },
- {
- "nm": "rapprocher",
- "id": "699703f2006c50c5a5befff230eba4b0d972a1e195a9b42c744a11e428a4d3aa",
- "kws": {
- "fr": [
- "rapprocher",
- "s\u0027approcher"
- ]
- }
- },
- {
- "nm": "calamar",
- "id": "76985bed65ba72ec6d133cbe2369a007fc32e7c8a53dc8587b63b135b4aac992",
- "kws": {
- "fr": [
- "calamar"
- ]
- }
- },
- {
- "nm": "peintures de couleurs",
- "id": "b1be1b55275e63df43aad2082baa89f6865acc0e43ea146aaf090bafb60d3fbf",
- "kws": {
- "fr": [
- "peintures de couleurs",
- "peintures",
- "plastidecors"
- ]
- }
- },
- {
- "nm": "déplaire",
- "id": "2d8921337498a9ddaab3da161a18f9bc8b980435e792f9705121bf0bfa63e513",
- "kws": {
- "fr": [
- "déplaire",
- "désagréable",
- "ne pas aimer"
- ]
- }
- },
- {
- "nm": "mémoire",
- "id": "24a10262e8451a1e7a85d266012d4aa632ba1e49c6bb59232a1fdaacf9b000f0",
- "kws": {
- "fr": [
- "mémoire"
- ]
- }
- },
- {
- "nm": "se mettre de la crème",
- "id": "47df255dd4effe1d5dddf9f5b9ee8968d2d0a3ce2b5d71b2c8c4012e2298a7e6",
- "kws": {
- "fr": [
- "se mettre de la crème"
- ]
- }
- },
- {
- "nm": "nourriture pour oiseaux",
- "id": "b4d0731e1cef59161337dc3d56c5d265494ff5b1c49cf44d0d14dbf25bb73fd4",
- "kws": {
- "fr": [
- "nourriture pour oiseaux",
- "nourriture"
- ]
- }
- },
- {
- "nm": "portugal",
- "id": "fb73cd3b457eeb2eae61fbeda935b6e44cae4fdeac144a6a15557ed7a990b028",
- "kws": {
- "fr": [
- "portugal"
- ]
- }
- },
- {
- "nm": "amandier",
- "id": "bb70532a92ffbb930d347eefc6249cca50ac53f2b486234d4e116bc1a3c31a0c",
- "kws": {
- "fr": [
- "amandier"
- ]
- }
- },
- {
- "nm": "boîte de conserve d\u0027olives",
- "id": "9fd381379bc228fd565818f93c22272e34a8e35153743f2140069e222c8d3652",
- "kws": {
- "fr": [
- "boîte de conserve d\u0027olives",
- "boîtes de conserve d\u0027olives vertes"
- ]
- }
- },
- {
- "nm": "spatule",
- "id": "c6cc819678bf4eb974908a53ac5c8e5ad7d86dd57460556b4585a7817598ee77",
- "kws": {
- "fr": [
- "spatule"
- ]
- }
- },
- {
- "nm": "tableau de communication",
- "id": "70e9b224865be7b10ceff9e5f72f00b659da34e6f613cba3523a233150c76e21",
- "kws": {
- "fr": [
- "tableau de communication",
- "tableau",
- "produit de soutien"
- ]
- }
- },
- {
- "nm": "décoration",
- "id": "431e0722d14b29b123049651626e11f452e85240bf78269913bc3fe7d359ee7e",
- "kws": {
- "fr": [
- "décoration",
- "décorer",
- "orner"
- ]
- }
- },
- {
- "nm": "alcool",
- "id": "19659ced45f8ea023d42ffef9de450006d972bd7db82e35c7a21daa9a05b5a8a",
- "kws": {
- "fr": [
- "alcool"
- ]
- }
- },
- {
- "nm": "entendre",
- "id": "937b1e3dd5f75202c809bf24ca3eb043cfe2cae37b7563ea60535d51b819266e",
- "kws": {
- "fr": [
- "entendre",
- "écouter de la musique",
- "écouter"
- ]
- }
- },
- {
- "nm": "ballons",
- "id": "b4f6e44d3590064cd095b4a6f59362942534d8d6e93093f5784fbb53fb339aa1",
- "kws": {
- "fr": [
- "ballons",
- "ballon"
- ]
- }
- },
- {
- "nm": "que lis-tu",
- "id": "948338971df1ab8573b93ef09eb21018e93448d581eafc0166bb99547ab1b071",
- "kws": {
- "fr": [
- "que lis-tu"
- ]
- }
- },
- {
- "nm": "drogue",
- "id": "c9b22c51f8a8b7789ef8e6901c263c65416dc43bf0544a0ee56a5f5f1c7723b1",
- "kws": {
- "fr": [
- "drogue",
- "droguer",
- "consommation de drogues",
- "se droguer"
- ]
- }
- },
- {
- "nm": "vendredi",
- "id": "490c9cfe3f376fecdfcf439105b34fd34ce0996e8bfaba47da8caf65f70936f8",
- "kws": {
- "fr": [
- "vendredi"
- ]
- }
- },
- {
- "nm": "aide aux handicapés",
- "id": "961e664ee42e6ac235070846880ac45336aa8fcc42fcdfe10de755c1e88543d5",
- "kws": {
- "fr": [
- "aide aux handicapés",
- "aides aux handicapés",
- "aides",
- "aide"
- ]
- }
- },
- {
- "nm": "table",
- "id": "cb61fdda39a9ee9293a42cbbc3fd65042fe0c423e6640991ed0c1fbc6cfe87db",
- "kws": {
- "fr": [
- "table",
- "guéridon"
- ]
- }
- },
- {
- "nm": "doigts",
- "id": "adfee7a3489c181415acea1c8721d16265a0afb5d36fe3c135ac2c0af1ad1d58",
- "kws": {
- "fr": [
- "doigts"
- ]
- }
- },
- {
- "nm": "équipe",
- "id": "5360cd34de27c53aa4ce49c483e8e1c86772406543aeb62bef70dcaf2faf9b0d",
- "kws": {
- "fr": [
- "équipe"
- ]
- }
- },
- {
- "nm": "cristallin",
- "id": "2b04abd25731e2f9948c127973436e93f7a29d4b9aee2d4faf4bb4ffaf6dd894",
- "kws": {
- "fr": [
- "cristallin"
- ]
- }
- },
- {
- "nm": "amphibie",
- "id": "add98ad902f1db25cf68cb447cf8d9dd460a44ae26e1fb880e136b9290d32e16",
- "kws": {
- "fr": [
- "amphibie",
- "amphibies"
- ]
- }
- },
- {
- "nm": "exprimer",
- "id": "76acad756dcc97f5b293fab24e2b9cc1c6e013b90cde7e382ddcb56139059c96",
- "kws": {
- "fr": [
- "exprimer",
- "dire"
- ]
- }
- },
- {
- "nm": "corps de face",
- "id": "f36ec75982b1a263b250c6f0b88b6f7bf4c6cc7c8c9832141d76beb252c3255c",
- "kws": {
- "fr": [
- "corps de face",
- "corps"
- ]
- }
- },
- {
- "nm": "présenter",
- "id": "fd6008cffef96b68f0ff040d75ef49493896e65960f371478710cdaaf27c2865",
- "kws": {
- "fr": [
- "présenter",
- "montrer",
- "indiquer"
- ]
- }
- },
- {
- "nm": "muraille",
- "id": "7d948654354e82707cdf3a3a8de2a3de65037619ee227b8b8c31846925743187",
- "kws": {
- "fr": [
- "muraille",
- "mur"
- ]
- }
- },
- {
- "nm": "bague",
- "id": "53362990c18d382723519cda0796a982c88c0ad3602c5f081389c0738f091937",
- "kws": {
- "fr": [
- "bague",
- "bijou"
- ]
- }
- },
- {
- "nm": "sanctuaire",
- "id": "3227da7ddc0fb147e9253c13a422ecd943123151eca585cbe848fff94c700b97",
- "kws": {
- "fr": [
- "sanctuaire"
- ]
- }
- },
- {
- "nm": "présenter",
- "id": "96698a0ca5fefdcccf8669771bb0c7ea2dd023e456317cd248330382a0d867ee",
- "kws": {
- "fr": [
- "présenter",
- "montrer",
- "indiquer"
- ]
- }
- },
- {
- "nm": "serrure",
- "id": "0519e771bcd3db69f4a62bd5cd9669e66b79e23e44dc17ac76fa86c9fb110764",
- "kws": {
- "fr": [
- "serrure"
- ]
- }
- },
- {
- "nm": "lugo",
- "id": "2d19a9e495697fa7097893a11bf44619924e0eabf7cb1756b83af5b4df07ce90",
- "kws": {
- "fr": [
- "lugo"
- ]
- }
- },
- {
- "nm": "petit",
- "id": "fff5cdf360062e99f63d495aa673fc26fa75cb6eb3a14eaeb20a136be4249b82",
- "kws": {
- "fr": [
- "petit",
- "économique",
- "bon marché"
- ]
- }
- },
- {
- "nm": "pouvoir",
- "id": "b1bce3bb37629e03ce0192cce294dbf537259d3ceb0c1f19abcf482bf93f8d01",
- "kws": {
- "fr": [
- "pouvoir"
- ]
- }
- },
- {
- "nm": "coude",
- "id": "037d019e0979aa744e23cf7033f7796f7a7b1bf8a91c7122872828126081f066",
- "kws": {
- "fr": [
- "coude"
- ]
- }
- },
- {
- "nm": "mal à l\u0027oreille",
- "id": "277aea51ecc4a4ea4c6182424913e986afc59cfae44d46448fbafa7516c27fe1",
- "kws": {
- "fr": [
- "mal à l\u0027oreille"
- ]
- }
- },
- {
- "nm": "plastifier",
- "id": "133790d362499161e07a3b19874e77de53530f3a6f4838571f1b772a24c402c7",
- "kws": {
- "fr": [
- "plastifier"
- ]
- }
- },
- {
- "nm": "plombier",
- "id": "7cc42e4b1373d170ff995010ea3ab437b343a4fc5d77436223adde6e54a466ea",
- "kws": {
- "fr": [
- "plombier"
- ]
- }
- },
- {
- "nm": "passagère",
- "id": "b6b3bbd17af6b8208db8acb2f37776fc08e8273abc62ac3b7d429a9b75613b9d",
- "kws": {
- "fr": [
- "passagère",
- "voyageuse"
- ]
- }
- },
- {
- "nm": "compte",
- "id": "471beea7b527494f5e35e88c9e5bffb1e046603e3f02ceabd4d76ec10df07543",
- "kws": {
- "fr": [
- "compte",
- "soustraction",
- "soustraire",
- "opération"
- ]
- }
- },
- {
- "nm": "q",
- "id": "d9f79d50110b66012a4095497359df3938393f017238b6456a81e23921c07e05",
- "kws": {
- "fr": [
- "q",
- "lettre"
- ]
- }
- },
- {
- "nm": "payer",
- "id": "a6248563145ba02834de9776f3dbc7cc0d96981bba61a281465196d31e2f5e71",
- "kws": {
- "fr": [
- "payer"
- ]
- }
- },
- {
- "nm": "accommodement raisonnable",
- "id": "9c82b45db345f25dcdc1db891b0bee51a3f821f10608bc5e13b3d9161e7ab0ad",
- "kws": {
- "fr": [
- "accommodement raisonnable"
- ]
- }
- },
- {
- "nm": "ennuyer de l\u0027",
- "id": "e4658b06a1580b2922d7836073d4ab9a7466ed181ac1778d15578de3084073d2",
- "kws": {
- "fr": [
- "ennuyer de l\u0027",
- "regarder la télévision"
- ]
- }
- },
- {
- "nm": "panier",
- "id": "eccdbc6624a7f9eb69c9e095e04b5300ed12334438a029176ae3e54d66c9360c",
- "kws": {
- "fr": [
- "panier"
- ]
- }
- },
- {
- "nm": "pinceau",
- "id": "43d0bdd03ad6ad40728389670508be5f8a18c75496a30a937204c65f88349031",
- "kws": {
- "fr": [
- "pinceau"
- ]
- }
- },
- {
- "nm": "accusée",
- "id": "20057e1f37d7702697d802afc029db20fe89863c9732c9f0866b83382a5e2fec",
- "kws": {
- "fr": [
- "accusée"
- ]
- }
- },
- {
- "nm": "phare de vélo",
- "id": "8c1fa2dcda5e4809f0b4a129cb09899725f60738d7463beb84d4e1b91d575963",
- "kws": {
- "fr": [
- "phare de vélo",
- "phare"
- ]
- }
- },
- {
- "nm": "fer à cheval",
- "id": "49b9fc3b9519bc1d436af81a3db20e763c6001db333340bc2cf2a62757c57e07",
- "kws": {
- "fr": [
- "fer à cheval"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "db8f8fa577aac87bd1eac1227a53c5cd7693cac014b32b7edef80db4b26bad35",
- "kws": {
- "fr": [
- "praxie",
- "se mordre la lèvre",
- "mordre",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "sienne",
- "id": "2d37316702a1a1098c3e2a6b5b655f3ed49a75399c23cb049226b3b614c9ec72",
- "kws": {
- "fr": [
- "sienne",
- "sien",
- "son"
- ]
- }
- },
- {
- "nm": "sapin de noël",
- "id": "4761f42db70a260fb6f18efb1ddeee79f0358ee0206edaede61c4c73c1d5d04d",
- "kws": {
- "fr": [
- "sapin de noël"
- ]
- }
- },
- {
- "nm": "chaise de salon",
- "id": "5e07cd5abc722882530ccc38640cd2117e17dc95d9f78c71b0e95fd7b29a5b0b",
- "kws": {
- "fr": [
- "chaise de salon",
- "chaise",
- "siège"
- ]
- }
- },
- {
- "nm": "représentant des élèves",
- "id": "4838955c3a04d39f267c879851603c6157d1785c1c1c49fdaca4b1000bdd581f",
- "kws": {
- "fr": [
- "représentant des élèves",
- "représentant"
- ]
- }
- },
- {
- "nm": "mal",
- "id": "9a48a01200ddc4fc3687ce3a994e46cadc273a80e4bc9359cb271aac79395997",
- "kws": {
- "fr": [
- "mal"
- ]
- }
- },
- {
- "nm": "rire",
- "id": "4e1eb4481c59d60ad48b4a06f5641f737a81473b99045d98ab3d48ec64610ca8",
- "kws": {
- "fr": [
- "rire"
- ]
- }
- },
- {
- "nm": "analyse de sang",
- "id": "878c8d9feb10750875acca54c92ad9d4994a720d5c9c0e18d3450ccaebb42aa3",
- "kws": {
- "fr": [
- "analyse de sang",
- "analyse"
- ]
- }
- },
- {
- "nm": "politicienne",
- "id": "a1b7b0e76a0e7c8b7c589f9dd31794f5a2430ece72c375c056f0daeda894d30a",
- "kws": {
- "fr": [
- "politicienne"
- ]
- }
- },
- {
- "nm": "ouvrière",
- "id": "85ad0e67a3a7be122ff1e037c837f9e1fc41ef19eeb3c7bacb8edd0424317335",
- "kws": {
- "fr": [
- "ouvrière",
- "plombière"
- ]
- }
- },
- {
- "nm": "bonheur",
- "id": "6dc45213ebc1b266ee7ac1992e16299ca5d8259da6cd13a5a82f018aa298a49b",
- "kws": {
- "fr": [
- "bonheur"
- ]
- }
- },
- {
- "nm": "rendez-vous préalable",
- "id": "be61ece75bd0dad8e3ba1080b96840a209e6e916b913828eb34655b38233b3c6",
- "kws": {
- "fr": [
- "rendez-vous préalable"
- ]
- }
- },
- {
- "nm": "sarrau",
- "id": "d4ced47231a9c29389cd4fc5198122d4f8463ce4dee2d0cee8b49cc55e2b31b3",
- "kws": {
- "fr": [
- "sarrau"
- ]
- }
- },
- {
- "nm": "nerveux",
- "id": "30d87a7ae0c6a4b34b430d44c7ac55c69d160c0d648516d7e83b22ec55a39144",
- "kws": {
- "fr": [
- "nerveux"
- ]
- }
- },
- {
- "nm": "savonner",
- "id": "a00e2b658dfb8a5db7f1e93d51edf35ea6816c8e62f0e93ef98f5a13232cc42f",
- "kws": {
- "fr": [
- "savonner",
- "se laver",
- "laver les mains",
- "laver"
- ]
- }
- },
- {
- "nm": "ballon de football",
- "id": "c21cce61988e804e2e4e65e79f0600cb2f5f8eb52065cd318853615b6c44c587",
- "kws": {
- "fr": [
- "ballon de football",
- "ballon"
- ]
- }
- },
- {
- "nm": "ouragan",
- "id": "1cf95c129d02ed773ff967121d21f2b50571470a190243a8e8968d09ff05113a",
- "kws": {
- "fr": [
- "ouragan",
- "phénomène atmosphérique",
- "catastrophe"
- ]
- }
- },
- {
- "nm": "tiroir",
- "id": "694675d0b8a61c7b1ebe8744eb3ffd6a75616692be527965f73a3234a84e6894",
- "kws": {
- "fr": [
- "tiroir",
- "piscine de balles",
- "piscine à boules"
- ]
- }
- },
- {
- "nm": "cimeterre",
- "id": "77385e805ecc202871ff20c419a8d848497f82ca7f8bbedc14fed23a7383bf92",
- "kws": {
- "fr": [
- "cimeterre",
- "katana"
- ]
- }
- },
- {
- "nm": "camping",
- "id": "270e1b984aa2542d89b99c75919bbf3ff0db75144e5e4a032d404df557e09da6",
- "kws": {
- "fr": [
- "camping"
- ]
- }
- },
- {
- "nm": "pioche",
- "id": "e0fcd247e5b44f34667a67a7de4c13261ff188309a20d173b46f05c55dd6bb1d",
- "kws": {
- "fr": [
- "pioche"
- ]
- }
- },
- {
- "nm": "cracher",
- "id": "83d1846fd3e0dd49b80d09bc77d5c1fdb0aba53d880a8f83612bb20924b4c99b",
- "kws": {
- "fr": [
- "cracher"
- ]
- }
- },
- {
- "nm": "patient",
- "id": "d48a1dea3895d5b7a8aa7f9375f9a3c1d38a2ce926dd833ce20779e98d160525",
- "kws": {
- "fr": [
- "patient"
- ]
- }
- },
- {
- "nm": "cafétéria",
- "id": "40e497d4484c47522c0bbcf44b80cc8778acb435ceee6001cff7139383b078fc",
- "kws": {
- "fr": [
- "cafétéria",
- "bar"
- ]
- }
- },
- {
- "nm": "particules",
- "id": "d614cccca738784e11bac8261fc4522ab45e771cca1cd2a0fed81962b3dd3536",
- "kws": {
- "fr": [
- "particules"
- ]
- }
- },
- {
- "nm": "serbie",
- "id": "e64b00b61bd55cc6d575f164b57132014c9768550e2e6c2d129120411f6a6c61",
- "kws": {
- "fr": [
- "serbie"
- ]
- }
- },
- {
- "nm": "bibliothèque",
- "id": "5f3c95059357c9c76ae09d70bb5d0271754e6c2fa79c5fd26ef7192b83a15822",
- "kws": {
- "fr": [
- "bibliothèque"
- ]
- }
- },
- {
- "nm": "amaque",
- "id": "1249fd555b21de91aabaffa2b4dd34f4d313e298140dc2e8371ad3e0d87547c4",
- "kws": {
- "fr": [
- "amaque"
- ]
- }
- },
- {
- "nm": "avoir soif",
- "id": "c3117e87a10a673e2a0cde9f0c749f1a97cdd518fc023ec9f6cdc180d99e238c",
- "kws": {
- "fr": [
- "avoir soif",
- "soif",
- "assoiffé"
- ]
- }
- },
- {
- "nm": "corrosif",
- "id": "612ad4494dc4844251c244d1ad72653aae047b89163edf296d385ad3f162c5eb",
- "kws": {
- "fr": [
- "corrosif",
- "danger"
- ]
- }
- },
- {
- "nm": "déplacer",
- "id": "05c90bb398aaed5ae97d5dd66acef211bc20fdbd6b10f711bf884e07ab6625b7",
- "kws": {
- "fr": [
- "déplacer",
- "remuer"
- ]
- }
- },
- {
- "nm": "panier",
- "id": "baf521f6b93d8d494b271861d6673e69da2acb6bc75e0c607e1f28da4dd3993f",
- "kws": {
- "fr": [
- "panier"
- ]
- }
- },
- {
- "nm": "pizzeria",
- "id": "3d251944161fb425d34ae3d57960d7eca9e6fdb95a4f2124bda1dc0befff343a",
- "kws": {
- "fr": [
- "pizzeria",
- "restaurant"
- ]
- }
- },
- {
- "nm": "euros",
- "id": "d5998ff5f646f6d39354da94da39012beae40618f7c9898f2c8224fa1cadfbc0",
- "kws": {
- "fr": [
- "euros",
- "5 euros",
- "argent"
- ]
- }
- },
- {
- "nm": "avertir",
- "id": "3685cfa02a150c72aa67ea3b39aecba3b8b811ecf96ffbe8c0da9f1034740380",
- "kws": {
- "fr": [
- "avertir"
- ]
- }
- },
- {
- "nm": "tu",
- "id": "317e74c95815c16be43090bb5488f58d4cd021af90843848b414d0a3fdcdab9e",
- "kws": {
- "fr": [
- "tu",
- "vous"
- ]
- }
- },
- {
- "nm": "poids",
- "id": "60efddfbaee024e139175f8c56febcac8856f7eacc7aeb7e533a747c44ada8e7",
- "kws": {
- "fr": [
- "poids"
- ]
- }
- },
- {
- "nm": "noix",
- "id": "28e173a66e423b1da8b7e283bc284211a7e6cd4e704150d60c5cd7d861f2e379",
- "kws": {
- "fr": [
- "noix",
- "fruit sec"
- ]
- }
- },
- {
- "nm": "livret de famille",
- "id": "8be0b62e4e6526a6e845a892090637f60063908090823bdbdca9189a94c726c1",
- "kws": {
- "fr": [
- "livret de famille"
- ]
- }
- },
- {
- "nm": "trotinette",
- "id": "f8800cf56f1e5a508e617a9a00b6f06c660c298bb7b8b14f932b39b619acc44e",
- "kws": {
- "fr": [
- "trotinette",
- "trottinette",
- "skate"
- ]
- }
- },
- {
- "nm": "nations unies",
- "id": "cdc0885ec6c173b349b5430bf963a33519ea3a5172a4cad504e5fe241cd84104",
- "kws": {
- "fr": [
- "nations unies",
- "onu"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "888eea858af7d55314bf9e99f2d1e1b946f9b7dd384220ead94b2b0525196157",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains aux épaules",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "vide",
- "id": "6c5b2aeb067377e711c46a981aede4776fc93dc046dffda7ed9d96823a237d47",
- "kws": {
- "fr": [
- "vide"
- ]
- }
- },
- {
- "nm": "produits de soutien",
- "id": "c0a0bc6654d3341211c8f420d5d62bfb1115700e35892703bea1295f4e2d393b",
- "kws": {
- "fr": [
- "produits de soutien",
- "communicateurs"
- ]
- }
- },
- {
- "nm": "accès",
- "id": "190f546467bf52ffdc95b4f5b343ec5a05fe398154d6d187fe0e5a006ccbbef0",
- "kws": {
- "fr": [
- "accès"
- ]
- }
- },
- {
- "nm": "poignet",
- "id": "5fc79432d89334d7149c85e65b891da129df08b64f4870c4dda2a91a3f24e095",
- "kws": {
- "fr": [
- "poignet"
- ]
- }
- },
- {
- "nm": "téléphone sans fil",
- "id": "e2d029d6c2ca053b9a833be9a9f1d0068fa13b8ad461882948857ca57d8cd178",
- "kws": {
- "fr": [
- "téléphone sans fil",
- "téléphone"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "39fc1935df42da9852274dde42e080b1842638e24b69a315b370e7f6468ae87a",
- "kws": {
- "fr": [
- "communauté autonome",
- "galice"
- ]
- }
- },
- {
- "nm": "scientifique",
- "id": "86e9a48457d9d8f26c6b53d2870d99ec497591af20e4f5e766e7002a8ced9386",
- "kws": {
- "fr": [
- "scientifique"
- ]
- }
- },
- {
- "nm": "évènement",
- "id": "7e7b00ec1d6b1d39fdc3a2f91ec026926495bd49e1bf1ea9fb0b29ff18d918d5",
- "kws": {
- "fr": [
- "évènement",
- "affiche",
- "annonce"
- ]
- }
- },
- {
- "nm": "communauté autonome",
- "id": "252c9440b4815791b70be4cdb0cbb0a71573fe8a8f2add03a0a7ff3d0914ef26",
- "kws": {
- "fr": [
- "communauté autonome",
- "navarre"
- ]
- }
- },
- {
- "nm": "ver luisant",
- "id": "01867256330025c8beab544635868b0711274da01a9b25123e55363700d9ea6d",
- "kws": {
- "fr": [
- "ver luisant"
- ]
- }
- },
- {
- "nm": "atomium",
- "id": "92055809dcceb978377666b9888efc0cd2a5a2077b045230f2fc3355e709dd93",
- "kws": {
- "fr": [
- "atomium"
- ]
- }
- },
- {
- "nm": "bestiole",
- "id": "9a7382c8c54387eb5e2826ec340f4a3f7bfa5e99bacc7c0498827de110ba4768",
- "kws": {
- "fr": [
- "bestiole",
- "animal"
- ]
- }
- },
- {
- "nm": "touriste",
- "id": "fa29c102c3f381fa7da1eb46d9de3ed23665e97f1f0e88b5f025eb79b22ba6f0",
- "kws": {
- "fr": [
- "touriste"
- ]
- }
- },
- {
- "nm": "jukebox",
- "id": "04e0c931bafa9b69181facebe1974bbc021630a97eac251f8040414b609a3cfb",
- "kws": {
- "fr": [
- "jukebox"
- ]
- }
- },
- {
- "nm": "service de thérapie professionnelle",
- "id": "5e7d66d453053ec8b6fcfd950dda356a3c22a84d74080001c06767232b474bd8",
- "kws": {
- "fr": [
- "service de thérapie professionnelle",
- "service",
- "signalétique",
- "salle"
- ]
- }
- },
- {
- "nm": "handicapé",
- "id": "3a402ae5a1a69c629cb95c890aed0ccb8b078d1467b46ff9017f727488b3de83",
- "kws": {
- "fr": [
- "handicapé",
- "handicapés"
- ]
- }
- },
- {
- "nm": "crustacés",
- "id": "68b104da988cb29d78b71e58648fdad2a4cab0ea19885ea6ba1633485a6f23b1",
- "kws": {
- "fr": [
- "crustacés",
- "fruits de mer"
- ]
- }
- },
- {
- "nm": "griller",
- "id": "6e5fbe04849004f9e7674405f94f4d8696d121e6aab501a0380293597f0c2df5",
- "kws": {
- "fr": [
- "griller"
- ]
- }
- },
- {
- "nm": "matelas",
- "id": "913fd14bebeb27d6e4fbc51eda49788df59377cb972b429d41b2c5f798022934",
- "kws": {
- "fr": [
- "matelas"
- ]
- }
- },
- {
- "nm": "troisième",
- "id": "3a5b983bb9d7283e372fbc76a17d4b3f3f2236c261ce3a946d90686f86e23450",
- "kws": {
- "fr": [
- "troisième"
- ]
- }
- },
- {
- "nm": "saleté",
- "id": "a4a258d4096263482b3a8e41d22d4ea4cba7b59a068c67e9425b1dac60117ba9",
- "kws": {
- "fr": [
- "saleté"
- ]
- }
- },
- {
- "nm": "tuyau d\u0027arrosage",
- "id": "db977865411b4e6fd02a675832bc17f328670b431231670e0c9e5fb8fe9c066a",
- "kws": {
- "fr": [
- "tuyau d\u0027arrosage"
- ]
- }
- },
- {
- "nm": "écumoire",
- "id": "8b66489e4c535bedf2b7a5351735b3a0bdf717738438c5df02009a447c085b89",
- "kws": {
- "fr": [
- "écumoire"
- ]
- }
- },
- {
- "nm": "île",
- "id": "ab9dbc7f946a10a02dc2caef3dc1f92a72b7ab2ee0d576bc4068df4f39398e14",
- "kws": {
- "fr": [
- "île",
- "îlot"
- ]
- }
- },
- {
- "nm": "éructer",
- "id": "0ebdaf8e8567b27f74659f2144178585f5b4d4c20b9c309d2ec09cae5ea6b7b8",
- "kws": {
- "fr": [
- "éructer",
- "roter"
- ]
- }
- },
- {
- "nm": "moment",
- "id": "edea6f6c583237ab2c623f1d16b38b526bc857670cbce3d38e92b962168db9db",
- "kws": {
- "fr": [
- "moment"
- ]
- }
- },
- {
- "nm": "pédaler",
- "id": "26f3162e932d319af13d62dfd00589997a4a103d956e9e4ead224ff8efd9d20e",
- "kws": {
- "fr": [
- "pédaler"
- ]
- }
- },
- {
- "nm": "loup",
- "id": "51a3e8cab0124cb3ffac9cf1edf3d8505f0085175725818ec9091ebea775ba79",
- "kws": {
- "fr": [
- "loup"
- ]
- }
- },
- {
- "nm": "en couleur",
- "id": "da5abd79bed7e0576bca72260a62e5dcb4afb76c9afd6e3f7e3254aee89d8f75",
- "kws": {
- "fr": [
- "en couleur",
- "étranger",
- "noir"
- ]
- }
- },
- {
- "nm": "près",
- "id": "a752f7b24b4bf7bf063b7a06efbe9bb55a2b0774e434f3fd0eec66a10a060a8f",
- "kws": {
- "fr": [
- "près"
- ]
- }
- },
- {
- "nm": "enclume",
- "id": "8f01f8f7dfab4a23e2b8b5218d46c12e4f4a5d72a443a40a01b47a1a3df9ae5f",
- "kws": {
- "fr": [
- "enclume"
- ]
- }
- },
- {
- "nm": "parc",
- "id": "1694367210d34dc7e1fee8ad28373a952febf10256a15c4f3d1ca0d345fafb3a",
- "kws": {
- "fr": [
- "parc"
- ]
- }
- },
- {
- "nm": "consentement informé",
- "id": "da9782678c1acc0920b84d4024016b31cbd1974b03d89099dac8d2aa9cd33d6c",
- "kws": {
- "fr": [
- "consentement informé"
- ]
- }
- },
- {
- "nm": "avion de chasse",
- "id": "ded4980e3a92f102cf5a077ef1697a42960ef181b2266c1e4e52e34a368dbbf3",
- "kws": {
- "fr": [
- "avion de chasse",
- "avion"
- ]
- }
- },
- {
- "nm": "mains",
- "id": "a6b8bcf49936e416f503a7acfc80c9dcad7720c19301b97fa4a530a7b6b187d5",
- "kws": {
- "fr": [
- "mains"
- ]
- }
- },
- {
- "nm": "coiffer",
- "id": "f168ed1a13bab5a3f6d289b5865eb047c4cb4509ffd0a7244285f96f4f253b6b",
- "kws": {
- "fr": [
- "coiffer",
- "se coiffer"
- ]
- }
- },
- {
- "nm": "ciel",
- "id": "958e549fb666a8cbdff409e19a50d9a6ead7c7410b72d159618bc8b43f724944",
- "kws": {
- "fr": [
- "ciel",
- "étoiles",
- "firmament"
- ]
- }
- },
- {
- "nm": "revue",
- "id": "edbaed05bb4383d2d28322917c72e671e74e761a17c49849b3ee86930535c594",
- "kws": {
- "fr": [
- "revue"
- ]
- }
- },
- {
- "nm": "décoller",
- "id": "7860e6f91921ff8f75b257d80dd0515fb615be12c67f01b471a313d01a95da0d",
- "kws": {
- "fr": [
- "décoller"
- ]
- }
- },
- {
- "nm": "empiler",
- "id": "6ac10200234f957dee5eaf05dc470ac791dea4290c12945554da664255a26455",
- "kws": {
- "fr": [
- "empiler",
- "placer"
- ]
- }
- },
- {
- "nm": "charge de conseiller municipal",
- "id": "24d963aa95df0ccaa3cbd8a2db07ecb581afdaf07f8fc5d9d6cc762b322c7bd8",
- "kws": {
- "fr": [
- "charge de conseiller municipal",
- "conseiller municipal"
- ]
- }
- },
- {
- "nm": "indienne",
- "id": "163b3d71a9aa46060b01f696707a6c6e3103d71a8dd9df4e7b7f23d75a2c2383",
- "kws": {
- "fr": [
- "indienne"
- ]
- }
- },
- {
- "nm": "doré",
- "id": "b2ef3c44cb236c0d2cd80a2129c1e4df94967c9735c0e3216c8fa102bf47d8d8",
- "kws": {
- "fr": [
- "doré"
- ]
- }
- },
- {
- "nm": "améliorer",
- "id": "5f3d98fff40510308f615e52f42208151b0a04d49ae23e7ac62154cc268bb7f0",
- "kws": {
- "fr": [
- "améliorer"
- ]
- }
- },
- {
- "nm": "piège",
- "id": "b337e787fd90afb4fc74835e2f25a8b263e7dc529e04c3c79f90ac8a21875310",
- "kws": {
- "fr": [
- "piège"
- ]
- }
- },
- {
- "nm": "gouvernail",
- "id": "2c99206633caad4eda2fdbb56d0c2955579dae89d3fcae394ac91c89e3ceac77",
- "kws": {
- "fr": [
- "gouvernail"
- ]
- }
- },
- {
- "nm": "unicorne",
- "id": "7c943707aae9caa0ab66c03bdffc8b700d6937a8e72d925485b74f075a7e48c4",
- "kws": {
- "fr": [
- "unicorne"
- ]
- }
- },
- {
- "nm": "fer à souder électrique",
- "id": "9e43e45a4bb079d1c2bf0a7d64c8993a634ca9478ae2b0b0c64a953d6c5dd1ad",
- "kws": {
- "fr": [
- "fer à souder électrique",
- "soudeur"
- ]
- }
- },
- {
- "nm": "équipe d\u0027intervention",
- "id": "d20895a52f51b2b6e2449540a3aa6dca1e8cc4e0a107b62d9e08518e25c59a5c",
- "kws": {
- "fr": [
- "équipe d\u0027intervention"
- ]
- }
- },
- {
- "nm": "fourmillière",
- "id": "e2e27c0caa103cdd1f33576bd45aaf6d7643a5e0da60abf8ef2ae931637b3ec4",
- "kws": {
- "fr": [
- "fourmillière"
- ]
- }
- },
- {
- "nm": "désert",
- "id": "8c506939b3d567f9f43ec802f3697a088d0af7389ca0eedcfa551c0b266ebca0",
- "kws": {
- "fr": [
- "désert",
- "sablonneux"
- ]
- }
- },
- {
- "nm": "sel",
- "id": "20e54f3608622d1ea0d84b6b6c24937927a3ea55fad507bb83a670926fc3d355",
- "kws": {
- "fr": [
- "sel",
- "salière"
- ]
- }
- },
- {
- "nm": "je n\u0027ai pas la parole",
- "id": "5cb50adef0d2a891852bfcbd087c8563f85d185c699e2a0a3d1fefaa8175f8e4",
- "kws": {
- "fr": [
- "je n\u0027ai pas la parole"
- ]
- }
- },
- {
- "nm": "amie",
- "id": "af1121415543967c43983b2484855585594e9eabed6b616552436b243ed351c6",
- "kws": {
- "fr": [
- "amie"
- ]
- }
- },
- {
- "nm": "parcourir",
- "id": "bd80d21d9b8f4685b61c76eec27da9280f42a7851b195b8903b7962ba1cc1852",
- "kws": {
- "fr": [
- "parcourir",
- "parcourir"
- ]
- }
- },
- {
- "nm": "trébucher",
- "id": "2ec1d2a7df252e7e2414bc0e30e3e688fbeb7ef4d8f2e18980afd288b6567598",
- "kws": {
- "fr": [
- "trébucher"
- ]
- }
- },
- {
- "nm": "monsieur",
- "id": "372d8533f204cf75f71771d9db8632f78f22ece4faf5fd70a8ac54afe03b0102",
- "kws": {
- "fr": [
- "monsieur"
- ]
- }
- },
- {
- "nm": "ailes",
- "id": "c25ab3303b5fc1a30a3689934190816aeeafa14a6db824bf3a86cdf54308ad83",
- "kws": {
- "fr": [
- "ailes"
- ]
- }
- },
- {
- "nm": "laver les assiettes",
- "id": "177ea191102958919429515dd3e56aefaa28898ac927ee1718eb9a1f1afaaaca",
- "kws": {
- "fr": [
- "laver les assiettes",
- "laver",
- "frotter"
- ]
- }
- },
- {
- "nm": "sucré",
- "id": "dee59a1e1a98742d5b4453c917cf63eb4083b8dea747335875c7cea7e9d52d9e",
- "kws": {
- "fr": [
- "sucré"
- ]
- }
- },
- {
- "nm": "remonter le caleçon",
- "id": "b86f0f7350ab025ea7bcca646d9c6aa74b924e4330c83f43bd0cfe151b178424",
- "kws": {
- "fr": [
- "remonter le caleçon",
- "remonter"
- ]
- }
- },
- {
- "nm": "écran",
- "id": "b5f5f1ba7ce9f252a961562fe681872b01e91781b6a60fdc15ce0299c1185491",
- "kws": {
- "fr": [
- "écran"
- ]
- }
- },
- {
- "nm": "sain",
- "id": "cfeebbe8fd6f0019a25775e346ac26c86b8ee0669c2bc6c5e8b7a027217c297c",
- "kws": {
- "fr": [
- "sain"
- ]
- }
- },
- {
- "nm": "sciences sociales",
- "id": "3aca2d2a0878a1d88ac0e1e6ef6588b039f0fab96e0725475abe7c3e04003a9e",
- "kws": {
- "fr": [
- "sciences sociales",
- "livre de sciences sociales",
- "matière"
- ]
- }
- },
- {
- "nm": "peu",
- "id": "ff2edc7d4d79e9f901442f6c9d2f50e413c65cd2df10a7754256ede6d0a3051c",
- "kws": {
- "fr": [
- "peu"
- ]
- }
- },
- {
- "nm": "garde",
- "id": "e75b8d8f4d0e7442895719b221db72283056fba7c6c2455e9aef6cde494e20f0",
- "kws": {
- "fr": [
- "garde"
- ]
- }
- },
- {
- "nm": "barbecue",
- "id": "888f37699e5ede949b0664f88f621783e64f19131538747932b395aef8e7bd06",
- "kws": {
- "fr": [
- "barbecue"
- ]
- }
- },
- {
- "nm": "grandir",
- "id": "8e420567ddf4b73fbc56ae65ad974aaff9d8302ce2c2e461698d1a3cf6924a64",
- "kws": {
- "fr": [
- "grandir"
- ]
- }
- },
- {
- "nm": "blague",
- "id": "8819b1b6f78f9efd4e59190a96da1dea14ba0d687926246cbf7a94b46fdf9975",
- "kws": {
- "fr": [
- "blague"
- ]
- }
- },
- {
- "nm": "poivron vert",
- "id": "717315c871b485108e77f5c4285801ed0539f907bd225e2db171a51a57a4afee",
- "kws": {
- "fr": [
- "poivron vert",
- "poivron"
- ]
- }
- },
- {
- "nm": "chasseur",
- "id": "bd3775396be83ba79e4a5bf497b9921396ee353701e1124c284e6a618c81c21f",
- "kws": {
- "fr": [
- "chasseur"
- ]
- }
- },
- {
- "nm": "garde",
- "id": "20e8018c35ae1d9d0fe6508a210b0cf1cfca849207c1ac765f06797aaf3da545",
- "kws": {
- "fr": [
- "garde"
- ]
- }
- },
- {
- "nm": "brackets",
- "id": "0c312260a1cd5ac3603767f472206340b513666d3980bb87fb1cbf6ef066cd00",
- "kws": {
- "fr": [
- "brackets",
- "appareil dentaire"
- ]
- }
- },
- {
- "nm": "crèche de noël",
- "id": "c8b09d9760ada24edaa91cbffba37fe07d287715158347b8533014a98076b0ea",
- "kws": {
- "fr": [
- "crèche de noël",
- "crèche",
- "noël"
- ]
- }
- },
- {
- "nm": "capuche",
- "id": "870238c88846048bcd6d58ed7a54d0d6ecbcadfb25b7dae7b6faabeba165f98b",
- "kws": {
- "fr": [
- "capuche",
- "capuchon"
- ]
- }
- },
- {
- "nm": "moufle",
- "id": "8e40275ae06347827d501e8fa5921cac88e2429372419d0ae8143fdf3a81190f",
- "kws": {
- "fr": [
- "moufle",
- "gant de toilette"
- ]
- }
- },
- {
- "nm": "scier",
- "id": "593751d24746ba5c266bfde6ac83aae0b774753332431ae81457490c18a023b7",
- "kws": {
- "fr": [
- "scier"
- ]
- }
- },
- {
- "nm": "indépendance",
- "id": "d87801beb8816aa6aa7e45dcb721a66c94fca3964184ed8beb9da1429932fe84",
- "kws": {
- "fr": [
- "indépendance"
- ]
- }
- },
- {
- "nm": "tailler",
- "id": "4f58e8c5ec93d941b1bb4cefea00d12efd770e47826035fd7d0ab90c24a040d1",
- "kws": {
- "fr": [
- "tailler"
- ]
- }
- },
- {
- "nm": "loge",
- "id": "a261e50d35b3c5effd8fb2713c44d30415cf7cdf01e7650f7d964faed08b1af6",
- "kws": {
- "fr": [
- "loge"
- ]
- }
- },
- {
- "nm": "copier",
- "id": "0311a0e774e8c812be6b659dbb67fdd1778889ea532073749f3275f6bde88219",
- "kws": {
- "fr": [
- "copier"
- ]
- }
- },
- {
- "nm": "maintenant",
- "id": "795b867807a0a5a550f9975a5bdfb9c984a822cbdefbff30d4bfc3dff11eaea7",
- "kws": {
- "fr": [
- "maintenant"
- ]
- }
- },
- {
- "nm": "enfant autiste",
- "id": "4e58414b03a0d44a26aa4783b867391fc8db571a980202d5c1cc4eb26a97c1b8",
- "kws": {
- "fr": [
- "enfant autiste"
- ]
- }
- },
- {
- "nm": "chaussette",
- "id": "857d38543feddaaa90d8146e0739251bb435771129d42e5065d5d9508bc163ae",
- "kws": {
- "fr": [
- "chaussette"
- ]
- }
- },
- {
- "nm": "chrétien",
- "id": "76be37164bb7f0fa7b54a889c1a591d75cb833e005ecc726edb1add158431e3b",
- "kws": {
- "fr": [
- "chrétien"
- ]
- }
- },
- {
- "nm": "castor",
- "id": "d1dafd0abc077f22d52c1fbcf64d6ee39d4fdc9216ac3c8cb6e9241702a317e6",
- "kws": {
- "fr": [
- "castor"
- ]
- }
- },
- {
- "nm": "descendre",
- "id": "71b21b51d590e56367ea1b033250f112e5370c20197af595503952e8330af36d",
- "kws": {
- "fr": [
- "descendre",
- "diminuer"
- ]
- }
- },
- {
- "nm": "prendre sa retraite",
- "id": "6cf6587f1da8736abf3210ac3af61eecc7e4648e2f72251dc3f22db904246832",
- "kws": {
- "fr": [
- "prendre sa retraite",
- "mettre à la retraite retraite"
- ]
- }
- },
- {
- "nm": "faire une ronde",
- "id": "e7dc8652e98dc646feda293d11a73319816b3696232d05271c4fcb45c036efa5",
- "kws": {
- "fr": [
- "faire une ronde",
- "ronde"
- ]
- }
- },
- {
- "nm": "chef de maintenance",
- "id": "d3ebca889dc682ada5a3a0a34b9b381f24c365ea1bf5ec224a0cf41485254330",
- "kws": {
- "fr": [
- "chef de maintenance"
- ]
- }
- },
- {
- "nm": "parties",
- "id": "746534628a6d4aa583ef658ba723b26e02839dd2b53f4cd4eeca3715c38ec9a3",
- "kws": {
- "fr": [
- "parties",
- "fractions",
- "fraction"
- ]
- }
- },
- {
- "nm": "mandarine",
- "id": "c77419300b749720b1990b94f680f1b6e63b7df0252e54bbf7fd88a75e224801",
- "kws": {
- "fr": [
- "mandarine"
- ]
- }
- },
- {
- "nm": "passoire",
- "id": "3a303b40aee45b4e23054eadbecd6ea8985747da99ac960fcb218cb26e92e453",
- "kws": {
- "fr": [
- "passoire"
- ]
- }
- },
- {
- "nm": "vin",
- "id": "25791f68b89465621439de321f5b0347cc9624e13ef60b5f4d58f565642ab9e7",
- "kws": {
- "fr": [
- "vin"
- ]
- }
- },
- {
- "nm": "chronomètre",
- "id": "a67dd7af375d251f23e14cb7921c327ddce8384da307cbe89ec26e712b4a105c",
- "kws": {
- "fr": [
- "chronomètre"
- ]
- }
- },
- {
- "nm": "ingénieur",
- "id": "d33524e5e6492e5987924249d794e474a026870e78b8d8342052dfe2625b2825",
- "kws": {
- "fr": [
- "ingénieur"
- ]
- }
- },
- {
- "nm": "frein de vélo",
- "id": "6b955927f66f7490bae4275452907eef83a2aa9555dfbb94f0bf2fd816a580ad",
- "kws": {
- "fr": [
- "frein de vélo",
- "frein"
- ]
- }
- },
- {
- "nm": "prisonnière",
- "id": "0aa1ddfc8a42dc02c82ff5d70edad81d8e69d0be74bd7219ea120e96f0f07426",
- "kws": {
- "fr": [
- "prisonnière",
- "recluse"
- ]
- }
- },
- {
- "nm": "poilu",
- "id": "2313e06dd3740c380245a43c6b10ab8e131454b65aa58bde42020fdadf321d6f",
- "kws": {
- "fr": [
- "poilu"
- ]
- }
- },
- {
- "nm": "chaise enfant",
- "id": "11cbb35d17b8e116f8460e91a975d718ed8e930b591f4060e41056bf606daf82",
- "kws": {
- "fr": [
- "chaise enfant",
- "chaise pour promenade",
- "chaise",
- "charriot"
- ]
- }
- },
- {
- "nm": "démettre",
- "id": "d708526ee3177bc63890fd3aa7286edb5e860a9a112c975a56a5fa9eea115ec2",
- "kws": {
- "fr": [
- "démettre",
- "renvoyer"
- ]
- }
- },
- {
- "nm": "trinité et tobago",
- "id": "699cea9ad6709a8a34fe1ada81bbbb495bff78fc27d66ad0f555adb17cf9aedf",
- "kws": {
- "fr": [
- "trinité et tobago"
- ]
- }
- },
- {
- "nm": "monstre",
- "id": "0a0875b9e83283d549f7c2116d21dec7096c82fca773d26252879af010d126e2",
- "kws": {
- "fr": [
- "monstre"
- ]
- }
- },
- {
- "nm": "dur",
- "id": "bb5cb9a6a615ebd30e041f4ffdd19e7800b953c7bcae57b8cd091a3586ccd2cf",
- "kws": {
- "fr": [
- "dur"
- ]
- }
- },
- {
- "nm": "pupitre",
- "id": "8bca7ba391d057a9732210f10ce892a4a511e8600f355ee506600344a1523176",
- "kws": {
- "fr": [
- "pupitre"
- ]
- }
- },
- {
- "nm": "sympathique",
- "id": "0138578a30eb000915499a667f408208e5bc4700d9dcbe1003e7cd8158d8ff46",
- "kws": {
- "fr": [
- "sympathique",
- "agréable"
- ]
- }
- },
- {
- "nm": "pistolet à eau",
- "id": "b9d1ec08a790f34ddf7f6a5377c20a1154facc232349be446975a16cfa1a4b97",
- "kws": {
- "fr": [
- "pistolet à eau",
- "pistolet"
- ]
- }
- },
- {
- "nm": "jambe",
- "id": "f826406b0146a297b3ac3330f348751b6c628ffa0f8b9fec8b1702ed03832fc4",
- "kws": {
- "fr": [
- "jambe"
- ]
- }
- },
- {
- "nm": "plombier",
- "id": "743e1abda5f5ebe726c17b80504d06aa55f2816a7889f9565801fb53597158fe",
- "kws": {
- "fr": [
- "plombier"
- ]
- }
- },
- {
- "nm": "militaire",
- "id": "5e193b5b353b2b20b75ff389127de4f0ded62a642cb581561994b386930b822e",
- "kws": {
- "fr": [
- "militaire",
- "soldat"
- ]
- }
- },
- {
- "nm": "celles-là",
- "id": "36a164edcf80fc66096b52de821fd4128839eea2a9c4929062e7e013fa70d2eb",
- "kws": {
- "fr": [
- "celles-là",
- "ceux-là"
- ]
- }
- },
- {
- "nm": "train à grande vitesse",
- "id": "8387ad8f381273e3a020026841757c9665105b4db8e8e0f6b0ff7e5282c86e3f",
- "kws": {
- "fr": [
- "train à grande vitesse"
- ]
- }
- },
- {
- "nm": "perdre",
- "id": "8120872b7251ca5e5b87ae1d7c17ca216b58fc00ddde4e1ee9b37951820799a2",
- "kws": {
- "fr": [
- "perdre"
- ]
- }
- },
- {
- "nm": "grosse",
- "id": "d889855a2007c3f18c2abbb7308aa5bd0a0054d90bbde086328c864b7fa8c40f",
- "kws": {
- "fr": [
- "grosse"
- ]
- }
- },
- {
- "nm": "cabocharde forana",
- "id": "259403ed0140a378682c07051638c48b0b581acfa3355d4ee246cc6da6876176",
- "kws": {
- "fr": [
- "cabocharde forana",
- "cabochard"
- ]
- }
- },
- {
- "nm": "pépin",
- "id": "debcee505e9a1af2bb180a938050ddc4d7f4dee48d921d0161d652eef1384295",
- "kws": {
- "fr": [
- "pépin",
- "graine de tournesol"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "5022b78f6eb0935e3c12a0d9e9d92cb2c886a5d3ce24e3f7a13b8980abf943a8",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains sur la tête",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "prisionnier",
- "id": "3b2416b2faa98351e4078f3d6ba073d6c2f837e547cdfc727e27683b2ca183a6",
- "kws": {
- "fr": [
- "prisionnier",
- "prisonnier",
- "prisonnier",
- "reclus"
- ]
- }
- },
- {
- "nm": "placer",
- "id": "9c4040e1bceccebf8d917f5f3a99a47db8b10578f7c05271189845605f27138b",
- "kws": {
- "fr": [
- "placer",
- "situer",
- "mettre"
- ]
- }
- },
- {
- "nm": "fourchette adaptée",
- "id": "a548818dac34fb997653664b754038d470ce564ea2dd5d6370c9749360a296b4",
- "kws": {
- "fr": [
- "fourchette adaptée",
- "fourchette"
- ]
- }
- },
- {
- "nm": "toilette personnelle",
- "id": "bf4e6072afcb692fd72718bd32833815457f2955a9de89fe159fc5a7f351b554",
- "kws": {
- "fr": [
- "toilette personnelle",
- "hygiène personnelle"
- ]
- }
- },
- {
- "nm": "peintre",
- "id": "f306d298916d883fe9a5e0dff27551ef46aa839ecba68d1a2c123d5eaecd4e82",
- "kws": {
- "fr": [
- "peintre"
- ]
- }
- },
- {
- "nm": "ennui",
- "id": "02e0e7212868e53203ddd67e8ee8f9daffa2ca3557379c81190baebc8c78223e",
- "kws": {
- "fr": [
- "ennui"
- ]
- }
- },
- {
- "nm": "entourer",
- "id": "80e5f4e524d7637de23dc1d854d716c0d4901e842b90060afcef3de8a1b5e221",
- "kws": {
- "fr": [
- "entourer",
- "dessiner"
- ]
- }
- },
- {
- "nm": "crevette rose",
- "id": "408dc045d71dc08e728211cd716438a6f5611f1bef4849b2f9a77c9d93c2cdd7",
- "kws": {
- "fr": [
- "crevette rose"
- ]
- }
- },
- {
- "nm": "peigne",
- "id": "d35a0116ebcd5348bc52391eb60b7ebc645d450f0147a5628c5b5e6bee58a750",
- "kws": {
- "fr": [
- "peigne"
- ]
- }
- },
- {
- "nm": "jugement de divorce",
- "id": "a151de11b663698c21d49770d55e9b84f62e21dcad69fa8e4918df2f7ba3dd20",
- "kws": {
- "fr": [
- "jugement de divorce"
- ]
- }
- },
- {
- "nm": "boule de neige",
- "id": "104188fca95fad1bcf709ca73fd56de61dc502a0f876da33035187690694438b",
- "kws": {
- "fr": [
- "boule de neige"
- ]
- }
- },
- {
- "nm": "veuve",
- "id": "391a0ff1dd87ed24c5d8e02c1b68ad9267d5a8c295a77cf6d9201af04cad38e9",
- "kws": {
- "fr": [
- "veuve"
- ]
- }
- },
- {
- "nm": "certaine",
- "id": "9a8f6a6a024aea7f144ac1528505d46daf5d16e5504a96883bc261ccbccdc58a",
- "kws": {
- "fr": [
- "certaine",
- "plusieurs",
- "quelque",
- "quelques unes",
- "quelques-uns",
- "quelques"
- ]
- }
- },
- {
- "nm": "trisomie 21",
- "id": "00d031ac4d032dcde1c9acc63bd2b9d0fd25ba30d9d3f543cac92b0352ef1fa1",
- "kws": {
- "fr": [
- "trisomie 21"
- ]
- }
- },
- {
- "nm": "économie",
- "id": "1477631abcd5d62b1160d99ff577af622384a0f34e8712b8e2e3dc71122ff1d5",
- "kws": {
- "fr": [
- "économie"
- ]
- }
- },
- {
- "nm": "quel est son sexe",
- "id": "9b273bd5c9d9a9aa40a3fb9d5aa1cc803f151e9af4c43f822641022ff644951f",
- "kws": {
- "fr": [
- "quel est son sexe"
- ]
- }
- },
- {
- "nm": "privé",
- "id": "8392c407645637a850022a9ab2d7a11fdeb3fdb508529339751ed7fa0c181a79",
- "kws": {
- "fr": [
- "privé",
- "privée"
- ]
- }
- },
- {
- "nm": "pâte",
- "id": "08406033c4627535b0d1670be0a0df45dc8629f53a58824bfaa70733fd0faf27",
- "kws": {
- "fr": [
- "pâte"
- ]
- }
- },
- {
- "nm": "rendez-vous préalable",
- "id": "523e8c2deb9543e81d5f5dda10d8450613c7f811af2abdbb50c20118512c6820",
- "kws": {
- "fr": [
- "rendez-vous préalable"
- ]
- }
- },
- {
- "nm": "oie",
- "id": "3f64e4bdf191a60d2550b818a5206b9ba94563e961e1780f3a7b7a46b370603e",
- "kws": {
- "fr": [
- "oie"
- ]
- }
- },
- {
- "nm": "palper",
- "id": "26ba4c2ae6735265d3a71203661f4bf46d40e2f2f7a1d8594a5e043d2495ba33",
- "kws": {
- "fr": [
- "palper",
- "toucher"
- ]
- }
- },
- {
- "nm": "étaler du dentifrice",
- "id": "469a4e5da2bc03584ddb80b7a4f629cc1bbedebd6f2303308d0457e264d702ed",
- "kws": {
- "fr": [
- "étaler du dentifrice"
- ]
- }
- },
- {
- "nm": "mauvaise",
- "id": "130051adfbba3ebbc0f42dd5a053aee2275ab391ed72dc72f1eedf2e71e65e04",
- "kws": {
- "fr": [
- "mauvaise"
- ]
- }
- },
- {
- "nm": "facteur",
- "id": "02c3fe3231b31cf8eb941b0197ed5fa26a7207f8b3b6aa7e58d98b305dc76745",
- "kws": {
- "fr": [
- "facteur"
- ]
- }
- },
- {
- "nm": "tasse de café",
- "id": "c118026b6336d0c8c1a2033929df28c223202e0ce2fdf8430421816cb40d1144",
- "kws": {
- "fr": [
- "tasse de café"
- ]
- }
- },
- {
- "nm": "pharmacien",
- "id": "1fc167ed5184b878815625a247c9e489c83b38882b61804af2ad9fcfea25c3c3",
- "kws": {
- "fr": [
- "pharmacien"
- ]
- }
- },
- {
- "nm": "couche",
- "id": "cc1b3aa31983109e2ee9aa9d90b80bdf81bdae9812c3b4dc98e458d928ffa80d",
- "kws": {
- "fr": [
- "couche"
- ]
- }
- },
- {
- "nm": "faire caca",
- "id": "af23239f3f2ecf84aba0b3bd5e53f57a35b76af218eebbc8b0d6146f9fc740dd",
- "kws": {
- "fr": [
- "faire caca"
- ]
- }
- },
- {
- "nm": "pêcher",
- "id": "5bf1f03b70901da8b545c1837f9a4f933943ac2626a7f5931ceecbf5a585c0b8",
- "kws": {
- "fr": [
- "pêcher",
- "pêcheur",
- "pêche"
- ]
- }
- },
- {
- "nm": "sortie",
- "id": "7a01c31c1da2b3c86c641d1697bdb68efd1b057480d44e4be019aeb98416ac6b",
- "kws": {
- "fr": [
- "sortie"
- ]
- }
- },
- {
- "nm": "plonger",
- "id": "99e5d862448899b52482d440f8b863479447328b98ede1505c60f88f72a37714",
- "kws": {
- "fr": [
- "plonger"
- ]
- }
- },
- {
- "nm": "approuver",
- "id": "5ca4d6f8e6aa899198de1765628424ee00c9626c60a3c9056c9a3d2c49f8318d",
- "kws": {
- "fr": [
- "approuver"
- ]
- }
- },
- {
- "nm": "paire",
- "id": "12ad7efb6294a570aaf178c6c17fd21d1e86442df815eb4455bedf3be98569ff",
- "kws": {
- "fr": [
- "paire",
- "quatre",
- "numéro"
- ]
- }
- },
- {
- "nm": "chaud",
- "id": "ad9ee8f9be61286d36209b2f09ed9f2e1c538ea4cacbc391629454c1a599f0ba",
- "kws": {
- "fr": [
- "chaud"
- ]
- }
- },
- {
- "nm": "classer",
- "id": "838998da77b7b285b0b79a782518fa1fe177e49bca552e36020afdaa32031e94",
- "kws": {
- "fr": [
- "classer"
- ]
- }
- },
- {
- "nm": "pare-chocs",
- "id": "fc85f228b3e362cd7ad20bc39b946942599bca9e5f7047ad21ddac311121ce1e",
- "kws": {
- "fr": [
- "pare-chocs"
- ]
- }
- },
- {
- "nm": "début",
- "id": "21c95cf1e75ca0aab30a3e64f06a599fdcf0b558f263d0957e593ab3911e8695",
- "kws": {
- "fr": [
- "début"
- ]
- }
- },
- {
- "nm": "barcelone",
- "id": "89b37b376caea6f0bc32838a8959b8235ffeab59a8404c58c0bfd856c0d6f18c",
- "kws": {
- "fr": [
- "barcelone"
- ]
- }
- },
- {
- "nm": "eux",
- "id": "b8e6156b9cead8913c2268f9a2702f1f96c1e28b46fdcadba4abcf582c7584ea",
- "kws": {
- "fr": [
- "eux"
- ]
- }
- },
- {
- "nm": "enregistrer",
- "id": "d60785211d1d1e479e0059d03103f424031a43c3401bdde083e5c85261c0fdaa",
- "kws": {
- "fr": [
- "enregistrer"
- ]
- }
- },
- {
- "nm": "rayer",
- "id": "41515b728daf2d5a2dfabc7082eef1db663ab9c690d6a8441e3fc5c3802075c2",
- "kws": {
- "fr": [
- "rayer"
- ]
- }
- },
- {
- "nm": "rebondir",
- "id": "2b137d30661420838f2c134fd67509cc6ab1191084a20e43db148e8973105e70",
- "kws": {
- "fr": [
- "rebondir"
- ]
- }
- },
- {
- "nm": "interdit aux piétons",
- "id": "640e479929685ccb0e2ccac8352e5dc7da3f67bde6c18d2c796e7fe2fffb4ee9",
- "kws": {
- "fr": [
- "interdit aux piétons",
- "interdit"
- ]
- }
- },
- {
- "nm": "avec",
- "id": "799a10de9fc7cada96a84e20286d11c114fb7d7b4893de16b4ed67e88d3e902d",
- "kws": {
- "fr": [
- "avec"
- ]
- }
- },
- {
- "nm": "caresser",
- "id": "1edd348424623b8a27a356980d74e7cbf7bb2ff0f64bb5406e839f3ec8c8ef8f",
- "kws": {
- "fr": [
- "caresser"
- ]
- }
- },
- {
- "nm": "chef d\u0027orchestre",
- "id": "d7f079c86eaed9753868a19dee8a5e9e5f28e6d0ce81d8d43f8bc2c79c8deb56",
- "kws": {
- "fr": [
- "chef d\u0027orchestre",
- "diriger"
- ]
- }
- },
- {
- "nm": "chouette",
- "id": "f187f0e652e3996b904a4a631ee139d815fa27e63b54363c4326e64af4f4c874",
- "kws": {
- "fr": [
- "chouette"
- ]
- }
- },
- {
- "nm": "ramasser",
- "id": "19972f01343c91ab6f5f717acc1d4ff8be00da3b1bc178ee4138a51c0adadb3e",
- "kws": {
- "fr": [
- "ramasser"
- ]
- }
- },
- {
- "nm": "à tout à l\u0027heure",
- "id": "cd23e10b16a05c2114382a887807ddf2a54cb1e554c937b2e816e61e8cba302b",
- "kws": {
- "fr": [
- "à tout à l\u0027heure",
- "au revoir",
- "au revoir"
- ]
- }
- },
- {
- "nm": "ronger",
- "id": "a2f0e37e24004d5dedda62532fb9c691cb0b6da895c1c2de6fd85743e77a79c1",
- "kws": {
- "fr": [
- "ronger"
- ]
- }
- },
- {
- "nm": "dormir",
- "id": "cc1cc98272a73425aec64d8e7d771a973261a01b19516743c8eea62c78708da0",
- "kws": {
- "fr": [
- "dormir",
- "praxie",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "raquette de ping-pong",
- "id": "1b917630f874ff843eb8e6b10eaa1b354bd6712bc1c7c32477e3d7875f8f871f",
- "kws": {
- "fr": [
- "raquette de ping-pong",
- "raquette de pings-pong",
- "raquette"
- ]
- }
- },
- {
- "nm": "fmi",
- "id": "7206d99179d8b57de8c54cd1a3ea17dc6dfc33c1703cfb41ca97d16bd35fab31",
- "kws": {
- "fr": [
- "fmi"
- ]
- }
- },
- {
- "nm": "camion",
- "id": "6b419b8c5c63fa40384009aa3c099bc2c9a38c807f69159abe5fd38e3ffa0c3f",
- "kws": {
- "fr": [
- "camion"
- ]
- }
- },
- {
- "nm": "gant de base-ball",
- "id": "9e501ea35c68c7e6463dd3968f62645877f1d164275f790a33f2d2bceaff21a0",
- "kws": {
- "fr": [
- "gant de base-ball",
- "gant"
- ]
- }
- },
- {
- "nm": "eaux thermales",
- "id": "af07bdb94e635c5d621c6559348640830f6886b0b4ab81257b0a30cd6fa7f899",
- "kws": {
- "fr": [
- "eaux thermales",
- "spa",
- "station thermale"
- ]
- }
- },
- {
- "nm": "joueur de golf",
- "id": "c8af5e52229e16fa243ce8f5c54f115cedef27370e58ed9c11fe93f4240b261e",
- "kws": {
- "fr": [
- "joueur de golf"
- ]
- }
- },
- {
- "nm": "parier",
- "id": "54fffd9779439f053558f82bd18586f530734cb0e8efa29515976cd4539be559",
- "kws": {
- "fr": [
- "parier"
- ]
- }
- },
- {
- "nm": "abécédaire",
- "id": "1ef82acc19516a513101bea13cd53c39e173fc029358ad11624ed2df4e6b774c",
- "kws": {
- "fr": [
- "abécédaire",
- "lettres",
- "alphabet"
- ]
- }
- },
- {
- "nm": "embouteillages",
- "id": "6e55ffd000b8db3c99ac3b9091d11072a12bb092c7870685c2a4a3d463f4ed8e",
- "kws": {
- "fr": [
- "embouteillages",
- "embouteillage"
- ]
- }
- },
- {
- "nm": "selle",
- "id": "390797031f422cb38a830b8f7e3789a062c6368166e1b5e628390eaf3a0fde95",
- "kws": {
- "fr": [
- "selle"
- ]
- }
- },
- {
- "nm": "moniteur de prévention",
- "id": "a27d26e0fb61d33089ae8a8b55babdcda0963067a577cf2f38eb8d6ca18cfffb",
- "kws": {
- "fr": [
- "moniteur de prévention"
- ]
- }
- },
- {
- "nm": "tourisme",
- "id": "60cba91cc06aae55e2b64e8c071a40548ec590721f59f0cdb16d3cc89b97fb4c",
- "kws": {
- "fr": [
- "tourisme",
- "faire du tourisme",
- "voyager"
- ]
- }
- },
- {
- "nm": "bijouterie",
- "id": "05c38e447aa1e4b5a61481c4488c9543cef31041c02f39153bcb6149e3b78a76",
- "kws": {
- "fr": [
- "bijouterie"
- ]
- }
- },
- {
- "nm": "fermer",
- "id": "d9efff21aa6db877da02469f1b3e8bbd7b3bcfe0c70ec3f7e6c214cce2190cfd",
- "kws": {
- "fr": [
- "fermer"
- ]
- }
- },
- {
- "nm": "p",
- "id": "50d6e2f6a177d297829df9f5a9df7d673f692ce5f8a6b00a8c81a4b68129d4b2",
- "kws": {
- "fr": [
- "p",
- "lettre"
- ]
- }
- },
- {
- "nm": "inscription",
- "id": "33766cbd9bdfa48f6f69bc8ac1b3ec33a3f071c97ef2f92e8d35b30b9153bdc5",
- "kws": {
- "fr": [
- "inscription",
- "inscrire",
- "s\u0027inscrire"
- ]
- }
- },
- {
- "nm": "grands-parents",
- "id": "c2bd01eb5caf25a6e71cd4680eb03b43cc3cc25c6f3976706c048cb920def3f4",
- "kws": {
- "fr": [
- "grands-parents"
- ]
- }
- },
- {
- "nm": "huit heures pile",
- "id": "533bf7c8e029c4e8fffcdec480b5aec71e2be35235471028f25c25e729fd1672",
- "kws": {
- "fr": [
- "huit heures pile",
- "huit heures"
- ]
- }
- },
- {
- "nm": "chaise de cuisine",
- "id": "8fa77ed62b28412b01acb8b719023dc4ae66ee849091cc82b024b80097876296",
- "kws": {
- "fr": [
- "chaise de cuisine",
- "chaise",
- "siège"
- ]
- }
- },
- {
- "nm": "contre",
- "id": "e0b3a7752b0b2e14b20e4c77a16c02655988cf4d0f760c6d3fc45a5c598ee08c",
- "kws": {
- "fr": [
- "contre"
- ]
- }
- },
- {
- "nm": "tu as vu",
- "id": "0a78cbbb9f2dd5756da8f7454476874cd1dd5788e2a2029e1b949c8efa45d873",
- "kws": {
- "fr": [
- "tu as vu",
- "tu vois"
- ]
- }
- },
- {
- "nm": "trois quarts",
- "id": "73cea45b401e81db2e5679ff4834abf8a95647b50993f31c18a72f75640f6b52",
- "kws": {
- "fr": [
- "trois quarts",
- "3-4"
- ]
- }
- },
- {
- "nm": "gui",
- "id": "8a7ae09fb710d5d8d389a2c4bc8c6cf711e95d66db1603bd5b6796eb4c1dcafd",
- "kws": {
- "fr": [
- "gui"
- ]
- }
- },
- {
- "nm": "et",
- "id": "22ea8fc2fca69e08922d817adff9d1f57596d1bdee13b007720f652c12544426",
- "kws": {
- "fr": [
- "et"
- ]
- }
- },
- {
- "nm": "espace",
- "id": "2ff52dd6e7e7a92b50aaa8209ab237a30155de572a3038154d7fb8b30cb57db7",
- "kws": {
- "fr": [
- "espace"
- ]
- }
- },
- {
- "nm": "chaise longue",
- "id": "620574b3bc0c3641f04527c08bdabec658e902fa943f3ede9d62bca25d349887",
- "kws": {
- "fr": [
- "chaise longue",
- "amaque"
- ]
- }
- },
- {
- "nm": "y a-t-il du soleil",
- "id": "6487f4d1d779aae7212f88798506f7da6b670b8882158dc206e9cb9b3221aed5",
- "kws": {
- "fr": [
- "y a-t-il du soleil"
- ]
- }
- },
- {
- "nm": "brillant",
- "id": "6bbb4bf42416e64a88393d1c28cf58a13cd9420a6dfaa3961882f156828a237f",
- "kws": {
- "fr": [
- "brillant",
- "briller",
- "diamant"
- ]
- }
- },
- {
- "nm": "cuillerée",
- "id": "782cadbc6f32d26dcf0c46dacb08055a287ad03128e24115e9af86be89077d96",
- "kws": {
- "fr": [
- "cuillerée"
- ]
- }
- },
- {
- "nm": "faire de l\u0027exercice",
- "id": "f57ed08fae7115842d4df200f962c80026402c502d3d1fa9bcc2de4350900e97",
- "kws": {
- "fr": [
- "faire de l\u0027exercice",
- "mains aux épaules",
- "gymnastique"
- ]
- }
- },
- {
- "nm": "usage",
- "id": "d1f1a629a43bd1357f4008034cf8e69970c1e1f63d1e01f44010fb6f446272d4",
- "kws": {
- "fr": [
- "usage",
- "utilisation",
- "utilité"
- ]
- }
- },
- {
- "nm": "thon",
- "id": "f23bb0ebac3e1164da62bf91c864748bfd6b3d9ca47011b66f8ec0bef1e6c4aa",
- "kws": {
- "fr": [
- "thon"
- ]
- }
- },
- {
- "nm": "ennuyeux",
- "id": "9478364f7ad6b1c42b70ebfb70811466289880802443127df50297ef434255e2",
- "kws": {
- "fr": [
- "ennuyeux",
- "s\u0027ennuyer"
- ]
- }
- },
- {
- "nm": "compliqué",
- "id": "d38c4e76210b4ba2ef5ebc8d649020e1e8fdde9abbcf5eecf093e987ef0ae85b",
- "kws": {
- "fr": [
- "compliqué",
- "difficile"
- ]
- }
- },
- {
- "nm": "quatorze",
- "id": "3a02095e60c7e3af910e42358e83f8caa40ebc44764cc316b843c3ffb34f9e36",
- "kws": {
- "fr": [
- "quatorze",
- "14"
- ]
- }
- },
- {
- "nm": "scénario",
- "id": "bcf01a94bb74faf16eee0bd9748d78be33ce0465958be0bae547a2dca52de87c",
- "kws": {
- "fr": [
- "scénario"
- ]
- }
- },
- {
- "nm": "uruguay",
- "id": "7efa6fe6b4e7374fee883d88e85c2cced7807dc8a7fa69fb8a63c81aee4909b1",
- "kws": {
- "fr": [
- "uruguay"
- ]
- }
- },
- {
- "nm": "sachet de gélatine",
- "id": "30d5591bb4a49503cf4402f0ffef014190a9c02350875c6fb24bfd23ce937442",
- "kws": {
- "fr": [
- "sachet de gélatine"
- ]
- }
- },
- {
- "nm": "se mordre la lèvre",
- "id": "f83362bd293010a8808f3fe9a5b65cebee78e596b4dd83f817bd44e8755b28ac",
- "kws": {
- "fr": [
- "se mordre la lèvre",
- "mordre"
- ]
- }
- },
- {
- "nm": "hache",
- "id": "5b104630e6a62d7a94ff7a5d7d107cdf48706226b5a212a0c53320521bd7d11b",
- "kws": {
- "fr": [
- "hache"
- ]
- }
- },
- {
- "nm": "important",
- "id": "eb81bd526a0cbc9b8107325e36074b97e29443b7cc74248d5b57ddc6f12a0361",
- "kws": {
- "fr": [
- "important",
- "admirer",
- "meilleur"
- ]
- }
- },
- {
- "nm": "photographier",
- "id": "649c6f62841ef92234f1bae4d158b321d1966f8a8f36528494b16e0cf0fcc8fb",
- "kws": {
- "fr": [
- "photographier",
- "faire des photos"
- ]
- }
- },
- {
- "nm": "queue",
- "id": "846ed968f0ff3f19f91346fd2623e7a24871334f4d04facce60cb9a81acc8a97",
- "kws": {
- "fr": [
- "queue"
- ]
- }
- },
- {
- "nm": "arabie saoudite",
- "id": "5652f45c74d029248ea1bd3b9e9bfaeb1fd9322441b955aaae21773ff0c18960",
- "kws": {
- "fr": [
- "arabie saoudite"
- ]
- }
- },
- {
- "nm": "tire-bouchon",
- "id": "5470e651194a05cf2153b419a81aea45d59aa4775597640db41a65dd86aa5c99",
- "kws": {
- "fr": [
- "tire-bouchon"
- ]
- }
- },
- {
- "nm": "être assis",
- "id": "ed67d2e593a651662dcad0b3bad1bfaf976f2c6dfd2bd293411eaa354077a96c",
- "kws": {
- "fr": [
- "être assis"
- ]
- }
- },
- {
- "nm": "respirer",
- "id": "27769cdf6f0230808baf1b2c4ff264e7e3f5c775ef1babe5567535fd84a80c9b",
- "kws": {
- "fr": [
- "respirer",
- "aspirer"
- ]
- }
- },
- {
- "nm": "chaussures",
- "id": "ebaa7deb605d9b887a724e0d85c519699449a91d8252746d98bde45ad5983343",
- "kws": {
- "fr": [
- "chaussures",
- "botte"
- ]
- }
- },
- {
- "nm": "touriste",
- "id": "2a7b84eaf3debbec2aa1ca7ed1c8ce61e3a3bb0002f6b4d4b5c4606f0f7d9c4a",
- "kws": {
- "fr": [
- "touriste"
- ]
- }
- },
- {
- "nm": "olive verte",
- "id": "da882eb2875207378f4c24eda30e710cb62beedb8ca3b0a1e9d7b52e1c41f4c9",
- "kws": {
- "fr": [
- "olive verte",
- "olive"
- ]
- }
- },
- {
- "nm": "quille",
- "id": "9635ef975146b39a9617d7a73a54d9cd8104d6226799b0a712ad0215ab389e35",
- "kws": {
- "fr": [
- "quille"
- ]
- }
- },
- {
- "nm": "ça va",
- "id": "0e7eb7820fef58ac9d876987cdea8dacc33a6a25ea4f21f5c81ee83ef48e0a97",
- "kws": {
- "fr": [
- "ça va",
- "comment ça va"
- ]
- }
- },
- {
- "nm": "diriger",
- "id": "5902d013c35e98ec0f7c0210a276c00e926a24775e44594b63392c5a7e497df3",
- "kws": {
- "fr": [
- "diriger",
- "acheminer",
- "guider",
- "guide"
- ]
- }
- },
- {
- "nm": "monter les escaliers",
- "id": "68b20637c7b82bd028f8c7d21eb63ec3ebab60aeeebe4edb8fdf3599ac158f43",
- "kws": {
- "fr": [
- "monter les escaliers",
- "remonter"
- ]
- }
- },
- {
- "nm": "poisson",
- "id": "92d5fe2a8c29713c7f61d9a76bb30e8482942d5a00948fe1de93ce3831cc3b1e",
- "kws": {
- "fr": [
- "poisson"
- ]
- }
- },
- {
- "nm": "adoucissant",
- "id": "ee1ff8b4a071df983f98675992062a50e289319bd4020c571e034a4bb770cdf1",
- "kws": {
- "fr": [
- "adoucissant"
- ]
- }
- },
- {
- "nm": "vélo",
- "id": "2e1dca29eb184773a096f42c057e503fb5c9eda0f6e6f2df1ee00e7414346804",
- "kws": {
- "fr": [
- "vélo",
- "bicyclette"
- ]
- }
- },
- {
- "nm": "faire taire",
- "id": "0b464029c17a2bb9b0807df05eaa55f197d10bc93efed40f6c4cc2a1d185ec79",
- "kws": {
- "fr": [
- "faire taire",
- "demander le silence"
- ]
- }
- },
- {
- "nm": "desserrer",
- "id": "41b1a2c3b83b8ea71401a91f06c7f2685f8123368436d2309b566bb96eeaf1b2",
- "kws": {
- "fr": [
- "desserrer"
- ]
- }
- },
- {
- "nm": "clé anglaise",
- "id": "cad68196dcaffe901be62ca7a45e407df525a7af93bfa3415a19ce36059a4a84",
- "kws": {
- "fr": [
- "clé anglaise"
- ]
- }
- },
- {
- "nm": "jouer avec l\u0027eau",
- "id": "e7f80a66f5acb30859e69b256406fbbd2cc35cce1b534058af4e613c151be7dd",
- "kws": {
- "fr": [
- "jouer avec l\u0027eau"
- ]
- }
- },
- {
- "nm": "facile",
- "id": "c62f73895818a5608c9200e60e0d447cec59922ef4221d5451eef5d5a20a4d1a",
- "kws": {
- "fr": [
- "facile",
- "simple"
- ]
- }
- },
- {
- "nm": "tiède",
- "id": "0d47584be646596beb1068e23c10a27fd4c6c97a06032c25da662748e60df7e2",
- "kws": {
- "fr": [
- "tiède"
- ]
- }
- },
- {
- "nm": "terrine",
- "id": "dd4972e360b29091c9e57078e18f4b091771e77dc8ea0c1fa032dcb45a491447",
- "kws": {
- "fr": [
- "terrine"
- ]
- }
- },
- {
- "nm": "sous",
- "id": "ba9d19772a70f25b3e462a7534c6129fbf9b6dfdb5148223d6d9f57ebccd908b",
- "kws": {
- "fr": [
- "sous"
- ]
- }
- },
- {
- "nm": "semaine de pâque",
- "id": "1423a741b1a3b2a06941fa1a7b83984abdd99e74140f3af40688feb8d79acfdd",
- "kws": {
- "fr": [
- "semaine de pâque"
- ]
- }
- },
- {
- "nm": "emploi",
- "id": "d914362b8d15611f24e8ee12e448c20d9ffd460bba3dc4924bc7dac411971205",
- "kws": {
- "fr": [
- "emploi",
- "travailleurs",
- "travailleur",
- "poste",
- "profession",
- "professionnel",
- "professionnels",
- "métier"
- ]
- }
- },
- {
- "nm": "patronale",
- "id": "89e97b4ef139b9579569b5918b45a39c58274b006ba150f1f56f0f247fcdf503",
- "kws": {
- "fr": [
- "patronale"
- ]
- }
- },
- {
- "nm": "jouer",
- "id": "0f9e65316353e4594bdaec79f223d31e750167c9c662645ca44ee940b83181ad",
- "kws": {
- "fr": [
- "jouer"
- ]
- }
- },
- {
- "nm": "toilettes adaptées",
- "id": "dab0e118b1abfa3558047df55d098de46374f82d13cc2b9c96885b91ec914c24",
- "kws": {
- "fr": [
- "toilettes adaptées",
- "toilettes",
- "wc",
- "salle de bains"
- ]
- }
- },
- {
- "nm": "forêts élaguées",
- "id": "2e611beb929acba25bfc07dff42630ce5b83246d4330e55ff8afc6fbbee62f79",
- "kws": {
- "fr": [
- "forêts élaguées"
- ]
- }
- },
- {
- "nm": "série",
- "id": "3295c59765dec7883c47c0b3b2097ca82d4d79c8d50fd80d5dde574d5312e84a",
- "kws": {
- "fr": [
- "série",
- "succession",
- "1-2-3"
- ]
- }
- },
- {
- "nm": "volontaire",
- "id": "928845c79fafd470f3747286fdfffef447ca69cbcda19c2b393341d263506262",
- "kws": {
- "fr": [
- "volontaire"
- ]
- }
- },
- {
- "nm": "porte du carmen",
- "id": "636c2037ae6cf538c21245fcc2b04411f69ac16a066b5765b62d721d1243b758",
- "kws": {
- "fr": [
- "porte du carmen"
- ]
- }
- },
- {
- "nm": "plier le linge",
- "id": "5ad946e7742f191609908bb1a2ff44c62063b358893556a49a42b68e3186beaa",
- "kws": {
- "fr": [
- "plier le linge",
- "plier"
- ]
- }
- },
- {
- "nm": "amuser",
- "id": "7d10c72259a3aedde77995d8b9c0a582f5cfc56c50b35ae4c3fb462797eeeceb",
- "kws": {
- "fr": [
- "amuser",
- "s\u0027amuser"
- ]
- }
- },
- {
- "nm": "peignoir",
- "id": "0f6d0d8edc4b8b2f2872fc02404dab1bc01e218713c7b5690ef86a3dbfbc14f4",
- "kws": {
- "fr": [
- "peignoir"
- ]
- }
- },
- {
- "nm": "cahier",
- "id": "2cdf20ca8f25faca1fb879f39e71348aeadbf1efbcb82b13c60fbb3ce45747ac",
- "kws": {
- "fr": [
- "cahier"
- ]
- }
- },
- {
- "nm": "café",
- "id": "003c9c6c98a0a7af1c969abe2ec7fffd9fdd008bddb19cf734e85959354a7715",
- "kws": {
- "fr": [
- "café"
- ]
- }
- },
- {
- "nm": "conduite",
- "id": "d828140f3aa271fcfe2c2b2af37e8b5198d36c17a1f33308aa72b23db91299a3",
- "kws": {
- "fr": [
- "conduite"
- ]
- }
- },
- {
- "nm": "cintre",
- "id": "0935f2d1ef62460b69e9262b149b15e9e29b5888a6178463777434d9130d424f",
- "kws": {
- "fr": [
- "cintre"
- ]
- }
- },
- {
- "nm": "mansarde",
- "id": "8c32f508206bb6f8ca7498430a5031a75fa3821b10312b8a81747a63032bbba6",
- "kws": {
- "fr": [
- "mansarde"
- ]
- }
- },
- {
- "nm": "artère",
- "id": "1414b774a43c64f15680907acff8e3539003fc37556fe4f652b7f9aaa220e3d0",
- "kws": {
- "fr": [
- "artère",
- "artères"
- ]
- }
- },
- {
- "nm": "noeud",
- "id": "859e8a58527ad01a0ecb7d70a03f1ad9753bc56e0e6b57f00c8072bbfa7896a7",
- "kws": {
- "fr": [
- "noeud"
- ]
- }
- },
- {
- "nm": "bobine de film",
- "id": "1a87ce2b9e28cf094173c1ec1956aebefaf648b0ad3efbc21449c08ddbdc4eb3",
- "kws": {
- "fr": [
- "bobine de film",
- "film"
- ]
- }
- },
- {
- "nm": "remise",
- "id": "59b127211459fdac41c51066706bfe31ced6cea86fa343f22818946603a7f877",
- "kws": {
- "fr": [
- "remise"
- ]
- }
- },
- {
- "nm": "saule pleureur",
- "id": "144855770efc53196fec5f2fc1e348de94970956136abfa8203c52c5212e3abb",
- "kws": {
- "fr": [
- "saule pleureur",
- "saule"
- ]
- }
- },
- {
- "nm": "verticalisateur",
- "id": "81504780235118fc4f2af3fe85953c112867aab074c1f66e6a264b11b9ce4728",
- "kws": {
- "fr": [
- "verticalisateur"
- ]
- }
- },
- {
- "nm": "public",
- "id": "dcba8c5192aa2869bfb661b8cd5814790163c995d43e4f94a1ede779d860c2f1",
- "kws": {
- "fr": [
- "public",
- "spectateurs",
- "assistants"
- ]
- }
- },
- {
- "nm": "se baisser",
- "id": "f03320d21c05acc390a958dddcd1504dce556f1af48d062b59307effed3e2896",
- "kws": {
- "fr": [
- "se baisser",
- "baisser"
- ]
- }
- },
- {
- "nm": "tailler",
- "id": "fc752cf4f664a15ef76504b63bf55c9c910202525aa7bc15c5e3255ee9c4d5c2",
- "kws": {
- "fr": [
- "tailler"
- ]
- }
- },
- {
- "nm": "viande",
- "id": "39b817b8ddb55fd81f8ef79c32e85bad5cf96698006e11c2275ac31f47492dc6",
- "kws": {
- "fr": [
- "viande",
- "filet de viande",
- "filet"
- ]
- }
- },
- {
- "nm": "taquets de sortie",
- "id": "42212cb26bfa4ea3e7a505b38d4e026b865acbca1d8904c3a90ff9fd730bf09e",
- "kws": {
- "fr": [
- "taquets de sortie"
- ]
- }
- },
- {
- "nm": "apporter",
- "id": "b82e5cdcc47b328b9f44e64b5c455c485bbfbd568b1a1e436880ab386eaa8975",
- "kws": {
- "fr": [
- "apporter"
- ]
- }
- },
- {
- "nm": "plongeoir",
- "id": "aeb37d74e08a847c2a8fa3b5c605f09fa473eda0cc0ae8f99848aecd3124c96f",
- "kws": {
- "fr": [
- "plongeoir"
- ]
- }
- },
- {
- "nm": "froid",
- "id": "87310ea379314552f4909d90eb053b6ffc630aca43ba6149a1184df0d30f1d48",
- "kws": {
- "fr": [
- "froid"
- ]
- }
- },
- {
- "nm": "palais des congrès de saragosse",
- "id": "63fe8ba4dc5bfefdf8efeee0f92075cebf6e0ce14e4ce38b2565978b466d5892",
- "kws": {
- "fr": [
- "palais des congrès de saragosse",
- "palais des congrès"
- ]
- }
- },
- {
- "nm": "je",
- "id": "c65205e6c8bd37fa820ddf5a021ecc528c3f8eeb9c4f4f6c5d8358d62f2a7c51",
- "kws": {
- "fr": [
- "je"
- ]
- }
- },
- {
- "nm": "gourde",
- "id": "ecd441eec1912172370efedb28e573b6804e0ed425dc99a28ecc5ff53fe8ee52",
- "kws": {
- "fr": [
- "gourde"
- ]
- }
- },
- {
- "nm": "signalétique",
- "id": "91624820a3803f0972804a9a43c813c497681fdcd3115ea44ab997da9859f5fd",
- "kws": {
- "fr": [
- "signalétique",
- "archives générales",
- "archives",
- "salle"
- ]
- }
- },
- {
- "nm": "cuisse de poulet",
- "id": "c0ae2ec2b41f63395d24e4323f0363c2bb2b22a92d7f554552ecb1a95bba8dd2",
- "kws": {
- "fr": [
- "cuisse de poulet"
- ]
- }
- },
- {
- "nm": "colonne vertébrale",
- "id": "9a0c4e15141b15d4770a124b55c379224e9b07416febd4b907fb3368167d8ae5",
- "kws": {
- "fr": [
- "colonne vertébrale"
- ]
- }
- },
- {
- "nm": "rubis",
- "id": "62952fd24d28062388ac50d821cab6c4967e0bee4cc7015209da90fd89765543",
- "kws": {
- "fr": [
- "rubis"
- ]
- }
- },
- {
- "nm": "chaudron",
- "id": "4da0d2459168d78927d792af10dbea555fc6c68210556c4ffff1bb7e0fc8f1a3",
- "kws": {
- "fr": [
- "chaudron"
- ]
- }
- },
- {
- "nm": "bronzer",
- "id": "f8c3eb2f8351db996f587cb8c37fe7ec88dbd4bc2ad10150c83ead0b25f658aa",
- "kws": {
- "fr": [
- "bronzer"
- ]
- }
- },
- {
- "nm": "peur",
- "id": "32f0c6578b1f00eb7f322ca8c2eaedaf8b2fed3463e8947e228cc2aa0a85fcde",
- "kws": {
- "fr": [
- "peur"
- ]
- }
- },
- {
- "nm": "ticket",
- "id": "db69a34a8057bbf00525a5dfb440b93799a39a59504fedfe3e173d5fbd04e36e",
- "kws": {
- "fr": [
- "ticket",
- "un billet de loterie",
- "billet",
- "loterie nationale",
- "loterie"
- ]
- }
- },
- {
- "nm": "nettoyer la fenêtre",
- "id": "f2ff48b609a4be2a65bd47ee6b3b703d6729e9e84175efdcffc019be2bc92ba8",
- "kws": {
- "fr": [
- "nettoyer la fenêtre",
- "nettoyer les fenêtres",
- "nettoyer les fenêtres",
- "nettoyer"
- ]
- }
- },
- {
- "nm": "capsule",
- "id": "f1fd4516d66ca6f0b1e9d4cfc7822cf5cf4894983c80ecfebf1a8e6956e29d09",
- "kws": {
- "fr": [
- "capsule",
- "pilule"
- ]
- }
- },
- {
- "nm": "faire caca",
- "id": "f122da8d005137f5f6a7513c0ca8b4109b2a27cef34e76eb72b2788aec13b7b9",
- "kws": {
- "fr": [
- "faire caca",
- "pisser",
- "faire pipi",
- "uriner",
- "chier",
- "évacuer"
- ]
- }
- },
- {
- "nm": "ventilateur",
- "id": "828b9da42e0d984ff63249448e11959373b106aaecd9e8d252e531efabec87b0",
- "kws": {
- "fr": [
- "ventilateur",
- "appareil"
- ]
- }
- },
- {
- "nm": "se moucher le nez",
- "id": "120beab2751ce2387a184de5b2f6617a6ee1379de5de2f0c234bac221821bc76",
- "kws": {
- "fr": [
- "se moucher le nez",
- "se moucher",
- "moucher"
- ]
- }
- },
- {
- "nm": "bâton",
- "id": "6f332a7d59c65927c8600f428ad9c1995e25c0a486d96db2e250fdc28e3942da",
- "kws": {
- "fr": [
- "bâton"
- ]
- }
- },
- {
- "nm": "charcuterie",
- "id": "d5412727704a1a2886b895fe0461147791deab6498337931b71ea319e712ec0d",
- "kws": {
- "fr": [
- "charcuterie"
- ]
- }
- },
- {
- "nm": "veste de clown",
- "id": "0de63055d5d845bda3640cbb0c1acda9c294f5dfd9ef0715fb4a9429b291e61c",
- "kws": {
- "fr": [
- "veste de clown"
- ]
- }
- },
- {
- "nm": "hydrosphère",
- "id": "3469d83b254f11a567e578465ca792d9471690c8ab5af0b22f48f65751ceaf54",
- "kws": {
- "fr": [
- "hydrosphère"
- ]
- }
- },
- {
- "nm": "sécher les cheveux",
- "id": "e83bad71a86ad7c37feb61f22e60eefa63c04b0ad2210a27649e34cf0afbe27f",
- "kws": {
- "fr": [
- "sécher les cheveux",
- "sécher"
- ]
- }
- },
- {
- "nm": "vaisseau spatial",
- "id": "a6dda907791f49381b1ab6cc9d75343acea079ca8bf7271f26644e5a031501af",
- "kws": {
- "fr": [
- "vaisseau spatial",
- "fusée"
- ]
- }
- },
- {
- "nm": "chardon",
- "id": "adae574b144660b0cd36a08d4af1d85f85089bb930b365ca8148cf50df49d868",
- "kws": {
- "fr": [
- "chardon"
- ]
- }
- },
- {
- "nm": "acte",
- "id": "a050f4b9ec645db1aad3bb498f9fa792d9ecb3cc4162fa65aee5d9523d0711c1",
- "kws": {
- "fr": [
- "acte",
- "mariage"
- ]
- }
- },
- {
- "nm": "trois",
- "id": "4fb55614e394804022e885288f8e2c6afac9446df0da975260d60fd09d8124cf",
- "kws": {
- "fr": [
- "trois",
- "impair",
- "numéro",
- "3"
- ]
- }
- },
- {
- "nm": "ménorah",
- "id": "564c3d09d2425bdf4ee8335c1e7127a1db07aad2ad5a9189020535cecba51959",
- "kws": {
- "fr": [
- "ménorah"
- ]
- }
- },
- {
- "nm": "dentier",
- "id": "3f30bcb51607cc7d3333cd2eed68f6f861f99ad764fcb17965d315cbbf484659",
- "kws": {
- "fr": [
- "dentier",
- "dents"
- ]
- }
- },
- {
- "nm": "ciment",
- "id": "0fac937cdcc99d99e48e016e6d72348d1da3290a32cd1984f9775d58e75f34f5",
- "kws": {
- "fr": [
- "ciment"
- ]
- }
- },
- {
- "nm": "mécanique",
- "id": "24271aed37e0f86056ff1a86616368c1cbc50bbd059ec0ae8d6a0b108dfe3cf6",
- "kws": {
- "fr": [
- "mécanique"
- ]
- }
- },
- {
- "nm": "piste d\u0027athlétisme",
- "id": "9d099fb32c32437d46b3b106498ccc09fd1afed7a60b3902215a94ada9e5d5d0",
- "kws": {
- "fr": [
- "piste d\u0027athlétisme",
- "piste"
- ]
- }
- },
- {
- "nm": "futur",
- "id": "8229ff477da056d8e6f5fac849eddc61f64aae338e909000e658b14f1bbe493f",
- "kws": {
- "fr": [
- "futur"
- ]
- }
- },
- {
- "nm": "inviter",
- "id": "192da60c196f5e42b30ac8bf76628b6896967ae6d9a091468d8fd6efd18d5e62",
- "kws": {
- "fr": [
- "inviter"
- ]
- }
- },
- {
- "nm": "chater",
- "id": "142007032af94e20abf696e844ff5b6637b0577be8514a1bb8ce5bcff42a0484",
- "kws": {
- "fr": [
- "chater"
- ]
- }
- },
- {
- "nm": "cloche",
- "id": "1dce32b4ea52ca0fd14681b1ceddccd0045d985aefb1a19975bf8124f1215f40",
- "kws": {
- "fr": [
- "cloche"
- ]
- }
- },
- {
- "nm": "éboueuse",
- "id": "e31b727959f115fbec7d9d854b6f9c9aaa03fb0c0601b7902d79b593ce728060",
- "kws": {
- "fr": [
- "éboueuse",
- "balayeuse"
- ]
- }
- },
- {
- "nm": "boule de billard",
- "id": "15813bee217e8a323bb863b99e6ec26f6159899c41d7a03e438fafa8faaeb6fe",
- "kws": {
- "fr": [
- "boule de billard"
- ]
- }
- },
- {
- "nm": "blouse",
- "id": "6a09425ae7e118494d80dd1fa5a49e51ed2d22debc7e97adc6e5564c522eaa7f",
- "kws": {
- "fr": [
- "blouse"
- ]
- }
- },
- {
- "nm": "tchéquie",
- "id": "e7af91a6c9d5ad6b1ff23b4e98b97d4bd90f372477b85517d091cf8451074687",
- "kws": {
- "fr": [
- "tchéquie",
- "république tchèque"
- ]
- }
- },
- {
- "nm": "épingles",
- "id": "076d1232bd434003dca283f1ccb17f8e689a7cb19e3b0e989b3a89c6a3fa20c2",
- "kws": {
- "fr": [
- "épingles"
- ]
- }
- },
- {
- "nm": "joueur de tennis",
- "id": "67eee4f398593194f3d5f82e500269b7aefffc472f1328b33adb925a03439505",
- "kws": {
- "fr": [
- "joueur de tennis"
- ]
- }
- },
- {
- "nm": "personne",
- "id": "6b1c7083f6459723636ace26208be65411552f803151af7d20c05b7ebc9b7aaf",
- "kws": {
- "fr": [
- "personne",
- "vieux",
- "grand-père"
- ]
- }
- },
- {
- "nm": "rouleau de pâtissier",
- "id": "0eebd96dc6fb817e3c6d259a9eaa99d7fc38add276857ec7399b3bee4b9683e2",
- "kws": {
- "fr": [
- "rouleau de pâtissier",
- "rouleau"
- ]
- }
- },
- {
- "nm": "cours",
- "id": "a3b3c10e47c3419cea2befea25be3e1ee5642023983a1316a38e0246e0090406",
- "kws": {
- "fr": [
- "cours"
- ]
- }
- },
- {
- "nm": "moustaches",
- "id": "476bf3daea06344b07fb797b7f44f4fe78020e5e2d7477cb2600be9efa5cf41c",
- "kws": {
- "fr": [
- "moustaches"
- ]
- }
- },
- {
- "nm": "compte",
- "id": "4e0a8be1637c330bb4591c9a2084ebeda752d3e4cbd5b2a32b3b21700aef090f",
- "kws": {
- "fr": [
- "compte",
- "opération",
- "addition",
- "additionner"
- ]
- }
- },
- {
- "nm": "vin",
- "id": "bc7ca6bf3edaac5cbc61d22442ec2be6c4660e8e9fdcf0e4a684268d66a9fc35",
- "kws": {
- "fr": [
- "vin"
- ]
- }
- },
- {
- "nm": "caissier",
- "id": "eb7bf2e64d5de1062a51a91b382f3c592d217bdbf22f83db307fb778578943c0",
- "kws": {
- "fr": [
- "caissier"
- ]
- }
- },
- {
- "nm": "prostitution",
- "id": "e217f506f3bd315ffbf2750bf46717e4bfd1d93bc9c96816b125d40c7b9a39b4",
- "kws": {
- "fr": [
- "prostitution"
- ]
- }
- },
- {
- "nm": "mouchoir",
- "id": "6d83b765c6e988fb323951da03400b31074599a1b5d02b2d4c2ce42c245cbcbb",
- "kws": {
- "fr": [
- "mouchoir"
- ]
- }
- },
- {
- "nm": "disc-jockey",
- "id": "fab6c9af0cebbc674c091d7d602554c77a641c6c78bf13d712c4b1b830425a9d",
- "kws": {
- "fr": [
- "disc-jockey",
- "dj"
- ]
- }
- },
- {
- "nm": "lasagne",
- "id": "ad953bdc4216be283e9278b880df8d77f4c4f6affb77c9164a0aea43c6235992",
- "kws": {
- "fr": [
- "lasagne"
- ]
- }
- },
- {
- "nm": "vague",
- "id": "21d3226dc9b87edcef2eed628529b2ecd9d2340defed8646248c571f9788fa6d",
- "kws": {
- "fr": [
- "vague"
- ]
- }
- },
- {
- "nm": "palmier au chocolat",
- "id": "eadae941d8716c574785da80000d4ace566099075cea7c598d6cdead17ff1ffa",
- "kws": {
- "fr": [
- "palmier au chocolat"
- ]
- }
- },
- {
- "nm": "haut parleurs",
- "id": "8fa91bdd425869a708a7478a6cbf5854401e3c6873f079002ec8c8f59fbb9869",
- "kws": {
- "fr": [
- "haut parleurs"
- ]
- }
- },
- {
- "nm": "ramasser",
- "id": "359f50176c2aca491d5967c557e602eab9999ad668c579e30cfe4e4ba7dc9a6d",
- "kws": {
- "fr": [
- "ramasser",
- "récolter"
- ]
- }
- },
- {
- "nm": "égal",
- "id": "0d58fc51e29505469e1313347abc6f2e6f357b9d7230e87663bee42c2f959745",
- "kws": {
- "fr": [
- "égal",
- "même",
- "signe égal"
- ]
- }
- },
- {
- "nm": "corbeille",
- "id": "30f41f05ce4e6d867632a72c0d30f86c525df326a625ddc95106207e72fe986e",
- "kws": {
- "fr": [
- "corbeille"
- ]
- }
- },
- {
- "nm": "presse",
- "id": "53e1cfe90448726f8f3456f03544011f5303ea5a3ee0b009ba11e5c5831fbecd",
- "kws": {
- "fr": [
- "presse"
- ]
- }
- },
- {
- "nm": "donner un coup",
- "id": "631dbd53b2c19b56ecd7d6be58e9037b00a3ffea21ee6bcdbc7238184aaac7c8",
- "kws": {
- "fr": [
- "donner un coup",
- "se frapper"
- ]
- }
- },
- {
- "nm": "boulodrome",
- "id": "9a8da938a4ffb9816afb0262c7987a372d09b9b932c8ad6f4f37da4a9cf017ae",
- "kws": {
- "fr": [
- "boulodrome"
- ]
- }
- },
- {
- "nm": "prendre le petit déjeuner",
- "id": "e294c22875cd20a330f3ebf3cf821f27fa6f4582e9c77761280999329959bb45",
- "kws": {
- "fr": [
- "prendre le petit déjeuner"
- ]
- }
- },
- {
- "nm": "glace",
- "id": "73398bcf58ccd0e9c8ded94fb9ebf6ed719b2f5f083facbf4df59ccdd23ad4e1",
- "kws": {
- "fr": [
- "glace",
- "glaçon"
- ]
- }
- },
- {
- "nm": "défendre",
- "id": "f496eb7b512182553329760b49146eaa137aa03477a5fcaac1472e284cfb6696",
- "kws": {
- "fr": [
- "défendre",
- "protéger"
- ]
- }
- },
- {
- "nm": "voyager",
- "id": "7c36d2d96e0deee18de77917374df3c9855e4ab4c3693a5539f4450aa87b2ef7",
- "kws": {
- "fr": [
- "voyager",
- "voyageur",
- "prendre le bus",
- "monter dans le bus"
- ]
- }
- },
- {
- "nm": "monter la température",
- "id": "ce8e69dd7ac7dff12de3cb5b0549658eb503a7354d3604fefde1c05779449a9c",
- "kws": {
- "fr": [
- "monter la température",
- "réchauffer"
- ]
- }
- },
- {
- "nm": "robinet",
- "id": "83e0218ec2f5abe89cfdcbc477d1b6ee7d89828724941008e979f5ba7540e6cc",
- "kws": {
- "fr": [
- "robinet"
- ]
- }
- },
- {
- "nm": "doigt",
- "id": "28b1b33cba3bc2a3ce7f416ab215d38aa6ff25677c16fff390de09c35301b975",
- "kws": {
- "fr": [
- "doigt"
- ]
- }
- },
- {
- "nm": "travailler",
- "id": "1ce1918d947ee83ab8050954a5cfb25638b2c8822486d007052d1210bbd0136b",
- "kws": {
- "fr": [
- "travailler"
- ]
- }
- },
- {
- "nm": "contraceptif",
- "id": "1699cb608d85adfdb353ee3ad42ecb34f1f90291ad3d557b0cc6564aa8be0e98",
- "kws": {
- "fr": [
- "contraceptif",
- "préservatif",
- "condom"
- ]
- }
- },
- {
- "nm": "violence de genre",
- "id": "92323f4d3ef85d5602dcabf522928c12ab5b9d924b5f84426d35c01a6cc51fbc",
- "kws": {
- "fr": [
- "violence de genre",
- "abus"
- ]
- }
- },
- {
- "nm": "saut en hauteur",
- "id": "8e15e4b04a71dbd840d5ebde069792222b6a6bbd81d77d0ae09b29d70d5d8b39",
- "kws": {
- "fr": [
- "saut en hauteur"
- ]
- }
- },
- {
- "nm": "défunt",
- "id": "fbba1979be3a15665c56833da4c01fcf008033103c0a8c78a29e7e2530e5f4d5",
- "kws": {
- "fr": [
- "défunt",
- "mort"
- ]
- }
- },
- {
- "nm": "radio-cd",
- "id": "f3b6d851da9d96ebdd7a6ff06127817f634178d4cd5ab0b77da82484cf3fb719",
- "kws": {
- "fr": [
- "radio-cd",
- "reproducteur de cd"
- ]
- }
- },
- {
- "nm": "interdiction",
- "id": "8a77a647f49c71df803193945ad857c41dfcbccca6aa06cf3c601761af52ff68",
- "kws": {
- "fr": [
- "interdiction"
- ]
- }
- },
- {
- "nm": "trouver",
- "id": "8e69bd2ba2dc8785dc63e3aa3bd4e63a1f60504b30eae908c89200129de0ece6",
- "kws": {
- "fr": [
- "trouver",
- "apparaître"
- ]
- }
- },
- {
- "nm": "brancher",
- "id": "cc9b81ce504e226e94f5f72f2520312159d088391e76c24795d9d4090b36418b",
- "kws": {
- "fr": [
- "brancher"
- ]
- }
- },
- {
- "nm": "orangeade",
- "id": "940467a138d7cced961aff5134893c303987da25c218289396b0c4a2e1b76fc9",
- "kws": {
- "fr": [
- "orangeade"
- ]
- }
- },
- {
- "nm": "bavoir",
- "id": "ebb7d05b9b995df235ca235b83e1ecbdf95e0c44b77dbbf6d10db8f12d1cff8f",
- "kws": {
- "fr": [
- "bavoir"
- ]
- }
- },
- {
- "nm": "faire vibrer les lèvres",
- "id": "946b10df8834a69dc376e1c24b4a6ac7e9dc0cdf0cda180421a67b1f8d186958",
- "kws": {
- "fr": [
- "faire vibrer les lèvres",
- "vibrer",
- "praxie",
- "orthophonie"
- ]
- }
- },
- {
- "nm": "roulette",
- "id": "0a256a020b29faa3fef4e4a65028f0a6e829e8611030a8c9a8f9221741079b4c",
- "kws": {
- "fr": [
- "roulette"
- ]
- }
- },
- {
- "nm": "as-tu peur",
- "id": "40ea231eafbcc74ea95411bc06faff630ba6c2637f8c363713480eed29ec2f73",
- "kws": {
- "fr": [
- "as-tu peur"
- ]
- }
- },
- {
- "nm": "coiffée",
- "id": "22758d71d0c6914e76032565e3eea61d53b3a5db1d7ce2ed1affd92042898a7b",
- "kws": {
- "fr": [
- "coiffée"
- ]
- }
- },
- {
- "nm": "effondrement",
- "id": "a1fb4b0edbcba98278c1ecedb3e5ab1185177237b084f88c21f8816c885634ba",
- "kws": {
- "fr": [
- "effondrement",
- "naufrage"
- ]
- }
- },
- {
- "nm": "croissant",
- "id": "af28ad1f20f42e811dfd7b96baee442d2f495f8d294c3a9ab11f554daa630928",
- "kws": {
- "fr": [
- "croissant"
- ]
- }
- },
- {
- "nm": "cannelloni",
- "id": "df4df9276e622cbbc8270ff18cae6155da6db1a304c8d7ce4ef46c133b6d7e75",
- "kws": {
- "fr": [
- "cannelloni"
- ]
- }
- },
- {
- "nm": "conservation et maintenance",
- "id": "997a993902f5f9a933aa18e75e07385a251633602d8b3c005f664c7aff5b1212",
- "kws": {
- "fr": [
- "conservation et maintenance"
- ]
- }
- },
- {
- "nm": "diverses",
- "id": "b3077a56efb4b3dc6300b1213f57681cb1e024c9979759d32556131edbb130c8",
- "kws": {
- "fr": [
- "diverses",
- "divers",
- "beaucoup",
- "nombreux"
- ]
- }
- },
- {
- "nm": "poulet",
- "id": "d548157f0278d792083ef939d19de94010134ba91784a37a2ce682e917cecf12",
- "kws": {
- "fr": [
- "poulet",
- "poussin"
- ]
- }
- },
- {
- "nm": "palmes",
- "id": "83c0ab374e51a6b142754baef1afc82e13c1890ae9229c408969a86798e19c1f",
- "kws": {
- "fr": [
- "palmes"
- ]
- }
- },
- {
- "nm": "paresseux",
- "id": "a93fbe84cafd5b1110b6dc0ac8741f385509903454f4c46ef20d15f4524f805a",
- "kws": {
- "fr": [
- "paresseux",
- "faible"
- ]
- }
- },
- {
- "nm": "montre",
- "id": "d7f14551caab36f8b7fd42f87b99849af4cf4d09a705fb8a88a3214ed766dcfa",
- "kws": {
- "fr": [
- "montre"
- ]
- }
- },
- {
- "nm": "travail",
- "id": "d0cae3194772daec6ee2fd5f1c97f7abd6cb8cb0fdb47154baca2e848f5cff55",
- "kws": {
- "fr": [
- "travail"
- ]
- }
- },
- {
- "nm": "éclair",
- "id": "49e699c3f5d1dc1268ea83c79763138b7fbfb86ea068361666b5ae4cfaa3911c",
- "kws": {
- "fr": [
- "éclair",
- "rayon"
- ]
- }
- },
- {
- "nm": "renard",
- "id": "5c3a8174725c35f51c35f169b7b4713bbaac6cec5871be0ec0ae282e4e05661d",
- "kws": {
- "fr": [
- "renard"
- ]
- }
- },
- {
- "nm": "veste",
- "id": "ef48294af13a030b36734a2edb40d43d9bb5a63a4a53316d65b0cfefcc708cd4",
- "kws": {
- "fr": [
- "veste",
- "vêtement"
- ]
- }
- },
- {
- "nm": "corde à sauter",
- "id": "0a250131ab7424b24f2eaeba6c1a637e7f7cf75d5a18df895374f38218e9f345",
- "kws": {
- "fr": [
- "corde à sauter",
- "sauter",
- "sauter à la corde"
- ]
- }
- },
- {
- "nm": "chiffres",
- "id": "45d2e8e1ebfa60f83a38215017e998b216bf8c72eae0d604c38d0b3fdefa8bc4",
- "kws": {
- "fr": [
- "chiffres",
- "nombres"
- ]
- }
- },
- {
- "nm": "innocent",
- "id": "a0c090a50078f8534f9b1aa70ae62a535ff7f7eb85895ac313ba37c4b479da15",
- "kws": {
- "fr": [
- "innocent"
- ]
- }
- },
- {
- "nm": "jeter",
- "id": "58775d319ae58009d33c3e683d8cb0bc0acc03bf95dc10b96389b9db33da909d",
- "kws": {
- "fr": [
- "jeter",
- "lancer"
- ]
- }
- },
- {
- "nm": "assistante sociale",
- "id": "4d2f5386642a8032f3a9e0ec92ed58438968c0f5b754dd12ef3295fb6332053c",
- "kws": {
- "fr": [
- "assistante sociale"
- ]
- }
- },
- {
- "nm": "très bien!",
- "id": "7cc5f6a720035c851ea0cc641781a30d8291b628c98fd38511baed24b4e2491c",
- "kws": {
- "fr": [
- "très bien!",
- "très bien",
- "très sympa !",
- "fantastique!",
- "fantastique",
- "succès",
- "génial!",
- "génial"
- ]
- }
- },
- {
- "nm": "horloge digitale",
- "id": "4d479fc3a6b74ebb43a17504fe29feede587d0352139da75fe4430aa2dd5e8ce",
- "kws": {
- "fr": [
- "horloge digitale",
- "montre"
- ]
- }
- },
- {
- "nm": "x",
- "id": "84dbeeef611c07032f88421c004a074ab2a5eadbaaacd56bb3467183ab5cbfca",
- "kws": {
- "fr": [
- "x",
- "lettre"
- ]
- }
- },
- {
- "nm": "note de musique",
- "id": "b35b6d82a80db19ba5627f54f450362b801f1388cd6ab93b5f09e51eb5670510",
- "kws": {
- "fr": [
- "note de musique",
- "note"
- ]
- }
- },
- {
- "nm": "mince",
- "id": "c370dca2fde4037b7e25cdc2bfc9f21669025b07bd7c0b46b008c673ca3bf2a7",
- "kws": {
- "fr": [
- "mince",
- "sec",
- "maigre"
- ]
- }
- },
- {
- "nm": "ustensile de cuisine",
- "id": "9b85d390d813a1e8cc8d76623bd587dd6ea9c03704cbb41965a2e64127d620f8",
- "kws": {
- "fr": [
- "ustensile de cuisine",
- "couteau"
- ]
- }
- },
- {
- "nm": "moniteur de prévention",
- "id": "d9c9f50bace6e014db218d9cca2857231f578c26bd3798e13a13b14e2c4e4d9d",
- "kws": {
- "fr": [
- "moniteur de prévention"
- ]
- }
- },
- {
- "nm": "propre",
- "id": "6befad6e6edb662b54451649e4a5761d78f32ca4c4271eeb25bc445b8a385212",
- "kws": {
- "fr": [
- "propre"
- ]
- }
- },
- {
- "nm": "illuminer",
- "id": "a5f8d0979f8e3c95e5299568e980ec22b62a0db0f7277a1913a86bdb38131ab6",
- "kws": {
- "fr": [
- "illuminer",
- "lumière",
- "lumières de couleurs",
- "lumières"
- ]
- }
- },
- {
- "nm": "coude",
- "id": "ec3eec152f7eb8dd8c6be92e93072a3f512b6cb87862f8b838d5cd71f693e8d7",
- "kws": {
- "fr": [
- "coude"
- ]
- }
- },
- {
- "nm": "premier quartier",
- "id": "41b748eaf0036915acf9ffedb4baaaf09c3c3d2dc342f691d46bd48ebe19c5ce",
- "kws": {
- "fr": [
- "premier quartier",
- "lune"
- ]
- }
- },
- {
- "nm": "visite scolaire",
- "id": "30a3474790ba38f67277245a42c6be8948eef20690253efef774e52d980b7796",
- "kws": {
- "fr": [
- "visite scolaire",
- "visite",
- "visiter"
- ]
- }
- },
- {
- "nm": "qu\u0027est-ce que c\u0027est",
- "id": "97a0802afe683e43a58311dd0de5d6c3c70bb286ee485af7d84d9dc3b2a9fff3",
- "kws": {
- "fr": [
- "qu\u0027est-ce que c\u0027est",
- "qui c\u0027est",
- "qui",
- "inconnu"
- ]
- }
- },
- {
- "nm": "étirer",
- "id": "63bbcafb34280d636173cbc3e8e57da95805595567f41d071d47d87acc06f408",
- "kws": {
- "fr": [
- "étirer"
- ]
- }
- },
- {
- "nm": "appuyer",
- "id": "9b4f46e4e6fdfbf782264117c13b8e670f6aae4e5c44564bb65131e320de3189",
- "kws": {
- "fr": [
- "appuyer"
- ]
- }
- },
- {
- "nm": "naître",
- "id": "0b37a2908f61c89bee6c4d4a42231064b422895162759a83e00b5ef2021bf0ed",
- "kws": {
- "fr": [
- "naître"
- ]
- }
- },
- {
- "nm": "toilettes",
- "id": "566fe02e03ca9e851dad0bb0d2a731191a7e177631c703d45a64b50db477e530",
- "kws": {
- "fr": [
- "toilettes",
- "wc",
- "salle de bains"
- ]
- }
- },
- {
- "nm": "plaza del torico (nom d\u0027une place)",
- "id": "116c6c8f0ea065cb5400b50a2f7727c312534fb91af862e268ee8e8f8cc2b545",
- "kws": {
- "fr": [
- "plaza del torico (nom d\u0027une place)",
- "monument"
- ]
- }
- },
- {
- "nm": "se raser",
- "id": "d9ad60c71043532858b4efce9cba06ac5ab25a95c77889a5a1924f083e28eb2c",
- "kws": {
- "fr": [
- "se raser",
- "raser"
- ]
- }
- },
- {
- "nm": "couturier",
- "id": "bfd89ba02c6a173c15f4fe237aaa41caf7a892ef2e2d86c31d558bd41a183ca8",
- "kws": {
- "fr": [
- "couturier"
- ]
- }
- },
- {
- "nm": "rectangle",
- "id": "45c54c6b4696ff332aabb1639085ed87e70a590f198e6c9df5280dfd6962a0a6",
- "kws": {
- "fr": [
- "rectangle"
- ]
- }
- },
- {
- "nm": "guide",
- "id": "c3ed4f2bd7b8d4eda4ebf9b8110ef71b03b4e57444f0da5fa1f320a538bee0e6",
- "kws": {
- "fr": [
- "guide"
- ]
- }
- },
- {
- "nm": "encourager",
- "id": "3dbfd4e016c0bc20448ef5cc7aa9c9d1ea815bc91c21199d9dc1ef47f59570b8",
- "kws": {
- "fr": [
- "encourager"
- ]
- }
- },
- {
- "nm": "feuille",
- "id": "00ad44ff0b622498328c9d2a1af3f89b667d412d675b7f0b5e254455f374976a",
- "kws": {
- "fr": [
- "feuille"
- ]
- }
- },
- {
- "nm": "bosnie-herzégovine",
- "id": "e1c32dce1decd6e64cae144c9631dd35d2373b31978b224245ac45dde96304f8",
- "kws": {
- "fr": [
- "bosnie-herzégovine"
- ]
- }
- },
- {
- "nm": "adapter",
- "id": "7155066f0c2336e66649edada1d3a05a18e33f20822fa1c6637ed3bc60391da4",
- "kws": {
- "fr": [
- "adapter"
- ]
- }
- },
- {
- "nm": "venezuela",
- "id": "5e8eefe0c957964d522bbd6ab015960cbe2ac61f19910b163a7b738081d7d499",
- "kws": {
- "fr": [
- "venezuela"
- ]
- }
- },
- {
- "nm": "expression",
- "id": "ffedadcbc95b560fae9189cdc02f4577efb3300fb756023e66c06d6976101853",
- "kws": {
- "fr": [
- "expression",
- "faire honte",
- "honte",
- "avoir honte"
- ]
- }
- },
- {
- "nm": "liste des courses",
- "id": "ad32b111aaf420d8e53fe9f0aa0664919f998706802dbafe11f1ea5ad8d215f7",
- "kws": {
- "fr": [
- "liste des courses",
- "liste"
- ]
- }
- },
- {
- "nm": "enceinte",
- "id": "96cf46b04a5a70d7519d132859e464dc82c707c35fd9dcb85220450ee7de3681",
- "kws": {
- "fr": [
- "enceinte"
- ]
- }
- },
- {
- "nm": "lire",
- "id": "c91fbe1778806ff5c32c7e5f38b66470465f287b75617b3de76f3da5482e30e4",
- "kws": {
- "fr": [
- "lire"
- ]
- }
- },
- {
- "nm": "terrain de rugby",
- "id": "ba0e133891f23fed65126d9c2dfaa5b01af317542b485a8827da4ab7a1b323ca",
- "kws": {
- "fr": [
- "terrain de rugby"
- ]
- }
- },
- {
- "nm": "brosser",
- "id": "ffe4914752ba87b007540db3847406e2ff349cf9f34e68afb018029d01a684f1",
- "kws": {
- "fr": [
- "brosser"
- ]
- }
- },
- {
- "nm": "avoir l\u0027habitude",
- "id": "3be9b40b4b99fc4a5cd99cf6a33cc44108b3473fb7da8bc81befcc088ec28969",
- "kws": {
- "fr": [
- "avoir l\u0027habitude",
- "anniversaire"
- ]
- }
- },
- {
- "nm": "orange",
- "id": "79d7edbeb8229be0ab60fcd5209b6d44c8eb20737c3250dd8790a23ec6fa5564",
- "kws": {
- "fr": [
- "orange"
- ]
- }
- },
- {
- "nm": "examiner",
- "id": "fcfb9f8ae5c98ca56a8f7e2d3a80eaff784d54e7082aa9a5bf35f2a9a9a3e625",
- "kws": {
- "fr": [
- "examiner",
- "explorer"
- ]
- }
- },
- {
- "nm": "plaque vitrocéramique",
- "id": "3da737c433be56fe723c476d1c47817d490e7783b6d532b2c2ef89fd2c0a4958",
- "kws": {
- "fr": [
- "plaque vitrocéramique",
- "vitrocéramique"
- ]
- }
- },
- {
- "nm": "chaise de plage adaptée",
- "id": "4bbfba68ca503a2cd713346572f4dd348fc4935531abe7488c8edef3590f14cd",
- "kws": {
- "fr": [
- "chaise de plage adaptée"
- ]
- }
- },
- {
- "nm": "vue",
- "id": "4c9bf120e0c966e9aadc6a5c5968be27070f2a722cde5eda809bd73389d8fde1",
- "kws": {
- "fr": [
- "vue",
- "oeil"
- ]
- }
- },
- {
- "nm": "torah",
- "id": "712a4a38598f7e71064ea749f378e38eb01659fcdd03a03d2686491b49f1a601",
- "kws": {
- "fr": [
- "torah"
- ]
- }
- },
- {
- "nm": "énergie nucléaire",
- "id": "498814a5a2bfbb8a684f8a0c9a05adcc3bf96a8eb359bbd759457a42a3462e9e",
- "kws": {
- "fr": [
- "énergie nucléaire"
- ]
- }
- },
- {
- "nm": "sceau pour nettoyer le sol",
- "id": "1e65975318c418ee0a98f7ae1a01e794cb2294eb393e0f62a359ec8259708349",
- "kws": {
- "fr": [
- "sceau pour nettoyer le sol"
- ]
- }
- },
- {
- "nm": "semelle",
- "id": "04e3545f4fb75e7ca4030ed9121672865766f2651062d2e7cdd5515bb16d84d9",
- "kws": {
- "fr": [
- "semelle"
- ]
- }
- },
- {
- "nm": "prénom",
- "id": "7bed3a97b298a9b235ab32936e7143f9d548e5ee31add5e3c4c903fb127c30b5",
- "kws": {
- "fr": [
- "prénom"
- ]
- }
- },
- {
- "nm": "colombie",
- "id": "411471936fcdbd9b297d66bbd4c04997334c1406e4bea692803b7081c9c3574f",
- "kws": {
- "fr": [
- "colombie"
- ]
- }
- },
- {
- "nm": "vieillesse",
- "id": "ff93d3d2550d07df4e78df60a2ebafdccfa9b85b3b88ae61aedfe4668de4387d",
- "kws": {
- "fr": [
- "vieillesse"
- ]
- }
- },
- {
- "nm": "campagnard",
- "id": "dc08a064fbe66e84332a196d9549071bb5ba8e768a3502b72c50c34ee50db3df",
- "kws": {
- "fr": [
- "campagnard",
- "cultivateur",
- "agriculteur",
- "agriculture"
- ]
- }
- },
- {
- "nm": "billes",
- "id": "fc4f800cec60197a25e2132551bf1d5b2d884e0658cc1ffa7ea0927c8acb0e4a",
- "kws": {
- "fr": [
- "billes"
- ]
- }
- },
- {
- "nm": "trinquer",
- "id": "3ad16220f7cb422332b7e3ff88e283a65730399dd7cff123ee7b1da8f17297a3",
- "kws": {
- "fr": [
- "trinquer"
- ]
- }
- },
- {
- "nm": "os",
- "id": "a6ad8935fe53ad771514cbdb8f664033d3616d73328893b9070f39d948cd1bd3",
- "kws": {
- "fr": [
- "os"
- ]
- }
- },
- {
- "nm": "passé",
- "id": "48442f46cd175e93e7fa049a45a1bb011dad12aa6c26d26b13f2a0d3ece24293",
- "kws": {
- "fr": [
- "passé",
- "hier"
- ]
- }
- },
- {
- "nm": "mardi",
- "id": "058478ef7a5fa19fa9b75d23906cdd37d4599d017c0c501733e46cdca5f07f6d",
- "kws": {
- "fr": [
- "mardi"
- ]
- }
- },
- {
- "nm": "jugement",
- "id": "e3b6cfd44fe0a5b3fd74ecab4bf91d98c31684cd0021ea7dceefc77494ce62e7",
- "kws": {
- "fr": [
- "jugement",
- "juger"
- ]
- }
- },
- {
- "nm": "table à repasser",
- "id": "2f748c8e25130825244cacd72ec4869ed25ae9f153f573f0cc78b295d90d26e3",
- "kws": {
- "fr": [
- "table à repasser"
- ]
- }
- },
- {
- "nm": "électroencéphalogramme",
- "id": "0c17a775f4a97a95cdd3434238fe69d9b36b5604e6b3f8074d54361174fa449a",
- "kws": {
- "fr": [
- "électroencéphalogramme",
- "éléctro"
- ]
- }
- },
- {
- "nm": "ours en peluche",
- "id": "696cfa81274a742ae0a1e5cd50e8a458cfa11e9e2f405aee2d4d13db9d1d5c65",
- "kws": {
- "fr": [
- "ours en peluche",
- "peluche",
- "nounours"
- ]
- }
- },
- {
- "nm": "cousine",
- "id": "9165b009f019cb7acc60bacdbe240501b74123d1154eae1ecd3b4c126634e8ad",
- "kws": {
- "fr": [
- "cousine"
- ]
- }
- },
- {
- "nm": "gui",
- "id": "c2f218d0516bc921c93011df6660d593594441e8fd0148d95b9077554535094d",
- "kws": {
- "fr": [
- "gui"
- ]
- }
- },
- {
- "nm": "célébration",
- "id": "04865653671dd156460c590902afe4cf71fdf5f061527117c4dea9e332c831c4",
- "kws": {
- "fr": [
- "célébration",
- "fête"
- ]
- }
- },
- {
- "nm": "pluriel",
- "id": "cb9a54befcae3e4743432422b164e32911066c45e4fd114516388fa05a6c4290",
- "kws": {
- "fr": [
- "pluriel",
- "pluriels"
- ]
- }
- },
- {
- "nm": "clair",
- "id": "602e211b4d7be2c5cd6706da09e34f084bc8bb781101bc6a76fbfc6a3c357f63",
- "kws": {
- "fr": [
- "clair"
- ]
- }
- },
- {
- "nm": "se poser",
- "id": "6c8e6f94eae9405256f9fa836da6d52dee6955952e7d3054a6a87701d9c64e42",
- "kws": {
- "fr": [
- "se poser"
- ]
- }
- },
- {
- "nm": "lapin",
- "id": "6d7e85c90a5b517a86b132a89df4074016bd18dca111a9ad6b7c574a605a51d1",
- "kws": {
- "fr": [
- "lapin"
- ]
- }
- },
- {
- "nm": "protéine",
- "id": "5b0aeedcbbf8be897d98777d14af6e12feb3e6a503a3b1ff62f8afa2f1b2d2ed",
- "kws": {
- "fr": [
- "protéine"
- ]
- }
- },
- {
- "nm": "baisse le son",
- "id": "6f65c86ba88938c121fd0156abe2bbc2377c69dc015c4eefa28897a1b318d954",
- "kws": {
- "fr": [
- "baisse le son",
- "réduire la puissance"
- ]
- }
- },
- {
- "nm": "plus",
- "id": "7da508b6ea06362a9b2e59beb46eaeee0e1c155e4aa795eebd469ed7830702bd",
- "kws": {
- "fr": [
- "plus"
- ]
- }
- },
- {
- "nm": "cousin",
- "id": "66ca7c47a1187f2d39fb3237f1cf302565a38912008015824141cb627c96a0f4",
- "kws": {
- "fr": [
- "cousin"
- ]
- }
- },
- {
- "nm": "quel",
- "id": "46ca9d1ee0433975d2f2f8fa65b24329eccf9ffae4bf10ae9e9b6fdc2a0eaf53",
- "kws": {
- "fr": [
- "quel"
- ]
- }
- },
- {
- "nm": "piquant",
- "id": "abbc970b07cde9d006804c1ccd434a42487389debb9ac82345cfe098debe4cac",
- "kws": {
- "fr": [
- "piquant"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "2a6d5fe63882597bc8c4f64bac954126a89c8671d0e9ef8362d607a04df57dc0",
- "kws": {
- "fr": [
- "praxie",
- "orthophonie",
- "lever la langue",
- "lever"
- ]
- }
- },
- {
- "nm": "bouillie",
- "id": "d882afad7fc1ce323364788d27b29e8ef6d548e862f1e9b7682025c86de078da",
- "kws": {
- "fr": [
- "bouillie"
- ]
- }
- },
- {
- "nm": "gagner",
- "id": "c9555f467a420100d7afc711685b2ae31106f03e5f64b386fb596302128b615c",
- "kws": {
- "fr": [
- "gagner"
- ]
- }
- },
- {
- "nm": "paquet de macaronis",
- "id": "e9c6c1826eff8793658b50fb4044f49ace62a3c207b367cd75eba5fdfdce3ecb",
- "kws": {
- "fr": [
- "paquet de macaronis",
- "macaronis"
- ]
- }
- },
- {
- "nm": "se baigner",
- "id": "ab2e7350a78f9e900348e5ba496e127f1d2c1d301c16d1104eb454801cb139a3",
- "kws": {
- "fr": [
- "se baigner"
- ]
- }
- },
- {
- "nm": "brochette",
- "id": "da4ee8b6d3ed961d36d5c78f0a6303fe1177fc40273756ec690e046de9a59f97",
- "kws": {
- "fr": [
- "brochette"
- ]
- }
- },
- {
- "nm": "table",
- "id": "886b322b207edbddf7e21cfe65ea688f11c5560aacd1cbd7d99d2965f56c553f",
- "kws": {
- "fr": [
- "table",
- "bureau d\u0027écolier"
- ]
- }
- },
- {
- "nm": "maintenance",
- "id": "b23de570bafd622a51f43e03bd1c9b0f72f32d1e8f3d897d5fb659d3c8236582",
- "kws": {
- "fr": [
- "maintenance"
- ]
- }
- },
- {
- "nm": "blason d\u0027aragon",
- "id": "5e32c439b0f3926e18f2aa753b30aefd216b387b3086b4e941f9a32c90269788",
- "kws": {
- "fr": [
- "blason d\u0027aragon",
- "blason",
- "aragon",
- "armes"
- ]
- }
- },
- {
- "nm": "sultan",
- "id": "f52a4abd3a0e0831fc6798ba9dbcdf26c6ff1226af2f8686f3de15344d9b17bf",
- "kws": {
- "fr": [
- "sultan"
- ]
- }
- },
- {
- "nm": "boulanger",
- "id": "2bb7fe9ff0b84ed84d10009ad26793c105ab04759681a0deafa25bd34ad4bc9e",
- "kws": {
- "fr": [
- "boulanger"
- ]
- }
- },
- {
- "nm": "grenouille",
- "id": "fc48489cfa934ee0e7453b70ac8d77551446b948a8b7f2a4fdd503a220bb4b38",
- "kws": {
- "fr": [
- "grenouille"
- ]
- }
- },
- {
- "nm": "fossile",
- "id": "ddc159080a5ad2b4b1e412abd0fe5d31f9070abb0b94d5eb1047dbc26bb8850a",
- "kws": {
- "fr": [
- "fossile",
- "ammonite"
- ]
- }
- },
- {
- "nm": "boule de quilles",
- "id": "7f2155b283b144586504bc859b61ae39a725e0b76c2acc64187894c8de8d30be",
- "kws": {
- "fr": [
- "boule de quilles",
- "boule"
- ]
- }
- },
- {
- "nm": "jardinier",
- "id": "c45618aa7a9a7939fe35d814e8cd73f352004a473b26aa9fc14b92d16bb7be53",
- "kws": {
- "fr": [
- "jardinier"
- ]
- }
- },
- {
- "nm": "bourdonner",
- "id": "c0e535c71bb374f681bb6b56100812c53270ac3b0cb53166d8c146d981537e76",
- "kws": {
- "fr": [
- "bourdonner"
- ]
- }
- },
- {
- "nm": "braire",
- "id": "a997614d99316f6657c0f935ad0cb1c19c27b40e3e0f1b4595f6be57565c2a7d",
- "kws": {
- "fr": [
- "braire"
- ]
- }
- },
- {
- "nm": "cuisinier",
- "id": "b96c39ca7e3d962fcfbec8e9e3473b1ef1b925b4959d2064db965d18da0e6af2",
- "kws": {
- "fr": [
- "cuisinier"
- ]
- }
- },
- {
- "nm": "plonger",
- "id": "882c1fc362892496f9d55b412d5284af751ebe1b850171e124a554152374d912",
- "kws": {
- "fr": [
- "plonger",
- "immersion",
- "submergé"
- ]
- }
- },
- {
- "nm": "coupe-ongles",
- "id": "873a20ace84e4598f1e592e1da5249a398ac9aeb9fbcb2d27d8fdacf3ae3e84d",
- "kws": {
- "fr": [
- "coupe-ongles"
- ]
- }
- },
- {
- "nm": "poumons",
- "id": "d60e1eae37c140ad50706949810bd630670dcb101ef338db38ef95f0afda8101",
- "kws": {
- "fr": [
- "poumons",
- "organe"
- ]
- }
- },
- {
- "nm": "coller",
- "id": "8b73767bb5e1ea8d8f987e60f818a6447ceedafa3dfe3267c13e8db897652ffd",
- "kws": {
- "fr": [
- "coller",
- "attaquer",
- "donner un coup",
- "maltraiter"
- ]
- }
- },
- {
- "nm": "parc",
- "id": "5263b8a8965efce76cce531928c10c71e6a08c3fc89984beab145398772ed15e",
- "kws": {
- "fr": [
- "parc",
- "caserne de pompiers",
- "caserne des pompiers"
- ]
- }
- },
- {
- "nm": "nièce",
- "id": "dc634cf10a6278f0da694144407c4e824d48456ccc2cc474551c90c6280eb872",
- "kws": {
- "fr": [
- "nièce"
- ]
- }
- },
- {
- "nm": "varicelle",
- "id": "433bced2e19eae786a08f1698a2fbfe71fdae211d4b59cc672c2ea06e8389e93",
- "kws": {
- "fr": [
- "varicelle"
- ]
- }
- },
- {
- "nm": "mercure",
- "id": "1853f45520a12a4f46322e692d2167d4b6cf2e657b43804ab8ab28086b6265ec",
- "kws": {
- "fr": [
- "mercure"
- ]
- }
- },
- {
- "nm": "parc",
- "id": "c90c9561c692c10d2c058070a106f063b28e8895d3f071454b886144a985c9d7",
- "kws": {
- "fr": [
- "parc",
- "caserne de pompiers",
- "caserne des pompiers"
- ]
- }
- },
- {
- "nm": "cervantès",
- "id": "d4028318f2512b9f8575a6ee5a738dd7d6d5552084f9620925e753b10fc5caf5",
- "kws": {
- "fr": [
- "cervantès",
- "miguel de cervantès"
- ]
- }
- },
- {
- "nm": "muet",
- "id": "50dcf8f48039863cd75015d6281dfeada9bc1a0222d9ad270261af19173e93e7",
- "kws": {
- "fr": [
- "muet"
- ]
- }
- },
- {
- "nm": "isthme",
- "id": "d70504bbc7ac2c6b395f8fbdf7536d92c5c8f55e4beae3c2f0bc5f21bb8eb06f",
- "kws": {
- "fr": [
- "isthme"
- ]
- }
- },
- {
- "nm": "se sécher",
- "id": "aa651c5b1b2216bbbc00cefd8f00f30da224997e5e28adb7f87688b747f04913",
- "kws": {
- "fr": [
- "se sécher",
- "sécher"
- ]
- }
- },
- {
- "nm": "douleur lancinante",
- "id": "42466fbf6c32c82ca94f27392879349192196ef871ba989f0f26379d663550ad",
- "kws": {
- "fr": [
- "douleur lancinante",
- "douleur",
- "cardinal",
- "bleu",
- "bobo"
- ]
- }
- },
- {
- "nm": "dièse",
- "id": "bd8cf2a8e1de3a6c2124fecfa07ddfaddb43237f0fd4398a0b08bf685f0786d6",
- "kws": {
- "fr": [
- "dièse",
- "signe dièse"
- ]
- }
- },
- {
- "nm": "déchausser",
- "id": "f530ebcea390d2da05accfa963babe118618cd5afbaa13403ac359596d07a4b8",
- "kws": {
- "fr": [
- "déchausser"
- ]
- }
- },
- {
- "nm": "club de golf",
- "id": "58605797f6794041f5c5bd14f036f4d0d3883a517bf31f24e17b09ba7b06c8a5",
- "kws": {
- "fr": [
- "club de golf"
- ]
- }
- },
- {
- "nm": "donner un cadeau",
- "id": "fcb60b01887bda64aea8f0e06241c096ff173242d807440392188e2a99701a19",
- "kws": {
- "fr": [
- "donner un cadeau",
- "offrir"
- ]
- }
- },
- {
- "nm": "battement d\u0027ailes",
- "id": "c281870a776c9f49caa20dc2c38dac5ecd695480d5a37a0264500d701168609e",
- "kws": {
- "fr": [
- "battement d\u0027ailes",
- "battre des ailes"
- ]
- }
- },
- {
- "nm": "orthopédie",
- "id": "4e72ad83d25ab41860e5e87eb19455b3b958cf1a6874bc241e0d1b2a09d44a62",
- "kws": {
- "fr": [
- "orthopédie"
- ]
- }
- },
- {
- "nm": "renne",
- "id": "965492adebc0bc60d7eb859df70a9c356bc6490f1f6287ff2877ec07a65243f2",
- "kws": {
- "fr": [
- "renne"
- ]
- }
- },
- {
- "nm": "mai",
- "id": "e75ef2ec6426ece91ecb2172e7c74c3255d22d1b769830ad0e5a913354ac7269",
- "kws": {
- "fr": [
- "mai"
- ]
- }
- },
- {
- "nm": "se battre",
- "id": "f98f8759f65b91b5971c96e5b06ad5eee5de004198b16d0fd93c78ab3bef8348",
- "kws": {
- "fr": [
- "se battre",
- "gronder"
- ]
- }
- },
- {
- "nm": "café capuccino",
- "id": "524f430c72354793bfa4efc5bd04a5d5b01612ce344e21d35054d27b29656f2d",
- "kws": {
- "fr": [
- "café capuccino",
- "capuccino"
- ]
- }
- },
- {
- "nm": "correct",
- "id": "5da3a1d6afaa55d04d1929a987d934c75b0dedf52b222b0e165722fad37fa141",
- "kws": {
- "fr": [
- "correct",
- "vu",
- "oui",
- "approuver"
- ]
- }
- },
- {
- "nm": "informaticienne",
- "id": "81df09fa147600367ccfba3e8411dc6547793e3ec16aa358b6519391637b5afd",
- "kws": {
- "fr": [
- "informaticienne"
- ]
- }
- },
- {
- "nm": "chaise d\u0027écolier",
- "id": "2d14071e77874958d3c81cf2c63973cab52295f35c49147fe26adc54e6d93bc4",
- "kws": {
- "fr": [
- "chaise d\u0027écolier",
- "chaise",
- "siège"
- ]
- }
- },
- {
- "nm": "quadrillé",
- "id": "9806be68fc94b2f399ce4c1605b2f78cbfa69844cf15323c657603ee6f36ba28",
- "kws": {
- "fr": [
- "quadrillé"
- ]
- }
- },
- {
- "nm": "piton",
- "id": "5ae9e32c4510ae1e5f24b0fb0d806b760a488917076265d8f7c25259e110746e",
- "kws": {
- "fr": [
- "piton",
- "crampon"
- ]
- }
- },
- {
- "nm": "ville",
- "id": "3e176f3cb7b040a9f335f51db2b4755a3441f13cf48a89c9670b0e4f14cb2766",
- "kws": {
- "fr": [
- "ville",
- "population",
- "localité"
- ]
- }
- },
- {
- "nm": "salamandre",
- "id": "fa15ebddb56cf035af3a0ec26f76b0c191b3d4d047dec3af5f41dd7c815942b3",
- "kws": {
- "fr": [
- "salamandre"
- ]
- }
- },
- {
- "nm": "cours d\u0027éducation plastique",
- "id": "1d471cc7ce1b15135453ed874e28939c47e446ecc24b9473e7e4181457522545",
- "kws": {
- "fr": [
- "cours d\u0027éducation plastique",
- "éducation plastique et visuelle"
- ]
- }
- },
- {
- "nm": "vernis",
- "id": "96a9364b9cd19e0b4c52f6ec9eae4084f89ef22942504984476fe9a1c5ec3a9e",
- "kws": {
- "fr": [
- "vernis"
- ]
- }
- },
- {
- "nm": "corée du nord",
- "id": "bbda456fc4e4567cc647152a83b71285059809c1dd46ac108ec5c6c693c3be93",
- "kws": {
- "fr": [
- "corée du nord"
- ]
- }
- },
- {
- "nm": "sucre",
- "id": "71ae4720d1d7cbf09b076957074969a5d7d68799464f6d131191567ea76c6db7",
- "kws": {
- "fr": [
- "sucre"
- ]
- }
- },
- {
- "nm": "éboueuse",
- "id": "35feb1f73a3f789297a9238102d464cbf874790d94b006d7411574f75153b917",
- "kws": {
- "fr": [
- "éboueuse"
- ]
- }
- },
- {
- "nm": "t",
- "id": "05e8e60fcb12af6fa0df55100c68d97a0cdfc4a4b6477f197961552eb0d1a0dd",
- "kws": {
- "fr": [
- "t",
- "lettre"
- ]
- }
- },
- {
- "nm": "les amants",
- "id": "cdd4c00e15e5e840773f6cd681f9fec5d8759a9ecf6bdd7320577002ae8e95b4",
- "kws": {
- "fr": [
- "les amants"
- ]
- }
- },
- {
- "nm": "graffeur",
- "id": "0467e28ad7e2a9f30047e5950fec11ae15f6e03734661ffcbc4e3d5c7c07947f",
- "kws": {
- "fr": [
- "graffeur"
- ]
- }
- },
- {
- "nm": "confiture",
- "id": "88bdaee9a17c19df632a640c4e683fa70b9c0f7ff5efc2eee24189e922e98565",
- "kws": {
- "fr": [
- "confiture"
- ]
- }
- },
- {
- "nm": "accélérateur",
- "id": "83d541712c10b31b2fe1e0394735539204797b6934ef6fa67794cdd2eb4d02e4",
- "kws": {
- "fr": [
- "accélérateur"
- ]
- }
- },
- {
- "nm": "voiture de police",
- "id": "f96be6fa13d2c5c8091166ae2f2d7b8406de714f73600958d2a90c48987f00a4",
- "kws": {
- "fr": [
- "voiture de police"
- ]
- }
- },
- {
- "nm": "marcher à quatre pattes",
- "id": "d37c20029a7b28d8ef7f70d4ae3e7fda1f4d4c9624ae5757d4bf6ef399b3e8c7",
- "kws": {
- "fr": [
- "marcher à quatre pattes"
- ]
- }
- },
- {
- "nm": "petit ange",
- "id": "2ef0647321c1e1e8e8a55328f1ec5b33042f32226f549c3f8e054baf38c4b24d",
- "kws": {
- "fr": [
- "petit ange",
- "ange"
- ]
- }
- },
- {
- "nm": "enfant autiste",
- "id": "6b57c4c0ccdf51668a32fb5936b57c9c3f45ebac920655f34a26c59942f2691d",
- "kws": {
- "fr": [
- "enfant autiste"
- ]
- }
- },
- {
- "nm": "hexagone",
- "id": "b5a58f1026fdb6d2b008b3d67a57ae96e3fa6428a7b886b172d1d4123fe61996",
- "kws": {
- "fr": [
- "hexagone"
- ]
- }
- },
- {
- "nm": "bibliothèque",
- "id": "899926eb27fe0d120e396950959d478e387c01c509484b9ad1581f3eb55cae49",
- "kws": {
- "fr": [
- "bibliothèque"
- ]
- }
- },
- {
- "nm": "serrer dans les bras",
- "id": "735696700d105ad4ef3d7773bb0a365e83c42f7408d2914ffe381810f903f189",
- "kws": {
- "fr": [
- "serrer dans les bras",
- "s\u0027embrasser"
- ]
- }
- },
- {
- "nm": "instrument musical",
- "id": "30e7f32f907f4f6ac9475b0296182f0f941d7747a39327195eaf19f332b25384",
- "kws": {
- "fr": [
- "instrument musical",
- "batterie"
- ]
- }
- },
- {
- "nm": "épée",
- "id": "3548ddb2bbfcb9a949cc036353123e19930eb0c0536fd1f51862988d9b2f570e",
- "kws": {
- "fr": [
- "épée",
- "sabre"
- ]
- }
- },
- {
- "nm": "gaine",
- "id": "530b6e2882cf4f9acdaaad67789658057287b8500b6c908e7663e4dffe66dcbe",
- "kws": {
- "fr": [
- "gaine"
- ]
- }
- },
- {
- "nm": "poche à douille",
- "id": "9b864d8137db4078cc89aeae3b9047a8f1bcf74ccfb052d382163082733ef910",
- "kws": {
- "fr": [
- "poche à douille"
- ]
- }
- },
- {
- "nm": "rêver",
- "id": "f25ec71bf506d0d91ad7ff9c573ea162371ce3b6136483fb97af033c78c25b10",
- "kws": {
- "fr": [
- "rêver"
- ]
- }
- },
- {
- "nm": "pétrir",
- "id": "d9371ce9fa03a7fb64cabc9ddbac65aebc1120a1a6162eb8d3832bb416318108",
- "kws": {
- "fr": [
- "pétrir"
- ]
- }
- },
- {
- "nm": "compléments",
- "id": "f6b55442fb5ee65e134a23007617bd450f10388c4ac000ff4bb46872dc220799",
- "kws": {
- "fr": [
- "compléments"
- ]
- }
- },
- {
- "nm": "gradins",
- "id": "a0cea5dc7cd0b056a3a8502a7b65da652a8d9a925a09b3d46efd5611881c49ef",
- "kws": {
- "fr": [
- "gradins"
- ]
- }
- },
- {
- "nm": "famille",
- "id": "215521174dcfc6117480c799413c633e3d5cb8ddbb8bb4cbab17304a4530d378",
- "kws": {
- "fr": [
- "famille"
- ]
- }
- },
- {
- "nm": "monter le lit",
- "id": "d23a72648e3b7c7423c6f6d9672221fef25f48dc9a832c80d5161ad134deb3ce",
- "kws": {
- "fr": [
- "monter le lit"
- ]
- }
- },
- {
- "nm": "brouillard",
- "id": "cadba5a6dfe2f12e39ac50b68f21f70713e0b9fb4373652f6e45078a7974a099",
- "kws": {
- "fr": [
- "brouillard"
- ]
- }
- },
- {
- "nm": "maturité",
- "id": "0c18e778d43c687bb082fd10dd1f7359f9df3650a3c48a6d87fa3edeb99b1a93",
- "kws": {
- "fr": [
- "maturité"
- ]
- }
- },
- {
- "nm": "allumette",
- "id": "ac7ad121c760ef88c98094334c2d4236f545b75aedef2228b11d1897fefe6a7b",
- "kws": {
- "fr": [
- "allumette"
- ]
- }
- },
- {
- "nm": "cousine",
- "id": "9d7b1808bfd27beafcf5bb88ddcd1b68c92bc29e27b9424f19fff373b12a2218",
- "kws": {
- "fr": [
- "cousine"
- ]
- }
- },
- {
- "nm": "atelier de menuiserie",
- "id": "3382e1850dd4038bad51a9a5a69ccf4199ac8ce0cd7ad9274c9a1d88f28664ad",
- "kws": {
- "fr": [
- "atelier de menuiserie",
- "atelier"
- ]
- }
- },
- {
- "nm": "compléments",
- "id": "d19d8ca5e1afd965ac9c3af81d0376b4d1d067171dd43ab8ee0bff49e32e674d",
- "kws": {
- "fr": [
- "compléments"
- ]
- }
- },
- {
- "nm": "poil de bête",
- "id": "f70bd3cb71c4544b125e1be748bddb5c96331ecf0aa5895718c380788b10ae47",
- "kws": {
- "fr": [
- "poil de bête",
- "poil"
- ]
- }
- },
- {
- "nm": "table de cuisine",
- "id": "b7555be250e2ed1b0afdc9b521d55e4d7d485a764b693bdf4103f480a4d3b0dc",
- "kws": {
- "fr": [
- "table de cuisine",
- "table"
- ]
- }
- },
- {
- "nm": "héritage",
- "id": "d61dba3c3936cfed0761c8b50a73cae4418d6bf444188714b26f00a8566727e0",
- "kws": {
- "fr": [
- "héritage",
- "hériter"
- ]
- }
- },
- {
- "nm": "végétarienne",
- "id": "7a117ae5bf4ee4be4261fef790054f7627bea22aded088182b5668b4c15beff1",
- "kws": {
- "fr": [
- "végétarienne"
- ]
- }
- },
- {
- "nm": "tranche de saumon",
- "id": "933fda3da73e5455fa9d999df600e78bdfbb6b9eda7177602dbc160b7376e383",
- "kws": {
- "fr": [
- "tranche de saumon",
- "saumon"
- ]
- }
- },
- {
- "nm": "tour",
- "id": "7051cc855e54e0dfb9d199e7f84795faa083bd3e8b1d987d5d8da326ecab2c35",
- "kws": {
- "fr": [
- "tour",
- "prendre son tour"
- ]
- }
- },
- {
- "nm": "horaire",
- "id": "6a59f79d434a568254febaa4ee310fb6c70ebdafb516a12179f9d4119ea9f2d7",
- "kws": {
- "fr": [
- "horaire"
- ]
- }
- },
- {
- "nm": "faire l\u0027amour",
- "id": "ffc863c4035076627cb916c914b7ce9ca0e5330a4d60e5ce46e442e9a53e3526",
- "kws": {
- "fr": [
- "faire l\u0027amour",
- "coït",
- "baiser",
- "relation sexuelle"
- ]
- }
- },
- {
- "nm": "bonnet de bain",
- "id": "14a686f5ca869591a445eff29fee2c69f4874753c3b3013f9d80cc4e41473c37",
- "kws": {
- "fr": [
- "bonnet de bain",
- "bonnet"
- ]
- }
- },
- {
- "nm": "mois",
- "id": "7375866469104cb89ab1b1aeb2da577d332d449fb00e881741c123e36173d78b",
- "kws": {
- "fr": [
- "mois"
- ]
- }
- },
- {
- "nm": "téléphone portable",
- "id": "87d54f94832099242a68766581f6a587f9bee6edec60c31a263e70b0b8a6a9c6",
- "kws": {
- "fr": [
- "téléphone portable",
- "téléphone",
- "portable"
- ]
- }
- },
- {
- "nm": "pipas",
- "id": "a9af469153576081d5af2f2de3cf67ec380fa52de35c5a2f340838e4dcaa9372",
- "kws": {
- "fr": [
- "pipas"
- ]
- }
- },
- {
- "nm": "atelier d\u0027entretien",
- "id": "44415f56375cbe5abd750ae94c21eb3f56220b26433285e9b7696f981fcae4df",
- "kws": {
- "fr": [
- "atelier d\u0027entretien",
- "signalétique",
- "garage"
- ]
- }
- },
- {
- "nm": "opposition",
- "id": "1934e0a8188cda59f4e619e275ac7902d3778586324ef931c513c6b193e3d8d2",
- "kws": {
- "fr": [
- "opposition"
- ]
- }
- },
- {
- "nm": "débarras",
- "id": "b0144a72c706f99fdc03ca80f6dce5be4503e47e20bf8203dc15c32c22f49117",
- "kws": {
- "fr": [
- "débarras"
- ]
- }
- },
- {
- "nm": "lecture",
- "id": "168a7f73802c6a52e71d20bef5db6167edf9bc6f1285f907e91b298ec710449e",
- "kws": {
- "fr": [
- "lecture",
- "lire"
- ]
- }
- },
- {
- "nm": "dessinateur",
- "id": "55291a68ba68f95cfbf93b77fe006f41c41a9f2c6c968f475ebe88d1cbd3a7a0",
- "kws": {
- "fr": [
- "dessinateur"
- ]
- }
- },
- {
- "nm": "chirurgien",
- "id": "5e77d5c6d8689c32ce6a218b1472d9c39783667350fa423b0b842e0e2db25e1e",
- "kws": {
- "fr": [
- "chirurgien"
- ]
- }
- },
- {
- "nm": "communauté de madrid",
- "id": "48827df63644cc8f547bfec686985066ef7006ca287f5aaf6fbbe416378bc63f",
- "kws": {
- "fr": [
- "communauté de madrid",
- "madrid"
- ]
- }
- },
- {
- "nm": "aides",
- "id": "4502652fe9ce0880f19e728253634f70cb50a6898fe5a39e614ba348e49ea93d",
- "kws": {
- "fr": [
- "aides",
- "lunettes"
- ]
- }
- },
- {
- "nm": "nandou",
- "id": "414ee49864ca63a113519f21c3a762dd33a8c1e9e2532b9a65a1506c366de231",
- "kws": {
- "fr": [
- "nandou"
- ]
- }
- },
- {
- "nm": "laid",
- "id": "795cdf12ab11bded5966425f1b3e96172d6fb714e11722c63f362deaee287da6",
- "kws": {
- "fr": [
- "laid"
- ]
- }
- },
- {
- "nm": "cure-dents",
- "id": "beea4339ddc9c574e49bf8d2379881071a7af179c756e012ec0a2193f5ac311a",
- "kws": {
- "fr": [
- "cure-dents"
- ]
- }
- },
- {
- "nm": "table basse de salon",
- "id": "818e5ff7a4db66e92867f6309bfdfe375c408a1d793b8cf7ba91aefe53b640d2",
- "kws": {
- "fr": [
- "table basse de salon",
- "table"
- ]
- }
- },
- {
- "nm": "expression",
- "id": "bc65921d25e3f85885a99edfac4fdbd3fa88a501c7a111bb69141b21fd7df9a2",
- "kws": {
- "fr": [
- "expression",
- "content",
- "heureux",
- "joie",
- "joyeux",
- "réjouir"
- ]
- }
- },
- {
- "nm": "blouson",
- "id": "7c0ea27ef975200280697976ecffaeec4b238885dfa9012b60e0b0223b7c8516",
- "kws": {
- "fr": [
- "blouson"
- ]
- }
- },
- {
- "nm": "amusant",
- "id": "ca76bd193155e6a37311f619b649316e44af1c951dd2ecfb2a7784979eca194e",
- "kws": {
- "fr": [
- "amusant"
- ]
- }
- },
- {
- "nm": "mouche",
- "id": "0407b42c1b2a94f61289d1dacce6bebfc806a866692d13b31d3f2098f701e8e8",
- "kws": {
- "fr": [
- "mouche"
- ]
- }
- },
- {
- "nm": "enfer",
- "id": "7627e35d61a2d68a8091974a8a1b2dc6a75b65fd62698f8bf08a8ad0c75c3866",
- "kws": {
- "fr": [
- "enfer"
- ]
- }
- },
- {
- "nm": "z",
- "id": "e12347e7c68640fb179e561c9c370457cf50fb0fd3b0262705ef1185a52fcbf8",
- "kws": {
- "fr": [
- "z",
- "lettre"
- ]
- }
- },
- {
- "nm": "pin",
- "id": "e4c6d55f50a02fe36e8bebfc5407a011165d5dfdb97e7575801e0a4971565562",
- "kws": {
- "fr": [
- "pin"
- ]
- }
- },
- {
- "nm": "se réveiller",
- "id": "1c714c683ed0573013d8e93a382d2f3800b8ddcb1713906a62a3dfc79bd6e2ce",
- "kws": {
- "fr": [
- "se réveiller",
- "réveiller",
- "s\u0027étirer"
- ]
- }
- },
- {
- "nm": "clé à griffe",
- "id": "b6f9a81123f0106190e6e42326875ac6e39e7e87167f7265449d9a929dde967f",
- "kws": {
- "fr": [
- "clé à griffe"
- ]
- }
- },
- {
- "nm": "immeuble",
- "id": "4cf17c1e8285dda85f03ef2939300db91f0eae2a39928460c0fae407501f696a",
- "kws": {
- "fr": [
- "immeuble",
- "adresse",
- "logement",
- "maison"
- ]
- }
- },
- {
- "nm": "hongrie",
- "id": "fed5834f1c33e4153dee20bc733c438f286997c0c39873dcde8f1b7b7aa2ff06",
- "kws": {
- "fr": [
- "hongrie"
- ]
- }
- },
- {
- "nm": "banque",
- "id": "b19b80b0e8c326c237a057060af1c083f973170e0073165a806a8d62bc5aa55f",
- "kws": {
- "fr": [
- "banque"
- ]
- }
- },
- {
- "nm": "sélectionner",
- "id": "738bea90f4459270b62c349ec6e57c5f47a416fdd8c97ffacca0b421c2872260",
- "kws": {
- "fr": [
- "sélectionner",
- "mettre"
- ]
- }
- },
- {
- "nm": "rentrer",
- "id": "21080a48f0137a1bb5ae7f41da9608d196a62d58cec58f5e9ac10c8cb87197a4",
- "kws": {
- "fr": [
- "rentrer"
- ]
- }
- },
- {
- "nm": "étrange",
- "id": "ec901f1053b3b94c5c810cd9d7bc9a022a568cbbe7f1e3f8adbdd4a4227883ca",
- "kws": {
- "fr": [
- "étrange",
- "rare",
- "bizarre"
- ]
- }
- },
- {
- "nm": "auxiliaire",
- "id": "89b80c9be169a0f2110ebd1912023a04f2c6b9244d80e5d505551d698d6339c4",
- "kws": {
- "fr": [
- "auxiliaire",
- "secourir",
- "aider"
- ]
- }
- },
- {
- "nm": "se pencher",
- "id": "2704b327f0a443403bb6151675311dce4cb7e1979658fb5e51a686140ab4b9e8",
- "kws": {
- "fr": [
- "se pencher",
- "apparaître"
- ]
- }
- },
- {
- "nm": "serrer l\u0027écrou",
- "id": "0da8d343991016bf26a135b521becd74a4155590eee6a6888f4e89a69a32a219",
- "kws": {
- "fr": [
- "serrer l\u0027écrou"
- ]
- }
- },
- {
- "nm": "aides à la mobilité",
- "id": "5f7029353a9d80bcb340ca4ee918aed542dd5814555d20fa1139064bca78eaa9",
- "kws": {
- "fr": [
- "aides à la mobilité"
- ]
- }
- },
- {
- "nm": "bisexualité",
- "id": "6104e481afdba0be652a816c7e1c72261295eb154a6cd97847c50d73f0cd7b1e",
- "kws": {
- "fr": [
- "bisexualité",
- "bisexuel"
- ]
- }
- },
- {
- "nm": "compte",
- "id": "bc227d1fce14ffa0b1cda5e2a6b73b4c204f2beee494f8dab3923532b277400b",
- "kws": {
- "fr": [
- "compte",
- "raison",
- "opération",
- "fraction"
- ]
- }
- },
- {
- "nm": "geler",
- "id": "2d8bb83da7b527eb3b6c7e9ee4ae3a53d90d30aadba0d5c93c519f7743dd90ac",
- "kws": {
- "fr": [
- "geler",
- "gelée"
- ]
- }
- },
- {
- "nm": "cafétéria",
- "id": "0a17806e08292156e56067931843b305eb34b4b2030bec7cab95c8aa87b8c449",
- "kws": {
- "fr": [
- "cafétéria"
- ]
- }
- },
- {
- "nm": "cigale",
- "id": "cb1fd8c077c72505d58666faf32f64c877ce4f9863bfa91c6fb1895dbd79280f",
- "kws": {
- "fr": [
- "cigale"
- ]
- }
- },
- {
- "nm": "valoir",
- "id": "d8081109e0d62fa92b362c7cacd1323088251e1f1048ee529476f058d4a9df3c",
- "kws": {
- "fr": [
- "valoir",
- "prix",
- "combien ça coute"
- ]
- }
- },
- {
- "nm": "ustensile de cuisine",
- "id": "ac23918bdc203d138ed670743ff3d12b59940f32618753c7435c65d8aa5f52a1",
- "kws": {
- "fr": [
- "ustensile de cuisine",
- "fourchette"
- ]
- }
- },
- {
- "nm": "minéraux",
- "id": "fca2aaacaabeb9a002bd2f012f8eaf6f9acb42e160e2cbb8dd81225657db0315",
- "kws": {
- "fr": [
- "minéraux"
- ]
- }
- },
- {
- "nm": "oreillettes",
- "id": "91182f0365a0bc2604780c404d552111618a5eb2370c88e07c209b23444d6b1b",
- "kws": {
- "fr": [
- "oreillettes"
- ]
- }
- },
- {
- "nm": "avoir l\u0027habitude",
- "id": "36002413c137df2b36df94cd1ae11f61bcdb641d3cd3e0b8cfa779bcd999f7ae",
- "kws": {
- "fr": [
- "avoir l\u0027habitude",
- "anniversaire"
- ]
- }
- },
- {
- "nm": "poser",
- "id": "d0ffaa105a8982f249ee129bca0d17973e8430c45bcaf74892f910021fd3aebf",
- "kws": {
- "fr": [
- "poser"
- ]
- }
- },
- {
- "nm": "crustacés",
- "id": "fc4f41626a848f0f769c6ec717ba6050adf15251862e1cf0b8c1ad13247a029b",
- "kws": {
- "fr": [
- "crustacés",
- "fruits de mer"
- ]
- }
- },
- {
- "nm": "jacuzzi",
- "id": "f1cc4a3dab207311d311451f57d12f2353a13e2b625d47cc88ba25c16d614ad6",
- "kws": {
- "fr": [
- "jacuzzi"
- ]
- }
- },
- {
- "nm": "petite",
- "id": "1e320df9f7cb1436e23fcc716d92311edb8611adbfc0c53ce41232f9d977dbc6",
- "kws": {
- "fr": [
- "petite",
- "inférieur"
- ]
- }
- },
- {
- "nm": "baies",
- "id": "60aeb72e21630afc2f7d3122b293b37465a9c6ec61b1f9cd1a46a0b4f04c4747",
- "kws": {
- "fr": [
- "baies",
- "mûrs"
- ]
- }
- },
- {
- "nm": "musée",
- "id": "226e819766137a0c63155f9b999408c5d7ab3f24208b7201ac7a9f21f647173b",
- "kws": {
- "fr": [
- "musée"
- ]
- }
- },
- {
- "nm": "allume la télévision",
- "id": "1dc7ddc455afd59f5c11d20a9ff74fe0e7b8974508e7902248e731bfb943329d",
- "kws": {
- "fr": [
- "allume la télévision",
- "allumer la télévision"
- ]
- }
- },
- {
- "nm": "réchauffer",
- "id": "5ece9ff87edbaf6f5c0e7933a1c96515789e7bb5bde5ae694324081c10c73484",
- "kws": {
- "fr": [
- "réchauffer"
- ]
- }
- },
- {
- "nm": "pipi",
- "id": "721e63708de573f2c51a685348b52fe41a3a9f8094d6c9e068a384cf1808f0a6",
- "kws": {
- "fr": [
- "pipi",
- "pisser",
- "faire pipi",
- "uriner"
- ]
- }
- },
- {
- "nm": "vendeur de châtaignes",
- "id": "8d9c18a37b931c7fa6ab019f0a86ea7a89b06f71bb82e03a306a4caa0f4f3a21",
- "kws": {
- "fr": [
- "vendeur de châtaignes",
- "fête de la châtaigne",
- "fête de la châtaigne en galice"
- ]
- }
- },
- {
- "nm": "bambou",
- "id": "02ae56f54307f03aacf9c71f983efd7de1a725d7098f84cb37d6d6a8d24c4dc3",
- "kws": {
- "fr": [
- "bambou"
- ]
- }
- },
- {
- "nm": "rimmel",
- "id": "191efee775ea0aca9972b51cda05e7c002eaac5384b1e65b0abedfe2fac51811",
- "kws": {
- "fr": [
- "rimmel"
- ]
- }
- },
- {
- "nm": "taille",
- "id": "f010e32ccdda59922020428094e1deeb7328e10d66c14329d90358d32e0858b9",
- "kws": {
- "fr": [
- "taille"
- ]
- }
- },
- {
- "nm": "élan",
- "id": "8a9d40347356567ea8d1308354be9f672faf2c597901b8e04412fa6457f718e3",
- "kws": {
- "fr": [
- "élan"
- ]
- }
- },
- {
- "nm": "faire l\u0027amour",
- "id": "d18394dec5d8e075358ba1731a4c115a4a446fe53523f49216b33dd57a5243b2",
- "kws": {
- "fr": [
- "faire l\u0027amour",
- "coït",
- "baiser",
- "relation sexuelle"
- ]
- }
- },
- {
- "nm": "arbre",
- "id": "9a6b45ae7c4b5225bc3363c54b83aee49de02e63c0da9048f24ce00e75dd5baf",
- "kws": {
- "fr": [
- "arbre",
- "sapin de noël"
- ]
- }
- },
- {
- "nm": "vendanger",
- "id": "0727d0ddba6793efe9615438c889b7b463d8b46cfc479e57d86bdaecc948ed60",
- "kws": {
- "fr": [
- "vendanger",
- "récolter"
- ]
- }
- },
- {
- "nm": "arc",
- "id": "061db8bb1ea622ae57b46eefed965eac72eea0807707147c721a6d1a0bf4c3cd",
- "kws": {
- "fr": [
- "arc"
- ]
- }
- },
- {
- "nm": "troisième",
- "id": "794570afdf58e250d4b4e1b0268c8c98c772855a1c9c955ec788912277286472",
- "kws": {
- "fr": [
- "troisième"
- ]
- }
- },
- {
- "nm": "cocotier",
- "id": "21237a0340db50f0fa18d382a1aff8c1519150c5617e24f7065e8ebba79c8298",
- "kws": {
- "fr": [
- "cocotier"
- ]
- }
- },
- {
- "nm": "cabane",
- "id": "b21ea6ce1a5ef3446a71f7bfdfb5a5a1524a35b55d3170fc8021e13bb94cb308",
- "kws": {
- "fr": [
- "cabane"
- ]
- }
- },
- {
- "nm": "pommier",
- "id": "c498c3132589431b5ba2965d4b7197307b2e6e7fe68d10b97fbcfb0dce0f4e6b",
- "kws": {
- "fr": [
- "pommier",
- "arbre fruitier"
- ]
- }
- },
- {
- "nm": "dîner",
- "id": "4cd346ca75da32ad90e166f088f14b655ef1f06aeabe97b0ef3ace5b0a290262",
- "kws": {
- "fr": [
- "dîner"
- ]
- }
- },
- {
- "nm": "musée",
- "id": "3a48fc2964ec3f86361c44ce0922783d43c39fe3d2e5b506ffc4340149086cd7",
- "kws": {
- "fr": [
- "musée"
- ]
- }
- },
- {
- "nm": "fleuve",
- "id": "0d426eaf72d409b6a7711e3785ac28f07822bed12658524d566adf70166482cf",
- "kws": {
- "fr": [
- "fleuve"
- ]
- }
- },
- {
- "nm": "août",
- "id": "94d959b3958b6e2f24bc3d29322e1e5ab6f6167771a11bc6f52aa66740776629",
- "kws": {
- "fr": [
- "août"
- ]
- }
- },
- {
- "nm": "haricots",
- "id": "56e0902e495ed67b0b669c2c83eed3ddf57f62beba5b197e6fb1102e8f263f09",
- "kws": {
- "fr": [
- "haricots",
- "légumes secs"
- ]
- }
- },
- {
- "nm": "théâtre",
- "id": "b36c853729eb4018b584903239eda05ab8a302a25231376605fbbe0e26188fa5",
- "kws": {
- "fr": [
- "théâtre"
- ]
- }
- },
- {
- "nm": "prénom",
- "id": "9760a7eb6d366da959a3cdc24341b1eaf4c8e4139407a1f0a824384807998ac2",
- "kws": {
- "fr": [
- "prénom",
- "comment t\u0027appelles-tu"
- ]
- }
- },
- {
- "nm": "chercher",
- "id": "b8f0f2c878aedfd6771a80b5b6a3179c2015cf0415c64948b811446734eadbe0",
- "kws": {
- "fr": [
- "chercher"
- ]
- }
- },
- {
- "nm": "atelier de bicyclettes",
- "id": "f59331175b97a18d0a8e43173d9f152e01c248c3a4f8f88dc86620cde06abf8e",
- "kws": {
- "fr": [
- "atelier de bicyclettes",
- "garage"
- ]
- }
- },
- {
- "nm": "fleur",
- "id": "424f99c45f81151e8aff6d90b6564a2ea236e2d9a83192f5c386fe0fe369a856",
- "kws": {
- "fr": [
- "fleur"
- ]
- }
- },
- {
- "nm": "boucherie",
- "id": "e1b613e0ce6d93147cc33e51d6d225f836248eb8ec1d11d94e75d9df5bdbe8f6",
- "kws": {
- "fr": [
- "boucherie"
- ]
- }
- },
- {
- "nm": "réanimer",
- "id": "a3c7bfcc7b4b6f07b2495eb86d95b95b0e8fea5503a4f8fae398cd1e167df399",
- "kws": {
- "fr": [
- "réanimer"
- ]
- }
- },
- {
- "nm": "tisser",
- "id": "b8c2deab718a1bffde39a46bbaf07b6e5f838fe0d38982f19b2a073ea4fd009c",
- "kws": {
- "fr": [
- "tisser",
- "tricoter"
- ]
- }
- },
- {
- "nm": "carte",
- "id": "f69ff0e1dde26340bd86aee726b5a37471328f5c37850d72aa4029a6f56ea208",
- "kws": {
- "fr": [
- "carte"
- ]
- }
- },
- {
- "nm": "d",
- "id": "253c3e05ba0b3c635783842895e66c54b0bf2c5329c32dcad19d725e9e53aac3",
- "kws": {
- "fr": [
- "d",
- "lettre"
- ]
- }
- },
- {
- "nm": "antarticde",
- "id": "b0457a977ca948ee763e6962685f32204dc54da20ba85d1bf3fbbed4a4852935",
- "kws": {
- "fr": [
- "antarticde"
- ]
- }
- },
- {
- "nm": "christ rédempteur",
- "id": "4e41e8d93472086c85e335fe63e4586bbaede726e250a9ae8ec7e251dbadf4aa",
- "kws": {
- "fr": [
- "christ rédempteur",
- "rio de janeiro"
- ]
- }
- },
- {
- "nm": "entrer",
- "id": "026fc0aa79b3160172de5e2919b938fc17131ce37672667aff9e05138f4b1db0",
- "kws": {
- "fr": [
- "entrer",
- "ajuster"
- ]
- }
- },
- {
- "nm": "corps",
- "id": "6dac676838a29718d9292fade34e09e604e5e67cff58f203cde5c9b1784225c3",
- "kws": {
- "fr": [
- "corps",
- "humain",
- "humaine"
- ]
- }
- },
- {
- "nm": "comprendre",
- "id": "26d653e60f2fee374dfe23f48adc70951004ec271b56c0259f91092a570b2e56",
- "kws": {
- "fr": [
- "comprendre",
- "compréhensible",
- "intelligible"
- ]
- }
- },
- {
- "nm": "tante",
- "id": "645b3de7bf1f40ea8d2a4956e029ebc51f054c896bbe6b6282004e2091a8e990",
- "kws": {
- "fr": [
- "tante"
- ]
- }
- },
- {
- "nm": "pop-corn",
- "id": "2e954b8f1b9296e3023fb41216b4ad9c679b90f46c5f7977c4c081cefd9796cf",
- "kws": {
- "fr": [
- "pop-corn"
- ]
- }
- },
- {
- "nm": "coudre à la machine",
- "id": "52d6de7d404502f87e38cacd5057ae4e6db69262fa41d937ffa792a40c3987b1",
- "kws": {
- "fr": [
- "coudre à la machine",
- "coudre"
- ]
- }
- },
- {
- "nm": "olives vertes",
- "id": "9cd492ad9e133cdafeddbb18b2e556ffa60d348f6dde14a5a68c12b99f4653bd",
- "kws": {
- "fr": [
- "olives vertes",
- "olives"
- ]
- }
- },
- {
- "nm": "anone",
- "id": "c5928c9cf9608875dcde26a1c8e4ba7f1a6b41b48e9950a64be5684092c3689c",
- "kws": {
- "fr": [
- "anone"
- ]
- }
- },
- {
- "nm": "gare",
- "id": "6f9912840c8e0491460e3d73107dd9e199dbcdf5b3b799c1fc5a70fc00c8469e",
- "kws": {
- "fr": [
- "gare"
- ]
- }
- },
- {
- "nm": "lune",
- "id": "377de9d61fc7c6400d3f473022af344a3d4068e02b7e8d4f2b9f16b385b12d9f",
- "kws": {
- "fr": [
- "lune"
- ]
- }
- },
- {
- "nm": "train",
- "id": "18fdfcb2291e21cc2964d6299de3766f3bbc51245fdf208e685c3c2c1d5c2199",
- "kws": {
- "fr": [
- "train"
- ]
- }
- },
- {
- "nm": "vingt",
- "id": "05ec3c36baee8eb47ef66fe9a703933122bcf9439373f2a5568302da741975ac",
- "kws": {
- "fr": [
- "vingt",
- "20"
- ]
- }
- },
- {
- "nm": "baignoire",
- "id": "04048c23bf0ebea1b6ed618b7edbb91d68b6f776d446b376d809c17a365fa1ae",
- "kws": {
- "fr": [
- "baignoire"
- ]
- }
- },
- {
- "nm": "corde à sauter",
- "id": "79de43108dd06028aa10ee5ce78522b109699a225069a0f5bd43862947d3a6a7",
- "kws": {
- "fr": [
- "corde à sauter",
- "sauter à la corde",
- "sauter"
- ]
- }
- },
- {
- "nm": "signe barre (-)",
- "id": "a6ebcde0405f36ce6a78da46ed34dc17bdce6aec7ca0c30541fa4b56aec99692",
- "kws": {
- "fr": [
- "signe barre (-)"
- ]
- }
- },
- {
- "nm": "faux",
- "id": "24ee034c3a3a96d918dca3ec468f72aecd816e58c95ea96323863b8414038a5e",
- "kws": {
- "fr": [
- "faux",
- "mensonge"
- ]
- }
- },
- {
- "nm": "hirondelle",
- "id": "0a65415c3facf5584e46dfd320c403c133f60c2b95dcf6cd112bef2c14054688",
- "kws": {
- "fr": [
- "hirondelle"
- ]
- }
- },
- {
- "nm": "fort",
- "id": "90bd3fa91ee0e2886b4f9fb5755784c75f86e27bb8137157e0fa00bf1391c4d0",
- "kws": {
- "fr": [
- "fort",
- "robuste"
- ]
- }
- },
- {
- "nm": "cinq",
- "id": "c7b34cf20d432bc967d6453cbc8b89ae411a2a45f6eeb0d602ceca8236a27aec",
- "kws": {
- "fr": [
- "cinq",
- "impair",
- "numéro",
- "5"
- ]
- }
- },
- {
- "nm": "augmenter la puissance",
- "id": "1a1d4dbe505e1c484123158535ea12a932abb6468249d907ce4650a5bc3e3f56",
- "kws": {
- "fr": [
- "augmenter la puissance",
- "monter le volume",
- "forte"
- ]
- }
- },
- {
- "nm": "université",
- "id": "6df69753819d3e81e298901274746f89b89793a2a2ab5b399a6a6bef5b8546e4",
- "kws": {
- "fr": [
- "université"
- ]
- }
- },
- {
- "nm": "surpris",
- "id": "c478f6f0fd353694442f81bf99c88a1e7ab546b66323c8cb17383644cbeed2cd",
- "kws": {
- "fr": [
- "surpris"
- ]
- }
- },
- {
- "nm": "accessibilité",
- "id": "1af1188251d0bf7fee1d3990ad57ef3f443015a3c68a9c55503ad1e56b3aaddc",
- "kws": {
- "fr": [
- "accessibilité"
- ]
- }
- },
- {
- "nm": "magasin de meubles",
- "id": "4447d491d237e3c9d0e9e3d17af3674b6cfe114009053571312bff9b00ffa6bb",
- "kws": {
- "fr": [
- "magasin de meubles"
- ]
- }
- },
- {
- "nm": "perdre",
- "id": "0d25f3a982f82f6913238b1a735d7369d42336534bc9d4cb1101a69bbd7d2d73",
- "kws": {
- "fr": [
- "perdre"
- ]
- }
- },
- {
- "nm": "praxie",
- "id": "ec251ef500887acd3be26de7e93e50810cea298666d5e6a86d840722b8f10d55",
- "kws": {
- "fr": [
- "praxie",
- "orthophonie",
- "gonfler la joue",
- "gonfler"
- ]
- }
- },
- {
- "nm": "bibliothèque adaptée",
- "id": "a418bcfd8ee52bac8fe59cee7a4a541c33a4b5419baedd45cc0ea77836e8c036",
- "kws": {
- "fr": [
- "bibliothèque adaptée",
- "bibliothèque"
- ]
- }
- },
- {
- "nm": "lunettes de ski",
- "id": "3b101693c1d09ccb635cc7b4487301ecc49afcdec91d40ce28e4c2f250e40102",
- "kws": {
- "fr": [
- "lunettes de ski",
- "lunettes"
- ]
- }
- },
- {
- "nm": "incliner",
- "id": "84e7667a0684c29f4592de4eeb1d0946f666790caa4db0eb04a8449297c6a294",
- "kws": {
- "fr": [
- "incliner",
- "s\u0027incliner"
- ]
- }
- },
- {
- "nm": "batteur",
- "id": "a8932b84c1d70d9f9b431938b4c7ab58b5c77e4122e08b1ed1006f68a35c3c6c",
- "kws": {
- "fr": [
- "batteur"
- ]
- }
- },
- {
- "nm": "château",
- "id": "2364a26ec08bfcacac3d5214ce955436e5010664f0267fcfc73903f60bbbffad",
- "kws": {
- "fr": [
- "château"
- ]
- }
- },
- {
- "nm": "amuse-gueule",
- "id": "7b280328b80cd9389d35ab74cc8e1cbb56eeaab35169772262a2ca166ceb1116",
- "kws": {
- "fr": [
- "amuse-gueule"
- ]
- }
- },
- {
- "nm": "trépigner",
- "id": "f93aa4588e63faf10a990b55891457438afad0e10e7258738ddf717c0274cdc8",
- "kws": {
- "fr": [
- "trépigner"
- ]
- }
- },
- {
- "nm": "mamelle",
- "id": "07cc50fd03753de5595bda83b80891799dd7ec93910b683f9f05cb0574ffd718",
- "kws": {
- "fr": [
- "mamelle"
- ]
- }
- },
- {
- "nm": "fil",
- "id": "79204a508d124bb6a5bcfcd1f76ddece58d5d254dea535db9b1e6e1edd5265a0",
- "kws": {
- "fr": [
- "fil"
- ]
- }
- },
- {
- "nm": "carreau",
- "id": "1c54428eabdbc0add78c9331232ad6b0229f0ac943d8face951a7884d562eb27",
- "kws": {
- "fr": [
- "carreau",
- "carrelage"
- ]
- }
- },
- {
- "nm": "bétail",
- "id": "8367953aade2c9cc30db090ae4b535dd57256cd3dbcf2e8cbded34eefcf9c76b",
- "kws": {
- "fr": [
- "bétail"
- ]
- }
- },
- {
- "nm": "épée",
- "id": "c57780990a2830182e630119331e7bbfed2466be51d8d704d596fa659f69efed",
- "kws": {
- "fr": [
- "épée",
- "sabre"
- ]
- }
- },
- {
- "nm": "dvd",
- "id": "482be4f3286ea8a8c6cbded4c0480c6fb967321cf9ffda17236dad5102a237f6",
- "kws": {
- "fr": [
- "dvd"
- ]
- }
- },
- {
- "nm": "orthophoniste",
- "id": "c1e7b92887c3e2e8953b1806deb43dfac30ca92b580a5878a81727f44162014b",
- "kws": {
- "fr": [
- "orthophoniste",
- "logopédie"
- ]
- }
- },
- {
- "nm": "courir main dans la main",
- "id": "6e0b9ba35fb8fec18aad2d04228f761fd1670554cb68076970394a16b5df24e3",
- "kws": {
- "fr": [
- "courir main dans la main"
- ]
- }
- },
- {
- "nm": "bout",
- "id": "80e0f981baacf4c675bbf3c438a2b90bc4306e3d318b9ff20092d5493a234ead",
- "kws": {
- "fr": [
- "bout"
- ]
- }
- },
- {
- "nm": "remonter sa culotte",
- "id": "d00df06605668a6970ab1cc56767abc95fa2e7ebb0c9eae49a17a1882ffa04c7",
- "kws": {
- "fr": [
- "remonter sa culotte",
- "remonter"
- ]
- }
- },
- {
- "nm": "tableau de communication",
- "id": "292056bde2cc5685244cba5951ad9b3617d7bc9770b6e9342e45f5a267d200d9",
- "kws": {
- "fr": [
- "tableau de communication",
- "tableau",
- "produit de soutien"
- ]
- }
- },
- {
- "nm": "poêle",
- "id": "e33bea03f2acab8a17b71c045ce5d8790ca0916dbfeed347eba3038fd447409d",
- "kws": {
- "fr": [
- "poêle"
- ]
- }
- },
- {
- "nm": "pot de lait condensé",
- "id": "4751340e0f8c341902e2b7e00c11e89dde28f21547e6357f71b2e0a7e4f64f2e",
- "kws": {
- "fr": [
- "pot de lait condensé",
- "lait condensé"
- ]
- }
- },
- {
- "nm": "z",
- "id": "ef6b27027d5ecb69a7a234a10767f91573be0cc0c6552bf991030e85cffa1f14",
- "kws": {
- "fr": [
- "z",
- "lettre"
- ]
- }
- },
- {
- "nm": "signer",
- "id": "7c09f2819d5595f5fc16174cbd6094ce2d3452edd6dfaad854f57879cf2bc7e8",
- "kws": {
- "fr": [
- "signer"
- ]
- }
- },
- {
- "nm": "range-couvert",
- "id": "7c5e35f9fb1fc1a7405254eaf78a9e584f7a8f3a408d03f6d1b7f28de3e08492",
- "kws": {
- "fr": [
- "range-couvert"
- ]
- }
- },
- {
- "nm": "banc suédois",
- "id": "7e72db93f88a9d5ad9c4f53783afcaeefc5b33492802bf2acd59d2be7ec16e43",
- "kws": {
- "fr": [
- "banc suédois",
- "banque"
- ]
- }
- },
- {
- "nm": "ping-pong",
- "id": "377f25acc09e2c752e815eebe2dfdae72658ee53279a728d62c48cf2fbe6ef22",
- "kws": {
- "fr": [
- "ping-pong",
- "jouer au ping-pong"
- ]
- }
- },
- {
- "nm": "pharmacienne",
- "id": "a99d6b7d9b978c150f010b96e535504848ca69faee54721c9eca0d79ff4088f6",
- "kws": {
- "fr": [
- "pharmacienne"
- ]
- }
- },
- {
- "nm": "compléments",
- "id": "be0e33f63a92b108a33028de9435881205f4dbe7ccabe2b009cad4d44df2041f",
- "kws": {
- "fr": [
- "compléments"
- ]
- }
- },
- {
- "nm": "gland",
- "id": "a85091f0cfb5b4a98019dba454b80dcf3d5a48de8a0020a81edf5191dbb46661",
- "kws": {
- "fr": [
- "gland"
- ]
- }
- },
- {
- "nm": "gaz",
- "id": "694ed9af0c54cc843d6d18744fc1462950cd7f1bc63286c47236b59744ea6274",
- "kws": {
- "fr": [
- "gaz"
- ]
- }
- },
- {
- "nm": "ouvrir le robinet",
- "id": "ac7dc8042373c307ba812b1ac9c598f0005a8ed81323d4f612345c32508c7381",
- "kws": {
- "fr": [
- "ouvrir le robinet",
- "ouvrir"
- ]
- }
- },
- {
- "nm": "ennuyer de l\u0027",
- "id": "e6c85dd55bb828041a9c1e70418229a721a620d7b69aff6f25b4b39e16f3bf1c",
- "kws": {
- "fr": [
- "ennuyer de l\u0027",
- "regarder la télévision"
- ]
- }
- },
- {
- "nm": "une heure pile",
- "id": "69b659958348e0dc9cd6b8b2e6930bed118b3ad181e3011e6b16479ab0f1c685",
- "kws": {
- "fr": [
- "une heure pile",
- "une huere"
- ]
- }
- },
- {
- "nm": "laisse-moi seul",
- "id": "b3c3fac75ffdf8bf91ff2d6a3ecde850c7c5ff4fd01e5626c6d6ec3e591f88aa",
- "kws": {
- "fr": [
- "laisse-moi seul",
- "laisse-moi tranquille"
- ]
- }
- },
- {
- "nm": "pas",
- "id": "3991d1842b112b4ca1702fc8b8bbe74c6ea02f8c94671e8ae59cc1499956bba0",
- "kws": {
- "fr": [
- "pas",
- "marcher"
- ]
- }
- },
- {
- "nm": "effacer",
- "id": "25ada63ca5a786b02ca425555b9ba7110849d6bf5a13e01c14b24dbec1c49418",
- "kws": {
- "fr": [
- "effacer",
- "tout effacer"
- ]
- }
- },
- {
- "nm": "abus sexuel",
- "id": "3bc26492ef6a9c6b913e99a3a9f98588faceda765834007dc60d08ece6a08697",
- "kws": {
- "fr": [
- "abus sexuel"
- ]
- }
- },
- {
- "nm": "signalétique",
- "id": "f7bf0d3b1b21ae22928ae0395faf97fef73459c928d7bb696e9b64286d804102",
- "kws": {
- "fr": [
- "signalétique",
- "salle de soins",
- "salle"
- ]
- }
- },
- {
- "nm": "guirlande",
- "id": "2381926d85a27d09727e3aebf39a33e0e0412b046198890b2c4ea854a2c4285c",
- "kws": {
- "fr": [
- "guirlande"
- ]
- }
- },
- {
- "nm": "haricot vert",
- "id": "9e5098737bccd95ffae07bdf901cfde06fc580592fda33f14b87a2a1ecb3d5d4",
- "kws": {
- "fr": [
- "haricot vert"
- ]
- }
- },
- {
- "nm": "cerisier",
- "id": "edbcd990068f62ce1969263971126288241b1121fb4ff6980cc866bc3a8fd2a7",
- "kws": {
- "fr": [
- "cerisier",
- "arbre fruitier"
- ]
- }
- },
- {
- "nm": "gymnaste",
- "id": "923e616dd163d02da7c31a71c1b2dff8854b18a591a9c405b8e06f2c5846ad56",
- "kws": {
- "fr": [
- "gymnaste"
- ]
- }
- },
- {
- "nm": "balle de tennis",
- "id": "f0e5621266390228b73fe2308e48000509c4397bb289dedfce917011624faab5",
- "kws": {
- "fr": [
- "balle de tennis"
- ]
- }
- },
- {
- "nm": "plâtrer",
- "id": "ffb07f4ba75bfd95203185aa631090715d5491347d8ce7952561bb0d54a880b2",
- "kws": {
- "fr": [
- "plâtrer"
- ]
- }
- },
- {
- "nm": "porte oscillo-battante",
- "id": "7b97a1d7cc96950deb61909b8a164bb32995aebb3a84cb074c13108e88215c65",
- "kws": {
- "fr": [
- "porte oscillo-battante"
- ]
- }
- },
- {
- "nm": "célébration",
- "id": "cacadc436719398b3a679d4dcfcac5c98b99d0f0efe450d3d6bbf5814bd05575",
- "kws": {
- "fr": [
- "célébration",
- "amusant",
- "amuser",
- "fête"
- ]
- }
- },
- {
- "nm": "douleur de poitrine",
- "id": "bc305da11b7e74dde452336e2aa1ee850f43c8f0e4b273c48660555988f5d8b9",
- "kws": {
- "fr": [
- "douleur de poitrine"
- ]
- }
- },
- {
- "nm": "parfois",
- "id": "ec0b82be1a5798b227feff860df3e266dce8f3e7af590777098af671265fc74f",
- "kws": {
- "fr": [
- "parfois"
- ]
- }
- },
- {
- "nm": "chaussée",
- "id": "45b7a0ffd4a9091b157be977885fbfb2225db9aaae922f577dccb97da273ae8c",
- "kws": {
- "fr": [
- "chaussée",
- "route"
- ]
- }
- },
- {
- "nm": "qu\u0027est-ce que c\u0027est",
- "id": "e0da64ad992f9b44173b576f2959a526fedd00b21c308bdb6b01d3dc35987c35",
- "kws": {
- "fr": [
- "qu\u0027est-ce que c\u0027est",
- "qui c\u0027est",
- "qui est-elle",
- "qui"
- ]
- }
- },
- {
- "nm": "sept",
- "id": "a7ab24b7817eedb39b2db3e859b4211f68bdd56582027fe4f0d446b80cc1c470",
- "kws": {
- "fr": [
- "sept",
- "7 dé",
- "7"
- ]
- }
- },
- {
- "nm": "photocopier",
- "id": "a6f2f550bf3604056b50ab2cc6af46f59b679590d163546b8bc67b8742fcaaca",
- "kws": {
- "fr": [
- "photocopier"
- ]
- }
- },
- {
- "nm": "faire du patin à roulettes",
- "id": "62b3b9df6fbac55428eaec15a02e648fa90e69e83c4f718df09fd5587b63096b",
- "kws": {
- "fr": [
- "faire du patin à roulettes",
- "faire du patin"
- ]
- }
- },
- {
- "nm": "bras articulé",
- "id": "1ee5ff48266d5080e94835fa026c69f66aa4b2e52ed97f2c4ef37c3434f19d52",
- "kws": {
- "fr": [
- "bras articulé"
- ]
- }
- },
- {
- "nm": "ajouter",
- "id": "6f735b6788d1e684aab8a9bd125406eb0e79ee461f2d52362379fb70996d8853",
- "kws": {
- "fr": [
- "ajouter"
- ]
- }
- },
- {
- "nm": "terrain de volley-ball",
- "id": "bb386662b5a3cdc9ff90b510820234957ed132ce386e31e7bfbdf019a92f1ee7",
- "kws": {
- "fr": [
- "terrain de volley-ball"
- ]
- }
- },
- {
- "nm": "belle",
- "id": "afedfae0c329c36a176c635813b9850698cfd507c5698c1be3918682841a1366",
- "kws": {
- "fr": [
- "belle",
- "jolie"
- ]
- }
- },
- {
- "nm": "s\u0027asseoir sur un banc",
- "id": "2383242358575f93ccb7fe31fc0aab9b9e7385076ac07fcfbf7afc15263a11fa",
- "kws": {
- "fr": [
- "s\u0027asseoir sur un banc",
- "s\u0027asseoir",
- "asseoir"
- ]
- }
- },
- {
- "nm": "cadeau",
- "id": "0ce7dcc053465f4b859e7aea34b994b30723cfebc0e6198b8fd25ff0900a3738",
- "kws": {
- "fr": [
- "cadeau"
- ]
- }
- },
- {
- "nm": "bateau",
- "id": "5384d6ad104036499982e3afd44faa47e30215bba36a23c13e67dbffa9a06bdc",
- "kws": {
- "fr": [
- "bateau"
- ]
- }
- },
- {
- "nm": "cloche",
- "id": "6b2c94c8582e81406568f8814e4bcdf9c8dc05131824e0a7b61c92702bf4087a",
- "kws": {
- "fr": [
- "cloche"
- ]
- }
- },
- {
- "nm": "adn",
- "id": "b1339805250139089903299d17cef8c7131a033a7c27e502fefc275a2fe6bdcf",
- "kws": {
- "fr": [
- "adn"
- ]
- }
- },
- {
- "nm": "pilote",
- "id": "16b24329055698fc066ffcc7672f943f2cebd4cbec4f575ec460a77343bf64e9",
- "kws": {
- "fr": [
- "pilote"
- ]
- }
- },
- {
- "nm": "moule",
- "id": "03353e4ca3ff26a61a97eed65b5bc9ba219375940996db64f4ae04a4a26cbc56",
- "kws": {
- "fr": [
- "moule"
- ]
- }
- },
- {
- "nm": "soigner",
- "id": "21c7aaf4df0e855ec31e969ed8c74b64c9c2329335d9d933ae447903197cd43e",
- "kws": {
- "fr": [
- "soigner"
- ]
- }
- },
- {
- "nm": "famille adoptive",
- "id": "a1d10ddaa0ef95ff6f2a662c6758c0f9fe7b17ae6732bd394208f39f1560de77",
- "kws": {
- "fr": [
- "famille adoptive"
- ]
- }
- },
- {
- "nm": "scier",
- "id": "cd16a23ac81628e595f4e4f31e077b333970dc915574b83056c19a6414531226",
- "kws": {
- "fr": [
- "scier"
- ]
- }
- },
- {
- "nm": "viande",
- "id": "35345bc94faa2df23671175d2d518aed81dc424a6c474fe8d7c23a6918f7b016",
- "kws": {
- "fr": [
- "viande",
- "côtelettes"
- ]
- }
- },
- {
- "nm": "moins",
- "id": "71c5dda46818234c12f48db9bb35799f647ac4dbe4802cac63f69d0c2dd2d391",
- "kws": {
- "fr": [
- "moins"
- ]
- }
- },
- {
- "nm": "arrêt",
- "id": "bf552c2c84d45de4770984de2a9f36587658aa154b519e1fca80bb2c17427858",
- "kws": {
- "fr": [
- "arrêt"
- ]
- }
- },
- {
- "nm": "mettre une amende",
- "id": "dddeff46250189a0706f4eb6f7f819bf06caeeec1ddb8a73f57a3dc2174ec9c7",
- "kws": {
- "fr": [
- "mettre une amende"
- ]
- }
- },
- {
- "nm": "la corogne",
- "id": "7253c904edfb1ee1587cfa54068f22b6997cbc2bd9e7f43beed6b6e35ccd8cec",
- "kws": {
- "fr": [
- "la corogne"
- ]
- }
- },
- {
- "nm": "myrtilles",
- "id": "032b5758326ed648592b43920225db3f120e98b5e1cebf69215af8f5fc932c97",
- "kws": {
- "fr": [
- "myrtilles"
- ]
- }
- },
- {
- "nm": "boulette",
- "id": "5c2cdaa427bd0a6a5c08c9e90290b68c4f7aa3dcceb266c59c06a72288c75822",
- "kws": {
- "fr": [
- "boulette"
- ]
- }
- },
- {
- "nm": "petites filles",
- "id": "514c5dca6dfa3f44b50a21f605169573faa2e4a2b06e6acdfdf13b5592bf2502",
- "kws": {
- "fr": [
- "petites filles",
- "filles"
- ]
- }
- },
- {
- "nm": "canif",
- "id": "59dd60b538002b9c17dd6127d61311d7823a3f2a6559edfa2865fcd08b0ba968",
- "kws": {
- "fr": [
- "canif"
- ]
- }
- },
- {
- "nm": "bande dessinée",
- "id": "d64917b026c4eb9068b49ba14493ff52124701ed908c8c30b99f9975d3b23dbe",
- "kws": {
- "fr": [
- "bande dessinée"
- ]
- }
- },
- {
- "nm": "percevoir",
- "id": "73d02a212c71504a348a61ff278dbdc0a440c5169eb97ba6234015a13d9f2977",
- "kws": {
- "fr": [
- "percevoir"
- ]
- }
- },
- {
- "nm": "ennuyer de l\u0027",
- "id": "364ed57024a38b10e16c43d59c9019b401293e419d9eedf68bf85bda741c46f6",
- "kws": {
- "fr": [
- "ennuyer de l\u0027",
- "voir",
- "regarder la télévision"
- ]
- }
- },
- {
- "nm": "post-it",
- "id": "a8a970956042ebf8791525398919b2a16b236bd27e228633580674fee08b2b40",
- "kws": {
- "fr": [
- "post-it"
- ]
- }
- },
- {
- "nm": "framboises",
- "id": "b97d04f90d427d72db8eee043879be6368d2ee87ead872590dc5b9e3267a959b",
- "kws": {
- "fr": [
- "framboises"
- ]
- }
- },
- {
- "nm": "fichier",
- "id": "58b87f3d2d38794669ee6ec66a8b35ac2cd57e5447df964dfcc72f6ebe7fcdd3",
- "kws": {
- "fr": [
- "fichier"
- ]
- }
- },
- {
- "nm": "épingle de nourrice",
- "id": "56e0a4a69dd438db5e171b6f04dabfed99f1f4dbc86b9b5c4928cc0022bc7dff",
- "kws": {
- "fr": [
- "épingle de nourrice"
- ]
- }
- },
- {
- "nm": "pamplemousse",
- "id": "3c650b6ecbb0537469603716f2574ee1c4e81b671205707ae37cd336bb91b66f",
- "kws": {
- "fr": [
- "pamplemousse",
- "pomelo"
- ]
- }
- },
- {
- "nm": "incuber",
- "id": "38421a2cda4e03d2622bd343b8fe893366feac778452b7d4cd2aa27a4e69d362",
- "kws": {
- "fr": [
- "incuber"
- ]
- }
- },
- {
- "nm": "beau",
- "id": "3f6cd1090f10b2bc2e97a23aaf405281775405cbb1b4ee596d45a2118b2256eb",
- "kws": {
- "fr": [
- "beau"
- ]
- }
- },
- {
- "nm": "supplier",
- "id": "448a41650ab5b5de341aa2b19844050172d186c2a4fc390e3ec0d74b6bc4f1ee",
- "kws": {
- "fr": [
- "supplier",
- "s\u0027il vous plaît"
- ]
- }
- },
- {
- "nm": "caisse enregistreuse",
- "id": "4561862a5c05911a3e3808b41d65e715433dad95708b0feaf98b03429e01fbdd",
- "kws": {
- "fr": [
- "caisse enregistreuse",
- "caisse",
- "coffre"
- ]
- }
- },
- {
- "nm": "étirer",
- "id": "ea0d27a3dc3fa516ca6bc392b57aab627507f75eaba0acea347da1adb7e215b8",
- "kws": {
- "fr": [
- "étirer",
- "attaquer",
- "jeter",
- "maltraiter"
- ]
- }
- },
- {
- "nm": "tennis",
- "id": "3fecb9dd6a800ec8ac3017073913b7cc257d9dd53033fe0b49ea12d171b0c2db",
- "kws": {
- "fr": [
- "tennis",
- "jouer au tennis"
- ]
- }
- },
- {
- "nm": "teide",
- "id": "0da25c2f40c6e671a8d21ded2fea28c0f0e48d6e979535ea38f2bae49e9389bf",
- "kws": {
- "fr": [
- "teide"
- ]
- }
- },
- {
- "nm": "autres",
- "id": "c1807e3ee0a18bede9b7819b22490cf467eb373f893ad5363c3643f11cfb3c3f",
- "kws": {
- "fr": [
- "autres"
- ]
- }
- },
- {
- "nm": "épi de maïs",
- "id": "28f1ef467743bd15b959f259aa1c4a6fb8ab7ce41bf54531627c3e8043b0dd6e",
- "kws": {
- "fr": [
- "épi de maïs",
- "épi",
- "maïs"
- ]
- }
- },
- {
- "nm": "surveillant pénitencier",
- "id": "54012942757dc7fa4d487be88f04ac021a6bc6351c4cb9df0a52b7d277e956e4",
- "kws": {
- "fr": [
- "surveillant pénitencier",
- "agent de sécurité",
- "garde"
- ]
- }
- },
- {
- "nm": "polir",
- "id": "c24cffb8909466def47348a41318b17904b42204ea398507ef5033a49749108d",
- "kws": {
- "fr": [
- "polir"
- ]
- }
- },
- {
- "nm": "shaker",
- "id": "c223eb61a525e811f9b9266afa5896bd289091d25918cbd7d771387a6a639d6e",
- "kws": {
- "fr": [
- "shaker"
- ]
- }
- },
- {
- "nm": "crise",
- "id": "f07da9bf4955bad86acef13020c2b0b77fefba8464d85de88dc2056b63cba2aa",
- "kws": {
- "fr": [
- "crise",
- "infarctus"
- ]
- }
- },
- {
- "nm": "gorge",
- "id": "b03d8a51ec564c8bc298d7c0ad1f89a9b61ecf23797e66cdf34a638afe3d4a8a",
- "kws": {
- "fr": [
- "gorge"
- ]
- }
- },
- {
- "nm": "mouvement",
- "id": "a7f0678703a2d6b4c5d52f2925c8fed268e235e93bcb94ad91a93debbb3636ec",
- "kws": {
- "fr": [
- "mouvement"
- ]
- }
- },
- {
- "nm": "gâteau",
- "id": "0048145d25caf1cf302c7d35b304b4de5182b0bae2cc3806f4761f9eed959295",
- "kws": {
- "fr": [
- "gâteau"
- ]
- }
- },
- {
- "nm": "vagin",
- "id": "d322328c6b7862fd073a6d89466044002b3bc3d491e1011af8e42e2ab01d8c22",
- "kws": {
- "fr": [
- "vagin",
- "vulve"
- ]
- }
- },
- {
- "nm": "suivant",
- "id": "894cfdd0fa22d87a3e70d936973a0171e2e02980bfac4fc92e5d3070474820c2",
- "kws": {
- "fr": [
- "suivant"
- ]
- }
- },
- {
- "nm": "fénéante",
- "id": "6d71b99fe10b3602a0253edca9875597e138e9321c5477524f97a3aa2a247dd1",
- "kws": {
- "fr": [
- "fénéante"
- ]
- }
- },
- {
- "nm": "entrée",
- "id": "449bab26bd9a4d94fd3e05c336bd5905b96d740ed0e2ff7f329ca28985207a13",
- "kws": {
- "fr": [
- "entrée"
- ]
- }
- },
- {
- "nm": "technicien d\u0027activités sportives",
- "id": "e50a38250a753a481d6e2bf33028c502f1dd12197e40fcfc0502924a93e59235",
- "kws": {
- "fr": [
- "technicien d\u0027activités sportives"
- ]
- }
- },
- {
- "nm": "insecte",
- "id": "943a4e170cdac3ecbe2d54e6828b3a4e0b0be3e1f5f5fe73fa699c8ec757421e",
- "kws": {
- "fr": [
- "insecte",
- "insectes"
- ]
- }
- },
- {
- "nm": "dessins animés",
- "id": "15f3156723a10382459ca20805027b75d81dcf585be97ab1133ce79dccc4fa7d",
- "kws": {
- "fr": [
- "dessins animés"
- ]
- }
- },
- {
- "nm": "cinéma",
- "id": "43ae43f7e97798b6dc767294826ebcb76481f0bd3c17f6ae974537a2c1160509",
- "kws": {
- "fr": [
- "cinéma",
- "représentation"
- ]
- }
- },
- {
- "nm": "bulgarie",
- "id": "4bfa607ea4940adb92e3c39a1480a842689690882e0aae044793292ef729dfa4",
- "kws": {
- "fr": [
- "bulgarie"
- ]
- }
- },
- {
- "nm": "écran tactile",
- "id": "1edaa95ccebc3cf93a620257174f58930668de52653282b6cbf1b0ddcbdbfabd",
- "kws": {
- "fr": [
- "écran tactile"
- ]
- }
- },
- {
- "nm": "fourneau à gaz",
- "id": "c59c60b6f63da1d5aed0f5c6d1914146dd02cbe39ad92ded093576e5c6812355",
- "kws": {
- "fr": [
- "fourneau à gaz",
- "réchaud"
- ]
- }
- },
- {
- "nm": "classeur",
- "id": "b92ef16a8435c74146d2fea307e9da03791d610987b17ccdfcc3236cf439068f",
- "kws": {
- "fr": [
- "classeur"
- ]
- }
- },
- {
- "nm": "ski nautique",
- "id": "73d85283e00e86072da56bde2c983f246d236385b6eff32ccc85ec7252645805",
- "kws": {
- "fr": [
- "ski nautique",
- "skieur"
- ]
- }
- },
- {
- "nm": "quatrième position",
- "id": "1ee4270c49eb7191bd9d452816a7d20aa6478119240aa31d2313b93d7d0d10e0",
- "kws": {
- "fr": [
- "quatrième position",
- "quatrième"
- ]
- }
- },
- {
- "nm": "albacete",
- "id": "a80afc3aa52f9a29992fc040e7bbe1f8bbd374ede206a1949b82fc3ff4427f39",
- "kws": {
- "fr": [
- "albacete"
- ]
- }
- },
- {
- "nm": "toilettes",
- "id": "a3ad37089f37b7876211b678e7a3c760c7af16108ecdb6e5c1ed8b46455663ba",
- "kws": {
- "fr": [
- "toilettes",
- "wc",
- "salle de bains"
- ]
- }
- }
- ]
-}
\ No newline at end of file
+[
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "elderly",
+ "family"
+ ],
+ "synsets": [
+ "10161911-n"
+ ],
+ "tags": [
+ "person",
+ "elderly",
+ "family"
+ ],
+ "_id": 2244,
+ "created": "2007-12-12T09:57:36.000Z",
+ "lastUpdated": "2021-02-10T11:11:13.889Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grand-père",
+ "hasLocution": true,
+ "plural": "grands-pères"
+ },
+ {
+ "type": 2,
+ "keyword": "papi",
+ "hasLocution": false,
+ "plural": "papis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01348155-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 2245,
+ "created": "2007-12-12T09:58:31.000Z",
+ "lastUpdated": "2021-07-29T00:09:37.940Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ennuyeux",
+ "hasLocution": true,
+ "plural": "ennuyeux"
+ },
+ {
+ "keyword": "monotone",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "monotones"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "elderly",
+ "family"
+ ],
+ "synsets": [
+ "10162267-n"
+ ],
+ "tags": [
+ "person",
+ "elderly",
+ "family"
+ ],
+ "_id": 2243,
+ "created": "2007-12-12T09:56:39.000Z",
+ "lastUpdated": "2021-03-25T22:04:11.204Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grand-mère",
+ "hasLocution": true,
+ "plural": "grands-mères"
+ },
+ {
+ "type": 2,
+ "keyword": "mamie",
+ "hasLocution": false,
+ "plural": "mamies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "condiment",
+ "cookery",
+ "core vocabulary-feeding",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07690253-n",
+ "07689142-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment",
+ "cookery",
+ "core vocabulary",
+ "gastronomy"
+ ],
+ "_id": 2246,
+ "created": "2007-12-12T10:02:25.000Z",
+ "lastUpdated": "2024-12-09T06:13:24.992Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "huile d'olive",
+ "hasLocution": true,
+ "plural": "huiles d'olive"
+ },
+ {
+ "keyword": "huile",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "huiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "04222469-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 2247,
+ "created": "2007-12-12T10:04:45.000Z",
+ "lastUpdated": "2021-04-12T17:34:38.274Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trottoir",
+ "hasLocution": true,
+ "plural": "trottoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "core vocabulary-object",
+ "fashion"
+ ],
+ "synsets": [
+ "03061006-n",
+ "03461607-n",
+ "04195013-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 2242,
+ "created": "2007-12-12T09:33:40.000Z",
+ "lastUpdated": "2024-12-09T06:11:43.097Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "manteau",
+ "hasLocution": true,
+ "plural": "manteaux"
+ },
+ {
+ "keyword": "pardessus",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pardessus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "04125115-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 2249,
+ "created": "2007-12-12T10:11:40.000Z",
+ "lastUpdated": "2021-03-25T22:06:12.054Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tapis",
+ "hasLocution": true,
+ "plural": "tapis"
+ },
+ {
+ "keyword": "carpette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "carpettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "mineral rich food"
+ ],
+ "synsets": [
+ "07951744-n",
+ "14869913-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "mineral rich food"
+ ],
+ "_id": 2248,
+ "created": "2007-12-12T10:05:23.000Z",
+ "lastUpdated": "2021-03-25T22:05:25.805Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "eau",
+ "hasLocution": true,
+ "plural": "eaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "jewelry",
+ "accessories"
+ ],
+ "synsets": [
+ "04099721-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "jewelry",
+ "accessories"
+ ],
+ "_id": 2252,
+ "created": "2007-12-12T10:26:14.000Z",
+ "lastUpdated": "2021-02-10T11:09:14.887Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bague",
+ "hasLocution": true,
+ "plural": "bagues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media device",
+ "building facility"
+ ],
+ "synsets": [
+ "03212026-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 2253,
+ "created": "2007-12-12T10:27:32.000Z",
+ "lastUpdated": "2024-12-04T15:12:43.725Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "antenne",
+ "hasLocution": true,
+ "plural": "antennes"
+ },
+ {
+ "type": 2,
+ "keyword": "parabole",
+ "hasLocution": false,
+ "plural": "paraboles"
+ },
+ {
+ "keyword": "antenne parabolique",
+ "hasLocution": true,
+ "plural": "antennes paraboliques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03944520-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 2250,
+ "created": "2007-12-12T10:12:18.000Z",
+ "lastUpdated": "2021-03-25T22:06:44.042Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oreiller",
+ "hasLocution": true,
+ "plural": "oreillers"
+ },
+ {
+ "keyword": "coussin",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "coussins"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "arachnid",
+ "oviparous",
+ "terrestrial animal",
+ "carnivorous",
+ "halloween",
+ "wild animal",
+ "core vocabulary-living being",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "01774863-n"
+ ],
+ "tags": [
+ "animal",
+ "invertebrate",
+ "arthropod",
+ "arachnid",
+ "oviparous",
+ "terrestrial animal",
+ "carnivorous",
+ "event",
+ "popular event",
+ "halloween",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 2254,
+ "created": "2007-12-12T10:28:23.000Z",
+ "lastUpdated": "2021-03-11T10:52:25.695Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "araignée",
+ "hasLocution": true,
+ "plural": "araignées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "playground"
+ ],
+ "synsets": [
+ "13124818-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground"
+ ],
+ "_id": 2256,
+ "created": "2007-12-12T10:29:21.000Z",
+ "lastUpdated": "2021-02-06T23:00:58.396Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arbre",
+ "hasLocution": true,
+ "plural": "arbres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "covid-19"
+ ],
+ "synsets": [
+ "02703861-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "covid-19"
+ ],
+ "_id": 2251,
+ "created": "2007-12-12T10:22:20.000Z",
+ "lastUpdated": "2021-02-06T22:58:25.496Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ambulance",
+ "hasLocution": true,
+ "plural": "ambulances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "10132360-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 2255,
+ "created": "2007-12-12T10:28:51.000Z",
+ "lastUpdated": "2021-03-25T22:08:53.030Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amis",
+ "hasLocution": true,
+ "plural": "amis"
+ },
+ {
+ "keyword": "copains",
+ "hasLocution": false,
+ "plural": "copains",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal"
+ ],
+ "synsets": [
+ "02357879-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal"
+ ],
+ "_id": 2257,
+ "created": "2007-12-12T10:29:41.000Z",
+ "lastUpdated": "2021-02-06T23:01:11.035Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écureuil",
+ "hasLocution": true,
+ "plural": "écureuils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07820299-n",
+ "07820633-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 2259,
+ "created": "2007-12-12T10:51:48.000Z",
+ "lastUpdated": "2021-03-25T22:10:46.123Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "riz à la sauce tomate",
+ "hasLocution": false,
+ "plural": "riz à la sauce tomate"
+ },
+ {
+ "keyword": "riz à la tomate",
+ "hasLocution": false,
+ "plural": "riz à la tomate",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04557470-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "core vocabulary"
+ ],
+ "_id": 2258,
+ "created": "2007-12-12T10:49:58.000Z",
+ "lastUpdated": "2021-03-25T22:09:58.508Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "armoire",
+ "hasLocution": true,
+ "plural": "armoires"
+ },
+ {
+ "keyword": "placard",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "placards"
+ },
+ {
+ "keyword": "penderie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "penderies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "02927500-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "core vocabulary"
+ ],
+ "_id": 2262,
+ "created": "2007-12-12T10:57:00.000Z",
+ "lastUpdated": "2021-02-10T11:10:52.165Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "autocar",
+ "hasLocution": false,
+ "plural": "autocars"
+ },
+ {
+ "keyword": "car",
+ "type": 2,
+ "plural": "cars",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "02927500-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 2263,
+ "created": "2007-12-12T10:58:30.000Z",
+ "lastUpdated": "2021-02-10T11:10:48.160Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "autobus",
+ "hasLocution": true,
+ "plural": "autobus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction",
+ "residential building",
+ "core vocabulary-place",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "03286056-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 2260,
+ "created": "2007-12-12T10:53:06.000Z",
+ "lastUpdated": "2021-03-25T22:12:52.578Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ascenseur",
+ "hasLocution": true,
+ "plural": "ascenseurs"
+ },
+ {
+ "keyword": "monte-charge",
+ "hasLocution": false,
+ "plural": "monte-charges",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00080219-s",
+ "00080947-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 2261,
+ "created": "2007-12-12T10:56:29.000Z",
+ "lastUpdated": "2021-03-13T20:58:10.887Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "effrayé",
+ "hasLocution": true
+ },
+ {
+ "keyword": "apeuré",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "02694015-n",
+ "02689427-n",
+ "02693232-n",
+ "03601053-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport",
+ "core vocabulary"
+ ],
+ "_id": 2264,
+ "created": "2007-12-12T11:01:49.000Z",
+ "lastUpdated": "2021-02-06T23:02:38.381Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "avion",
+ "hasLocution": true,
+ "plural": "avions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04357659-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 2265,
+ "created": "2007-12-12T11:02:22.000Z",
+ "lastUpdated": "2021-02-10T11:11:00.212Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sucrier",
+ "hasLocution": true,
+ "plural": "sucriers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "02837500-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 2267,
+ "created": "2007-12-12T11:03:19.000Z",
+ "lastUpdated": "2021-02-23T09:26:56.217Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bavoir",
+ "hasLocution": true,
+ "plural": "bavoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "04357659-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 2266,
+ "created": "2007-12-12T11:02:44.000Z",
+ "lastUpdated": "2021-03-02T13:43:48.961Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sucrier",
+ "hasLocution": true,
+ "plural": "sucriers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mammal",
+ "viviparous",
+ "marine animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02065397-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 2268,
+ "created": "2007-12-12T11:05:38.000Z",
+ "lastUpdated": "2021-02-10T11:30:35.002Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "baleine",
+ "hasLocution": true,
+ "plural": "baleines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "football"
+ ],
+ "synsets": [
+ "04261790-n",
+ "02781674-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "football"
+ ],
+ "_id": 2269,
+ "created": "2007-12-12T11:06:44.000Z",
+ "lastUpdated": "2021-02-10T11:30:57.320Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ballon",
+ "hasLocution": true,
+ "plural": "ballons"
+ },
+ {
+ "keyword": "ballon de foot",
+ "hasLocution": false,
+ "plural": "ballons de foot",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "residential building"
+ ],
+ "synsets": [
+ "02811600-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "home"
+ ],
+ "_id": 2272,
+ "created": "2007-12-12T11:20:48.000Z",
+ "lastUpdated": "2021-01-31T18:40:02.684Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "baignoire",
+ "hasLocution": true,
+ "plural": "baignoires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "building facility"
+ ],
+ "synsets": [
+ "00035596-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 2271,
+ "created": "2007-12-12T11:20:13.000Z",
+ "lastUpdated": "2024-12-05T12:12:09.403Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se baigner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prendre un bain",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "baigner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "04165868-n",
+ "02861626-n",
+ "03678353-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 2273,
+ "created": "2007-12-12T11:23:01.000Z",
+ "lastUpdated": "2021-03-23T21:32:20.210Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bateau",
+ "hasLocution": true,
+ "plural": "bateaux"
+ },
+ {
+ "keyword": "paquebot",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paquebots"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "03780732-n",
+ "03277851-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 2274,
+ "created": "2007-12-12T11:26:39.000Z",
+ "lastUpdated": "2021-08-04T08:29:52.727Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "batteur",
+ "hasLocution": true,
+ "plural": "batteurs "
+ },
+ {
+ "keyword": "mixeur ",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mixeurs"
+ },
+ {
+ "keyword": "mixeur plongeant ",
+ "hasLocution": false,
+ "plural": "mixeurs plongeants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baby",
+ "childcare"
+ ],
+ "synsets": [
+ "09846929-n"
+ ],
+ "tags": [
+ "person",
+ "baby",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 2275,
+ "created": "2007-12-12T11:27:06.000Z",
+ "lastUpdated": "2024-10-19T10:32:25.179Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bébé",
+ "hasLocution": true,
+ "plural": "bébés"
+ },
+ {
+ "keyword": "nourisson",
+ "plural": "nourissons",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "swimming",
+ "sportswear",
+ "swimming pool",
+ "beach",
+ "core vocabulary-object",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "04378650-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "leisure",
+ "sport",
+ "swimming",
+ "sportswear",
+ "clothing",
+ "outdoor activity",
+ "swimming pool",
+ "beach",
+ "core vocabulary"
+ ],
+ "_id": 2270,
+ "created": "2007-12-12T11:12:34.000Z",
+ "lastUpdated": "2021-08-04T08:29:36.090Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maillot de bain",
+ "hasLocution": true,
+ "plural": "maillots de bain"
+ },
+ {
+ "keyword": "maillot une pièce",
+ "hasLocution": false,
+ "plural": "maillots une pièce",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "02837983-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 2277,
+ "created": "2007-12-12T11:27:55.000Z",
+ "lastUpdated": "2021-08-04T08:30:12.366Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vélo",
+ "hasLocution": true,
+ "plural": "vélos"
+ },
+ {
+ "keyword": "bicyclette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "bicyclettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage",
+ "basic needs"
+ ],
+ "synsets": [
+ "01172332-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage",
+ "person",
+ "basic needs"
+ ],
+ "_id": 2276,
+ "created": "2007-12-12T11:27:31.000Z",
+ "lastUpdated": "2021-03-02T13:43:29.220Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Absorber, ingérer un liquide",
+ "keyword": "boire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "02858206-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 2280,
+ "created": "2007-12-12T12:34:29.000Z",
+ "lastUpdated": "2021-03-14T15:11:23.442Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blouse",
+ "hasLocution": true,
+ "plural": "blouses"
+ },
+ {
+ "keyword": "corsage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "corsages"
+ },
+ {
+ "keyword": "chemisier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chemisiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07711710-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "core vocabulary"
+ ],
+ "_id": 2281,
+ "created": "2007-12-12T12:37:21.000Z",
+ "lastUpdated": "2021-03-09T16:09:10.170Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sandwich",
+ "hasLocution": true,
+ "plural": "sandwichs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "swimming",
+ "swimming pool",
+ "beach"
+ ],
+ "synsets": [
+ "02841003-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool",
+ "beach"
+ ],
+ "_id": 2279,
+ "created": "2007-12-12T11:28:46.000Z",
+ "lastUpdated": "2021-03-13T20:56:14.679Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bikini",
+ "hasLocution": true,
+ "plural": "bikinis"
+ },
+ {
+ "keyword": "maillot de bain 2 pièces",
+ "hasLocution": false,
+ "plural": "maillots bain 2 pièces",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "residential building"
+ ],
+ "synsets": [
+ "02839379-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "home"
+ ],
+ "_id": 2278,
+ "created": "2007-12-12T11:28:19.000Z",
+ "lastUpdated": "2021-03-02T13:42:57.445Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bidet",
+ "hasLocution": true,
+ "plural": "bidets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "02786184-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 2282,
+ "created": "2007-12-12T12:40:06.000Z",
+ "lastUpdated": "2021-03-13T14:12:04.045Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "stylo",
+ "hasLocution": true,
+ "plural": "stylos"
+ },
+ {
+ "keyword": "stylo-bille",
+ "hasLocution": false,
+ "plural": "stylos-bille",
+ "type": 2
+ },
+ {
+ "keyword": "bic",
+ "hasLocution": false,
+ "plural": "bics",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "traditional game"
+ ],
+ "synsets": [
+ "00463865-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "traditional game"
+ ],
+ "_id": 2283,
+ "created": "2007-12-12T12:40:56.000Z",
+ "lastUpdated": "2021-03-09T16:07:27.601Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quilles",
+ "hasLocution": true
+ },
+ {
+ "keyword": "jeu de quilles",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jeux de quilles"
+ },
+ {
+ "keyword": "quilles de bowling",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "bowling",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bowlings"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "core vocabulary-object",
+ "fashion"
+ ],
+ "synsets": [
+ "02777157-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "core vocabulary"
+ ],
+ "_id": 2284,
+ "created": "2007-12-12T12:42:26.000Z",
+ "lastUpdated": "2024-12-09T11:42:25.357Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sac",
+ "hasLocution": true,
+ "plural": "sacs"
+ },
+ {
+ "keyword": "sac à main",
+ "hasLocution": false,
+ "plural": "sacs à main",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "light fixture"
+ ],
+ "synsets": [
+ "03671250-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 2285,
+ "created": "2007-12-12T12:43:16.000Z",
+ "lastUpdated": "2021-03-09T16:04:54.514Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ampoule",
+ "hasLocution": true,
+ "plural": "ampoules"
+ },
+ {
+ "keyword": "lumière électrique",
+ "hasLocution": false,
+ "plural": "lumières électriques",
+ "type": 2
+ },
+ {
+ "keyword": "ampoule électriques",
+ "hasLocution": false,
+ "plural": "ampoules électriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01551500-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 2286,
+ "created": "2007-12-12T12:46:55.000Z",
+ "lastUpdated": "2021-08-04T08:30:58.579Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "effacer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "gommer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "effacer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery",
+ "container",
+ "beverage"
+ ],
+ "synsets": [
+ "02879899-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "container",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 2288,
+ "created": "2007-12-12T12:59:55.000Z",
+ "lastUpdated": "2023-10-30T18:34:58.700Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouteille",
+ "hasLocution": true,
+ "plural": "bouteilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04123388-n",
+ "02876113-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "core vocabulary"
+ ],
+ "_id": 2287,
+ "created": "2007-12-12T12:49:57.000Z",
+ "lastUpdated": "2021-03-09T16:00:46.170Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bottes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bottes en caoutchouc",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "03890725-n",
+ "02857998-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 2289,
+ "created": "2007-12-11T21:59:50.000Z",
+ "lastUpdated": "2021-08-04T08:31:20.195Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "culotte",
+ "hasLocution": true,
+ "plural": "culottes"
+ },
+ {
+ "keyword": "slip",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "slips"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture",
+ "telecommunication",
+ "mass media"
+ ],
+ "synsets": [
+ "03995432-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture",
+ "work",
+ "tertiary sector",
+ "telecommunication",
+ "communication",
+ "mass media"
+ ],
+ "_id": 2292,
+ "created": "2007-12-12T13:03:37.000Z",
+ "lastUpdated": "2021-03-23T21:31:32.955Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte à lettres",
+ "hasLocution": true,
+ "plural": "boîtes à lettres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "telecommunication",
+ "mass media",
+ "residential building"
+ ],
+ "synsets": [
+ "03995432-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "tertiary sector",
+ "telecommunication",
+ "communication",
+ "mass media",
+ "home"
+ ],
+ "_id": 2293,
+ "created": "2007-12-12T13:05:31.000Z",
+ "lastUpdated": "2021-03-14T15:10:01.699Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte à lettres",
+ "hasLocution": true,
+ "plural": "boîtes à lettres"
+ },
+ {
+ "keyword": "boîte aux lettres",
+ "hasLocution": false,
+ "plural": "boîtes aux lettres",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04150962-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "core vocabulary"
+ ],
+ "_id": 2290,
+ "created": "2007-12-12T13:01:13.000Z",
+ "lastUpdated": "2021-03-13T20:55:03.925Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écharpe",
+ "hasLocution": true,
+ "plural": "écharpes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "christmas",
+ "domestic animal",
+ "core vocabulary-living being",
+ "core vocabulary-time",
+ "agriculture"
+ ],
+ "synsets": [
+ "02392211-n",
+ "02391998-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "event",
+ "popular event",
+ "christmas",
+ "domestic",
+ "core vocabulary",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 2291,
+ "created": "2007-12-12T13:01:50.000Z",
+ "lastUpdated": "2024-12-05T06:27:36.340Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "âne",
+ "hasLocution": true,
+ "plural": "ânes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "domestic animal",
+ "core vocabulary-living being",
+ "animal",
+ "sport"
+ ],
+ "synsets": [
+ "02377103-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "domestic",
+ "core vocabulary",
+ "leisure",
+ "sport"
+ ],
+ "_id": 2294,
+ "created": "2007-12-12T13:07:41.000Z",
+ "lastUpdated": "2024-12-10T06:20:28.403Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cheval",
+ "hasLocution": true,
+ "plural": "chevaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07945759-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "core vocabulary"
+ ],
+ "_id": 2296,
+ "created": "2007-12-12T13:13:56.000Z",
+ "lastUpdated": "2024-12-10T06:22:41.301Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "café",
+ "hasLocution": true,
+ "plural": "cafés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "beverage"
+ ],
+ "synsets": [
+ "03067341-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 2297,
+ "created": "2007-12-12T13:35:52.000Z",
+ "lastUpdated": "2021-03-02T18:11:55.832Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cafetière",
+ "hasLocution": true,
+ "plural": "cafetières"
+ },
+ {
+ "keyword": "cafetière italienne",
+ "plural": "cafetières italiennes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal"
+ ],
+ "synsets": [
+ "02419165-n",
+ "02419526-n",
+ "02420180-n",
+ "02419716-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal"
+ ],
+ "_id": 2295,
+ "created": "2007-12-12T13:10:34.000Z",
+ "lastUpdated": "2021-03-13T14:11:36.561Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chèvre",
+ "hasLocution": true,
+ "plural": "chèvres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04261887-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 2298,
+ "created": "2007-12-12T13:37:07.000Z",
+ "lastUpdated": "2021-02-06T07:53:59.797Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "body sensation"
+ ],
+ "synsets": [
+ "01250274-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 2300,
+ "created": "2007-12-12T13:49:44.000Z",
+ "lastUpdated": "2021-03-13T21:00:40.396Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "chaud",
+ "hasLocution": true
+ },
+ {
+ "keyword": "suant",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "urban area",
+ "core vocabulary-place",
+ "place"
+ ],
+ "synsets": [
+ "04342347-n",
+ "04341737-n",
+ "02766477-n"
+ ],
+ "tags": [
+ "place",
+ "urban area",
+ "core vocabulary"
+ ],
+ "_id": 2299,
+ "created": "2007-12-12T13:48:53.000Z",
+ "lastUpdated": "2024-12-17T12:06:21.501Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rue",
+ "hasLocution": true,
+ "plural": "Rues"
+ },
+ {
+ "type": 2,
+ "keyword": "avenue",
+ "hasLocution": true,
+ "plural": "Avenues"
+ },
+ {
+ "keyword": "boulevard",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "Boulevards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "04103160-n",
+ "04104621-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 2302,
+ "created": "2007-12-12T13:50:39.000Z",
+ "lastUpdated": "2021-03-23T21:34:39.074Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "route",
+ "hasLocution": true,
+ "plural": "routes"
+ },
+ {
+ "type": 2,
+ "keyword": "chaussée",
+ "hasLocution": true,
+ "plural": "chaussées"
+ },
+ {
+ "keyword": "revêtement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "revêtements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04515784-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 2303,
+ "created": "2007-12-13T09:19:09.000Z",
+ "lastUpdated": "2021-03-13T14:11:01.331Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caleçon",
+ "hasLocution": true,
+ "plural": "caleçons"
+ },
+ {
+ "keyword": "slip",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "slips"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02439943-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "domestic"
+ ],
+ "_id": 2305,
+ "created": "2007-12-13T09:19:58.000Z",
+ "lastUpdated": "2021-01-31T19:21:41.077Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dromadaire",
+ "hasLocution": true,
+ "plural": "Dromadaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "03695799-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 2306,
+ "created": "2007-12-13T09:20:23.000Z",
+ "lastUpdated": "2021-03-14T15:08:19.698Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "camion",
+ "hasLocution": true,
+ "plural": "camions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03774770-n",
+ "03971038-n",
+ "04469337-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 2307,
+ "created": "2007-12-13T09:21:26.000Z",
+ "lastUpdated": "2021-03-15T22:20:50.143Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "camion pour enfants",
+ "hasLocution": true,
+ "plural": "camions pour enfants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "04204434-n",
+ "03243582-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 2308,
+ "created": "2007-12-13T09:29:24.000Z",
+ "lastUpdated": "2021-08-04T08:32:21.745Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chemise",
+ "hasLocution": true,
+ "plural": "chemises"
+ },
+ {
+ "keyword": "chemisette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chemisettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "02821967-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 2304,
+ "created": "2007-12-13T09:19:32.000Z",
+ "lastUpdated": "2021-01-31T19:21:23.955Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lit",
+ "hasLocution": true,
+ "plural": "lits"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "04230374-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 2310,
+ "created": "2007-12-13T09:30:26.000Z",
+ "lastUpdated": "2021-08-04T08:32:45.627Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tee-shirt",
+ "hasLocution": true,
+ "plural": "tee-shirts"
+ },
+ {
+ "keyword": "maillot de corps",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "maillots de corps"
+ },
+ {
+ "keyword": "T-shirt",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03600807-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 2309,
+ "created": "2007-12-13T09:30:03.000Z",
+ "lastUpdated": "2021-08-04T08:32:32.443Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tee-shirt",
+ "hasLocution": true,
+ "plural": "tee-shirts"
+ },
+ {
+ "keyword": "T-shirt",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "03829921-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 2311,
+ "created": "2007-12-13T09:31:29.000Z",
+ "lastUpdated": "2021-03-13T14:10:22.441Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chemise de nuit",
+ "hasLocution": true,
+ "plural": "chemises de nuit"
+ },
+ {
+ "keyword": "nuisette",
+ "hasLocution": false,
+ "plural": "nuisettes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "crustacean",
+ "oviparous",
+ "marine animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01979598-n",
+ "07803956-n",
+ "01981571-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "arthropod",
+ "crustacean",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "core vocabulary"
+ ],
+ "_id": 2312,
+ "created": "2007-12-13T09:35:27.000Z",
+ "lastUpdated": "2021-03-02T18:12:46.178Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crabe",
+ "hasLocution": true,
+ "plural": "crabes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "body sensation",
+ "symptom"
+ ],
+ "synsets": [
+ "02440540-a",
+ "02442263-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion",
+ "human body",
+ "body sensation",
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 2314,
+ "created": "2007-12-13T09:41:15.000Z",
+ "lastUpdated": "2021-03-13T14:09:36.276Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fatigué",
+ "hasLocution": true
+ },
+ {
+ "keyword": "épuisé",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "exténué",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical art"
+ ],
+ "synsets": [
+ "01733312-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music"
+ ],
+ "_id": 2315,
+ "created": "2007-12-13T09:42:04.000Z",
+ "lastUpdated": "2021-03-02T18:14:33.603Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Faire entendre un chant ; produire par la voix des sons mélodieux, une Åuvre musicale",
+ "keyword": "chanter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "meat",
+ "core vocabulary-feeding",
+ "food",
+ "animal"
+ ],
+ "synsets": [
+ "07665463-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat",
+ "core vocabulary",
+ "animal"
+ ],
+ "_id": 2316,
+ "created": "2007-12-13T09:48:56.000Z",
+ "lastUpdated": "2024-12-10T06:36:39.981Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "viande",
+ "hasLocution": true,
+ "plural": "viandes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "03549540-n",
+ "08094856-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "object"
+ ],
+ "_id": 2317,
+ "created": "2007-12-13T09:54:31.000Z",
+ "lastUpdated": "2024-12-05T06:40:21.913Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maison",
+ "hasLocution": true,
+ "plural": "maisons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01879775-n",
+ "01880453-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 2313,
+ "created": "2007-12-13T09:35:50.000Z",
+ "lastUpdated": "2021-03-02T18:13:46.669Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kangourou",
+ "hasLocution": true,
+ "plural": "kangourous"
+ },
+ {
+ "keyword": "wallaby",
+ "hasLocution": false,
+ "plural": "Wallabies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "fashion"
+ ],
+ "synsets": [
+ "03594978-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 2319,
+ "created": "2007-12-13T09:55:30.000Z",
+ "lastUpdated": "2024-12-11T06:31:07.892Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blouson",
+ "hasLocution": true,
+ "plural": "blousons"
+ },
+ {
+ "keyword": "veste",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "vestes"
+ },
+ {
+ "keyword": "manteau",
+ "type": 2,
+ "plural": "manteaux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument",
+ "fiestas del pilar"
+ ],
+ "synsets": [
+ "02872589-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument",
+ "event",
+ "popular event",
+ "fiestas del pilar"
+ ],
+ "_id": 2318,
+ "created": "2007-12-13T09:54:59.000Z",
+ "lastUpdated": "2021-03-02T18:15:12.423Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "castagnettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable",
+ "food"
+ ],
+ "synsets": [
+ "12453586-n",
+ "07737962-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 2323,
+ "created": "2007-12-13T10:03:51.000Z",
+ "lastUpdated": "2024-12-11T06:32:40.130Z",
+ "keywords": [
+ {
+ "keyword": "ognon",
+ "hasLocution": false,
+ "plural": "ognons"
+ },
+ {
+ "keyword": "oignon",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "oignons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "03638382-n",
+ "04270446-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 2320,
+ "created": "2007-12-13T09:55:55.000Z",
+ "lastUpdated": "2021-03-02T18:15:59.576Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "louche",
+ "hasLocution": true,
+ "plural": "louches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02393701-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 2324,
+ "created": "2007-12-13T10:04:10.000Z",
+ "lastUpdated": "2021-03-02T18:17:09.960Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "zèbre",
+ "hasLocution": true,
+ "plural": "zèbres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02992134-n",
+ "03083234-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware",
+ "core vocabulary",
+ "work"
+ ],
+ "_id": 2322,
+ "created": "2007-12-13T10:00:05.000Z",
+ "lastUpdated": "2024-12-13T08:14:35.248Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "CD",
+ "hasLocution": true,
+ "plural": "CDs"
+ },
+ {
+ "keyword": "CD-ROM",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "01246546-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 2326,
+ "created": "2007-12-13T10:06:56.000Z",
+ "lastUpdated": "2021-03-02T18:17:43.082Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se brosser les dents",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se laver les dents",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "02996250-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 2325,
+ "created": "2007-12-13T10:04:31.000Z",
+ "lastUpdated": "2021-08-04T08:35:35.172Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scotch",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rouleau de scotch",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "ruban adhésif",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07773108-n",
+ "07773288-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit",
+ "core vocabulary"
+ ],
+ "_id": 2329,
+ "created": "2007-12-13T10:08:04.000Z",
+ "lastUpdated": "2021-03-02T18:19:30.381Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cerises",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "03001610-n",
+ "03001517-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "core vocabulary"
+ ],
+ "_id": 2328,
+ "created": "2007-12-13T10:07:43.000Z",
+ "lastUpdated": "2021-03-02T18:19:22.709Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "céréales",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bol de céréales",
+ "hasLocution": false,
+ "plural": "bols de céréales",
+ "type": 2
+ },
+ {
+ "keyword": "boîte de céréales",
+ "hasLocution": false,
+ "plural": "boîtes de céréales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mammal",
+ "terrestrial animal",
+ "viviparous",
+ "cattle farming",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02398058-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "terrestrial animal",
+ "viviparous",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic"
+ ],
+ "_id": 2327,
+ "created": "2007-12-13T10:07:16.000Z",
+ "lastUpdated": "2021-03-02T18:18:21.670Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cochon",
+ "hasLocution": true,
+ "plural": "cochons"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "porc",
+ "plural": "porcs"
+ },
+ {
+ "type": 2,
+ "keyword": "goret",
+ "hasLocution": false,
+ "plural": "gorets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sportswear",
+ "clothes",
+ "core vocabulary-leisure",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04357983-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sportswear",
+ "clothing",
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 2332,
+ "created": "2007-12-13T10:12:58.000Z",
+ "lastUpdated": "2021-03-13T21:03:38.115Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "survêtement",
+ "hasLocution": true,
+ "plural": "survêtements"
+ },
+ {
+ "keyword": "jogging",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "joggings"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07902824-n",
+ "02826892-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 2330,
+ "created": "2007-12-13T10:09:04.000Z",
+ "lastUpdated": "2021-08-04T08:36:07.023Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bière",
+ "hasLocution": true,
+ "plural": "bières"
+ },
+ {
+ "keyword": "verre de bière",
+ "hasLocution": false,
+ "plural": "verres de bière",
+ "type": 2
+ },
+ {
+ "keyword": "pinte",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "pintes"
+ },
+ {
+ "keyword": "demi de bière",
+ "hasLocution": false,
+ "plural": "demis de bière",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fungus"
+ ],
+ "synsets": [
+ "07750720-n",
+ "13022289-n",
+ "13021651-n"
+ ],
+ "tags": [
+ "plant",
+ "fungus"
+ ],
+ "_id": 2331,
+ "created": "2007-12-13T10:12:34.000Z",
+ "lastUpdated": "2021-03-02T18:21:00.207Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "champignons",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat"
+ ],
+ "synsets": [
+ "07692265-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 2335,
+ "created": "2007-12-13T10:14:49.000Z",
+ "lastUpdated": "2021-03-13T21:02:44.791Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chorizo",
+ "hasLocution": true,
+ "plural": "chorizos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "construction"
+ ],
+ "synsets": [
+ "03021082-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2333,
+ "created": "2007-12-13T10:13:23.000Z",
+ "lastUpdated": "2021-03-02T18:20:56.182Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cheminée",
+ "hasLocution": true,
+ "plural": "cheminées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07617570-n",
+ "07619120-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 2334,
+ "created": "2007-12-13T10:14:28.000Z",
+ "lastUpdated": "2021-08-04T08:36:37.921Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chocolat",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tablette de chocolat",
+ "hasLocution": false,
+ "plural": "tablettes de chocolat",
+ "type": 2
+ },
+ {
+ "keyword": "carré de chocolat",
+ "hasLocution": false,
+ "plural": "carrés de chocolat",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "fashion"
+ ],
+ "synsets": [
+ "02830790-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 2336,
+ "created": "2007-12-13T10:27:35.000Z",
+ "lastUpdated": "2024-12-11T17:28:33.759Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ceinture",
+ "hasLocution": true,
+ "plural": "ceintures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "river animal",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01861082-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "domestic"
+ ],
+ "_id": 2337,
+ "created": "2007-12-13T10:29:15.000Z",
+ "lastUpdated": "2021-03-02T18:21:58.660Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cygne",
+ "hasLocution": true,
+ "plural": "cygnes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "apiculture",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02209508-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "work",
+ "primary sector",
+ "apiculture",
+ "domestic"
+ ],
+ "_id": 2239,
+ "created": "2007-12-11T21:59:56.000Z",
+ "lastUpdated": "2021-02-06T22:51:06.659Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abeille",
+ "hasLocution": true,
+ "plural": "abeilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "cookery",
+ "feeding"
+ ],
+ "synsets": [
+ "04337478-n",
+ "03430505-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 2341,
+ "created": "2007-12-13T10:43:19.000Z",
+ "lastUpdated": "2024-12-05T07:23:24.719Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuisinière",
+ "hasLocution": true,
+ "plural": "cuisinières"
+ },
+ {
+ "keyword": "cuisinière à gaz",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cuisinières à gaz"
+ },
+ {
+ "keyword": "gazinière",
+ "hasLocution": false,
+ "plural": "gazinières",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07944936-n",
+ "07944171-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "core vocabulary"
+ ],
+ "_id": 2338,
+ "created": "2007-12-13T10:35:29.000Z",
+ "lastUpdated": "2021-03-02T18:22:07.742Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Coca-Cola",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "road safety",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "02961779-n",
+ "04531608-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety",
+ "core vocabulary"
+ ],
+ "_id": 2339,
+ "created": "2007-12-13T10:36:00.000Z",
+ "lastUpdated": "2021-03-02T18:22:39.518Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voiture",
+ "hasLocution": true,
+ "plural": "voitures"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "automobile",
+ "plural": "automobiles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "02961779-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 2340,
+ "created": "2007-12-13T10:36:21.000Z",
+ "lastUpdated": "2021-03-13T21:05:06.900Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voiture pour enfants",
+ "hasLocution": true,
+ "plural": "voitures pour enfants"
+ },
+ {
+ "keyword": "petite voiture",
+ "hasLocution": false,
+ "plural": "petites voitures",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "reptile",
+ "oviparous",
+ "river animal",
+ "marine animal",
+ "terrestrial animal",
+ "carnivorous",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01699819-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "reptile",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "marine animal",
+ "sea",
+ "terrestrial animal",
+ "core vocabulary"
+ ],
+ "_id": 2343,
+ "created": "2007-12-13T10:44:44.000Z",
+ "lastUpdated": "2024-12-11T06:44:34.758Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crocodile",
+ "hasLocution": true,
+ "plural": "crocodiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "04273014-n",
+ "04106523-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport",
+ "core vocabulary"
+ ],
+ "_id": 2344,
+ "created": "2007-12-13T10:45:52.000Z",
+ "lastUpdated": "2021-03-02T18:24:01.967Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fusée",
+ "hasLocution": true,
+ "plural": "fusées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cutlery",
+ "cookery"
+ ],
+ "synsets": [
+ "04223701-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "cutlery",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 2345,
+ "created": "2007-12-13T10:48:07.000Z",
+ "lastUpdated": "2021-03-13T14:20:31.526Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "passoire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03733437-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 2346,
+ "created": "2007-12-13T10:59:33.000Z",
+ "lastUpdated": "2021-08-04T08:37:48.404Z",
+ "keywords": [
+ {
+ "keyword": "tapis de gymnastique",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "matelas de gymnastique",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "jewelry",
+ "accessories"
+ ],
+ "synsets": [
+ "03820446-n",
+ "03028565-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "jewelry",
+ "accessories"
+ ],
+ "_id": 2347,
+ "created": "2007-12-13T11:00:07.000Z",
+ "lastUpdated": "2021-03-02T18:24:22.487Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "collier",
+ "hasLocution": true,
+ "plural": "colliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "beach",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "03626682-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 2350,
+ "created": "2007-12-13T11:02:28.000Z",
+ "lastUpdated": "2024-12-06T06:31:09.617Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cerf-volant",
+ "hasLocution": true,
+ "plural": "cerfs-volants "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "hunting",
+ "core vocabulary-living being",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "02326697-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "hunting",
+ "core vocabulary"
+ ],
+ "_id": 2351,
+ "created": "2007-12-13T11:02:48.000Z",
+ "lastUpdated": "2021-03-02T18:26:00.340Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lapin",
+ "hasLocution": true,
+ "plural": "lapins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00437207-a",
+ "01688793-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 2352,
+ "created": "2007-12-13T11:03:11.000Z",
+ "lastUpdated": "2021-03-13T14:18:53.267Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "confus",
+ "hasLocution": true
+ },
+ {
+ "keyword": "désorienté",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "food",
+ "basic needs"
+ ],
+ "synsets": [
+ "01170802-v",
+ "01159300-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "person",
+ "basic needs"
+ ],
+ "_id": 2349,
+ "created": "2007-12-13T11:01:55.000Z",
+ "lastUpdated": "2021-03-13T14:19:30.295Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "manger",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "prendre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mettre dans la bouche",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "personal services",
+ "residential building"
+ ],
+ "synsets": [
+ "09971432-n",
+ "10046278-n",
+ "10695160-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "personal services",
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 2353,
+ "created": "2007-12-13T11:04:35.000Z",
+ "lastUpdated": "2021-03-13T14:18:24.868Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "concierge",
+ "hasLocution": true,
+ "plural": "concierges"
+ },
+ {
+ "keyword": "gardien",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gardiens"
+ },
+ {
+ "keyword": "portier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "portiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "video game"
+ ],
+ "synsets": [
+ "00459914-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "leisure",
+ "game",
+ "video game"
+ ],
+ "_id": 2354,
+ "created": "2007-12-13T11:04:59.000Z",
+ "lastUpdated": "2021-03-12T14:05:52.510Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "console",
+ "hasLocution": true,
+ "plural": "consoles"
+ },
+ {
+ "keyword": "console de jeu",
+ "plural": "consoles de jeu",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01688794-v",
+ "01700543-v",
+ "00284671-v",
+ "01365439-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 2348,
+ "created": "2007-12-13T11:00:34.000Z",
+ "lastUpdated": "2021-10-25T10:00:38.759Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Représenter quelque chose à l'aide de peinture sur un support",
+ "keyword": "peindre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "colorier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recycling",
+ "street furniture"
+ ],
+ "synsets": [
+ "04072901-n",
+ "02843139-n"
+ ],
+ "tags": [
+ "environmental science",
+ "recycling",
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 2355,
+ "created": "2007-12-13T11:17:45.000Z",
+ "lastUpdated": "2021-03-02T18:27:44.761Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "benne",
+ "hasLocution": true,
+ "plural": "bennes"
+ },
+ {
+ "keyword": "benne à ordures",
+ "hasLocution": false,
+ "plural": "bennes à ordures",
+ "type": 2
+ },
+ {
+ "keyword": "poubelle",
+ "type": 2,
+ "plural": "poubelles",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery",
+ "beverage"
+ ],
+ "synsets": [
+ "03443167-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 2356,
+ "created": "2007-12-13T12:13:51.000Z",
+ "lastUpdated": "2021-03-02T18:28:06.549Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "verre",
+ "hasLocution": true,
+ "plural": "verres"
+ },
+ {
+ "keyword": "verre à pied",
+ "plural": "verres à pied",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "03155743-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 2357,
+ "created": "2007-12-13T12:14:14.000Z",
+ "lastUpdated": "2021-03-02T18:28:22.158Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rideaux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery",
+ "usual verbs",
+ "core vocabulary-communication",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "01668067-v",
+ "01669533-v",
+ "00324657-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 2342,
+ "created": "2007-12-13T10:43:44.000Z",
+ "lastUpdated": "2021-03-02T18:23:42.542Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "cuisiner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "préparer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mijoter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07707395-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "core vocabulary"
+ ],
+ "_id": 2358,
+ "created": "2007-12-13T12:14:36.000Z",
+ "lastUpdated": "2021-03-02T18:28:35.236Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "croissant",
+ "hasLocution": true,
+ "plural": "croissants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "06427062-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 2359,
+ "created": "2007-12-13T12:25:35.000Z",
+ "lastUpdated": "2021-03-02T18:28:59.330Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cahier",
+ "hasLocution": true,
+ "plural": "cahiers"
+ },
+ {
+ "keyword": "carnet",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "carnets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "painting",
+ "decorative item"
+ ],
+ "synsets": [
+ "03882197-n"
+ ],
+ "tags": [
+ "visual art",
+ "painting",
+ "object",
+ "decorative item"
+ ],
+ "_id": 2360,
+ "created": "2007-12-13T12:25:58.000Z",
+ "lastUpdated": "2021-03-02T18:29:25.051Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tableau",
+ "hasLocution": true,
+ "plural": "tableaux"
+ },
+ {
+ "keyword": "peinture",
+ "type": 2,
+ "plural": "peintures",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cutlery",
+ "cookery",
+ "core vocabulary-object",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "04291140-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "cutlery",
+ "home",
+ "feeding",
+ "cookery",
+ "core vocabulary"
+ ],
+ "_id": 2362,
+ "created": "2007-12-13T12:31:10.000Z",
+ "lastUpdated": "2021-03-02T18:30:21.294Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuillère",
+ "hasLocution": true,
+ "plural": "cuillères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "03638382-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 2363,
+ "created": "2007-12-13T12:31:32.000Z",
+ "lastUpdated": "2021-03-14T15:07:58.940Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "louche",
+ "hasLocution": true,
+ "plural": "louches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "literacy genre",
+ "library science",
+ "educational material",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "06425102-n",
+ "07235754-n"
+ ],
+ "tags": [
+ "literature",
+ "literacy genre",
+ "library science",
+ "education",
+ "educational material",
+ "core vocabulary"
+ ],
+ "_id": 2364,
+ "created": "2007-12-13T12:33:12.000Z",
+ "lastUpdated": "2021-03-30T17:04:38.112Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conte",
+ "hasLocution": true,
+ "plural": "contes"
+ },
+ {
+ "keyword": "livre d'histoires",
+ "hasLocution": false,
+ "plural": "livres d'histoires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "workwear",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "02733935-n"
+ ],
+ "tags": [
+ "work",
+ "clothes",
+ "workwear",
+ "core vocabulary"
+ ],
+ "_id": 2366,
+ "created": "2007-12-13T12:37:51.000Z",
+ "lastUpdated": "2021-09-14T12:08:40.584Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tablier",
+ "hasLocution": true,
+ "plural": "tabliers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "beach",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "02913195-n",
+ "04273596-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 2361,
+ "created": "2007-12-13T12:28:47.000Z",
+ "lastUpdated": "2021-03-15T22:20:19.290Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "seau et pelle",
+ "hasLocution": false,
+ "plural": "seaux et pelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "routine"
+ ],
+ "synsets": [
+ "00014735-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "routine"
+ ],
+ "_id": 2369,
+ "created": "2007-12-13T12:39:21.000Z",
+ "lastUpdated": "2021-03-02T18:31:10.685Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Ãtre plongé dans le sommeil",
+ "keyword": "dormir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "residential building"
+ ],
+ "synsets": [
+ "04216003-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "home"
+ ],
+ "_id": 2370,
+ "created": "2007-12-13T12:41:49.000Z",
+ "lastUpdated": "2021-03-13T21:06:18.213Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "douche",
+ "hasLocution": true,
+ "plural": "douches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00035252-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 2371,
+ "created": "2007-12-13T12:42:11.000Z",
+ "lastUpdated": "2021-03-02T18:31:48.264Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se doucher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prendre une douche",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal",
+ "domestic animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02506148-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild",
+ "domestic",
+ "core vocabulary"
+ ],
+ "_id": 2372,
+ "created": "2007-12-13T12:42:52.000Z",
+ "lastUpdated": "2021-03-02T18:31:57.366Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éléphant",
+ "hasLocution": true,
+ "plural": "éléphants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00114629-a",
+ "00115265-s",
+ "01811355-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 2374,
+ "created": "2007-12-13T12:49:18.000Z",
+ "lastUpdated": "2021-03-13T21:07:46.028Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fâché",
+ "hasLocution": true
+ },
+ {
+ "keyword": "irrité",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "ennuyé",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "énervé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction",
+ "residential building"
+ ],
+ "synsets": [
+ "03974625-n",
+ "04262144-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "home"
+ ],
+ "_id": 2373,
+ "created": "2007-12-13T12:48:55.000Z",
+ "lastUpdated": "2021-03-02T18:32:20.686Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prise de courant",
+ "hasLocution": true,
+ "plural": "prises de courant "
+ },
+ {
+ "keyword": "prise",
+ "hasLocution": false,
+ "plural": "prises",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "body sensation"
+ ],
+ "synsets": [
+ "14346126-n",
+ "05732639-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 2367,
+ "created": "2007-12-13T12:38:22.000Z",
+ "lastUpdated": "2021-03-13T21:05:52.165Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "douleur",
+ "hasLocution": true,
+ "plural": "douleurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07654678-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 2368,
+ "created": "2007-12-13T12:39:00.000Z",
+ "lastUpdated": "2021-03-02T18:31:03.265Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "donut",
+ "hasLocution": true,
+ "plural": "donuts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10386665-n",
+ "10387518-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 2375,
+ "created": "2007-12-13T12:50:15.000Z",
+ "lastUpdated": "2021-03-26T14:09:46.932Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "infirmière",
+ "hasLocution": true,
+ "plural": "infirmières"
+ },
+ {
+ "type": 2,
+ "keyword": "auxiliaire médicale",
+ "hasLocution": false,
+ "plural": "auxiliaires médicales"
+ },
+ {
+ "keyword": "infirmière diplômée",
+ "hasLocution": false,
+ "plural": "infirmières diplômées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "music device"
+ ],
+ "synsets": [
+ "02760467-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "music device"
+ ],
+ "_id": 2378,
+ "created": "2007-12-13T12:51:47.000Z",
+ "lastUpdated": "2021-03-15T22:19:53.078Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaîne hi-fi",
+ "hasLocution": true,
+ "plural": "chaînes hi-fi"
+ },
+ {
+ "keyword": "chaîne audio",
+ "hasLocution": false,
+ "plural": "chaînes audios",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disease"
+ ],
+ "synsets": [
+ "00087206-v",
+ "02199637-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 2376,
+ "created": "2007-12-13T12:50:57.000Z",
+ "lastUpdated": "2021-04-12T21:12:03.758Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tomber malade",
+ "hasLocution": true
+ },
+ {
+ "keyword": "devenir malade",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "être malade",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "être souffrant",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07822197-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "core vocabulary"
+ ],
+ "_id": 2377,
+ "created": "2007-12-13T12:51:20.000Z",
+ "lastUpdated": "2021-03-26T14:11:16.227Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salade",
+ "hasLocution": true,
+ "plural": "salades"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "crudités",
+ "plural": "crudités"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "building facility",
+ "construction",
+ "core vocabulary-knowledge",
+ "core vocabulary-place",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "04305309-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "core vocabulary"
+ ],
+ "_id": 2379,
+ "created": "2007-12-13T12:53:47.000Z",
+ "lastUpdated": "2022-03-06T21:25:52.820Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "escaliers",
+ "hasLocution": true,
+ "plural": "escaliers"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "marches",
+ "plural": "marches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "03070853-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 2382,
+ "created": "2007-12-13T13:01:30.000Z",
+ "lastUpdated": "2021-03-02T18:33:35.496Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "passoire",
+ "hasLocution": true,
+ "plural": "passoires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "educational task",
+ "core vocabulary-communication",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "01694952-v",
+ "00995046-v",
+ "06371284-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "education",
+ "educational task",
+ "core vocabulary"
+ ],
+ "_id": 2380,
+ "created": "2007-12-13T12:54:36.000Z",
+ "lastUpdated": "2021-03-02T18:33:21.679Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Tracer les signes d'un système d'écriture, de représentation graphique des sons d'un langage, de la parole : Ãcrire un « m », un mot, un chiffre",
+ "keyword": "écrire",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "écriture",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07734958-n",
+ "12461688-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 2384,
+ "created": "2007-12-13T13:07:10.000Z",
+ "lastUpdated": "2021-01-31T19:30:26.366Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "asperge",
+ "hasLocution": true,
+ "plural": "asperges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "traditional dish",
+ "processed food"
+ ],
+ "synsets": [
+ "07715748-n",
+ "07715659-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "processed food"
+ ],
+ "_id": 2383,
+ "created": "2007-12-13T13:03:10.000Z",
+ "lastUpdated": "2024-12-12T07:08:21.318Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "spaghettis à la tomate",
+ "hasLocution": false
+ },
+ {
+ "keyword": "spaghettis",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses"
+ ],
+ "synsets": [
+ "02175483-v",
+ "02174146-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 2381,
+ "created": "2007-12-13T12:55:14.000Z",
+ "lastUpdated": "2021-03-02T18:33:27.434Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Percevoir par l'ouïe les bruits, les sons produits par quelque chose ou quelqu'un, les paroles, la musique, le chant, produits par quelqu'un",
+ "keyword": "entendre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "écouter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "decorative item"
+ ],
+ "synsets": [
+ "03778568-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item"
+ ],
+ "_id": 2385,
+ "created": "2007-12-13T13:07:38.000Z",
+ "lastUpdated": "2021-03-13T21:13:38.081Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "miroir",
+ "hasLocution": true,
+ "plural": "miroirs"
+ },
+ {
+ "keyword": "glace",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "glaces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "04197095-n"
+ ],
+ "tags": [],
+ "_id": 2386,
+ "created": "2007-12-13T13:09:16.000Z",
+ "lastUpdated": "2021-03-13T21:14:12.482Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étagère",
+ "hasLocution": true,
+ "plural": "étagères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work machine",
+ "construction"
+ ],
+ "synsets": [
+ "04002774-n"
+ ],
+ "tags": [
+ "work",
+ "work machine",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2390,
+ "created": "2007-12-14T09:13:29.000Z",
+ "lastUpdated": "2021-03-15T22:19:21.403Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pelleteuse",
+ "hasLocution": true,
+ "plural": "pelleteuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00608509-v",
+ "00601387-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 2387,
+ "created": "2007-12-13T13:09:47.000Z",
+ "lastUpdated": "2021-03-13T21:16:18.644Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étudier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "apprendre",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "04337405-n",
+ "03277150-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 2389,
+ "created": "2007-12-14T09:13:05.000Z",
+ "lastUpdated": "2021-03-13T21:18:48.579Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "radiateur",
+ "hasLocution": true,
+ "plural": "radiateurs"
+ },
+ {
+ "keyword": "radiateur électrique",
+ "hasLocution": false,
+ "plural": "radiateurs électriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04238334-n",
+ "04237870-n",
+ "03433913-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 2391,
+ "created": "2007-12-14T09:15:51.000Z",
+ "lastUpdated": "2021-03-13T21:19:52.411Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "jupe",
+ "plural": "jupes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "07986853-n"
+ ],
+ "tags": [
+ "person",
+ "family",
+ "core vocabulary"
+ ],
+ "_id": 2392,
+ "created": "2007-12-14T09:25:05.000Z",
+ "lastUpdated": "2021-02-06T07:25:58.674Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille",
+ "hasLocution": true,
+ "plural": "familles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy",
+ "professional"
+ ],
+ "synsets": [
+ "10447528-n"
+ ],
+ "tags": [
+ "health",
+ "physiotherapy",
+ "work",
+ "professional"
+ ],
+ "_id": 2395,
+ "created": "2007-12-14T09:26:41.000Z",
+ "lastUpdated": "2021-03-13T21:25:31.049Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kinésithérapeute",
+ "hasLocution": true,
+ "plural": "kinésithérapeute"
+ },
+ {
+ "keyword": "masseur-kinésitérapeute",
+ "hasLocution": false,
+ "plural": "masseurs-kinésitérapeutes",
+ "type": 2
+ },
+ {
+ "keyword": "physiothérapeute",
+ "hasLocution": true,
+ "plural": "physiothérapeutes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item"
+ ],
+ "synsets": [
+ "03183448-n",
+ "03340545-n",
+ "03341404-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item"
+ ],
+ "_id": 2394,
+ "created": "2007-12-14T09:26:03.000Z",
+ "lastUpdated": "2021-03-13T21:21:11.464Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "figurine",
+ "hasLocution": false,
+ "plural": "figurines"
+ },
+ {
+ "keyword": "statuette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "statuettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture",
+ "light fixture"
+ ],
+ "synsets": [
+ "04343024-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture",
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 2393,
+ "created": "2007-12-14T09:25:26.000Z",
+ "lastUpdated": "2021-01-31T19:31:07.684Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lampadaire",
+ "hasLocution": true,
+ "plural": "lampadaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "03348200-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 2396,
+ "created": "2007-12-14T09:32:05.000Z",
+ "lastUpdated": "2021-03-13T21:26:50.801Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "flûte",
+ "hasLocution": true,
+ "plural": "flûtes"
+ },
+ {
+ "keyword": "flûte à bec",
+ "hasLocution": false,
+ "plural": "flûtes à bec",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "marine animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02078848-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 2397,
+ "created": "2007-12-14T09:33:17.000Z",
+ "lastUpdated": "2021-03-13T21:27:48.722Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "phoque",
+ "hasLocution": true,
+ "plural": "phoques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "06266354-n",
+ "14998823-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 2398,
+ "created": "2007-12-14T09:33:45.000Z",
+ "lastUpdated": "2021-03-13T21:29:14.015Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "papier",
+ "hasLocution": true,
+ "plural": "papiers"
+ },
+ {
+ "type": 2,
+ "keyword": "feuilles",
+ "hasLocution": true
+ },
+ {
+ "keyword": "paquet de feuilles",
+ "hasLocution": false,
+ "plural": "paquets de feuilles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "cookery",
+ "core vocabulary-place",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "03626098-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "feeding",
+ "cookery",
+ "core vocabulary"
+ ],
+ "_id": 2399,
+ "created": "2007-12-14T09:34:14.000Z",
+ "lastUpdated": "2021-03-13T21:29:33.372Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "évier",
+ "hasLocution": true,
+ "plural": "éviers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07761916-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit",
+ "core vocabulary"
+ ],
+ "_id": 2400,
+ "created": "2007-12-14T09:34:40.000Z",
+ "lastUpdated": "2021-02-04T19:25:31.066Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fraise",
+ "hasLocution": true,
+ "plural": "fraises"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "body sensation"
+ ],
+ "synsets": [
+ "01257098-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 2401,
+ "created": "2007-12-14T09:41:08.000Z",
+ "lastUpdated": "2021-07-18T12:41:18.832Z",
+ "keywords": [
+ {
+ "keyword": "frileux",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "sensible au froid",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal",
+ "core vocabulary-living being",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "01795281-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic",
+ "core vocabulary"
+ ],
+ "_id": 2403,
+ "created": "2007-12-14T09:43:17.000Z",
+ "lastUpdated": "2021-02-05T09:04:14.703Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poule",
+ "hasLocution": true,
+ "plural": "poules"
+ },
+ {
+ "keyword": "poulet",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "poulets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07650764-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "core vocabulary"
+ ],
+ "_id": 2402,
+ "created": "2007-12-14T09:42:53.000Z",
+ "lastUpdated": "2021-03-13T21:31:16.343Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "galettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "gâteaux secs",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "biscuits secs",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "12536430-n",
+ "07742071-n",
+ "07604518-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "core vocabulary"
+ ],
+ "_id": 2405,
+ "created": "2007-12-14T09:44:43.000Z",
+ "lastUpdated": "2021-03-13T21:32:09.502Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pois chiches",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01794266-n",
+ "01794799-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic"
+ ],
+ "_id": 2404,
+ "created": "2007-12-14T09:43:46.000Z",
+ "lastUpdated": "2021-01-31T19:35:40.236Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coq",
+ "hasLocution": true,
+ "plural": "coqs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport"
+ ],
+ "synsets": [
+ "02785116-n",
+ "03547103-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 2407,
+ "created": "2007-12-14T09:45:51.000Z",
+ "lastUpdated": "2021-08-04T08:41:22.558Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ballon",
+ "hasLocution": true,
+ "plural": "ballons"
+ },
+ {
+ "keyword": "montgolfière",
+ "hasLocution": false,
+ "plural": "montgolfières",
+ "type": 2
+ },
+ {
+ "keyword": "ballon",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "ballons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "pet",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02124272-n",
+ "02124950-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "pet",
+ "domestic"
+ ],
+ "_id": 2406,
+ "created": "2007-12-14T09:45:17.000Z",
+ "lastUpdated": "2021-01-31T19:36:35.945Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chat",
+ "hasLocution": true,
+ "plural": "chats"
+ },
+ {
+ "type": 2,
+ "keyword": "minet",
+ "hasLocution": true,
+ "plural": "minets"
+ },
+ {
+ "keyword": "minou",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "minous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "02785352-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 2408,
+ "created": "2007-12-14T09:46:16.000Z",
+ "lastUpdated": "2021-02-06T06:32:36.301Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ballon",
+ "hasLocution": true,
+ "plural": "ballons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "04123606-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 2409,
+ "created": "2007-12-14T09:46:44.000Z",
+ "lastUpdated": "2021-01-31T19:39:16.240Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gomme",
+ "hasLocution": true,
+ "plural": "gommes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02483486-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 2410,
+ "created": "2007-12-14T09:47:46.000Z",
+ "lastUpdated": "2021-01-31T19:40:02.250Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gorille",
+ "hasLocution": true,
+ "plural": "gorilles"
+ },
+ {
+ "keyword": "singe",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "singes"
+ },
+ {
+ "keyword": "primate",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "primates"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04235755-n",
+ "02958501-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "core vocabulary"
+ ],
+ "_id": 2412,
+ "created": "2007-12-14T09:48:39.000Z",
+ "lastUpdated": "2021-02-06T07:50:10.297Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bonnet",
+ "hasLocution": true,
+ "plural": "bonnets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "04310635-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 2413,
+ "created": "2007-12-14T09:49:00.000Z",
+ "lastUpdated": "2021-03-13T21:34:02.469Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "agrafeuse",
+ "hasLocution": true,
+ "plural": "agrafeuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "beach"
+ ],
+ "synsets": [
+ "02957776-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 2411,
+ "created": "2007-12-14T09:48:17.000Z",
+ "lastUpdated": "2022-07-04T06:36:14.200Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casquette",
+ "hasLocution": true,
+ "plural": "casquettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "04566737-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2414,
+ "created": "2007-12-14T09:49:25.000Z",
+ "lastUpdated": "2021-03-13T21:34:42.728Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "robinet",
+ "hasLocution": true,
+ "plural": "robinets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses",
+ "food"
+ ],
+ "synsets": [
+ "01781131-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses",
+ "feeding",
+ "food"
+ ],
+ "_id": 2418,
+ "created": "2007-12-14T10:36:06.000Z",
+ "lastUpdated": "2021-04-12T21:14:08.968Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aimer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "apprécier",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "vouloir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "string instrument",
+ "fiestas del pilar",
+ "core vocabulary-knowledge",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "03472449-n",
+ "02679420-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "string instrument",
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "core vocabulary"
+ ],
+ "_id": 2417,
+ "created": "2007-12-14T10:34:13.000Z",
+ "lastUpdated": "2021-03-13T21:35:00.668Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guitare",
+ "hasLocution": true,
+ "plural": "guitares"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03446036-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 2415,
+ "created": "2007-12-14T09:50:33.000Z",
+ "lastUpdated": "2021-02-06T07:50:46.765Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gants",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food",
+ "core vocabulary-feeding",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07712845-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "core vocabulary",
+ "gastronomy"
+ ],
+ "_id": 2419,
+ "created": "2007-12-14T10:37:39.000Z",
+ "lastUpdated": "2024-12-09T18:36:48.050Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hamburger",
+ "hasLocution": true,
+ "plural": "hamburgers"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "burger",
+ "type": 2,
+ "plural": "burgers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dessert",
+ "core vocabulary-feeding",
+ "summer"
+ ],
+ "synsets": [
+ "07630339-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "core vocabulary",
+ "summer"
+ ],
+ "_id": 2420,
+ "created": "2007-12-14T10:38:04.000Z",
+ "lastUpdated": "2025-01-29T12:25:01.118Z",
+ "keywords": [
+ {
+ "keyword": "glace",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "glaces"
+ },
+ {
+ "keyword": "cornet de glace",
+ "hasLocution": false,
+ "plural": "cornets de glace",
+ "type": 2
+ },
+ {
+ "keyword": "cône de glace",
+ "hasLocution": false,
+ "plural": "cônes de glaces",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport"
+ ],
+ "synsets": [
+ "03517291-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 2421,
+ "created": "2007-12-14T10:38:23.000Z",
+ "lastUpdated": "2021-03-13T21:40:01.078Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hélicoptère",
+ "hasLocution": true,
+ "plural": "héicoptères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "10622393-n"
+ ],
+ "tags": [
+ "person",
+ "family",
+ "core vocabulary"
+ ],
+ "_id": 2422,
+ "created": "2007-12-14T10:43:00.000Z",
+ "lastUpdated": "2021-08-04T08:44:36.277Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "soeur",
+ "hasLocution": false,
+ "plural": "soeurs"
+ },
+ {
+ "keyword": "sœur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sœurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09895920-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 2423,
+ "created": "2007-12-14T10:43:23.000Z",
+ "lastUpdated": "2021-03-13T21:41:21.522Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "frère",
+ "hasLocution": true,
+ "plural": "frères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "river animal",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02401173-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 2424,
+ "created": "2007-12-14T10:43:45.000Z",
+ "lastUpdated": "2021-03-13T21:41:45.036Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hippopotame",
+ "hasLocution": true,
+ "plural": "hippopotames"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "insect",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "synsets": [
+ "02222138-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "_id": 2425,
+ "created": "2007-12-14T10:45:49.000Z",
+ "lastUpdated": "2021-03-13T21:42:04.516Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fourmi",
+ "hasLocution": true,
+ "plural": "fourmis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03868196-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 2426,
+ "created": "2007-12-14T10:46:13.000Z",
+ "lastUpdated": "2021-03-13T21:42:33.545Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "four",
+ "hasLocution": true,
+ "plural": "fours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07859612-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 2428,
+ "created": "2007-12-14T10:49:18.000Z",
+ "lastUpdated": "2021-08-04T08:45:30.731Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "œuf au plat",
+ "hasLocution": false,
+ "plural": "œufs au plat"
+ },
+ {
+ "keyword": "oeuf frit",
+ "hasLocution": false,
+ "plural": "oeufs frit",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "egg product",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07856780-n",
+ "01463098-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "egg product",
+ "core vocabulary"
+ ],
+ "_id": 2427,
+ "created": "2007-12-14T10:46:41.000Z",
+ "lastUpdated": "2021-08-04T08:45:19.162Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "œuf",
+ "hasLocution": false,
+ "plural": "œufs"
+ },
+ {
+ "keyword": "oeuf",
+ "hasLocution": false,
+ "plural": "oeufs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "04379457-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2431,
+ "created": "2007-12-14T10:50:35.000Z",
+ "lastUpdated": "2021-03-13T21:45:29.384Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "interrupteur",
+ "hasLocution": true,
+ "plural": "interrupteurs"
+ },
+ {
+ "keyword": "bouton électrique",
+ "hasLocution": false,
+ "plural": "boutons électriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "13521226-n",
+ "14872955-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 2429,
+ "created": "2007-12-14T10:49:50.000Z",
+ "lastUpdated": "2021-03-13T21:44:21.826Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "infusion",
+ "hasLocution": true,
+ "plural": "infusions"
+ },
+ {
+ "keyword": "tisane",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tisanes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07685636-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat",
+ "core vocabulary"
+ ],
+ "_id": 2433,
+ "created": "2007-12-14T10:52:08.000Z",
+ "lastUpdated": "2021-03-14T15:07:00.328Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jambon",
+ "hasLocution": true,
+ "plural": "jambons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01839438-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 2432,
+ "created": "2007-12-14T10:51:00.000Z",
+ "lastUpdated": "2021-04-10T20:17:25.416Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se mouvoir d'un lieu vers un autre, s'y rendre",
+ "keyword": "aller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "avancer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "partir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "marcher",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "urban area",
+ "gardening"
+ ],
+ "synsets": [
+ "03422255-n",
+ "03422659-n"
+ ],
+ "tags": [
+ "place",
+ "urban area",
+ "work",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 2434,
+ "created": "2007-12-14T10:52:28.000Z",
+ "lastUpdated": "2023-12-14T08:48:21.614Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jardin",
+ "hasLocution": true,
+ "plural": "jardins"
+ },
+ {
+ "keyword": "parc",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "parcs"
+ },
+ {
+ "keyword": "square",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "squares"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery",
+ "beverage",
+ "container"
+ ],
+ "synsets": [
+ "03956504-n",
+ "03608935-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "feeding",
+ "food",
+ "beverage",
+ "container"
+ ],
+ "_id": 2435,
+ "created": "2007-12-14T10:52:46.000Z",
+ "lastUpdated": "2021-03-13T21:49:46.235Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carafe",
+ "hasLocution": true,
+ "plural": "carafes"
+ },
+ {
+ "keyword": "pot",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pots"
+ },
+ {
+ "keyword": "cruche",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cruches"
+ },
+ {
+ "keyword": "pot à eau",
+ "hasLocution": false,
+ "plural": "pots à eau",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04377135-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 2436,
+ "created": "2007-12-14T10:53:07.000Z",
+ "lastUpdated": "2021-03-13T21:50:32.406Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pull-over",
+ "hasLocution": true,
+ "plural": "pull-overs"
+ },
+ {
+ "keyword": "pull",
+ "hasLocution": false,
+ "plural": "pulls",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction",
+ "residential building"
+ ],
+ "synsets": [
+ "04453655-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "home"
+ ],
+ "_id": 2430,
+ "created": "2007-12-14T10:50:10.000Z",
+ "lastUpdated": "2021-08-04T08:45:41.337Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toilettes",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "WC"
+ },
+ {
+ "keyword": "cabinets",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02441664-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 2437,
+ "created": "2007-12-14T10:53:32.000Z",
+ "lastUpdated": "2021-03-13T21:50:51.691Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "girafe",
+ "hasLocution": true,
+ "plural": "girafes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07743844-n",
+ "12599160-n",
+ "07741018-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable",
+ "core vocabulary"
+ ],
+ "_id": 2438,
+ "created": "2007-12-14T10:55:04.000Z",
+ "lastUpdated": "2021-03-13T21:51:44.131Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "petits pois"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "02423786-v",
+ "02423521-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 2439,
+ "created": "2007-12-14T10:58:08.000Z",
+ "lastUpdated": "2021-03-15T22:13:22.445Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. ind. Se divertir en pratiquant un jeu, s'amuser avec un jeu, un jouet",
+ "keyword": "jouer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "03914323-n",
+ "14820918-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "core vocabulary"
+ ],
+ "_id": 2440,
+ "created": "2007-12-14T11:02:04.000Z",
+ "lastUpdated": "2021-03-13T21:53:36.078Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crayon",
+ "hasLocution": true,
+ "plural": "crayons"
+ },
+ {
+ "keyword": "crayon à papier",
+ "hasLocution": false,
+ "plural": "crayons à papier",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction",
+ "residential building"
+ ],
+ "synsets": [
+ "04561206-n",
+ "04560989-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "home"
+ ],
+ "_id": 2441,
+ "created": "2007-12-14T11:02:34.000Z",
+ "lastUpdated": "2021-03-13T21:54:01.371Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lavabo",
+ "hasLocution": true,
+ "plural": "lavabos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "04561970-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 2442,
+ "created": "2007-12-14T11:03:08.000Z",
+ "lastUpdated": "2021-03-13T21:55:28.805Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "machine à laver",
+ "hasLocution": true,
+ "plural": "machines à laver"
+ },
+ {
+ "keyword": "lave-linge",
+ "hasLocution": false,
+ "plural": "lave-linges",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00036925-v",
+ "01539713-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 2443,
+ "created": "2007-12-14T11:05:11.000Z",
+ "lastUpdated": "2021-04-07T18:33:43.345Z",
+ "keywords": [
+ {
+ "keyword": "lavage des mains",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "lavages des mains"
+ },
+ {
+ "type": 3,
+ "keyword": "se savonner les mains",
+ "hasLocution": false
+ },
+ {
+ "keyword": "faire mousser les mains",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "dairy product",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07860018-n",
+ "07861311-n",
+ "07861142-n",
+ "07862778-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "animal-based food",
+ "dairy product",
+ "core vocabulary"
+ ],
+ "_id": 2445,
+ "created": "2007-12-14T11:05:58.000Z",
+ "lastUpdated": "2021-03-13T21:58:29.395Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lait",
+ "hasLocution": true,
+ "plural": "laits"
+ },
+ {
+ "keyword": "brique de lait",
+ "hasLocution": false,
+ "plural": "briques de lait",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "12006775-n",
+ "07739304-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 2446,
+ "created": "2007-12-14T11:07:26.000Z",
+ "lastUpdated": "2021-03-13T21:58:55.290Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "laitue",
+ "hasLocution": true,
+ "plural": "laitues"
+ },
+ {
+ "keyword": "salade",
+ "plural": "salades",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03212662-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 2444,
+ "created": "2007-12-14T11:05:32.000Z",
+ "lastUpdated": "2021-03-13T21:56:49.835Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lave-vaisselle",
+ "hasLocution": true,
+ "plural": "lave-vaisselles"
+ },
+ {
+ "keyword": "machine à laver la vaisselle",
+ "hasLocution": false,
+ "plural": "machines à laver la vaisselle",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07741231-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "core vocabulary"
+ ],
+ "_id": 2448,
+ "created": "2007-12-14T11:08:17.000Z",
+ "lastUpdated": "2021-03-08T09:22:31.011Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lentilles",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02131817-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 2449,
+ "created": "2007-12-14T11:08:47.000Z",
+ "lastUpdated": "2021-03-08T09:22:25.755Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lion",
+ "hasLocution": true,
+ "plural": "lions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "00626756-v",
+ "05816802-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 2447,
+ "created": "2007-12-14T11:07:54.000Z",
+ "lastUpdated": "2021-03-08T09:22:45.098Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lecture",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "library science",
+ "literature"
+ ],
+ "synsets": [
+ "06422547-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "library science",
+ "literature"
+ ],
+ "_id": 2450,
+ "created": "2007-12-14T11:25:16.000Z",
+ "lastUpdated": "2021-03-13T21:59:19.853Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "livre",
+ "hasLocution": true,
+ "plural": "livres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "speech therapy"
+ ],
+ "synsets": [
+ "10653862-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "speech therapy"
+ ],
+ "_id": 2454,
+ "created": "2007-12-14T12:21:41.000Z",
+ "lastUpdated": "2021-03-13T22:00:33.866Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "orthophoniste",
+ "hasLocution": true,
+ "plural": "orthophonistes"
+ },
+ {
+ "keyword": "logopède",
+ "hasLocution": false,
+ "plural": "lgopèdes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07716709-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "core vocabulary"
+ ],
+ "_id": 2455,
+ "created": "2007-12-14T12:23:24.000Z",
+ "lastUpdated": "2021-03-13T22:01:12.964Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "macaronis",
+ "hasLocution": true
+ },
+ {
+ "keyword": "macaronis à la tomate",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "object"
+ ],
+ "synsets": [
+ "03618503-n",
+ "03620246-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "object"
+ ],
+ "_id": 2451,
+ "created": "2007-12-14T11:28:24.000Z",
+ "lastUpdated": "2021-03-08T09:22:09.521Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clés",
+ "hasLocution": true
+ },
+ {
+ "keyword": "clefs",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals"
+ ],
+ "synsets": [
+ "10713754-n",
+ "10500315-n",
+ "10579780-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work"
+ ],
+ "_id": 2456,
+ "created": "2007-12-14T12:24:24.000Z",
+ "lastUpdated": "2021-03-13T22:02:54.652Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maîtresse",
+ "hasLocution": true,
+ "plural": "maîtresses"
+ },
+ {
+ "type": 2,
+ "keyword": "professeure",
+ "hasLocution": false,
+ "plural": "professeures"
+ },
+ {
+ "keyword": "institutrice",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "institutrices"
+ },
+ {
+ "keyword": "enseignante",
+ "hasLocution": false,
+ "plural": "enseignantes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals"
+ ],
+ "synsets": [
+ "10713754-n",
+ "10500315-n",
+ "10579780-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work"
+ ],
+ "_id": 2457,
+ "created": "2007-12-14T12:25:01.000Z",
+ "lastUpdated": "2021-03-08T09:21:24.759Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maître",
+ "hasLocution": true,
+ "plural": "maîtres"
+ },
+ {
+ "type": 2,
+ "keyword": "professeur",
+ "hasLocution": true,
+ "plural": "professeurs"
+ },
+ {
+ "keyword": "professeur des écoles",
+ "hasLocution": false,
+ "plural": "professeur des écoles",
+ "type": 2
+ },
+ {
+ "keyword": "enseignant",
+ "plural": "enseignants",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "02852392-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 2459,
+ "created": "2007-12-14T12:30:25.000Z",
+ "lastUpdated": "2021-03-08T09:20:52.178Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couverture",
+ "hasLocution": true,
+ "plural": "couvertures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "04387230-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 2460,
+ "created": "2007-12-14T12:30:46.000Z",
+ "lastUpdated": "2021-03-13T22:03:40.500Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nappe",
+ "hasLocution": true,
+ "plural": "nappes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07864314-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "core vocabulary"
+ ],
+ "_id": 2461,
+ "created": "2007-12-14T12:31:20.000Z",
+ "lastUpdated": "2021-08-04T08:20:33.622Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "beurre",
+ "hasLocution": true,
+ "plural": "beurres"
+ },
+ {
+ "keyword": "plaque de beurre",
+ "hasLocution": false,
+ "plural": "plaques de beurre",
+ "type": 2
+ },
+ {
+ "keyword": "plaquette de beurre",
+ "hasLocution": false,
+ "plural": "plaquettes de beurre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "03726382-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument",
+ "core vocabulary"
+ ],
+ "_id": 2463,
+ "created": "2007-12-14T12:36:22.000Z",
+ "lastUpdated": "2021-03-08T09:19:39.722Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maracas",
+ "hasLocution": true,
+ "plural": "maracas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07755101-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit",
+ "core vocabulary"
+ ],
+ "_id": 2462,
+ "created": "2007-12-14T12:34:03.000Z",
+ "lastUpdated": "2021-03-13T22:04:41.141Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pomme",
+ "hasLocution": true,
+ "plural": "pommes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "10297825-n",
+ "10352098-n"
+ ],
+ "tags": [
+ "person",
+ "family",
+ "core vocabulary"
+ ],
+ "_id": 2458,
+ "created": "2007-12-14T12:25:32.000Z",
+ "lastUpdated": "2021-03-13T22:03:17.801Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maman",
+ "hasLocution": true,
+ "plural": "mamans"
+ },
+ {
+ "keyword": "mère",
+ "plural": "mères",
+ "type": 2,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02276911-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 2465,
+ "created": "2007-12-14T12:39:11.000Z",
+ "lastUpdated": "2021-03-08T09:19:25.964Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "papillon",
+ "hasLocution": true,
+ "plural": "papillons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "symptom",
+ "body sensation"
+ ],
+ "synsets": [
+ "02554818-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 2464,
+ "created": "2007-12-14T12:37:57.000Z",
+ "lastUpdated": "2021-07-18T09:17:58.907Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "écoeuré",
+ "hasLocution": false,
+ "plural": "écoeurés"
+ },
+ {
+ "keyword": "étourdi",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "étourdis"
+ },
+ {
+ "keyword": "sonné",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "sonnés"
+ },
+ {
+ "keyword": "loufoque",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "loufoques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07766980-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 2468,
+ "created": "2007-12-14T12:40:16.000Z",
+ "lastUpdated": "2021-03-13T22:05:38.155Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pêche",
+ "hasLocution": true,
+ "plural": "pêches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "12184341-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit",
+ "core vocabulary"
+ ],
+ "_id": 2469,
+ "created": "2007-12-14T12:44:19.000Z",
+ "lastUpdated": "2021-02-04T19:41:41.469Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "pastèque",
+ "plural": "pastèques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "covid-19"
+ ],
+ "synsets": [
+ "10040615-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "covid-19"
+ ],
+ "_id": 2467,
+ "created": "2007-12-14T12:39:54.000Z",
+ "lastUpdated": "2021-03-13T22:05:27.267Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "médecin",
+ "hasLocution": true,
+ "plural": "médecins"
+ },
+ {
+ "type": 2,
+ "keyword": "docteur",
+ "hasLocution": true,
+ "plural": "docteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07658542-n",
+ "07658809-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 2470,
+ "created": "2007-12-14T12:45:53.000Z",
+ "lastUpdated": "2021-03-08T09:18:42.504Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "confiture",
+ "hasLocution": true,
+ "plural": "confitures"
+ },
+ {
+ "keyword": "confiture de fraise",
+ "hasLocution": false,
+ "plural": "confitures de fraise",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04388674-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 2471,
+ "created": "2007-12-14T12:49:55.000Z",
+ "lastUpdated": "2021-03-13T22:05:54.402Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "table de ping-pong",
+ "hasLocution": true,
+ "plural": "tables de ping-pong"
+ },
+ {
+ "keyword": "table de tennis de table",
+ "hasLocution": false,
+ "plural": "tables de tennis de table",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "03762667-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 2472,
+ "created": "2007-12-14T12:52:22.000Z",
+ "lastUpdated": "2021-03-13T22:06:12.037Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "métro",
+ "hasLocution": false,
+ "plural": "métros"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "03766619-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 2473,
+ "created": "2007-12-14T12:52:43.000Z",
+ "lastUpdated": "2021-03-14T15:06:15.838Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "micro-ondes",
+ "hasLocution": true,
+ "plural": "micro-ondes"
+ },
+ {
+ "keyword": "four à micro-onde",
+ "hasLocution": false,
+ "plural": "fours à micro-ondes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04442066-n",
+ "03660398-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "core vocabulary"
+ ],
+ "_id": 2466,
+ "created": "2007-12-14T12:39:33.000Z",
+ "lastUpdated": "2021-03-14T15:06:36.834Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bas",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses"
+ ],
+ "synsets": [
+ "02133754-v",
+ "02134989-v",
+ "02134765-v",
+ "02173796-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 2474,
+ "created": "2007-12-14T12:53:38.000Z",
+ "lastUpdated": "2021-03-23T21:45:19.389Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Percevoir quelqu'un, quelque chose par les yeux, les organes de la vue",
+ "keyword": "voir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "regarder",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "observer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "surveiller",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "examiner",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "02772753-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "core vocabulary"
+ ],
+ "_id": 2475,
+ "created": "2007-12-14T12:54:14.000Z",
+ "lastUpdated": "2021-03-08T09:16:58.193Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sac à dos",
+ "hasLocution": true,
+ "plural": "sacs à dos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "09915013-n",
+ "09835195-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 2476,
+ "created": "2007-12-14T12:55:46.000Z",
+ "lastUpdated": "2021-08-24T15:45:07.706Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "auxiliaire de vie",
+ "plural": "auxiliaires de vie"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "accompagnante éducative et sociale",
+ "plural": "accompagnantes éducatives et sociales"
+ },
+ {
+ "keyword": "auxiliaire",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "auxiliaires"
+ },
+ {
+ "keyword": "aidant",
+ "hasLocution": false,
+ "plural": "aidantes",
+ "type": 2
+ },
+ {
+ "keyword": "assistante maternelle",
+ "hasLocution": false,
+ "plural": "assistantes maternelles",
+ "type": 2
+ },
+ {
+ "keyword": "monitrice",
+ "hasLocution": true,
+ "plural": "monitrices",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02486953-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 2477,
+ "created": "2007-12-14T12:56:23.000Z",
+ "lastUpdated": "2021-03-08T09:16:44.392Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "singe",
+ "hasLocution": true,
+ "plural": "singes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "insect",
+ "oviparous",
+ "flying animal"
+ ],
+ "synsets": [
+ "02192818-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "flying animal"
+ ],
+ "_id": 2478,
+ "created": "2007-12-14T12:57:51.000Z",
+ "lastUpdated": "2021-03-14T15:03:41.274Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mouche",
+ "hasLocution": true,
+ "plural": "mouches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "03796045-n",
+ "03775257-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 2480,
+ "created": "2007-12-14T12:59:02.000Z",
+ "lastUpdated": "2021-08-04T08:47:17.823Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moto",
+ "hasLocution": true,
+ "plural": "motos"
+ },
+ {
+ "keyword": "motocyclette",
+ "type": 2,
+ "plural": "motocyclettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02202850-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "core vocabulary"
+ ],
+ "_id": 2479,
+ "created": "2007-12-14T12:58:31.000Z",
+ "lastUpdated": "2021-03-14T15:03:30.530Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moustique",
+ "hasLocution": true,
+ "plural": "moustiques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03223838-n"
+ ],
+ "tags": [
+ "leisure",
+ "toy"
+ ],
+ "_id": 2482,
+ "created": "2007-12-14T13:00:56.000Z",
+ "lastUpdated": "2024-12-07T08:01:30.116Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poupée",
+ "hasLocution": true,
+ "plural": "poupées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "core vocabulary-feeding",
+ "food"
+ ],
+ "synsets": [
+ "07763583-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit",
+ "core vocabulary"
+ ],
+ "_id": 2483,
+ "created": "2007-12-14T13:01:18.000Z",
+ "lastUpdated": "2024-12-11T07:01:44.022Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "orange",
+ "hasLocution": true,
+ "plural": "oranges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "10104064-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 2484,
+ "created": "2007-12-14T13:04:28.000Z",
+ "lastUpdated": "2021-03-14T15:02:24.127Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fille",
+ "hasLocution": true,
+ "plural": "filles"
+ },
+ {
+ "type": 2,
+ "keyword": "petite fille",
+ "hasLocution": true,
+ "plural": "petites filles"
+ },
+ {
+ "keyword": "enfant",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "enfants"
+ },
+ {
+ "keyword": "fillette ",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fillettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "hardware"
+ ],
+ "synsets": [
+ "03086983-n",
+ "03924602-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "computing",
+ "hardware"
+ ],
+ "_id": 2487,
+ "created": "2007-12-14T13:08:39.000Z",
+ "lastUpdated": "2021-03-14T14:59:59.600Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ordinateur",
+ "hasLocution": true,
+ "plural": "ordinateurs"
+ },
+ {
+ "keyword": "PC",
+ "hasLocution": false,
+ "plural": "PCs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02134305-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 2488,
+ "created": "2007-12-14T13:09:57.000Z",
+ "lastUpdated": "2021-03-03T17:28:11.126Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ours",
+ "hasLocution": true,
+ "plural": "ours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses"
+ ],
+ "synsets": [
+ "02129213-v",
+ "02129497-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 2486,
+ "created": "2007-12-14T13:05:47.000Z",
+ "lastUpdated": "2021-03-23T21:48:02.418Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "renifler"
+ },
+ {
+ "keyword": "respirer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "10305010-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 2485,
+ "created": "2007-12-14T13:04:50.000Z",
+ "lastUpdated": "2021-03-14T15:01:28.701Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enfant",
+ "hasLocution": true,
+ "plural": "enfants"
+ },
+ {
+ "type": 2,
+ "keyword": "garçon",
+ "hasLocution": true,
+ "plural": "garçons"
+ },
+ {
+ "type": 2,
+ "keyword": "petit garçon",
+ "hasLocution": true,
+ "plural": "petit garçons"
+ },
+ {
+ "keyword": "garçonnet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "garçonnets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "terrestrial animal",
+ "viviparous",
+ "cattle farming",
+ "domestic animal",
+ "core vocabulary-living being",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "02414351-n",
+ "02415086-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "terrestrial animal",
+ "viviparous",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic",
+ "core vocabulary"
+ ],
+ "_id": 2489,
+ "created": "2007-12-14T13:12:58.000Z",
+ "lastUpdated": "2021-03-03T17:28:47.895Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mouton",
+ "hasLocution": true,
+ "plural": "moutons"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "brebis",
+ "plural": "\nbrebis"
+ },
+ {
+ "keyword": "agneau",
+ "plural": "agneaux ",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01505702-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "core vocabulary"
+ ],
+ "_id": 2490,
+ "created": "2007-12-14T13:13:39.000Z",
+ "lastUpdated": "2021-03-03T17:28:57.972Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oiseau",
+ "hasLocution": true,
+ "plural": "oiseaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03879526-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 2492,
+ "created": "2007-12-17T09:21:41.000Z",
+ "lastUpdated": "2021-03-03T17:29:15.549Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "raquette de ping-pong ",
+ "hasLocution": false,
+ "plural": "raquettes de ping-pong"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "flying animal"
+ ],
+ "synsets": [
+ "01814550-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal"
+ ],
+ "_id": 2493,
+ "created": "2007-12-17T09:22:52.000Z",
+ "lastUpdated": "2021-03-14T14:58:59.273Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pigeon",
+ "hasLocution": true,
+ "plural": "pigeons"
+ },
+ {
+ "keyword": "colombe",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "colombes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07695101-n",
+ "07702956-n",
+ "07703214-n",
+ "07703126-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "core vocabulary"
+ ],
+ "_id": 2494,
+ "created": "2007-12-17T09:23:24.000Z",
+ "lastUpdated": "2021-03-03T17:29:44.329Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pain",
+ "hasLocution": true,
+ "plural": "pains"
+ },
+ {
+ "keyword": "baguette",
+ "type": 2,
+ "plural": "baguettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument",
+ "christmas"
+ ],
+ "synsets": [
+ "04394487-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 2495,
+ "created": "2007-12-17T09:24:27.000Z",
+ "lastUpdated": "2021-03-14T14:58:00.345Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tambourin",
+ "hasLocution": true,
+ "plural": "tambourins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture",
+ "playground"
+ ],
+ "synsets": [
+ "03683884-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground"
+ ],
+ "_id": 2498,
+ "created": "2007-12-17T09:29:37.000Z",
+ "lastUpdated": "2021-03-14T14:57:14.372Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corbeille",
+ "hasLocution": true,
+ "plural": "corbeilles"
+ },
+ {
+ "keyword": "poubelle",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "poubelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture",
+ "mode of transport"
+ ],
+ "synsets": [
+ "08534954-n",
+ "08674524-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture",
+ "movement",
+ "traffic",
+ "mode of transport"
+ ],
+ "_id": 2499,
+ "created": "2007-12-17T09:30:12.000Z",
+ "lastUpdated": "2024-12-12T15:56:37.059Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arrêt de bus",
+ "hasLocution": false,
+ "plural": "arrêts de bus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04514450-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "core vocabulary"
+ ],
+ "_id": 2500,
+ "created": "2007-12-17T09:31:28.000Z",
+ "lastUpdated": "2021-03-03T14:42:20.521Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parapluie",
+ "hasLocution": true,
+ "plural": "parapluies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07644479-n",
+ "07645903-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "core vocabulary"
+ ],
+ "_id": 2502,
+ "created": "2007-12-17T09:34:29.000Z",
+ "lastUpdated": "2021-04-20T20:03:10.890Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gâteau",
+ "hasLocution": true,
+ "plural": "gâteaux "
+ },
+ {
+ "keyword": "gâteau au chocolat",
+ "hasLocution": true,
+ "plural": "gâteaux au chocolat",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "board game"
+ ],
+ "synsets": [
+ "00506457-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "board game"
+ ],
+ "_id": 2501,
+ "created": "2007-12-17T09:32:28.000Z",
+ "lastUpdated": "2021-03-15T22:10:16.123Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jeu des petits chevaux",
+ "hasLocution": true,
+ "plural": "jeux des petits chevaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "03212556-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 2496,
+ "created": "2007-12-17T09:25:07.000Z",
+ "lastUpdated": "2021-03-14T14:57:38.466Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "torchon",
+ "hasLocution": true,
+ "plural": "torchons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10007601-n",
+ "10100638-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 2497,
+ "created": "2007-12-17T09:25:32.000Z",
+ "lastUpdated": "2021-03-03T17:30:08.624Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "père",
+ "hasLocution": true,
+ "plural": "pères"
+ },
+ {
+ "keyword": "papa",
+ "type": 2,
+ "plural": "papas",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07726361-n",
+ "12918253-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable",
+ "core vocabulary"
+ ],
+ "_id": 2503,
+ "created": "2007-12-17T09:35:10.000Z",
+ "lastUpdated": "2021-03-03T14:42:51.740Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pomme de terre",
+ "hasLocution": true,
+ "plural": "pommes de terre"
+ },
+ {
+ "keyword": "patate",
+ "type": 2,
+ "plural": "patates",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "sport material",
+ "skating"
+ ],
+ "synsets": [
+ "04232791-n",
+ "04109712-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "sport material",
+ "skating"
+ ],
+ "_id": 2506,
+ "created": "2007-12-17T09:37:46.000Z",
+ "lastUpdated": "2021-04-20T20:05:24.643Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patins à roulettes",
+ "hasLocution": true,
+ "plural": "patins à roulettes"
+ },
+ {
+ "keyword": "rollers",
+ "hasLocution": false,
+ "plural": "rollers",
+ "type": 2
+ },
+ {
+ "keyword": "patins",
+ "hasLocution": true,
+ "plural": "patins",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07726825-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "gastronomy"
+ ],
+ "_id": 2505,
+ "created": "2007-12-17T09:36:35.000Z",
+ "lastUpdated": "2024-12-13T06:48:39.956Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "frites",
+ "hasLocution": true,
+ "plural": "frites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "road safety",
+ "skating"
+ ],
+ "synsets": [
+ "04233049-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "movement",
+ "traffic",
+ "road safety",
+ "skating"
+ ],
+ "_id": 2507,
+ "created": "2007-12-17T09:38:17.000Z",
+ "lastUpdated": "2023-05-02T10:32:20.188Z",
+ "keywords": [
+ {
+ "keyword": "planche à roulettes",
+ "hasLocution": false,
+ "plural": "planches à roulettes",
+ "type": 2
+ },
+ {
+ "keyword": "skateboard",
+ "hasLocution": false,
+ "plural": "skateboards",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "toy",
+ "road safety"
+ ],
+ "synsets": [
+ "04156439-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "leisure",
+ "sport",
+ "toy",
+ "road safety"
+ ],
+ "_id": 2508,
+ "created": "2007-12-17T09:39:20.000Z",
+ "lastUpdated": "2021-03-03T14:43:40.918Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trottinette",
+ "hasLocution": true,
+ "plural": "trotinettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "terrestrial animal",
+ "oviparous",
+ "cattle farming",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01796799-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "terrestrial animal",
+ "oviparous",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic"
+ ],
+ "_id": 2509,
+ "created": "2007-12-17T09:40:29.000Z",
+ "lastUpdated": "2021-03-03T14:43:53.140Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dinde",
+ "hasLocution": true,
+ "plural": "dindes"
+ },
+ {
+ "keyword": "dindon",
+ "type": 2,
+ "plural": "dindons",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "14727036-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 2510,
+ "created": "2007-12-17T09:41:02.000Z",
+ "lastUpdated": "2021-03-03T14:44:21.990Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "colle",
+ "hasLocution": true,
+ "plural": "colles"
+ },
+ {
+ "keyword": "bâton de colle",
+ "hasLocution": false,
+ "plural": "bâtons de colle",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04416650-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 2514,
+ "created": "2007-12-17T09:47:45.000Z",
+ "lastUpdated": "2021-03-03T14:45:08.970Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balle de tennis",
+ "hasLocution": true,
+ "plural": "balles de tennis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "jewelry",
+ "accessories",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03267052-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "jewelry",
+ "accessories",
+ "core vocabulary"
+ ],
+ "_id": 2515,
+ "created": "2007-12-17T09:48:12.000Z",
+ "lastUpdated": "2021-03-26T14:02:48.472Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boucles d'oreilles",
+ "hasLocution": true,
+ "plural": "boucles d'oreilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "pet",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02086723-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "pet",
+ "domestic"
+ ],
+ "_id": 2517,
+ "created": "2007-12-17T09:56:09.000Z",
+ "lastUpdated": "2021-03-03T17:30:43.422Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chien",
+ "hasLocution": true,
+ "plural": "chiens "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction",
+ "residential building"
+ ],
+ "synsets": [
+ "04596493-n",
+ "02854358-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "home"
+ ],
+ "_id": 2518,
+ "created": "2007-12-17T09:56:36.000Z",
+ "lastUpdated": "2021-03-15T22:06:36.781Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "volet",
+ "hasLocution": true,
+ "plural": "volets"
+ },
+ {
+ "keyword": "volet roulant",
+ "hasLocution": false,
+ "plural": "volets roulants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "herbivorous",
+ "omnivorous",
+ "fish-animal",
+ "oviparous",
+ "ovoviviparous",
+ "aquatic animal",
+ "river animal",
+ "marine animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02514684-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "herbivorous",
+ "omnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "ovoviviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "marine animal",
+ "sea",
+ "core vocabulary"
+ ],
+ "_id": 2520,
+ "created": "2007-12-17T09:58:20.000Z",
+ "lastUpdated": "2021-03-15T22:01:28.372Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poisson",
+ "hasLocution": true,
+ "plural": "poissons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "string instrument",
+ "keyboard instrument",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "03934354-n",
+ "03457685-n",
+ "03090499-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "string instrument",
+ "keyboard instrument",
+ "core vocabulary"
+ ],
+ "_id": 2521,
+ "created": "2007-12-17T10:02:54.000Z",
+ "lastUpdated": "2021-04-20T20:09:53.084Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piano",
+ "hasLocution": true,
+ "plural": "pianos"
+ },
+ {
+ "keyword": "piano à queue",
+ "hasLocution": false,
+ "plural": "pianos à queue",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "hairdresser",
+ "routine"
+ ],
+ "synsets": [
+ "01599566-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser",
+ "person",
+ "routine"
+ ],
+ "_id": 2512,
+ "created": "2007-12-17T09:46:12.000Z",
+ "lastUpdated": "2021-03-03T14:44:55.495Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Arranger la chevelure avec soin : Cheveux faciles, difficiles à coiffer.",
+ "keyword": "coiffer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "peigner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se peigner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se coiffer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07791351-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish",
+ "gastronomy"
+ ],
+ "_id": 2519,
+ "created": "2007-12-17T09:57:03.000Z",
+ "lastUpdated": "2024-12-08T15:40:21.987Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poisson",
+ "hasLocution": true,
+ "plural": "poissons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "usual verbs",
+ "core vocabulary-communication",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "01334887-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 2511,
+ "created": "2007-12-17T09:41:28.000Z",
+ "lastUpdated": "2021-03-15T22:07:42.440Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "coller",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03883150-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 2522,
+ "created": "2007-12-17T10:12:30.000Z",
+ "lastUpdated": "2021-03-03T14:45:54.732Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pyjama",
+ "hasLocution": true,
+ "plural": "pyjamas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "03881909-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "core vocabulary"
+ ],
+ "_id": 2523,
+ "created": "2007-12-17T10:13:00.000Z",
+ "lastUpdated": "2021-03-03T17:30:57.272Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pinceau",
+ "hasLocution": true,
+ "plural": "pinceaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "food"
+ ],
+ "synsets": [
+ "07769251-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 2525,
+ "created": "2007-12-17T10:26:07.000Z",
+ "lastUpdated": "2024-12-13T06:52:03.320Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ananas",
+ "hasLocution": true,
+ "plural": "ananas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07889783-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "core vocabulary"
+ ],
+ "_id": 2527,
+ "created": "2007-12-17T10:28:01.000Z",
+ "lastUpdated": "2021-03-03T14:46:30.089Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pizza",
+ "hasLocution": true,
+ "plural": "pizzas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "14616585-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "core vocabulary"
+ ],
+ "_id": 2529,
+ "created": "2007-12-17T10:29:34.000Z",
+ "lastUpdated": "2021-03-03T14:47:49.712Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pâte à modeler",
+ "hasLocution": true,
+ "plural": "pâtes à modeler"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "clothing industry"
+ ],
+ "synsets": [
+ "03589998-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "work",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 2528,
+ "created": "2007-12-17T10:28:50.000Z",
+ "lastUpdated": "2021-03-03T14:46:41.536Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fer à repasser",
+ "hasLocution": true,
+ "plural": "fers à repasser"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "02849749-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "core vocabulary"
+ ],
+ "_id": 2526,
+ "created": "2007-12-17T10:27:34.000Z",
+ "lastUpdated": "2021-03-15T22:00:43.828Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tableau",
+ "hasLocution": true,
+ "plural": "tableaux"
+ },
+ {
+ "keyword": "tableau noir",
+ "hasLocution": false,
+ "plural": "tableaux noirs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07769568-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit",
+ "core vocabulary"
+ ],
+ "_id": 2530,
+ "created": "2007-12-17T10:30:03.000Z",
+ "lastUpdated": "2021-02-05T08:56:42.053Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "banane",
+ "hasLocution": true,
+ "plural": "bananes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "03162014-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 2531,
+ "created": "2007-12-17T10:35:38.000Z",
+ "lastUpdated": "2021-02-02T18:14:46.681Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cymbale",
+ "hasLocution": true,
+ "plural": "cymbales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery",
+ "cookery"
+ ],
+ "synsets": [
+ "03965779-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 2532,
+ "created": "2007-12-17T10:36:21.000Z",
+ "lastUpdated": "2021-04-20T20:13:44.172Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "assiette",
+ "hasLocution": true,
+ "plural": "assiettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal",
+ "core vocabulary-living being",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "01794683-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic",
+ "core vocabulary"
+ ],
+ "_id": 2533,
+ "created": "2007-12-17T10:38:20.000Z",
+ "lastUpdated": "2021-02-05T09:13:44.237Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poussin",
+ "hasLocution": true,
+ "plural": "poussins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "football",
+ "sport"
+ ],
+ "synsets": [
+ "03447680-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "football"
+ ],
+ "_id": 2535,
+ "created": "2007-12-17T10:42:29.000Z",
+ "lastUpdated": "2024-12-13T06:55:27.750Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "but",
+ "hasLocution": true,
+ "plural": "buts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "meat",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07663876-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat",
+ "gastronomy"
+ ],
+ "_id": 2534,
+ "created": "2007-12-17T10:39:06.000Z",
+ "lastUpdated": "2024-12-08T07:33:39.251Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuisse de poulet",
+ "hasLocution": true,
+ "plural": "cuisses de poulet"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "04563490-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 2537,
+ "created": "2007-12-17T12:33:20.000Z",
+ "lastUpdated": "2021-03-03T14:47:43.226Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bracelet",
+ "hasLocution": true,
+ "plural": "bracelets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "04029643-n",
+ "02892139-n",
+ "02766719-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "core vocabulary"
+ ],
+ "_id": 2538,
+ "created": "2007-12-17T12:34:56.000Z",
+ "lastUpdated": "2021-04-20T20:18:04.172Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poinçon",
+ "hasLocution": true,
+ "plural": "poinçons"
+ },
+ {
+ "keyword": "alène",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "alènes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07666634-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "core vocabulary"
+ ],
+ "_id": 2539,
+ "created": "2007-12-17T12:36:21.000Z",
+ "lastUpdated": "2021-02-05T08:57:12.813Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "purée",
+ "hasLocution": true,
+ "plural": "purées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "educational material",
+ "core vocabulary-leisure",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "04034791-n",
+ "03604123-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "education",
+ "educational material",
+ "core vocabulary"
+ ],
+ "_id": 2540,
+ "created": "2007-12-17T12:37:00.000Z",
+ "lastUpdated": "2021-04-20T20:20:14.927Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "puzzle",
+ "hasLocution": true,
+ "plural": "puzzles"
+ },
+ {
+ "keyword": "casse-tête",
+ "hasLocution": false,
+ "plural": "casse-têtes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "processed food",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07866305-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "processed food",
+ "core vocabulary"
+ ],
+ "_id": 2541,
+ "created": "2007-12-17T12:39:40.000Z",
+ "lastUpdated": "2021-02-05T08:57:29.439Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fromage",
+ "hasLocution": true,
+ "plural": "fromages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "amphibian",
+ "river animal",
+ "terrestrial animal",
+ "oviparous"
+ ],
+ "synsets": [
+ "01642406-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "amphibian",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "terrestrial animal",
+ "oviparous"
+ ],
+ "_id": 2543,
+ "created": "2007-12-17T12:41:33.000Z",
+ "lastUpdated": "2021-02-02T18:17:14.843Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grenouille",
+ "hasLocution": true,
+ "plural": "grenouilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "04058661-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 2542,
+ "created": "2007-12-17T12:41:03.000Z",
+ "lastUpdated": "2021-04-20T20:21:25.303Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rampe",
+ "hasLocution": true,
+ "plural": "rampes"
+ },
+ {
+ "keyword": "rampe d’accès",
+ "hasLocution": false,
+ "plural": "rampes d’accès",
+ "type": 2
+ },
+ {
+ "keyword": "pente",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pentes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04416941-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 2544,
+ "created": "2007-12-17T12:42:09.000Z",
+ "lastUpdated": "2021-02-02T18:17:32.856Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "raquette",
+ "hasLocution": true,
+ "plural": "raquettes"
+ },
+ {
+ "type": 2,
+ "keyword": "raquette de tennis",
+ "hasLocution": true,
+ "plural": "raquettes de tennis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01576346-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 2545,
+ "created": "2007-12-17T12:45:20.000Z",
+ "lastUpdated": "2021-04-20T20:23:30.086Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "déchirer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "arracher",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "herbivorous"
+ ],
+ "synsets": [
+ "02332897-n"
+ ],
+ "tags": [
+ "animal",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "herbivorous"
+ ],
+ "_id": 2546,
+ "created": "2007-12-17T12:46:03.000Z",
+ "lastUpdated": "2021-04-20T20:24:05.896Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "souris",
+ "hasLocution": true,
+ "plural": "souris"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "sport",
+ "football"
+ ],
+ "synsets": [
+ "03825694-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "football"
+ ],
+ "_id": 2548,
+ "created": "2007-12-17T13:01:33.000Z",
+ "lastUpdated": "2024-12-08T07:15:35.506Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "filet",
+ "hasLocution": true,
+ "plural": "filets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "usual verbs",
+ "core vocabulary-communication",
+ "core vocabulary-education",
+ "object"
+ ],
+ "synsets": [
+ "01251514-v",
+ "01557581-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "usual verbs",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 2547,
+ "created": "2007-12-17T12:48:02.000Z",
+ "lastUpdated": "2024-12-10T06:11:20.383Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "découper",
+ "hasLocution": true
+ },
+ {
+ "keyword": "couper avec des ciseaux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "chronological device",
+ "chronological instrument",
+ "core vocabulary-object",
+ "core vocabulary-time",
+ "trade"
+ ],
+ "synsets": [
+ "04615227-n",
+ "04563183-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "appliance",
+ "time",
+ "chronological device",
+ "core vocabulary",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 2549,
+ "created": "2007-12-17T13:09:14.000Z",
+ "lastUpdated": "2024-12-13T07:00:26.763Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "montre",
+ "hasLocution": true,
+ "plural": "montres"
+ },
+ {
+ "keyword": "montre-bracelet",
+ "hasLocution": false,
+ "plural": "montres-bracelets",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02394646-n",
+ "02395813-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 2550,
+ "created": "2007-12-17T13:11:52.000Z",
+ "lastUpdated": "2021-02-02T18:21:10.290Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rhinocéros",
+ "hasLocution": true,
+ "plural": "rhinocéros"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "04195222-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 2551,
+ "created": "2007-12-17T13:18:14.000Z",
+ "lastUpdated": "2021-04-20T20:30:58.179Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "draps",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03113801-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 2552,
+ "created": "2007-12-17T13:19:59.000Z",
+ "lastUpdated": "2021-04-20T20:32:33.828Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tire-bouchon",
+ "hasLocution": true,
+ "plural": "tire-bouchons"
+ },
+ {
+ "keyword": "ouvre-bouteille",
+ "hasLocution": false,
+ "plural": "ouvre-bouteilles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03914833-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 2553,
+ "created": "2007-12-17T13:20:34.000Z",
+ "lastUpdated": "2021-02-02T18:21:50.166Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "taille-crayon",
+ "hasLocution": true,
+ "plural": "taille-crayons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "04140872-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 2556,
+ "created": "2007-12-17T13:30:36.000Z",
+ "lastUpdated": "2021-04-20T20:35:19.084Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sandales",
+ "hasLocution": true,
+ "plural": "sandales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "04138582-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 2554,
+ "created": "2007-12-17T13:26:19.000Z",
+ "lastUpdated": "2021-02-02T18:22:02.189Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salière",
+ "hasLocution": true,
+ "plural": "salières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "03405146-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 2558,
+ "created": "2007-12-17T13:31:58.000Z",
+ "lastUpdated": "2021-03-26T16:38:28.180Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poêle",
+ "hasLocution": true,
+ "plural": "poêles"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "poêle à frire",
+ "plural": "poêles à frire",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "04148141-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 2559,
+ "created": "2007-12-17T13:32:29.000Z",
+ "lastUpdated": "2021-02-02T18:23:04.602Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saxophone",
+ "hasLocution": true,
+ "plural": "saxophones"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "work tool",
+ "hairdresser"
+ ],
+ "synsets": [
+ "03488399-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "work",
+ "tool",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 2560,
+ "created": "2007-12-17T13:32:59.000Z",
+ "lastUpdated": "2021-03-15T21:56:39.129Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "sèche-cheveux",
+ "plural": "sèches-cheveux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07691372-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 2555,
+ "created": "2007-12-17T13:26:56.000Z",
+ "lastUpdated": "2021-04-20T20:34:26.671Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saucisses",
+ "hasLocution": true,
+ "plural": "saucisses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "core vocabulary-feeding",
+ "feeding"
+ ],
+ "synsets": [
+ "07783823-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit",
+ "core vocabulary"
+ ],
+ "_id": 2561,
+ "created": "2007-12-17T13:34:34.000Z",
+ "lastUpdated": "2021-09-16T10:29:40.797Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poire",
+ "hasLocution": true,
+ "plural": "poires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument",
+ "christmas",
+ "core vocabulary-knowledge",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "04394487-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument",
+ "event",
+ "popular event",
+ "christmas",
+ "core vocabulary"
+ ],
+ "_id": 2564,
+ "created": "2007-12-17T13:36:05.000Z",
+ "lastUpdated": "2021-02-06T07:08:00.819Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tambourin",
+ "hasLocution": true,
+ "plural": "tambourins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04496264-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 2565,
+ "created": "2007-12-17T13:36:34.000Z",
+ "lastUpdated": "2021-03-02T18:10:52.171Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pantalon",
+ "hasLocution": true,
+ "plural": "pantalons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "oviparous",
+ "river animal",
+ "flying animal"
+ ],
+ "synsets": [
+ "01848972-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "flying animal"
+ ],
+ "_id": 2563,
+ "created": "2007-12-17T13:35:38.000Z",
+ "lastUpdated": "2021-04-20T20:38:55.931Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canard",
+ "hasLocution": true,
+ "plural": "canards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine",
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00218901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 2566,
+ "created": "2007-12-18T09:15:40.000Z",
+ "lastUpdated": "2021-10-18T15:35:51.066Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "essuyer les mains",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "06887235-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 2567,
+ "created": "2007-12-18T09:17:39.000Z",
+ "lastUpdated": "2021-03-15T21:51:44.201Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "feu",
+ "hasLocution": true,
+ "plural": "feux"
+ },
+ {
+ "keyword": "feu tricolore",
+ "hasLocution": false,
+ "plural": "feux tricolores",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "reptile",
+ "oviparous",
+ "ovoviviparous",
+ "terrestrial animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01729333-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "reptile",
+ "oviparous",
+ "ovoviviparous",
+ "terrestrial animal",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 2568,
+ "created": "2007-12-18T09:39:14.000Z",
+ "lastUpdated": "2021-03-03T14:49:21.911Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "serpent",
+ "hasLocution": true,
+ "plural": "serpents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "02741540-n",
+ "04069540-n",
+ "03267635-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 2570,
+ "created": "2007-12-18T09:53:58.000Z",
+ "lastUpdated": "2021-03-03T14:49:58.358Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fauteuil",
+ "hasLocution": true,
+ "plural": "fauteuils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "03813077-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 2569,
+ "created": "2007-12-18T09:40:20.000Z",
+ "lastUpdated": "2021-03-03T14:49:50.648Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "serviette",
+ "hasLocution": true,
+ "plural": "serviettes"
+ },
+ {
+ "keyword": "serviette de table",
+ "plural": "serviettes de table",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "pet",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01823844-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "pet",
+ "domestic"
+ ],
+ "_id": 2562,
+ "created": "2007-12-17T13:35:06.000Z",
+ "lastUpdated": "2021-03-03T17:31:08.380Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "perruche",
+ "hasLocution": true,
+ "plural": "perruches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04263630-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 2571,
+ "created": "2007-12-18T09:56:22.000Z",
+ "lastUpdated": "2021-03-15T21:49:08.491Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canapé",
+ "hasLocution": true,
+ "plural": "canapés"
+ },
+ {
+ "keyword": "sofa",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sofas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "fashion",
+ "clothes"
+ ],
+ "synsets": [
+ "03502782-n",
+ "03330886-n",
+ "04255617-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "clothes"
+ ],
+ "_id": 2572,
+ "created": "2007-12-18T09:57:22.000Z",
+ "lastUpdated": "2024-12-08T07:28:01.946Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chapeau",
+ "hasLocution": true,
+ "plural": "chapeaux"
+ },
+ {
+ "keyword": "feutre",
+ "hasLocution": false,
+ "plural": "feutres",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "construction"
+ ],
+ "synsets": [
+ "03370438-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2575,
+ "created": "2007-12-18T10:01:38.000Z",
+ "lastUpdated": "2021-04-20T20:47:54.531Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sol",
+ "hasLocution": true,
+ "plural": "sols"
+ },
+ {
+ "keyword": "plancher",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "planchers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07598762-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "core vocabulary"
+ ],
+ "_id": 2573,
+ "created": "2007-12-18T09:58:06.000Z",
+ "lastUpdated": "2021-04-20T20:46:21.480Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "soupe",
+ "hasLocution": true,
+ "plural": "soupes"
+ },
+ {
+ "keyword": "potage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "potages"
+ },
+ {
+ "keyword": "velouté",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "veloutés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "02896008-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 2576,
+ "created": "2007-12-18T10:02:31.000Z",
+ "lastUpdated": "2021-03-15T21:47:12.000Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "soutien-gorge",
+ "hasLocution": true,
+ "plural": "soutiens-gorge"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "02366035-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 2574,
+ "created": "2007-12-18T09:59:11.000Z",
+ "lastUpdated": "2024-10-19T09:46:58.216Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "surpris",
+ "hasLocution": true,
+ "plural": "surpris"
+ },
+ {
+ "keyword": "étonné",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "étonnés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "03591259-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 2577,
+ "created": "2007-12-18T10:03:11.000Z",
+ "lastUpdated": "2021-04-20T20:51:17.738Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "table à repasser",
+ "hasLocution": true,
+ "plural": "tables à repasser"
+ },
+ {
+ "keyword": "table de repassage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tables de repassage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "03254272-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument",
+ "core vocabulary"
+ ],
+ "_id": 2578,
+ "created": "2007-12-18T10:16:56.000Z",
+ "lastUpdated": "2021-03-03T14:50:49.055Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tambour",
+ "hasLocution": true,
+ "plural": "tambours"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "birthday"
+ ],
+ "synsets": [
+ "07644479-n",
+ "07645597-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 2579,
+ "created": "2007-12-18T10:18:41.000Z",
+ "lastUpdated": "2021-03-26T14:03:01.160Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "gâteau",
+ "plural": "gâteaux"
+ },
+ {
+ "keyword": "gâteau d’anniversaire",
+ "hasLocution": false,
+ "plural": "gâteaux d’anniversaire",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "02934150-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 2580,
+ "created": "2007-12-18T10:19:07.000Z",
+ "lastUpdated": "2021-03-15T21:45:57.939Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "taxi",
+ "hasLocution": true,
+ "plural": "taxis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07772927-n",
+ "12184582-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 2557,
+ "created": "2007-12-17T13:31:30.000Z",
+ "lastUpdated": "2021-02-02T18:22:48.089Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pastèque",
+ "hasLocution": true,
+ "plural": "pastèques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery"
+ ],
+ "synsets": [
+ "03067076-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home"
+ ],
+ "_id": 2581,
+ "created": "2007-12-18T10:19:34.000Z",
+ "lastUpdated": "2021-08-04T08:54:46.524Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tasse à café",
+ "hasLocution": false,
+ "plural": "tasses à café"
+ },
+ {
+ "keyword": "tasse",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "tasses"
+ },
+ {
+ "keyword": "tasse de petit-déjeuner",
+ "hasLocution": false,
+ "plural": "tasses de petit-déjeuner",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "construction"
+ ],
+ "synsets": [
+ "02993828-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2583,
+ "created": "2007-12-18T11:57:47.000Z",
+ "lastUpdated": "2021-03-15T21:43:05.591Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "plafond",
+ "plural": "plafonds"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media device",
+ "mass media"
+ ],
+ "synsets": [
+ "03192279-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media",
+ "communication"
+ ],
+ "_id": 2585,
+ "created": "2007-12-18T12:01:59.000Z",
+ "lastUpdated": "2021-04-20T20:55:52.347Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "téléphone",
+ "hasLocution": true,
+ "plural": "téléphones"
+ },
+ {
+ "keyword": "téléphone à cadran",
+ "plural": "téléphones à cadran",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03152175-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 2582,
+ "created": "2007-12-18T11:57:03.000Z",
+ "lastUpdated": "2021-04-20T20:53:01.036Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tasse",
+ "hasLocution": true,
+ "plural": "tasses"
+ },
+ {
+ "keyword": "mug",
+ "hasLocution": false,
+ "plural": "mugs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "mass media"
+ ],
+ "synsets": [
+ "02995984-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "communication",
+ "mass media"
+ ],
+ "_id": 2586,
+ "created": "2007-12-18T12:08:17.000Z",
+ "lastUpdated": "2021-04-20T20:56:45.483Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "téléphone",
+ "hasLocution": true,
+ "plural": "téléphones"
+ },
+ {
+ "type": 2,
+ "keyword": "portable",
+ "hasLocution": true,
+ "plural": "portables"
+ },
+ {
+ "type": 2,
+ "keyword": "téléphone portable",
+ "hasLocution": true,
+ "plural": "téléphones portables"
+ },
+ {
+ "keyword": "GSM",
+ "plural": "GSM",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "téléphone cellulaire",
+ "hasLocution": false,
+ "plural": "téléphones cellulaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cutlery",
+ "cookery",
+ "core vocabulary-object",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "03388794-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "cutlery",
+ "home",
+ "feeding",
+ "cookery",
+ "core vocabulary"
+ ],
+ "_id": 2588,
+ "created": "2007-12-18T12:11:33.000Z",
+ "lastUpdated": "2021-03-03T14:53:15.472Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fourchette",
+ "hasLocution": true,
+ "plural": "fourchettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "ovoviviparous",
+ "marine animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01484971-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "ovoviviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "wild"
+ ],
+ "_id": 2589,
+ "created": "2007-12-18T12:23:41.000Z",
+ "lastUpdated": "2021-03-03T17:36:55.654Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "requin",
+ "hasLocution": true,
+ "plural": "requins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "construction"
+ ],
+ "synsets": [
+ "04112162-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2584,
+ "created": "2007-12-18T12:01:04.000Z",
+ "lastUpdated": "2021-03-03T14:52:03.041Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toit",
+ "hasLocution": true,
+ "plural": "toits"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04466597-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 2593,
+ "created": "2007-12-18T12:30:30.000Z",
+ "lastUpdated": "2021-03-23T21:48:19.294Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "serviette de bain",
+ "hasLocution": true,
+ "plural": "serviettes de bains"
+ },
+ {
+ "keyword": "serviette de toilette",
+ "hasLocution": false,
+ "plural": "serviettes de toilette",
+ "type": 2
+ },
+ {
+ "keyword": "serviette éponge",
+ "hasLocution": false,
+ "plural": "serviettes éponges",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02132256-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 2590,
+ "created": "2007-12-18T12:24:02.000Z",
+ "lastUpdated": "2021-03-15T21:42:19.139Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tigre",
+ "hasLocution": true,
+ "plural": "tigres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "work tool",
+ "hairdresser",
+ "clothing industry",
+ "core vocabulary-object",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "04155119-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "work",
+ "tool",
+ "tertiary sector",
+ "personal services",
+ "hairdresser",
+ "secondary sector",
+ "clothing industry",
+ "core vocabulary"
+ ],
+ "_id": 2591,
+ "created": "2007-12-18T12:24:34.000Z",
+ "lastUpdated": "2021-03-03T17:37:05.588Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ciseaux",
+ "hasLocution": true,
+ "plural": "ciseaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal",
+ "bullfighting"
+ ],
+ "synsets": [
+ "01890264-n",
+ "02405977-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic",
+ "scenic art",
+ "bullfighting"
+ ],
+ "_id": 2595,
+ "created": "2007-12-18T12:32:42.000Z",
+ "lastUpdated": "2022-06-14T09:50:13.132Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "taureau",
+ "hasLocution": true,
+ "plural": "taureaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "reptile",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01672733-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "reptile",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 2596,
+ "created": "2007-12-18T12:34:26.000Z",
+ "lastUpdated": "2021-03-03T14:54:02.421Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tortue",
+ "hasLocution": true,
+ "plural": "tortues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07749993-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable",
+ "core vocabulary"
+ ],
+ "_id": 2594,
+ "created": "2007-12-18T12:32:13.000Z",
+ "lastUpdated": "2021-03-03T14:53:49.107Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tomate",
+ "hasLocution": true,
+ "plural": "tomates"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "professional"
+ ],
+ "synsets": [
+ "02418610-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "professional"
+ ],
+ "_id": 2599,
+ "created": "2007-12-18T13:12:31.000Z",
+ "lastUpdated": "2021-03-03T14:54:17.351Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Avoir une profession, exercer un métier",
+ "keyword": "travailler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "04449446-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 2598,
+ "created": "2007-12-18T13:11:36.000Z",
+ "lastUpdated": "2022-02-03T06:26:41.595Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grille-pain",
+ "hasLocution": true,
+ "plural": "grille-pains"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "swimming",
+ "sportswear",
+ "swimming pool",
+ "beach"
+ ],
+ "synsets": [
+ "04378650-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "leisure",
+ "sport",
+ "swimming",
+ "sportswear",
+ "clothing",
+ "outdoor activity",
+ "swimming pool",
+ "beach"
+ ],
+ "_id": 2601,
+ "created": "2007-12-18T13:20:29.000Z",
+ "lastUpdated": "2021-03-15T22:50:36.806Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maillot de bain",
+ "hasLocution": true,
+ "plural": "maillots de bain"
+ },
+ {
+ "keyword": "short de bain",
+ "hasLocution": false,
+ "plural": "shorts de bain",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction",
+ "core vocabulary-place",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "03275606-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "core vocabulary"
+ ],
+ "_id": 2592,
+ "created": "2007-12-18T12:29:24.000Z",
+ "lastUpdated": "2021-04-20T20:59:25.839Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sonnette",
+ "hasLocution": true,
+ "plural": "sonnettes "
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "sonnerie électrique",
+ "plural": "sonneries électriques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "04475240-n",
+ "03901930-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 2603,
+ "created": "2007-12-18T13:21:16.000Z",
+ "lastUpdated": "2021-03-03T17:37:29.191Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "train",
+ "hasLocution": true,
+ "plural": "trains"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "04488109-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 2604,
+ "created": "2007-12-18T13:21:41.000Z",
+ "lastUpdated": "2021-03-15T22:43:26.217Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "triangle",
+ "hasLocution": true,
+ "plural": "triangles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work machine",
+ "agriculture",
+ "core vocabulary-movement",
+ "land transport"
+ ],
+ "synsets": [
+ "04472736-n"
+ ],
+ "tags": [
+ "work",
+ "work machine",
+ "primary sector",
+ "agriculture",
+ "movement",
+ "core vocabulary",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 2600,
+ "created": "2007-12-18T13:20:04.000Z",
+ "lastUpdated": "2022-04-22T07:23:11.552Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tracteur",
+ "hasLocution": true,
+ "plural": "tracteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "04342573-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 2602,
+ "created": "2007-12-18T13:20:49.000Z",
+ "lastUpdated": "2021-03-15T22:44:56.321Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tramway",
+ "hasLocution": true,
+ "plural": "tramways"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01364779-a",
+ "00707060-s",
+ "00912446-a",
+ "01152997-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 2606,
+ "created": "2007-12-18T13:22:26.000Z",
+ "lastUpdated": "2021-03-23T21:52:01.379Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "triste",
+ "hasLocution": true,
+ "plural": "tristes"
+ },
+ {
+ "keyword": "malheureux",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "déprimé",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "déprimés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "03115320-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument",
+ "core vocabulary"
+ ],
+ "_id": 2607,
+ "created": "2007-12-18T13:22:53.000Z",
+ "lastUpdated": "2021-03-15T22:41:11.845Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trompette",
+ "hasLocution": true,
+ "plural": "trompettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 2608,
+ "created": "2007-12-18T13:37:55.000Z",
+ "lastUpdated": "2024-10-20T05:28:32.821Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "tu",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "vous",
+ "hasLocution": true
+ },
+ {
+ "keyword": "toi",
+ "hasLocution": true,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery",
+ "beverage",
+ "core vocabulary-object",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "03443167-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "feeding",
+ "food",
+ "beverage",
+ "core vocabulary"
+ ],
+ "_id": 2610,
+ "created": "2007-12-18T13:39:56.000Z",
+ "lastUpdated": "2021-03-15T22:38:11.619Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "verre",
+ "hasLocution": true,
+ "plural": "verres"
+ },
+ {
+ "keyword": "gobelet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gobelets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "building facility",
+ "construction",
+ "core vocabulary-knowledge",
+ "core vocabulary-place",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "04594951-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "core vocabulary"
+ ],
+ "_id": 2611,
+ "created": "2007-12-18T13:41:56.000Z",
+ "lastUpdated": "2021-03-15T22:37:14.405Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fenêtre",
+ "hasLocution": true,
+ "plural": "fenêtres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "fashion"
+ ],
+ "synsets": [
+ "03241438-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 2613,
+ "created": "2007-12-18T13:43:01.000Z",
+ "lastUpdated": "2024-12-08T15:53:30.069Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "robe",
+ "plural": "robes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "04489649-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 2605,
+ "created": "2007-12-18T13:22:06.000Z",
+ "lastUpdated": "2021-03-15T22:42:17.802Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tricycle",
+ "hasLocution": true,
+ "plural": "tricycles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal",
+ "core vocabulary-living being",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "02406106-n",
+ "01890428-n",
+ "02408826-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic",
+ "core vocabulary"
+ ],
+ "_id": 2609,
+ "created": "2007-12-18T13:39:30.000Z",
+ "lastUpdated": "2021-03-15T22:39:27.975Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vache",
+ "hasLocution": true,
+ "plural": "vaches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "03726875-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 2616,
+ "created": "2007-12-18T13:47:59.000Z",
+ "lastUpdated": "2021-03-15T22:33:32.755Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "xylophone",
+ "hasLocution": true,
+ "plural": "xylophones"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "string instrument"
+ ],
+ "synsets": [
+ "04544161-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "string instrument"
+ ],
+ "_id": 2615,
+ "created": "2007-12-18T13:45:40.000Z",
+ "lastUpdated": "2021-03-15T22:33:50.983Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "violon",
+ "hasLocution": true,
+ "plural": "violons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "alcoholism"
+ ],
+ "synsets": [
+ "07907701-n",
+ "04599016-n",
+ "07908487-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "alcohol"
+ ],
+ "_id": 2614,
+ "created": "2007-12-18T13:43:24.000Z",
+ "lastUpdated": "2021-03-15T22:35:33.177Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vin",
+ "hasLocution": true,
+ "plural": "vins"
+ },
+ {
+ "keyword": "vin rouge",
+ "hasLocution": false,
+ "plural": "vins rouges",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "12958438-n",
+ "12958148-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 2619,
+ "created": "2007-12-18T13:51:01.000Z",
+ "lastUpdated": "2021-03-15T22:31:58.680Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carotte",
+ "hasLocution": true,
+ "plural": "carottes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "04248522-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 2620,
+ "created": "2007-12-18T13:52:27.000Z",
+ "lastUpdated": "2021-03-26T15:09:24.164Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "pantoufles",
+ "plural": "pantoufles"
+ },
+ {
+ "keyword": "charentaises",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "charentaises"
+ },
+ {
+ "keyword": "chaussons",
+ "hasLocution": false,
+ "plural": "chaussons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "sportswear"
+ ],
+ "synsets": [
+ "03477658-n",
+ "04127583-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "leisure",
+ "sport",
+ "sportswear",
+ "clothing"
+ ],
+ "_id": 2621,
+ "created": "2007-12-18T13:52:51.000Z",
+ "lastUpdated": "2021-03-13T14:29:44.341Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussures de sport",
+ "hasLocution": true
+ },
+ {
+ "keyword": "chaussures de course",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "sneakers",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "chaussures de gymnastique",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04206070-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "core vocabulary"
+ ],
+ "_id": 2622,
+ "created": "2007-12-19T09:40:30.000Z",
+ "lastUpdated": "2021-03-15T22:30:38.457Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussures",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mocassins",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02120985-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 2623,
+ "created": "2007-12-19T09:40:48.000Z",
+ "lastUpdated": "2021-03-15T22:27:40.494Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "renard",
+ "hasLocution": true,
+ "plural": "renards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "ultra-processed food",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07865312-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "ultra-processed food",
+ "core vocabulary"
+ ],
+ "_id": 2618,
+ "created": "2007-12-18T13:49:01.000Z",
+ "lastUpdated": "2021-03-15T22:32:49.525Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "yaourt",
+ "hasLocution": true,
+ "plural": "yaourts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07941074-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 2624,
+ "created": "2007-12-19T09:41:46.000Z",
+ "lastUpdated": "2021-05-11T07:45:35.550Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jus d'orange",
+ "hasLocution": true,
+ "plural": "jus d'orange"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07941356-n",
+ "07939988-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 2625,
+ "created": "2007-12-19T09:42:07.000Z",
+ "lastUpdated": "2021-03-15T22:26:58.813Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jus d'ananas",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective",
+ "adjective",
+ "mathematics"
+ ],
+ "synsets": [
+ "13764498-n",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 2626,
+ "created": "2007-12-19T09:44:09.000Z",
+ "lastUpdated": "2024-12-13T07:33:31.390Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "0",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "zéro",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "mathematics",
+ "core vocabulary-knowledge",
+ "adjective",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "06820056-n",
+ "02193977-s",
+ "13764713-n",
+ "13603216-n",
+ "00916568-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective",
+ "core vocabulary"
+ ],
+ "_id": 2627,
+ "created": "2007-12-19T09:44:46.000Z",
+ "lastUpdated": "2024-12-13T07:33:06.465Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "un",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "1",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective",
+ "adjective",
+ "mathematics"
+ ],
+ "synsets": [
+ "13765409-n",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 2628,
+ "created": "2007-12-19T09:45:24.000Z",
+ "lastUpdated": "2024-12-13T07:32:23.749Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "2",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "deux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 2617,
+ "created": "2007-12-18T13:48:22.000Z",
+ "lastUpdated": "2024-10-20T05:31:30.873Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "je",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "moi",
+ "hasLocution": true
+ },
+ {
+ "keyword": "à moi",
+ "hasLocution": true,
+ "type": 1
+ },
+ {
+ "keyword": "pour moi",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective",
+ "mathematics",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02194389-s",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective",
+ "core vocabulary"
+ ],
+ "_id": 2631,
+ "created": "2007-12-19T09:47:13.000Z",
+ "lastUpdated": "2024-12-13T07:35:01.794Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "5",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "cinq",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective",
+ "mathematics",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02194472-s",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective",
+ "core vocabulary"
+ ],
+ "_id": 2632,
+ "created": "2007-12-19T09:47:57.000Z",
+ "lastUpdated": "2024-12-13T07:35:20.465Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "6",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "six",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective",
+ "mathematics",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02194304-s",
+ "13766444-n",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective",
+ "core vocabulary"
+ ],
+ "_id": 2630,
+ "created": "2007-12-19T09:46:36.000Z",
+ "lastUpdated": "2024-12-13T07:34:37.484Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "4",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "quatre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective",
+ "mathematics",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02194609-s",
+ "13767056-n",
+ "06820056-n",
+ "13603216-n",
+ "00916568-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective",
+ "core vocabulary"
+ ],
+ "_id": 2633,
+ "created": "2007-12-19T09:48:42.000Z",
+ "lastUpdated": "2024-12-13T07:35:50.255Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "7",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "sept",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective",
+ "mathematics",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02194712-s",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective",
+ "core vocabulary"
+ ],
+ "_id": 2634,
+ "created": "2007-12-19T09:50:46.000Z",
+ "lastUpdated": "2024-12-13T07:36:14.870Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "8",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "huit",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194800-s",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 2635,
+ "created": "2007-12-19T09:51:16.000Z",
+ "lastUpdated": "2024-10-20T09:28:10.072Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "9",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "neuf",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "law and justice",
+ "law",
+ "professional"
+ ],
+ "synsets": [
+ "10269647-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice",
+ "professional"
+ ],
+ "_id": 2636,
+ "created": "2007-12-19T09:51:55.000Z",
+ "lastUpdated": "2021-03-23T21:59:28.981Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "avocat",
+ "hasLocution": true,
+ "plural": "avocats"
+ },
+ {
+ "keyword": "homme de loi",
+ "hasLocution": false,
+ "plural": "hommes de loi",
+ "type": 2
+ },
+ {
+ "keyword": "procureur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "procureurs"
+ },
+ {
+ "keyword": "avocat de la défense",
+ "hasLocution": false,
+ "plural": "avocats de la défense",
+ "type": 2
+ },
+ {
+ "keyword": "notaire",
+ "hasLocution": false,
+ "plural": "notaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective",
+ "mathematics",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "13766184-n",
+ "02194219-s",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective",
+ "core vocabulary"
+ ],
+ "_id": 2629,
+ "created": "2007-12-19T09:45:55.000Z",
+ "lastUpdated": "2024-12-13T07:34:11.159Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "3",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "trois",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "container"
+ ],
+ "synsets": [
+ "01348685-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "object",
+ "container"
+ ],
+ "_id": 2637,
+ "created": "2007-12-19T09:52:46.000Z",
+ "lastUpdated": "2021-03-23T22:00:11.030Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'ouvrir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01615935-n",
+ "01616984-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 2638,
+ "created": "2007-12-19T09:57:22.000Z",
+ "lastUpdated": "2021-03-15T23:49:24.498Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aigle",
+ "hasLocution": true,
+ "plural": "aigles"
+ },
+ {
+ "keyword": "aigle royal",
+ "hasLocution": false,
+ "plural": "aigles royaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "04187124-n",
+ "03821676-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 2639,
+ "created": "2007-12-19T09:57:46.000Z",
+ "lastUpdated": "2021-03-15T23:48:27.627Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aiguille",
+ "hasLocution": true,
+ "plural": "aiguilles"
+ },
+ {
+ "type": 2,
+ "keyword": "fil et aiguille",
+ "hasLocution": true,
+ "plural": "fils et aiguilles"
+ },
+ {
+ "keyword": "aiguille à coudre",
+ "hasLocution": false,
+ "plural": "aiguilles à coudre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "residential building"
+ ],
+ "synsets": [
+ "02689238-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "home"
+ ],
+ "_id": 2640,
+ "created": "2007-12-19T10:01:05.000Z",
+ "lastUpdated": "2021-03-15T23:47:26.357Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "climatisation",
+ "hasLocution": true
+ },
+ {
+ "keyword": "climatiseur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "climatiseurs"
+ },
+ {
+ "keyword": "air conditionné",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "07834253-n",
+ "12455280-n"
+ ],
+ "tags": [],
+ "_id": 2641,
+ "created": "2007-12-19T10:07:50.000Z",
+ "lastUpdated": "2021-03-15T23:46:04.293Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gousse d'ail",
+ "hasLocution": true,
+ "plural": "gousses d'ail"
+ },
+ {
+ "keyword": "ail",
+ "hasLocution": true,
+ "plural": "aulx"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04534259-n",
+ "03324991-n",
+ "03276485-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 2612,
+ "created": "2007-12-18T13:42:24.000Z",
+ "lastUpdated": "2021-03-15T22:36:54.083Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ventilateur",
+ "hasLocution": true,
+ "plural": "ventilateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "03946532-n",
+ "04339030-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 2643,
+ "created": "2007-12-19T10:10:10.000Z",
+ "lastUpdated": "2021-03-15T23:43:08.559Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "épingles",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "03973308-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 2644,
+ "created": "2007-12-19T10:10:56.000Z",
+ "lastUpdated": "2021-03-15T23:42:56.005Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pince",
+ "hasLocution": true,
+ "plural": "pinces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mollusc",
+ "oviparous",
+ "river animal",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "07802662-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 2645,
+ "created": "2007-12-19T10:11:17.000Z",
+ "lastUpdated": "2021-03-15T23:42:04.352Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "palourde",
+ "hasLocution": true,
+ "plural": "palourdes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "09979006-n",
+ "10317198-n",
+ "09893984-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2642,
+ "created": "2007-12-19T10:08:48.000Z",
+ "lastUpdated": "2021-03-23T22:01:29.804Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maçon",
+ "hasLocution": true,
+ "plural": "maçons"
+ },
+ {
+ "keyword": "travailleur du bâtiment",
+ "hasLocution": false,
+ "plural": "travailleurs bâtiment",
+ "type": 2
+ },
+ {
+ "keyword": "ouvrier du bâtiment",
+ "hasLocution": false,
+ "plural": "ouvriers du bâtiment",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "07766562-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 2646,
+ "created": "2007-12-19T10:11:50.000Z",
+ "lastUpdated": "2021-03-15T23:41:46.389Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amandes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03696785-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 2647,
+ "created": "2007-12-19T10:12:09.000Z",
+ "lastUpdated": "2021-03-15T23:41:36.527Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "haut-parleurs",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01521519-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic"
+ ],
+ "_id": 2650,
+ "created": "2007-12-19T10:14:42.000Z",
+ "lastUpdated": "2021-03-04T17:08:04.432Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "autruche",
+ "hasLocution": true,
+ "plural": "autruches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "00386818-s",
+ "04972838-n"
+ ],
+ "tags": [
+ "color",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 2648,
+ "created": "2007-12-19T10:12:43.000Z",
+ "lastUpdated": "2021-03-15T23:41:02.845Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "jaune",
+ "hasLocution": true,
+ "plural": "jaunes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "architecture",
+ "construction"
+ ],
+ "synsets": [
+ "09824898-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "architecture",
+ "building",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2649,
+ "created": "2007-12-19T10:13:31.000Z",
+ "lastUpdated": "2021-03-23T22:01:45.562Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "architecte",
+ "hasLocution": true,
+ "plural": "architectes"
+ },
+ {
+ "type": 2,
+ "keyword": "métreur",
+ "hasLocution": true,
+ "plural": "métreurs"
+ },
+ {
+ "keyword": "chef de chantier",
+ "hasLocution": false,
+ "plural": "chefs de chantier",
+ "type": 2
+ },
+ {
+ "keyword": "chef de travaux",
+ "hasLocution": false,
+ "plural": "chefs de travaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "dance"
+ ],
+ "synsets": [
+ "01898642-v",
+ "00429255-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "scenic art",
+ "dance",
+ "show"
+ ],
+ "_id": 2652,
+ "created": "2007-12-19T10:18:12.000Z",
+ "lastUpdated": "2021-03-04T17:08:23.741Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "danse",
+ "hasLocution": true,
+ "plural": "danses"
+ },
+ {
+ "type": 3,
+ "keyword": "danser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade"
+ ],
+ "synsets": [
+ "04149040-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 2655,
+ "created": "2007-12-19T10:24:24.000Z",
+ "lastUpdated": "2021-03-15T23:34:30.967Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balance",
+ "hasLocution": true,
+ "plural": "balances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "dance"
+ ],
+ "synsets": [
+ "09853980-n",
+ "10009040-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "dance",
+ "show"
+ ],
+ "_id": 2653,
+ "created": "2007-12-19T10:20:14.000Z",
+ "lastUpdated": "2021-03-04T17:08:40.143Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "danseuse",
+ "hasLocution": true,
+ "plural": "danseuses"
+ },
+ {
+ "keyword": "ballerine",
+ "type": 2,
+ "plural": "ballerines",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01974840-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 2654,
+ "created": "2007-12-19T10:24:05.000Z",
+ "lastUpdated": "2021-03-23T22:02:00.246Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Aller de haut en bas, quitter un lieu pour un autre moins élevé",
+ "keyword": "descendre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "descendre l'escalier",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "descendre les marches",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "04483494-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 2656,
+ "created": "2007-12-19T10:24:55.000Z",
+ "lastUpdated": "2021-03-15T23:33:57.481Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plateau",
+ "hasLocution": true,
+ "plural": "plateaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "05269065-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 2657,
+ "created": "2007-12-19T10:25:16.000Z",
+ "lastUpdated": "2021-03-15T23:33:39.520Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "barbe",
+ "hasLocution": true,
+ "plural": "barbes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cleaning product",
+ "place"
+ ],
+ "synsets": [
+ "01396368-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "cleaning product",
+ "place"
+ ],
+ "_id": 2658,
+ "created": "2007-12-19T10:33:01.000Z",
+ "lastUpdated": "2024-12-05T07:27:13.580Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "balayer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nettoyer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "04149040-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 2659,
+ "created": "2007-12-19T10:33:22.000Z",
+ "lastUpdated": "2021-03-15T23:31:14.813Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balance",
+ "hasLocution": true,
+ "plural": "balances"
+ },
+ {
+ "keyword": "pèse-personne",
+ "hasLocution": false,
+ "plural": "pèse-personnes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "gardening",
+ "agriculture"
+ ],
+ "synsets": [
+ "03529754-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "primary sector",
+ "gardening",
+ "agriculture"
+ ],
+ "_id": 2651,
+ "created": "2007-12-19T10:15:26.000Z",
+ "lastUpdated": "2021-03-16T22:30:46.072Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "bêche",
+ "plural": "bêches"
+ },
+ {
+ "keyword": "houe",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "houes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07728819-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 2660,
+ "created": "2007-12-19T10:40:01.000Z",
+ "lastUpdated": "2021-03-15T23:30:01.145Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aubergine",
+ "hasLocution": true,
+ "plural": "aubergines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense"
+ ],
+ "synsets": [
+ "10111420-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 2664,
+ "created": "2007-12-19T10:42:06.000Z",
+ "lastUpdated": "2021-03-15T23:28:52.414Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pompier",
+ "hasLocution": true,
+ "plural": "pompiers"
+ },
+ {
+ "keyword": "sapeur-pompier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sapeurs-pompiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07615220-n",
+ "07625241-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 2665,
+ "created": "2007-12-19T10:42:25.000Z",
+ "lastUpdated": "2021-03-15T22:56:36.055Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chocolats",
+ "hasLocution": true
+ },
+ {
+ "keyword": "truffes",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "bonbons",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "digestive system",
+ "respiratory system",
+ "covid-19",
+ "core vocabulary-living being",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "05309998-n",
+ "05309407-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "human physiology",
+ "physiology",
+ "digestive system",
+ "respiratory system",
+ "covid-19",
+ "core vocabulary"
+ ],
+ "_id": 2663,
+ "created": "2007-12-19T10:41:33.000Z",
+ "lastUpdated": "2021-03-15T23:29:05.158Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouche",
+ "hasLocution": true,
+ "plural": "bouches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural habitat",
+ "tree",
+ "mountain",
+ "core vocabulary-knowledge",
+ "core vocabulary-living being",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "08455525-n",
+ "09306921-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "natural habitat",
+ "plant",
+ "tree",
+ "leisure",
+ "outdoor activity",
+ "mountain",
+ "core vocabulary"
+ ],
+ "_id": 2666,
+ "created": "2007-12-19T10:47:44.000Z",
+ "lastUpdated": "2021-03-15T22:55:56.530Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "forêt",
+ "hasLocution": true,
+ "plural": "forêts"
+ },
+ {
+ "keyword": "bois",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "02876113-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 2667,
+ "created": "2007-12-19T10:48:23.000Z",
+ "lastUpdated": "2021-03-15T22:55:25.125Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bottes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothing industry",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "02931992-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "clothing industry",
+ "core vocabulary"
+ ],
+ "_id": 2668,
+ "created": "2007-12-19T10:49:54.000Z",
+ "lastUpdated": "2021-03-15T23:53:09.588Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouton",
+ "hasLocution": true,
+ "plural": "boutons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05571403-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "core vocabulary"
+ ],
+ "_id": 2669,
+ "created": "2007-12-19T10:50:41.000Z",
+ "lastUpdated": "2021-03-15T23:53:19.742Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bras",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "02911542-n",
+ "03881909-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 2670,
+ "created": "2007-12-19T10:51:08.000Z",
+ "lastUpdated": "2021-03-15T23:55:09.200Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "pinceau",
+ "plural": "pinceaux"
+ },
+ {
+ "keyword": "pinceau-brosse",
+ "hasLocution": false,
+ "plural": "pinceaux-brosses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "05269684-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 2661,
+ "created": "2007-12-19T10:40:19.000Z",
+ "lastUpdated": "2022-07-26T11:15:01.821Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moustache",
+ "hasLocution": true,
+ "plural": "moustaches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "00394166-a"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 2662,
+ "created": "2007-12-19T10:41:09.000Z",
+ "lastUpdated": "2021-03-15T23:29:30.620Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "blanc",
+ "hasLocution": true,
+ "plural": "blancs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01623768-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 2671,
+ "created": "2007-12-19T10:51:28.000Z",
+ "lastUpdated": "2021-03-15T23:56:00.079Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hibou",
+ "hasLocution": true,
+ "plural": "hiboux"
+ },
+ {
+ "keyword": "chouette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chouettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05546258-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 2673,
+ "created": "2007-12-19T12:07:07.000Z",
+ "lastUpdated": "2021-03-15T23:56:40.319Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tête",
+ "hasLocution": true,
+ "plural": "têtes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crockery",
+ "beverage"
+ ],
+ "synsets": [
+ "01976312-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 2675,
+ "created": "2007-12-19T12:25:29.000Z",
+ "lastUpdated": "2021-03-23T22:03:01.323Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tomber",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": true,
+ "keyword": "lâcher",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04459886-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 2676,
+ "created": "2007-12-19T12:25:48.000Z",
+ "lastUpdated": "2021-03-15T23:58:07.821Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte à outils",
+ "hasLocution": true,
+ "plural": "boîtes à outils"
+ },
+ {
+ "keyword": "caisse à outils",
+ "hasLocution": false,
+ "plural": "caisses à outils",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade"
+ ],
+ "synsets": [
+ "02980897-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 2677,
+ "created": "2007-12-19T12:26:08.000Z",
+ "lastUpdated": "2021-03-15T23:58:30.722Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caisse enregistreuse",
+ "hasLocution": true,
+ "plural": "caisses enregistreuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07732103-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 2678,
+ "created": "2007-12-19T12:26:58.000Z",
+ "lastUpdated": "2021-03-15T23:59:20.954Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "courgette",
+ "hasLocution": true,
+ "plural": "courgettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07751486-n",
+ "12178960-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 2679,
+ "created": "2007-12-19T12:27:21.000Z",
+ "lastUpdated": "2021-03-15T23:59:53.925Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "citrouille",
+ "hasLocution": true,
+ "plural": "citrouilles"
+ },
+ {
+ "keyword": "potiron",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "potirons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "ovoviviparous",
+ "marine animal"
+ ],
+ "synsets": [
+ "01459397-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "ovoviviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea"
+ ],
+ "_id": 2672,
+ "created": "2007-12-19T12:02:29.000Z",
+ "lastUpdated": "2021-03-15T23:56:20.204Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hippocampe",
+ "hasLocution": true,
+ "plural": "hippocampes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance",
+ "photography",
+ "hardware"
+ ],
+ "synsets": [
+ "02946154-n",
+ "04076546-n",
+ "03993624-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "visual art",
+ "photography",
+ "computing",
+ "hardware"
+ ],
+ "_id": 2680,
+ "created": "2007-12-19T12:28:44.000Z",
+ "lastUpdated": "2021-03-16T00:01:10.041Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caméra",
+ "hasLocution": true,
+ "plural": "caméras"
+ },
+ {
+ "type": 2,
+ "keyword": "appareil photo",
+ "hasLocution": true,
+ "plural": "appareils photos"
+ },
+ {
+ "keyword": "appareil reflex",
+ "hasLocution": false,
+ "plural": "appareils reflex"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "rural area",
+ "agriculture",
+ "cattle farming"
+ ],
+ "synsets": [
+ "08662608-n",
+ "09416498-n"
+ ],
+ "tags": [
+ "place",
+ "rural area",
+ "work",
+ "primary sector",
+ "agriculture",
+ "cattle farming"
+ ],
+ "_id": 2683,
+ "created": "2007-12-19T12:39:43.000Z",
+ "lastUpdated": "2024-12-10T06:32:47.418Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "campagne",
+ "hasLocution": true
+ },
+ {
+ "keyword": "champ",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "champs"
+ },
+ {
+ "keyword": "pré",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "prés"
+ },
+ {
+ "keyword": "prairie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "prairies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "work machine",
+ "construction"
+ ],
+ "synsets": [
+ "03091491-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "work machine",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2682,
+ "created": "2007-12-19T12:30:00.000Z",
+ "lastUpdated": "2021-03-16T00:02:32.748Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bétonnière",
+ "hasLocution": false,
+ "plural": "bétonnières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05608392-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "core vocabulary"
+ ],
+ "_id": 2684,
+ "created": "2007-12-19T12:41:27.000Z",
+ "lastUpdated": "2021-03-16T00:04:32.515Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "visage",
+ "hasLocution": true,
+ "plural": "visages"
+ },
+ {
+ "type": 2,
+ "keyword": "figure",
+ "hasLocution": true,
+ "plural": "figures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mollusc",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "synsets": [
+ "07798451-n",
+ "01947031-n",
+ "01947596-n",
+ "01947453-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "_id": 2685,
+ "created": "2007-12-19T12:43:32.000Z",
+ "lastUpdated": "2021-03-16T00:04:46.558Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "escargot",
+ "hasLocution": true,
+ "plural": "escargots"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sweets",
+ "core vocabulary-feeding",
+ "food"
+ ],
+ "synsets": [
+ "07614305-n",
+ "07612936-n",
+ "07624824-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets",
+ "core vocabulary"
+ ],
+ "_id": 2686,
+ "created": "2007-12-19T12:43:59.000Z",
+ "lastUpdated": "2024-12-10T06:34:23.384Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bonbon",
+ "hasLocution": true,
+ "plural": "bonbons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "carpentry",
+ "construction"
+ ],
+ "synsets": [
+ "09916137-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "carpentry",
+ "construction"
+ ],
+ "_id": 2687,
+ "created": "2007-12-19T12:45:17.000Z",
+ "lastUpdated": "2021-03-16T00:06:17.352Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "menuisier",
+ "hasLocution": true,
+ "plural": "menuisiers"
+ },
+ {
+ "keyword": "charpentier",
+ "hasLocution": false,
+ "plural": "charpentiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "06636668-n",
+ "06275051-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "core vocabulary"
+ ],
+ "_id": 2688,
+ "created": "2007-12-19T12:48:50.000Z",
+ "lastUpdated": "2021-03-16T00:07:04.749Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lettre",
+ "hasLocution": true,
+ "plural": "lettres"
+ },
+ {
+ "type": 2,
+ "keyword": "correspondance ",
+ "hasLocution": false,
+ "plural": "correspondances"
+ },
+ {
+ "type": 2,
+ "keyword": "courrier",
+ "hasLocution": true,
+ "plural": "courriers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry",
+ "beverage"
+ ],
+ "synsets": [
+ "09860576-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 2681,
+ "created": "2007-12-19T12:29:37.000Z",
+ "lastUpdated": "2021-03-16T00:01:56.943Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "serveur",
+ "hasLocution": true,
+ "plural": "serveurs"
+ },
+ {
+ "keyword": "barman",
+ "hasLocution": false,
+ "plural": "barmen",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "workwear",
+ "construction"
+ ],
+ "synsets": [
+ "03518281-n"
+ ],
+ "tags": [
+ "work",
+ "clothes",
+ "workwear",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2691,
+ "created": "2007-12-19T12:54:46.000Z",
+ "lastUpdated": "2024-12-05T06:32:15.830Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casque",
+ "hasLocution": true,
+ "plural": "casques"
+ },
+ {
+ "keyword": "casque de chantier",
+ "hasLocution": false,
+ "plural": "casques de chantier",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "derived material",
+ "construction"
+ ],
+ "synsets": [
+ "14828345-n",
+ "14829128-n"
+ ],
+ "tags": [
+ "material",
+ "derived material",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2692,
+ "created": "2007-12-19T12:59:50.000Z",
+ "lastUpdated": "2021-03-16T00:10:47.457Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ciment",
+ "hasLocution": true,
+ "plural": "ciments"
+ },
+ {
+ "keyword": "sac de ciment",
+ "hasLocution": false,
+ "plural": "sacs de ciment",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "02910059-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 2693,
+ "created": "2007-12-19T13:00:19.000Z",
+ "lastUpdated": "2024-12-05T06:42:04.520Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balai-brosse",
+ "hasLocution": false,
+ "plural": "balais-brosses"
+ },
+ {
+ "type": 2,
+ "keyword": "balai",
+ "hasLocution": true,
+ "plural": "balais"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit",
+ "legume"
+ ],
+ "synsets": [
+ "07753721-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit",
+ "legume"
+ ],
+ "_id": 2674,
+ "created": "2007-12-19T12:07:28.000Z",
+ "lastUpdated": "2021-03-15T23:57:12.873Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cacahuète",
+ "hasLocution": true,
+ "plural": "cacahuètes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine",
+ "core vocabulary-object",
+ "odontology"
+ ],
+ "synsets": [
+ "04460427-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine",
+ "core vocabulary",
+ "health",
+ "odontology"
+ ],
+ "_id": 2694,
+ "created": "2007-12-19T13:00:49.000Z",
+ "lastUpdated": "2021-06-09T19:10:25.032Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brosse",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "brosse à dents",
+ "hasLocution": true,
+ "plural": "brosses à dents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "work tool",
+ "hairdresser"
+ ],
+ "synsets": [
+ "03480704-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "work",
+ "tool",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 2695,
+ "created": "2007-12-19T13:01:09.000Z",
+ "lastUpdated": "2021-03-16T00:14:25.746Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brosse",
+ "hasLocution": true,
+ "plural": "brosses"
+ },
+ {
+ "type": 2,
+ "keyword": "brosse à cheveux",
+ "hasLocution": true,
+ "plural": "brosses à cheveux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "nervous system"
+ ],
+ "synsets": [
+ "05488747-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "nervous system"
+ ],
+ "_id": 2696,
+ "created": "2007-12-19T13:01:32.000Z",
+ "lastUpdated": "2021-03-16T00:15:26.598Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cerveau",
+ "hasLocution": true,
+ "plural": "cerveaux"
+ },
+ {
+ "type": 2,
+ "keyword": "cervelle",
+ "hasLocution": true,
+ "plural": "cervelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "telecommunication",
+ "mass media"
+ ],
+ "synsets": [
+ "10302734-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "telecommunication",
+ "communication",
+ "mass media"
+ ],
+ "_id": 2690,
+ "created": "2007-12-19T12:54:12.000Z",
+ "lastUpdated": "2021-03-16T00:09:13.938Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "facteur",
+ "hasLocution": true,
+ "plural": "facteurs"
+ },
+ {
+ "keyword": "postier",
+ "hasLocution": false,
+ "plural": "postiers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "trade",
+ "money"
+ ],
+ "synsets": [
+ "04555648-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "work",
+ "tertiary sector",
+ "trade",
+ "economy",
+ "money"
+ ],
+ "_id": 2689,
+ "created": "2007-12-19T12:49:25.000Z",
+ "lastUpdated": "2024-12-06T06:10:27.913Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "portefeuille",
+ "hasLocution": true,
+ "plural": "portefeuilles"
+ },
+ {
+ "keyword": "porte-monnaie",
+ "hasLocution": true,
+ "plural": "porte-monnaies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine",
+ "core vocabulary-object",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "04190559-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine",
+ "core vocabulary"
+ ],
+ "_id": 2699,
+ "created": "2007-12-19T13:03:03.000Z",
+ "lastUpdated": "2021-03-16T00:16:09.804Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "shampoing",
+ "hasLocution": true,
+ "plural": "shampoings"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "cold meat"
+ ],
+ "synsets": [
+ "03011781-n",
+ "03178053-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 2700,
+ "created": "2007-12-19T13:04:51.000Z",
+ "lastUpdated": "2021-03-16T00:16:45.518Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charcuterie",
+ "hasLocution": true,
+ "plural": "charcuteries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food",
+ "sweets"
+ ],
+ "synsets": [
+ "07623214-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 2701,
+ "created": "2007-12-19T13:05:35.000Z",
+ "lastUpdated": "2021-03-16T00:17:03.456Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sucette",
+ "hasLocution": true,
+ "plural": "sucettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sweets"
+ ],
+ "synsets": [
+ "01171984-v",
+ "01173263-v",
+ "01434809-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 2702,
+ "created": "2007-12-19T13:05:54.000Z",
+ "lastUpdated": "2021-03-16T00:17:29.823Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sucer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "lécher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07767427-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 2703,
+ "created": "2007-12-19T13:10:55.000Z",
+ "lastUpdated": "2021-03-16T00:19:01.977Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pruneaux",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prunes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "01360534-v",
+ "01419193-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 2705,
+ "created": "2007-12-19T13:12:39.000Z",
+ "lastUpdated": "2021-03-16T00:20:43.217Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "clouer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "taper",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "marteler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "urban area",
+ "core vocabulary-place"
+ ],
+ "synsets": [
+ "08542298-n"
+ ],
+ "tags": [
+ "place",
+ "urban area",
+ "core vocabulary"
+ ],
+ "_id": 2704,
+ "created": "2007-12-19T13:11:20.000Z",
+ "lastUpdated": "2021-03-16T00:19:46.714Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ville",
+ "hasLocution": true,
+ "plural": "villes"
+ },
+ {
+ "keyword": "métropole",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "métropoles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "03810284-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 2706,
+ "created": "2007-12-19T13:12:58.000Z",
+ "lastUpdated": "2021-03-16T00:20:58.520Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clous",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04539168-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 2698,
+ "created": "2007-12-19T13:02:44.000Z",
+ "lastUpdated": "2021-03-16T00:15:47.358Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gilet",
+ "hasLocution": true,
+ "plural": "gilets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "joint system"
+ ],
+ "synsets": [
+ "05587575-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "joint system"
+ ],
+ "_id": 2707,
+ "created": "2007-12-19T13:23:55.000Z",
+ "lastUpdated": "2021-03-16T00:21:12.166Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coude",
+ "hasLocution": true,
+ "plural": "coudes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07729640-n",
+ "07730316-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 2708,
+ "created": "2007-12-19T13:24:16.000Z",
+ "lastUpdated": "2021-03-16T22:28:06.659Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chou",
+ "hasLocution": true,
+ "plural": "choux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "work tool",
+ "carpentry",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "14727036-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry",
+ "core vocabulary"
+ ],
+ "_id": 2709,
+ "created": "2007-12-19T13:32:56.000Z",
+ "lastUpdated": "2021-04-27T10:25:53.861Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "colle",
+ "hasLocution": true,
+ "plural": "colles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "03075025-n",
+ "03922150-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 2710,
+ "created": "2007-12-19T13:41:21.000Z",
+ "lastUpdated": "2021-03-16T22:27:11.264Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parfum",
+ "hasLocution": true,
+ "plural": "parfums"
+ },
+ {
+ "type": 2,
+ "keyword": "eau de cologne",
+ "hasLocution": true,
+ "plural": "eaux de cologne"
+ },
+ {
+ "keyword": "eau de toilette",
+ "hasLocution": false,
+ "plural": "eaux de toilette"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "container"
+ ],
+ "synsets": [
+ "01347791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "object",
+ "container"
+ ],
+ "_id": 2697,
+ "created": "2007-12-19T13:01:52.000Z",
+ "lastUpdated": "2021-03-23T22:05:12.575Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. ManÅuvrer un système de fermeture de telle sorte qu'il remplisse sa fonction, qu'il empêche le passage entre l'intérieur et l'extérieur : Fermer une porte",
+ "keyword": "fermer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se fermer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "usual verbs",
+ "core vocabulary-communication",
+ "mathematics"
+ ],
+ "synsets": [
+ "00949889-v",
+ "00950103-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "usual verbs",
+ "core vocabulary",
+ "mathematics"
+ ],
+ "_id": 2714,
+ "created": "2007-12-19T13:50:17.000Z",
+ "lastUpdated": "2024-12-05T13:11:32.448Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "compter"
+ },
+ {
+ "type": 3,
+ "keyword": "énumérer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "circulatory system",
+ "human body"
+ ],
+ "synsets": [
+ "05396148-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "circulatory system"
+ ],
+ "_id": 2715,
+ "created": "2007-12-19T13:53:16.000Z",
+ "lastUpdated": "2024-12-11T17:26:37.403Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coeur",
+ "hasLocution": false,
+ "plural": "coeurs"
+ },
+ {
+ "keyword": "cœur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cœurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "09274313-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 2711,
+ "created": "2007-12-19T13:46:12.000Z",
+ "lastUpdated": "2021-03-16T22:25:30.648Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "comète",
+ "hasLocution": false,
+ "plural": "comètes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03821155-n",
+ "04598460-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 2716,
+ "created": "2007-12-19T13:53:37.000Z",
+ "lastUpdated": "2021-03-16T22:24:40.861Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cravate",
+ "hasLocution": true,
+ "plural": "cravates"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "construction"
+ ],
+ "synsets": [
+ "01658171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2713,
+ "created": "2007-12-19T13:49:53.000Z",
+ "lastUpdated": "2021-07-03T14:36:01.373Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "construire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bâtir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": true,
+ "keyword": "fabriquer",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "03143320-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 2718,
+ "created": "2007-12-19T13:54:36.000Z",
+ "lastUpdated": "2021-03-16T22:23:09.989Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couronne",
+ "hasLocution": true,
+ "plural": "couronnes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "musical art",
+ "christmas"
+ ],
+ "synsets": [
+ "08205568-n",
+ "08204767-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "music",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 2717,
+ "created": "2007-12-19T13:54:09.000Z",
+ "lastUpdated": "2021-08-04T08:59:42.291Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chorale",
+ "hasLocution": true,
+ "plural": "chorales"
+ },
+ {
+ "type": 2,
+ "keyword": "choeur",
+ "hasLocution": false,
+ "plural": "choeurs"
+ },
+ {
+ "keyword": "chœur",
+ "type": 2,
+ "plural": "chœurs",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01930264-v",
+ "01918940-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 2719,
+ "created": "2007-12-19T13:55:06.000Z",
+ "lastUpdated": "2021-04-10T20:16:14.320Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se déplacer rapidement, en s'appuyant alternativement sur une jambe puis sur l'autre ou sur une patte puis sur l'autre",
+ "keyword": "courir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "animal-based food"
+ ],
+ "synsets": [
+ "01555301-v",
+ "01613738-v",
+ "01258531-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "animal-based food"
+ ],
+ "_id": 2720,
+ "created": "2007-12-20T09:42:34.000Z",
+ "lastUpdated": "2021-03-23T22:08:28.857Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": " tr. Entamer la matière de quelque chose, sectionner avec un objet ou un instrument tranchant",
+ "keyword": "couper",
+ "hasLocution": true
+ },
+ {
+ "keyword": "découper",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "03048919-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 2721,
+ "created": "2007-12-20T09:42:57.000Z",
+ "lastUpdated": "2021-03-16T22:22:44.196Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coupe-ongles",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport"
+ ],
+ "synsets": [
+ "01934845-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 2712,
+ "created": "2007-12-19T13:47:08.000Z",
+ "lastUpdated": "2021-03-23T22:06:11.534Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "conduire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rouler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "04245427-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 2723,
+ "created": "2007-12-20T09:43:56.000Z",
+ "lastUpdated": "2021-03-18T02:54:56.960Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fermeture éclair",
+ "hasLocution": true,
+ "plural": "fermetures éclairs"
+ },
+ {
+ "keyword": "fermeture à glissière",
+ "hasLocution": false,
+ "plural": "fermetures à glissière",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "02750182-n",
+ "02843139-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 2724,
+ "created": "2007-12-20T09:49:42.000Z",
+ "lastUpdated": "2021-03-09T14:16:59.343Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "seau",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "poubelle",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product",
+ "container"
+ ],
+ "synsets": [
+ "02913195-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product",
+ "container"
+ ],
+ "_id": 2725,
+ "created": "2007-12-20T09:50:06.000Z",
+ "lastUpdated": "2022-02-14T10:24:37.166Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "seau",
+ "hasLocution": false,
+ "plural": "seaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05554173-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "core vocabulary"
+ ],
+ "_id": 2727,
+ "created": "2007-12-20T09:52:06.000Z",
+ "lastUpdated": "2021-03-16T22:16:39.170Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cou",
+ "hasLocution": true,
+ "plural": "cous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "04064159-n",
+ "04134622-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 2726,
+ "created": "2007-12-20T09:51:44.000Z",
+ "lastUpdated": "2021-03-16T22:17:59.825Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "rasoir",
+ "plural": "rasoirs"
+ },
+ {
+ "type": 2,
+ "keyword": "lame de rasoir",
+ "hasLocution": true,
+ "plural": "lames de rasoir"
+ },
+ {
+ "keyword": "rasoir jetable",
+ "hasLocution": false,
+ "plural": "rasoirs jetables",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05557463-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 2728,
+ "created": "2007-12-20T09:52:34.000Z",
+ "lastUpdated": "2021-03-18T02:54:46.291Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corps",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05567360-n",
+ "05566889-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 2730,
+ "created": "2007-12-20T09:56:05.000Z",
+ "lastUpdated": "2021-04-07T18:32:35.073Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fesses",
+ "hasLocution": true
+ },
+ {
+ "keyword": "derrière",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "cul",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform",
+ "prehistory"
+ ],
+ "synsets": [
+ "09261832-n",
+ "09262208-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "history",
+ "prehistory"
+ ],
+ "_id": 2729,
+ "created": "2007-12-20T09:52:59.000Z",
+ "lastUpdated": "2021-04-12T08:17:45.851Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grotte",
+ "hasLocution": true,
+ "plural": "grottes"
+ },
+ {
+ "type": 2,
+ "keyword": "caverne",
+ "hasLocution": true,
+ "plural": "cavernes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "clothing industry",
+ "usual verbs",
+ "core vocabulary-communication",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "01331921-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 2722,
+ "created": "2007-12-20T09:43:13.000Z",
+ "lastUpdated": "2021-03-18T02:55:06.382Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "coudre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "piquer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "broder",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire un point",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural habitat"
+ ],
+ "synsets": [
+ "08522594-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "natural habitat"
+ ],
+ "_id": 2734,
+ "created": "2007-12-20T10:10:05.000Z",
+ "lastUpdated": "2021-03-16T22:11:12.700Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "désert",
+ "hasLocution": true,
+ "plural": "déserts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03181260-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "core vocabulary"
+ ],
+ "_id": 2735,
+ "created": "2007-12-20T10:10:23.000Z",
+ "lastUpdated": "2021-03-16T22:10:42.559Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "déodorant",
+ "hasLocution": true,
+ "plural": "déodorants"
+ },
+ {
+ "keyword": "désodorisant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "désodorisants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "04161626-n",
+ "03366529-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 2736,
+ "created": "2007-12-20T10:21:53.000Z",
+ "lastUpdated": "2021-03-16T22:08:58.658Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tournevis",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tournevis plat",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "digestive system",
+ "odontology",
+ "core vocabulary-living being",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "05289932-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "human physiology",
+ "physiology",
+ "digestive system",
+ "health",
+ "odontology",
+ "core vocabulary"
+ ],
+ "_id": 2737,
+ "created": "2007-12-20T10:24:11.000Z",
+ "lastUpdated": "2021-03-16T22:07:23.313Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dents",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "dentition",
+ "hasLocution": false,
+ "plural": "dentitions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur",
+ "core vocabulary-living being",
+ "extinct being"
+ ],
+ "synsets": [
+ "01702472-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology",
+ "core vocabulary"
+ ],
+ "_id": 2738,
+ "created": "2007-12-20T10:24:33.000Z",
+ "lastUpdated": "2024-12-06T07:17:04.526Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dinosaure",
+ "hasLocution": true,
+ "plural": "dinosaures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "00371003-s"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 2739,
+ "created": "2007-12-20T10:25:30.000Z",
+ "lastUpdated": "2021-03-16T22:05:55.261Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "doré",
+ "hasLocution": true,
+ "plural": "dorés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "10069171-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2740,
+ "created": "2007-12-20T10:36:23.000Z",
+ "lastUpdated": "2021-03-16T22:04:55.593Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "électricien",
+ "hasLocution": true,
+ "plural": "électriciens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03408558-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 2741,
+ "created": "2007-12-20T10:36:43.000Z",
+ "lastUpdated": "2021-03-16T22:00:18.285Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entonnoir",
+ "hasLocution": true,
+ "plural": "entonnoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "02020375-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 2742,
+ "created": "2007-12-20T10:38:06.000Z",
+ "lastUpdated": "2021-07-18T09:16:54.061Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Passer de l'extérieur à l'intérieur d'un lieu ; pénétrer",
+ "keyword": "entrer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "accéder",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04322737-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 2743,
+ "created": "2007-12-20T12:18:59.000Z",
+ "lastUpdated": "2021-03-16T21:59:47.618Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "escabeau",
+ "hasLocution": false,
+ "plural": "escabeaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "03537522-n",
+ "03537852-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 2744,
+ "created": "2007-12-20T12:21:19.000Z",
+ "lastUpdated": "2021-03-16T21:58:10.914Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crochet",
+ "hasLocution": true,
+ "plural": "crochets"
+ },
+ {
+ "type": 2,
+ "keyword": "piton",
+ "hasLocution": true,
+ "plural": "pitons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product",
+ "halloween"
+ ],
+ "synsets": [
+ "02910059-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 2745,
+ "created": "2007-12-20T12:22:19.000Z",
+ "lastUpdated": "2021-03-16T21:57:07.910Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balai",
+ "hasLocution": true,
+ "plural": "balais"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical art",
+ "mass media",
+ "electrical appliance",
+ "appliance",
+ "mass media device"
+ ],
+ "synsets": [
+ "02175483-v",
+ "02174146-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music",
+ "mass media",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "mass media device"
+ ],
+ "_id": 2746,
+ "created": "2007-12-20T12:22:40.000Z",
+ "lastUpdated": "2024-12-08T07:04:42.450Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "écouter de la musique",
+ "hasLocution": true
+ },
+ {
+ "keyword": "entendre de la musique",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic"
+ ],
+ "synsets": [
+ "03811265-n",
+ "03289797-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 2747,
+ "created": "2007-12-20T12:22:57.000Z",
+ "lastUpdated": "2021-03-16T21:56:17.962Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vernis à ongle",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05566350-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "core vocabulary"
+ ],
+ "_id": 2748,
+ "created": "2007-12-20T12:23:20.000Z",
+ "lastUpdated": "2021-03-16T21:54:32.059Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dos",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "core vocabulary-object",
+ "corporal hygiene"
+ ],
+ "synsets": [
+ "00259246-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "core vocabulary",
+ "human body"
+ ],
+ "_id": 2749,
+ "created": "2007-12-20T12:33:02.000Z",
+ "lastUpdated": "2024-12-06T06:53:06.188Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éponge",
+ "hasLocution": true,
+ "plural": "éponges"
+ },
+ {
+ "keyword": "éponge de bain",
+ "hasLocution": false,
+ "plural": "éponges de bain",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "04193311-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 2750,
+ "created": "2007-12-20T12:34:28.000Z",
+ "lastUpdated": "2021-03-16T21:53:05.124Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crème à raser",
+ "hasLocution": true,
+ "plural": "crèmes à raser"
+ },
+ {
+ "type": 2,
+ "keyword": "mousse à raser",
+ "hasLocution": false,
+ "plural": "mousses à raser"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "smoking"
+ ],
+ "synsets": [
+ "04450391-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "smoking"
+ ],
+ "_id": 2751,
+ "created": "2007-12-20T12:34:45.000Z",
+ "lastUpdated": "2021-03-16T21:51:49.319Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bureau de tabac",
+ "hasLocution": true,
+ "plural": "bureaux de tabac"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "board game"
+ ],
+ "synsets": [
+ "03195713-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "board game"
+ ],
+ "_id": 2731,
+ "created": "2007-12-20T10:01:32.000Z",
+ "lastUpdated": "2021-03-16T22:14:48.208Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dé",
+ "hasLocution": true,
+ "plural": "dés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "marine animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02071627-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 2732,
+ "created": "2007-12-20T10:05:43.000Z",
+ "lastUpdated": "2021-03-16T22:13:37.589Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dauphin",
+ "hasLocution": true,
+ "plural": "dauphins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "odontology"
+ ],
+ "synsets": [
+ "10023944-n",
+ "10023833-n",
+ "06056961-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "odontology"
+ ],
+ "_id": 2733,
+ "created": "2007-12-20T10:05:59.000Z",
+ "lastUpdated": "2021-03-16T22:13:11.264Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dentiste",
+ "hasLocution": true,
+ "plural": "dentiste"
+ },
+ {
+ "keyword": "chirurgien-dentiste",
+ "hasLocution": false,
+ "plural": "chirurgiens-dentistes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "09467004-n",
+ "09467687-n",
+ "09262646-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 2752,
+ "created": "2007-12-20T12:40:26.000Z",
+ "lastUpdated": "2021-03-16T21:51:05.377Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étoile",
+ "hasLocution": true,
+ "plural": "étoiles"
+ },
+ {
+ "keyword": "objet céleste",
+ "hasLocution": false,
+ "plural": "objets célestes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04206070-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "core vocabulary"
+ ],
+ "_id": 2775,
+ "created": "2008-01-14T16:39:55.000Z",
+ "lastUpdated": "2021-03-16T21:49:27.736Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussures",
+ "hasLocution": true
+ },
+ {
+ "keyword": "chaussures à talons hauts",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "footwear"
+ ],
+ "synsets": [
+ "04207843-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 2776,
+ "created": "2008-01-14T16:41:31.000Z",
+ "lastUpdated": "2021-03-16T21:48:39.863Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de chaussures",
+ "hasLocution": true,
+ "plural": "magasins de chaussures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom"
+ ],
+ "synsets": [
+ "00076153-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 2777,
+ "created": "2008-01-14T16:42:18.000Z",
+ "lastUpdated": "2021-04-07T18:32:00.342Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "vomir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "dégobiller",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "gerber",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "dégueuler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "musical art",
+ "christmas"
+ ],
+ "synsets": [
+ "07049493-n",
+ "00547650-n"
+ ],
+ "tags": [
+ "music",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 2778,
+ "created": "2008-01-14T16:43:13.000Z",
+ "lastUpdated": "2021-03-16T21:47:49.626Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chant de Noël",
+ "hasLocution": true,
+ "plural": "chants de Noël"
+ },
+ {
+ "keyword": "cantique de Noël",
+ "hasLocution": false,
+ "plural": "cantiques de Noël"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "02155378-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 2782,
+ "created": "2008-01-14T16:46:37.000Z",
+ "lastUpdated": "2021-03-18T02:54:18.631Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "regarder la télévision",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05589324-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 2783,
+ "created": "2008-01-14T16:47:48.000Z",
+ "lastUpdated": "2021-03-16T21:44:28.103Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ongle",
+ "hasLocution": true,
+ "plural": "ongles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "christmas",
+ "core vocabulary-feeding",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "07623948-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "event",
+ "popular event",
+ "christmas",
+ "core vocabulary"
+ ],
+ "_id": 2784,
+ "created": "2008-01-14T16:48:14.000Z",
+ "lastUpdated": "2021-03-16T21:44:06.975Z",
+ "keywords": [
+ {
+ "keyword": "nougat",
+ "hasLocution": false,
+ "plural": "nougats",
+ "type": 2
+ },
+ {
+ "keyword": "touron",
+ "hasLocution": false,
+ "plural": "tourons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "03841711-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 2785,
+ "created": "2008-01-14T16:48:40.000Z",
+ "lastUpdated": "2021-03-16T21:41:36.955Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écrou",
+ "hasLocution": true,
+ "plural": "écrous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05563550-n",
+ "05564576-n",
+ "05563704-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "core vocabulary"
+ ],
+ "_id": 2786,
+ "created": "2008-01-14T16:50:25.000Z",
+ "lastUpdated": "2021-03-16T21:38:35.322Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ventre",
+ "hasLocution": true,
+ "plural": "ventres"
+ },
+ {
+ "keyword": "abdomen",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "abdomens"
+ },
+ {
+ "keyword": "estomac",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "estomacs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07702618-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 2787,
+ "created": "2008-01-14T16:50:50.000Z",
+ "lastUpdated": "2021-03-16T21:36:23.319Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pain grillé",
+ "hasLocution": true,
+ "plural": "pains grillés"
+ },
+ {
+ "keyword": "toast",
+ "hasLocution": false,
+ "plural": "toasts",
+ "type": 2
+ },
+ {
+ "keyword": "biscotte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "biscottes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04161401-n",
+ "04160812-n",
+ "03757676-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 2788,
+ "created": "2008-01-14T16:52:01.000Z",
+ "lastUpdated": "2021-03-16T21:34:56.475Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vis",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "04429007-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 2789,
+ "created": "2008-01-14T16:53:27.000Z",
+ "lastUpdated": "2021-03-16T21:34:43.752Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "thermomètre médical",
+ "hasLocution": false,
+ "plural": "thermomètres médicaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "04458020-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 2790,
+ "created": "2008-01-14T16:54:02.000Z",
+ "lastUpdated": "2021-03-16T21:33:53.324Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tenaille",
+ "hasLocution": true,
+ "plural": "tenailles"
+ },
+ {
+ "keyword": "pince",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pinces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media device",
+ "mass media",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "04408223-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media",
+ "communication",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 2791,
+ "created": "2008-01-14T16:54:47.000Z",
+ "lastUpdated": "2024-12-13T07:15:00.699Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "téléphone",
+ "hasLocution": true,
+ "plural": "téléphones"
+ },
+ {
+ "keyword": "téléphone fixe",
+ "hasLocution": false,
+ "plural": "téléphones fixes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "construction"
+ ],
+ "synsets": [
+ "15099135-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2792,
+ "created": "2008-01-14T16:55:40.000Z",
+ "lastUpdated": "2021-03-16T21:31:00.504Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tuile de toit",
+ "hasLocution": false,
+ "plural": "tuiles de toit"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03619216-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 2793,
+ "created": "2008-01-14T16:56:09.000Z",
+ "lastUpdated": "2021-03-16T21:30:28.716Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clavier d'ordinateur",
+ "hasLocution": false,
+ "plural": "claviers d'ordinateur"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01973223-v",
+ "01925957-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 2795,
+ "created": "2008-01-14T17:02:45.000Z",
+ "lastUpdated": "2021-07-18T09:16:51.058Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Aller de bas en haut, aller en un lieu plus élevé",
+ "keyword": "remonter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "monter les marches",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "monter",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "00365018-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 2796,
+ "created": "2008-01-14T17:03:41.000Z",
+ "lastUpdated": "2021-03-16T21:29:15.503Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ensoleillé",
+ "hasLocution": true,
+ "plural": "ensoleillés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense",
+ "war"
+ ],
+ "synsets": [
+ "10641415-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security",
+ "event",
+ "war"
+ ],
+ "_id": 2797,
+ "created": "2008-01-14T17:04:31.000Z",
+ "lastUpdated": "2021-03-16T21:28:46.868Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "militaire",
+ "hasLocution": true,
+ "plural": "militaires"
+ },
+ {
+ "type": 2,
+ "keyword": "soldat",
+ "hasLocution": true,
+ "plural": "soldats"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy",
+ "summer"
+ ],
+ "synsets": [
+ "09473312-n"
+ ],
+ "tags": [
+ "astronomy",
+ "summer"
+ ],
+ "_id": 2798,
+ "created": "2008-01-14T17:05:14.000Z",
+ "lastUpdated": "2021-03-16T21:28:00.970Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "soleil",
+ "hasLocution": true,
+ "plural": "soleils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "04147147-n",
+ "03493271-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 2799,
+ "created": "2008-01-14T17:06:07.000Z",
+ "lastUpdated": "2021-03-16T21:27:06.532Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scie",
+ "hasLocution": true,
+ "plural": "scies"
+ },
+ {
+ "keyword": "scie à main",
+ "hasLocution": false,
+ "plural": "scies à main",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "01562372-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 2800,
+ "created": "2008-01-14T17:06:46.000Z",
+ "lastUpdated": "2021-03-16T21:25:58.565Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "scier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "00306024-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 2779,
+ "created": "2008-01-14T16:43:44.000Z",
+ "lastUpdated": "2021-03-16T21:46:29.062Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "venteux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "veterinary medicine"
+ ],
+ "synsets": [
+ "10769383-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "veterinary medicine"
+ ],
+ "_id": 2780,
+ "created": "2008-01-14T16:44:45.000Z",
+ "lastUpdated": "2021-03-16T21:45:38.935Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vétérinaire",
+ "hasLocution": true,
+ "plural": "vétérinaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "basic needs",
+ "routine",
+ "fashion",
+ "accessories"
+ ],
+ "synsets": [
+ "00047662-v",
+ "00046251-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "basic needs",
+ "routine",
+ "accessories"
+ ],
+ "_id": 2781,
+ "created": "2008-01-14T16:45:31.000Z",
+ "lastUpdated": "2024-12-08T15:51:06.883Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "habiller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'habiller",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "être habillé",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "furniture"
+ ],
+ "synsets": [
+ "01988916-v",
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "furniture"
+ ],
+ "_id": 2801,
+ "created": "2008-01-14T17:07:18.000Z",
+ "lastUpdated": "2021-03-21T11:28:05.411Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mettre quelqu'un sur son séant en le plaçant sur un siège ou sur une autre chose : Asseoir un jeune enfant sur sa chaise.",
+ "keyword": "asseoir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'asseoir sur une chaise ",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s’asseoir",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media"
+ ],
+ "synsets": [
+ "06808977-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media"
+ ],
+ "_id": 2802,
+ "created": "2008-01-14T17:08:22.000Z",
+ "lastUpdated": "2021-03-16T21:24:47.666Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "timbre",
+ "hasLocution": true,
+ "plural": "timbres"
+ },
+ {
+ "keyword": "timbre-poste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "timbres-poste"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "circulatory system",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05407190-n"
+ ],
+ "tags": [
+ "human body",
+ "physiology",
+ "human physiology",
+ "circulatory system",
+ "core vocabulary"
+ ],
+ "_id": 2803,
+ "created": "2008-01-14T17:09:10.000Z",
+ "lastUpdated": "2021-03-16T21:22:30.989Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sang",
+ "hasLocution": true,
+ "plural": "sangs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01967949-v",
+ "01970868-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 2804,
+ "created": "2008-01-14T17:09:59.000Z",
+ "lastUpdated": "2021-03-16T21:21:53.723Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Quitter le contact avec un sol ou une surface : Sauter à pieds joints, à cloche-pied.",
+ "keyword": "sauter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bondir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "franchir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "insect",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02229081-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 2805,
+ "created": "2008-01-14T17:11:25.000Z",
+ "lastUpdated": "2021-03-16T21:19:53.615Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sauterelle",
+ "hasLocution": true,
+ "plural": "sauterelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "construction"
+ ],
+ "synsets": [
+ "03882907-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2809,
+ "created": "2008-01-14T17:23:31.000Z",
+ "lastUpdated": "2024-12-07T13:33:19.805Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rouleau de peinture",
+ "hasLocution": false,
+ "plural": "rouleaux de peinture"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "joint system"
+ ],
+ "synsets": [
+ "05581233-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "joint system"
+ ],
+ "_id": 2810,
+ "created": "2008-01-14T17:24:05.000Z",
+ "lastUpdated": "2021-03-16T21:16:47.854Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "genou",
+ "hasLocution": true,
+ "plural": "genoux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "river",
+ "natural habitat",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "09434308-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "river",
+ "natural habitat",
+ "work",
+ "core vocabulary"
+ ],
+ "_id": 2811,
+ "created": "2008-01-14T17:24:36.000Z",
+ "lastUpdated": "2022-05-03T05:31:18.609Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fleuve",
+ "hasLocution": true,
+ "plural": "fleuves"
+ },
+ {
+ "keyword": "rivière",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "rivières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "excretory system"
+ ],
+ "synsets": [
+ "05340350-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "excretory system"
+ ],
+ "_id": 2812,
+ "created": "2008-01-14T17:25:35.000Z",
+ "lastUpdated": "2021-03-16T21:15:19.984Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "reins",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "publication",
+ "mass media"
+ ],
+ "synsets": [
+ "06607555-n"
+ ],
+ "tags": [
+ "object",
+ "publication",
+ "communication",
+ "mass media"
+ ],
+ "_id": 2813,
+ "created": "2008-01-14T17:26:20.000Z",
+ "lastUpdated": "2021-03-18T02:54:00.330Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "revue",
+ "hasLocution": true,
+ "plural": "revues"
+ },
+ {
+ "keyword": "journal",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "journaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "00304526-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 2814,
+ "created": "2008-01-14T17:27:36.000Z",
+ "lastUpdated": "2021-03-18T02:53:21.619Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "orageux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "00380657-s"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 2807,
+ "created": "2008-01-14T17:12:42.000Z",
+ "lastUpdated": "2024-12-12T16:00:24.401Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "rose",
+ "hasLocution": true,
+ "plural": "roses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "gardening",
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00228662-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "gardening",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 2816,
+ "created": "2008-01-14T17:31:28.000Z",
+ "lastUpdated": "2022-04-05T17:28:02.755Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "arroser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "04125870-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 2815,
+ "created": "2008-01-14T17:31:02.000Z",
+ "lastUpdated": "2021-03-16T22:43:47.934Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "règle",
+ "hasLocution": true,
+ "plural": "règles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "gardening"
+ ],
+ "synsets": [
+ "04567578-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 2817,
+ "created": "2008-01-14T17:31:54.000Z",
+ "lastUpdated": "2021-03-16T22:43:29.956Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arrosoir",
+ "hasLocution": true,
+ "plural": "arrosoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "00382159-s"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 2808,
+ "created": "2008-01-14T17:18:09.000Z",
+ "lastUpdated": "2021-03-16T21:17:35.075Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "rouge",
+ "hasLocution": true,
+ "plural": "rouges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "11495679-n",
+ "07427593-n"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 2819,
+ "created": "2008-01-14T17:33:25.000Z",
+ "lastUpdated": "2021-03-16T22:42:51.727Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éclair",
+ "hasLocution": true,
+ "plural": "éclairs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "03263712-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 2818,
+ "created": "2008-01-14T17:32:23.000Z",
+ "lastUpdated": "2021-03-16T22:43:09.901Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pelle à poussière",
+ "hasLocution": true,
+ "plural": "pelles à poussière"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03799022-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 2820,
+ "created": "2008-01-14T17:33:55.000Z",
+ "lastUpdated": "2021-03-18T02:52:42.449Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "souris",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "02019450-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 2806,
+ "created": "2008-01-14T17:12:13.000Z",
+ "lastUpdated": "2021-03-21T11:28:24.967Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Quitter le lieu où l'on se trouve pour aller dehors ou passer dans un autre lieu",
+ "keyword": "sortir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "quitter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "partir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal"
+ ],
+ "synsets": [
+ "02333698-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal"
+ ],
+ "_id": 2821,
+ "created": "2008-01-14T17:34:19.000Z",
+ "lastUpdated": "2021-03-16T22:42:21.469Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rat",
+ "hasLocution": true,
+ "plural": "rats"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense"
+ ],
+ "synsets": [
+ "08226608-n",
+ "10468557-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 2824,
+ "created": "2008-01-14T17:39:10.000Z",
+ "lastUpdated": "2021-03-21T11:32:05.369Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "policier ",
+ "hasLocution": false,
+ "plural": "policier"
+ },
+ {
+ "keyword": "officier de police",
+ "hasLocution": false,
+ "plural": "officiers de police",
+ "type": 2
+ },
+ {
+ "keyword": "gendarme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gendarmes "
+ },
+ {
+ "keyword": "agent de police",
+ "hasLocution": false,
+ "plural": "agents de police",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 2825,
+ "created": "2008-01-14T17:41:36.000Z",
+ "lastUpdated": "2021-03-16T22:41:50.523Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plumeau",
+ "hasLocution": true,
+ "plural": "plumeaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform",
+ "tourism",
+ "beach",
+ "summer"
+ ],
+ "synsets": [
+ "09240137-n",
+ "09451197-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "tertiary sector",
+ "tourism",
+ "leisure",
+ "outdoor activity",
+ "beach",
+ "summer"
+ ],
+ "_id": 2826,
+ "created": "2008-01-14T17:42:22.000Z",
+ "lastUpdated": "2024-12-04T19:55:14.797Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plage",
+ "hasLocution": true,
+ "plural": "plages"
+ },
+ {
+ "type": 2,
+ "keyword": "côte",
+ "hasLocution": true,
+ "plural": "côtes"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "bord de mer",
+ "type": 2,
+ "plural": "bords de mer"
+ },
+ {
+ "keyword": "rivage",
+ "type": 2,
+ "plural": "rivages",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "00388453-s"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 2827,
+ "created": "2008-01-14T17:43:28.000Z",
+ "lastUpdated": "2021-03-16T22:40:45.453Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "argenté",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "planet"
+ ],
+ "synsets": [
+ "09417539-n",
+ "09416900-n"
+ ],
+ "tags": [
+ "astronomy",
+ "planet"
+ ],
+ "_id": 2829,
+ "created": "2008-01-14T17:49:02.000Z",
+ "lastUpdated": "2021-03-16T22:40:31.015Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "planète",
+ "hasLocution": true,
+ "plural": "planètes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "gardening"
+ ],
+ "synsets": [
+ "01570056-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 2828,
+ "created": "2008-01-14T17:48:31.000Z",
+ "lastUpdated": "2021-03-19T22:12:32.091Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "planter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "01393487-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 2830,
+ "created": "2008-01-14T17:49:47.000Z",
+ "lastUpdated": "2021-03-19T22:11:39.571Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Soumettre un tissu, un vêtement à l'action d'un fer chaud ou d'un instrument analogue pour en enlever les plis ou les mettre en forme.",
+ "keyword": "repasser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon",
+ "security and defense"
+ ],
+ "synsets": [
+ "03954735-n",
+ "03348699-n"
+ ],
+ "tags": [
+ "object",
+ "weapon",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 2831,
+ "created": "2008-01-14T17:50:34.000Z",
+ "lastUpdated": "2021-03-19T22:11:28.874Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pistolet",
+ "hasLocution": true,
+ "plural": "pistolets"
+ },
+ {
+ "keyword": "arme à feu",
+ "hasLocution": false,
+ "plural": "armes à feu",
+ "type": 2
+ },
+ {
+ "keyword": "revolver",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "revolvers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sweets"
+ ],
+ "synsets": [
+ "07623214-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 2832,
+ "created": "2008-01-14T17:51:28.000Z",
+ "lastUpdated": "2021-03-16T22:40:09.129Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sucette",
+ "hasLocution": true,
+ "plural": "sucettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "respiratory system"
+ ],
+ "synsets": [
+ "05394887-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "respiratory system"
+ ],
+ "_id": 2822,
+ "created": "2008-01-14T17:36:09.000Z",
+ "lastUpdated": "2021-03-16T22:42:08.615Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poumons",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothes"
+ ],
+ "synsets": [
+ "03055234-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 2833,
+ "created": "2008-01-14T17:53:05.000Z",
+ "lastUpdated": "2021-03-16T22:39:53.261Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pinces à linge",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "visual artist",
+ "professional artist",
+ "painting",
+ "art"
+ ],
+ "synsets": [
+ "10411352-n",
+ "09831743-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "visual art",
+ "painting"
+ ],
+ "_id": 2834,
+ "created": "2008-01-14T17:53:59.000Z",
+ "lastUpdated": "2024-12-07T08:07:35.042Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peintre",
+ "hasLocution": true,
+ "plural": "peintres"
+ },
+ {
+ "keyword": "artiste peintre",
+ "hasLocution": false,
+ "plural": "artistes peintres",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "10413608-n",
+ "10208798-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2835,
+ "created": "2008-01-14T17:54:53.000Z",
+ "lastUpdated": "2021-03-19T22:09:47.033Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peintre",
+ "hasLocution": true,
+ "plural": "peintres"
+ },
+ {
+ "keyword": "peintre d'intérieur",
+ "hasLocution": false,
+ "plural": "peintres d'intérieur",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "03881909-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 2837,
+ "created": "2008-01-14T17:57:32.000Z",
+ "lastUpdated": "2021-03-21T11:33:06.264Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pinceau",
+ "hasLocution": true,
+ "plural": "pinceaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "construction"
+ ],
+ "synsets": [
+ "01365439-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2836,
+ "created": "2008-01-14T17:56:25.000Z",
+ "lastUpdated": "2021-03-19T22:05:24.432Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "peindre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07736763-n",
+ "07736620-n",
+ "07736187-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 2838,
+ "created": "2008-01-14T17:59:09.000Z",
+ "lastUpdated": "2021-03-16T22:37:41.656Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poivron",
+ "hasLocution": true,
+ "plural": "poivrons"
+ },
+ {
+ "type": 2,
+ "keyword": "poivron vert",
+ "hasLocution": true,
+ "plural": "poivrons verts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "integumentary system",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05245612-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "human physiology",
+ "physiology",
+ "integumentary system",
+ "core vocabulary"
+ ],
+ "_id": 2840,
+ "created": "2008-01-14T18:01:00.000Z",
+ "lastUpdated": "2021-03-16T22:36:42.488Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peau",
+ "hasLocution": true,
+ "plural": "peaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07838494-n",
+ "07736187-n",
+ "07736360-n",
+ "07736620-n",
+ "07736863-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 2839,
+ "created": "2008-01-14T17:59:50.000Z",
+ "lastUpdated": "2021-03-16T22:37:12.431Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poivron",
+ "hasLocution": true,
+ "plural": "poivrons"
+ },
+ {
+ "type": 2,
+ "keyword": "poivron rouge",
+ "hasLocution": true,
+ "plural": "poivrons rouges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "locomotor system"
+ ],
+ "synsets": [
+ "05570899-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "locomotor system"
+ ],
+ "_id": 2841,
+ "created": "2008-01-14T18:01:25.000Z",
+ "lastUpdated": "2021-03-16T22:36:25.183Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pied",
+ "hasLocution": false,
+ "plural": "pieds"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "visual system"
+ ],
+ "synsets": [
+ "05322469-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "visual system"
+ ],
+ "_id": 2844,
+ "created": "2008-01-14T18:04:17.000Z",
+ "lastUpdated": "2021-06-01T09:32:59.510Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cils",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "publication",
+ "mass media",
+ "core vocabulary-object",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "06277798-n",
+ "03827711-n"
+ ],
+ "tags": [
+ "object",
+ "publication",
+ "communication",
+ "mass media",
+ "core vocabulary"
+ ],
+ "_id": 2845,
+ "created": "2008-01-14T18:06:38.000Z",
+ "lastUpdated": "2021-03-16T22:59:46.761Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "journal",
+ "hasLocution": true,
+ "plural": "journaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "rural area",
+ "core vocabulary-place"
+ ],
+ "synsets": [
+ "08690476-n",
+ "08683242-n",
+ "08689937-n",
+ "08643858-n"
+ ],
+ "tags": [
+ "place",
+ "rural area",
+ "core vocabulary"
+ ],
+ "_id": 2823,
+ "created": "2008-01-14T17:37:17.000Z",
+ "lastUpdated": "2021-03-21T11:29:28.853Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "village",
+ "hasLocution": true,
+ "plural": "villages"
+ },
+ {
+ "type": 2,
+ "keyword": "commune",
+ "hasLocution": true,
+ "plural": "communes"
+ },
+ {
+ "keyword": "ville",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "villes"
+ },
+ {
+ "keyword": "municipalité",
+ "type": 2,
+ "plural": "municipalité",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "clothes"
+ ],
+ "synsets": [
+ "03061905-n",
+ "03495985-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 2846,
+ "created": "2008-01-14T18:11:07.000Z",
+ "lastUpdated": "2021-03-19T22:04:43.323Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cintre",
+ "hasLocution": true,
+ "plural": "cintres"
+ },
+ {
+ "keyword": "portemanteau",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "portemanteaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "construction",
+ "gardening"
+ ],
+ "synsets": [
+ "03935440-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "construction",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 2842,
+ "created": "2008-01-14T18:01:58.000Z",
+ "lastUpdated": "2021-03-16T22:36:10.169Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pioche",
+ "hasLocution": true,
+ "plural": "pioches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07734217-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 2847,
+ "created": "2008-01-14T18:12:05.000Z",
+ "lastUpdated": "2022-08-29T11:50:03.493Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "concombre",
+ "plural": "concombres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hairdresser"
+ ],
+ "synsets": [
+ "10175409-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 2849,
+ "created": "2008-01-14T18:13:40.000Z",
+ "lastUpdated": "2021-03-19T22:01:58.644Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coiffeur",
+ "hasLocution": true,
+ "plural": "coiffeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing",
+ "wild animal"
+ ],
+ "synsets": [
+ "02632346-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing",
+ "wild"
+ ],
+ "_id": 2843,
+ "created": "2008-01-14T18:03:36.000Z",
+ "lastUpdated": "2021-03-16T22:35:37.418Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "espadon",
+ "hasLocution": true,
+ "plural": "espadons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07774558-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 2848,
+ "created": "2008-01-14T18:12:41.000Z",
+ "lastUpdated": "2021-03-19T22:02:59.823Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cornichons",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05560921-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 2853,
+ "created": "2008-01-14T18:16:08.000Z",
+ "lastUpdated": "2021-04-07T18:31:32.672Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "poitrine",
+ "plural": "poitrines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "circus"
+ ],
+ "synsets": [
+ "09950334-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "circus",
+ "show"
+ ],
+ "_id": 2854,
+ "created": "2008-01-14T18:16:37.000Z",
+ "lastUpdated": "2021-03-19T22:01:08.015Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clown",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "hairdresser",
+ "core vocabulary-living being",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "05262259-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser",
+ "core vocabulary"
+ ],
+ "_id": 2851,
+ "created": "2008-01-14T18:14:44.000Z",
+ "lastUpdated": "2021-03-16T22:59:03.609Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cheveu",
+ "hasLocution": true,
+ "plural": "cheveux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "03942844-n",
+ "07623576-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 2855,
+ "created": "2008-01-14T18:19:26.000Z",
+ "lastUpdated": "2021-07-28T15:19:26.881Z",
+ "keywords": [
+ {
+ "keyword": "cachets",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cachets"
+ },
+ {
+ "keyword": "pilules",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pilules"
+ },
+ {
+ "keyword": "comprimés",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "comprimés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine",
+ "core vocabulary-object",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "03078859-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine",
+ "core vocabulary"
+ ],
+ "_id": 2852,
+ "created": "2008-01-14T18:15:16.000Z",
+ "lastUpdated": "2021-03-16T22:58:42.010Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peigne",
+ "hasLocution": true,
+ "plural": "peignes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "hairdresser"
+ ],
+ "synsets": [
+ "02794293-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 2850,
+ "created": "2008-01-14T18:14:11.000Z",
+ "lastUpdated": "2021-03-20T15:14:36.277Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salon de coiffure",
+ "hasLocution": true,
+ "plural": "salons de coiffure"
+ },
+ {
+ "type": 2,
+ "keyword": "coiffeur",
+ "hasLocution": true,
+ "plural": "coiffeurs"
+ },
+ {
+ "keyword": "barbier",
+ "hasLocution": false,
+ "plural": "barbiers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "baking"
+ ],
+ "synsets": [
+ "10425065-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 2856,
+ "created": "2008-01-14T18:19:58.000Z",
+ "lastUpdated": "2021-03-19T21:57:23.504Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pâtissière",
+ "hasLocution": true,
+ "plural": "pâtissières"
+ },
+ {
+ "keyword": "vendeuse de gâteaux",
+ "hasLocution": false,
+ "plural": "vendeuses de gâteaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "baking"
+ ],
+ "synsets": [
+ "10425065-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 2857,
+ "created": "2008-01-14T18:20:28.000Z",
+ "lastUpdated": "2021-03-19T21:55:42.288Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pâtissier",
+ "hasLocution": true,
+ "plural": "pâtissiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine",
+ "core vocabulary-object",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "04460569-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine",
+ "core vocabulary"
+ ],
+ "_id": 2858,
+ "created": "2008-01-14T18:39:41.000Z",
+ "lastUpdated": "2021-03-19T21:55:11.007Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dentifrice",
+ "hasLocution": false,
+ "plural": "dentifrices"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "playground",
+ "entertainment facility",
+ "core vocabulary-place",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "08632949-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground",
+ "core vocabulary"
+ ],
+ "_id": 2859,
+ "created": "2008-01-14T18:40:47.000Z",
+ "lastUpdated": "2021-03-21T11:33:43.033Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parc",
+ "hasLocution": true,
+ "plural": "parcs"
+ },
+ {
+ "keyword": "aire de jeux",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "aires de jeux"
+ },
+ {
+ "keyword": "terrain de jeux",
+ "hasLocution": false,
+ "plural": "terrains de jeux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "construction"
+ ],
+ "synsets": [
+ "04554141-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2860,
+ "created": "2008-01-14T18:41:37.000Z",
+ "lastUpdated": "2021-03-19T21:53:49.436Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mur",
+ "hasLocution": true,
+ "plural": "murs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "baking"
+ ],
+ "synsets": [
+ "02779636-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 2864,
+ "created": "2008-01-14T18:43:50.000Z",
+ "lastUpdated": "2021-03-20T15:13:16.688Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boulangerie",
+ "hasLocution": true,
+ "plural": "boulangeries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07695101-n",
+ "07702956-n",
+ "07699531-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 2865,
+ "created": "2008-01-14T18:44:32.000Z",
+ "lastUpdated": "2021-04-17T08:05:27.461Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pain de mie",
+ "hasLocution": false,
+ "plural": "pains de mie"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "construction"
+ ],
+ "synsets": [
+ "04497112-n",
+ "02901552-n",
+ "03982015-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2866,
+ "created": "2008-01-14T18:45:18.000Z",
+ "lastUpdated": "2021-03-19T21:45:18.938Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "truelle",
+ "plural": "truelles"
+ },
+ {
+ "keyword": "spatule",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "spatules"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine",
+ "core vocabulary-object",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "15099708-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine",
+ "core vocabulary"
+ ],
+ "_id": 2862,
+ "created": "2008-01-14T18:42:36.000Z",
+ "lastUpdated": "2021-03-19T21:51:16.350Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "papier hygiénique",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "keyword": "papier toilettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "construction",
+ "gardening"
+ ],
+ "synsets": [
+ "04273596-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "construction",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 2867,
+ "created": "2008-01-14T18:46:10.000Z",
+ "lastUpdated": "2021-03-19T21:43:43.407Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pelle",
+ "hasLocution": true,
+ "plural": "pelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "childcare"
+ ],
+ "synsets": [
+ "03193215-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 2863,
+ "created": "2008-01-14T18:42:59.000Z",
+ "lastUpdated": "2021-03-19T21:49:59.833Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couche",
+ "hasLocution": true,
+ "plural": "couches"
+ },
+ {
+ "keyword": "couche-culotte",
+ "hasLocution": false,
+ "plural": "couche-culottes",
+ "type": 2
+ },
+ {
+ "keyword": "protection",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "protections"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "marine animal",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02136736-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 2868,
+ "created": "2008-01-14T18:49:59.000Z",
+ "lastUpdated": "2021-03-19T21:42:14.392Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ours",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "ours polaire",
+ "hasLocution": true,
+ "plural": "ours polaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02513086-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 2869,
+ "created": "2008-01-14T18:51:52.000Z",
+ "lastUpdated": "2021-03-19T21:41:50.041Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "panda",
+ "hasLocution": true,
+ "plural": "pandas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "musical art"
+ ],
+ "synsets": [
+ "08265078-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "music"
+ ],
+ "_id": 2870,
+ "created": "2008-01-14T18:53:01.000Z",
+ "lastUpdated": "2021-03-19T21:39:49.231Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "orchestre",
+ "hasLocution": false,
+ "plural": "orchestres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "senses",
+ "auditory system",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05331437-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "senses",
+ "auditory system",
+ "core vocabulary"
+ ],
+ "_id": 2871,
+ "created": "2008-01-14T18:53:35.000Z",
+ "lastUpdated": "2021-03-19T21:39:17.133Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oreille",
+ "hasLocution": true,
+ "plural": "oreilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00656296-v",
+ "01466592-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 2872,
+ "created": "2008-01-14T18:54:05.000Z",
+ "lastUpdated": "2021-03-21T11:35:17.940Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ranger",
+ "hasLocution": true
+ },
+ {
+ "keyword": "trier",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "organiser",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "mettre dans l’ordre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "classer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05564228-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 2873,
+ "created": "2008-01-14T18:56:21.000Z",
+ "lastUpdated": "2021-03-19T21:38:56.857Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nombril",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07783685-n",
+ "07783320-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit",
+ "core vocabulary"
+ ],
+ "_id": 2874,
+ "created": "2008-01-14T19:00:44.000Z",
+ "lastUpdated": "2021-03-20T15:13:04.353Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "olives",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "olives vertes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "senses",
+ "visual system",
+ "covid-19",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05318579-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "senses",
+ "visual system",
+ "covid-19",
+ "core vocabulary"
+ ],
+ "_id": 2876,
+ "created": "2008-01-14T19:02:27.000Z",
+ "lastUpdated": "2021-06-01T09:33:51.356Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "yeux",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "oeils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07783525-n",
+ "07783320-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit",
+ "core vocabulary"
+ ],
+ "_id": 2875,
+ "created": "2008-01-14T19:01:45.000Z",
+ "lastUpdated": "2021-03-19T21:38:33.150Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "olives",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "olives noires",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "flying animal"
+ ],
+ "synsets": [
+ "01858313-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal"
+ ],
+ "_id": 2878,
+ "created": "2008-01-14T19:42:08.000Z",
+ "lastUpdated": "2021-03-19T21:35:57.592Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oie",
+ "hasLocution": true,
+ "plural": "oies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "10400004-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "ophthalmology"
+ ],
+ "_id": 2877,
+ "created": "2008-01-14T19:41:09.000Z",
+ "lastUpdated": "2021-06-07T11:11:57.933Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "opticienne",
+ "hasLocution": false,
+ "plural": "opticiennes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number"
+ ],
+ "synsets": [
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics"
+ ],
+ "_id": 2879,
+ "created": "2008-01-14T19:42:35.000Z",
+ "lastUpdated": "2021-03-19T21:35:46.454Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nombres",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "numéro",
+ "hasLocution": true,
+ "plural": "numéros"
+ },
+ {
+ "keyword": "chiffre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chiffres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "07787188-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 2880,
+ "created": "2008-01-14T19:50:42.000Z",
+ "lastUpdated": "2021-03-19T21:34:29.177Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "noix",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05555029-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 2881,
+ "created": "2008-01-14T19:52:10.000Z",
+ "lastUpdated": "2021-03-19T21:34:12.607Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nuque",
+ "hasLocution": true,
+ "plural": "nuques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "00463344-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 2882,
+ "created": "2008-01-14T19:52:31.000Z",
+ "lastUpdated": "2021-03-19T21:33:57.680Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "nuageux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "09270316-n"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 2883,
+ "created": "2008-01-14T19:53:07.000Z",
+ "lastUpdated": "2021-03-19T21:33:46.544Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nuage",
+ "hasLocution": true,
+ "plural": "nuages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "00463642-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 2885,
+ "created": "2008-01-14T20:02:31.000Z",
+ "lastUpdated": "2021-03-21T11:37:02.941Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "brumeux ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "embrumé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "atmospheric phenomena",
+ "christmas"
+ ],
+ "synsets": [
+ "02809090-a",
+ "01702045-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "meteorology",
+ "atmospheric phenomena",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 2884,
+ "created": "2008-01-14T19:53:40.000Z",
+ "lastUpdated": "2021-03-19T21:33:26.689Z",
+ "keywords": [
+ {
+ "type": 4,
+ "hasLocution": false,
+ "keyword": "neigeux"
+ },
+ {
+ "keyword": "enneigé",
+ "hasLocution": false,
+ "plural": "enneigés",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational equipment"
+ ],
+ "synsets": [
+ "04562986-n"
+ ],
+ "tags": [
+ "education",
+ "educational equipment"
+ ],
+ "_id": 2861,
+ "created": "2008-01-14T18:42:10.000Z",
+ "lastUpdated": "2021-03-19T21:52:42.254Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corbeille",
+ "hasLocution": true,
+ "plural": "corbeilles"
+ },
+ {
+ "keyword": "corbeille à papier",
+ "hasLocution": false,
+ "plural": "corbeilles à papier",
+ "type": 2
+ },
+ {
+ "keyword": "poubelle à papier",
+ "hasLocution": false,
+ "plural": "poubelles à papier",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "00393873-a"
+ ],
+ "tags": [
+ "color",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 2886,
+ "created": "2008-01-14T20:02:59.000Z",
+ "lastUpdated": "2021-03-16T22:51:45.203Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "noir",
+ "hasLocution": true,
+ "plural": "noirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "senses",
+ "respiratory system",
+ "covid-19",
+ "core vocabulary-living being",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "05605902-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "senses",
+ "respiratory system",
+ "covid-19",
+ "core vocabulary"
+ ],
+ "_id": 2887,
+ "created": "2008-01-14T20:03:19.000Z",
+ "lastUpdated": "2021-03-16T22:51:26.033Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nez",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "00379954-s"
+ ],
+ "tags": [
+ "color",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 2888,
+ "created": "2008-01-14T20:03:44.000Z",
+ "lastUpdated": "2021-05-11T07:45:27.731Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "orange",
+ "hasLocution": true,
+ "plural": "orange"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mammal",
+ "viviparous",
+ "flying animal",
+ "carnivorous",
+ "herbivorous",
+ "omnivorous",
+ "halloween",
+ "wild animal"
+ ],
+ "synsets": [
+ "02141851-n"
+ ],
+ "tags": [
+ "animal",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "flying animal",
+ "carnivorous",
+ "herbivorous",
+ "omnivorous",
+ "event",
+ "popular event",
+ "halloween",
+ "wild"
+ ],
+ "_id": 2903,
+ "created": "2008-01-15T11:34:23.000Z",
+ "lastUpdated": "2021-03-16T22:50:54.988Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chauve-souris",
+ "hasLocution": true,
+ "plural": "chauves-souris"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "joint system"
+ ],
+ "synsets": [
+ "05592578-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "joint system"
+ ],
+ "_id": 2904,
+ "created": "2008-01-15T11:34:57.000Z",
+ "lastUpdated": "2021-03-16T22:50:17.658Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poignet",
+ "hasLocution": true,
+ "plural": "poignets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "digestive system",
+ "odontology"
+ ],
+ "synsets": [
+ "05315272-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "human physiology",
+ "physiology",
+ "digestive system",
+ "health",
+ "odontology"
+ ],
+ "_id": 2905,
+ "created": "2008-01-15T11:36:50.000Z",
+ "lastUpdated": "2021-03-19T21:30:05.136Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "molaire",
+ "hasLocution": true,
+ "plural": "molaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07760787-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 2906,
+ "created": "2008-01-15T11:37:33.000Z",
+ "lastUpdated": "2021-03-16T22:49:53.421Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mûres",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "00381374-s"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 2907,
+ "created": "2008-01-15T11:37:55.000Z",
+ "lastUpdated": "2021-03-16T22:49:08.762Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "violet",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10702573-n",
+ "10702832-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 2889,
+ "created": "2008-01-14T20:04:21.000Z",
+ "lastUpdated": "2021-03-19T21:32:03.418Z",
+ "keywords": [
+ {
+ "keyword": "nageur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "nageurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "04374567-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 2908,
+ "created": "2008-01-15T11:38:44.000Z",
+ "lastUpdated": "2021-03-21T11:37:43.180Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "balai à franges",
+ "plural": "balai à franges"
+ },
+ {
+ "keyword": "serpillère",
+ "plural": "serpillères",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware",
+ "appliance"
+ ],
+ "synsets": [
+ "03089644-n",
+ "03787723-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware",
+ "object",
+ "appliance"
+ ],
+ "_id": 2910,
+ "created": "2008-01-15T12:50:20.000Z",
+ "lastUpdated": "2024-12-07T07:54:06.904Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écran",
+ "hasLocution": true,
+ "plural": "écrans"
+ },
+ {
+ "keyword": "moniteur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "moniteurs"
+ },
+ {
+ "keyword": "écran d'ordinateur",
+ "hasLocution": false,
+ "plural": "écrans d'ordinateur",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform",
+ "rural area",
+ "core vocabulary-knowledge",
+ "core vocabulary-place",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "09382700-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "place",
+ "rural area",
+ "core vocabulary",
+ "traffic accident",
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 2909,
+ "created": "2008-01-15T11:40:12.000Z",
+ "lastUpdated": "2024-12-07T15:43:08.253Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "montagne",
+ "hasLocution": true,
+ "plural": "montagnes"
+ },
+ {
+ "type": 2,
+ "keyword": "mont",
+ "hasLocution": true,
+ "plural": "monts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "musical artist",
+ "professional artist",
+ "musical art"
+ ],
+ "synsets": [
+ "10360025-n",
+ "09922954-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "music",
+ "visual art"
+ ],
+ "_id": 2890,
+ "created": "2008-01-14T20:05:28.000Z",
+ "lastUpdated": "2021-03-19T21:31:30.884Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "musicien",
+ "hasLocution": true,
+ "plural": "musiciens"
+ },
+ {
+ "keyword": "violoncelliste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "violoncellistes"
+ },
+ {
+ "keyword": "instrumentiste",
+ "hasLocution": false,
+ "plural": "instrumentistes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal-based food"
+ ],
+ "synsets": [
+ "07874954-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food"
+ ],
+ "_id": 2911,
+ "created": "2008-01-15T12:56:28.000Z",
+ "lastUpdated": "2021-03-16T22:45:23.983Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "miel",
+ "hasLocution": true,
+ "plural": "miels"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03765483-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 2912,
+ "created": "2008-01-15T12:56:51.000Z",
+ "lastUpdated": "2021-03-16T22:45:09.360Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "micro",
+ "hasLocution": true,
+ "plural": "micros"
+ },
+ {
+ "keyword": "microphone",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "microphones"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "muscular system"
+ ],
+ "synsets": [
+ "05296796-n",
+ "05586870-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "muscular system"
+ ],
+ "_id": 2891,
+ "created": "2008-01-14T20:06:34.000Z",
+ "lastUpdated": "2021-03-19T21:30:34.603Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "muscle",
+ "hasLocution": true,
+ "plural": "muscles"
+ },
+ {
+ "keyword": "biceps",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "04399200-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 2913,
+ "created": "2008-01-15T12:57:33.000Z",
+ "lastUpdated": "2021-03-21T11:38:30.550Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mètre",
+ "hasLocution": true,
+ "plural": "mètres"
+ },
+ {
+ "keyword": "mètre ruban",
+ "plural": "mètres ruban",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04386330-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 2917,
+ "created": "2008-01-15T13:01:10.000Z",
+ "lastUpdated": "2021-04-02T22:10:07.285Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guéridon",
+ "hasLocution": true,
+ "plural": "guéridons"
+ },
+ {
+ "keyword": "table ronde",
+ "hasLocution": false,
+ "plural": "tables rondes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mollusc",
+ "oviparous",
+ "marine animal"
+ ],
+ "synsets": [
+ "01966212-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea"
+ ],
+ "_id": 2918,
+ "created": "2008-01-15T13:02:10.000Z",
+ "lastUpdated": "2021-03-20T15:12:27.889Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moule",
+ "hasLocution": true,
+ "plural": "moules"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry",
+ "construction"
+ ],
+ "synsets": [
+ "04399200-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry",
+ "construction"
+ ],
+ "_id": 2914,
+ "created": "2008-01-15T12:58:06.000Z",
+ "lastUpdated": "2021-03-21T11:40:07.792Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mètre",
+ "hasLocution": true,
+ "plural": "mètre"
+ },
+ {
+ "keyword": "mètre mesureur",
+ "hasLocution": false,
+ "plural": "mètres mesureur ",
+ "type": 2
+ },
+ {
+ "keyword": "mètre ruban",
+ "plural": "mètres rubans ",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04611087-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 2916,
+ "created": "2008-01-15T13:00:03.000Z",
+ "lastUpdated": "2021-03-21T11:41:41.981Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bureau de travail",
+ "hasLocution": true,
+ "plural": "bureaux de travail"
+ },
+ {
+ "keyword": "bureau",
+ "type": 2,
+ "plural": "bureaux",
+ "hasLocution": true
+ },
+ {
+ "keyword": "table de travail",
+ "plural": "tables de travail",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05610590-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 2919,
+ "created": "2008-01-15T13:02:55.000Z",
+ "lastUpdated": "2021-03-20T15:12:11.246Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joue",
+ "hasLocution": true,
+ "plural": "joues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "coelenterata",
+ "carnivorous",
+ "marine animal",
+ "oviparous",
+ "wild animal"
+ ],
+ "synsets": [
+ "01913388-n"
+ ],
+ "tags": [
+ "animal",
+ "invertebrate",
+ "coelenterata",
+ "carnivorous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "oviparous",
+ "wild"
+ ],
+ "_id": 2920,
+ "created": "2008-01-15T13:03:19.000Z",
+ "lastUpdated": "2021-03-20T15:11:49.641Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "méduse",
+ "hasLocution": true,
+ "plural": "méduses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "land transport"
+ ],
+ "synsets": [
+ "09845152-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 2921,
+ "created": "2008-01-15T13:05:37.000Z",
+ "lastUpdated": "2021-03-21T11:43:34.676Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mécanicien",
+ "hasLocution": true,
+ "plural": "mécanicien "
+ },
+ {
+ "keyword": "mécanicien automobile",
+ "plural": "mécaniciens automobile",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "garagiste",
+ "plural": "garagistes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "03486255-n",
+ "02969997-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 2922,
+ "created": "2008-01-15T13:06:12.000Z",
+ "lastUpdated": "2021-03-20T15:11:17.528Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marteau",
+ "hasLocution": true,
+ "plural": "marteau"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "00373173-s"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 2923,
+ "created": "2008-01-15T13:06:33.000Z",
+ "lastUpdated": "2021-05-11T07:46:03.967Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "marron",
+ "hasLocution": true,
+ "plural": "marron"
+ },
+ {
+ "keyword": "brun",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "bruns"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "02970533-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 2915,
+ "created": "2008-01-15T12:58:32.000Z",
+ "lastUpdated": "2021-03-21T11:40:50.646Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mètre de menuisier",
+ "hasLocution": true,
+ "plural": "mères de menuisier"
+ },
+ {
+ "keyword": "mètre pliant",
+ "plural": "mètres pliants",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sea and oceans",
+ "natural habitat",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "09449666-n",
+ "09399110-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean",
+ "natural habitat",
+ "core vocabulary"
+ ],
+ "_id": 2925,
+ "created": "2008-01-15T13:07:44.000Z",
+ "lastUpdated": "2021-03-21T11:43:42.251Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mer",
+ "hasLocution": true,
+ "plural": "mers"
+ },
+ {
+ "type": 2,
+ "keyword": "océan",
+ "hasLocution": true,
+ "plural": "océans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "senses"
+ ],
+ "synsets": [
+ "05572970-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 2928,
+ "created": "2008-01-15T13:10:42.000Z",
+ "lastUpdated": "2021-03-20T15:10:04.256Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "main droite ",
+ "hasLocution": false,
+ "plural": "mains droites"
+ },
+ {
+ "keyword": "main",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "mains"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03780604-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 2927,
+ "created": "2008-01-15T13:09:41.000Z",
+ "lastUpdated": "2021-03-26T14:51:43.899Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moufles",
+ "hasLocution": true,
+ "plural": "moufles"
+ },
+ {
+ "keyword": "mitaines",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mitaines"
+ },
+ {
+ "keyword": "gants",
+ "plural": "gants",
+ "type": 2,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "gardening",
+ "construction"
+ ],
+ "synsets": [
+ "03545055-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "primary sector",
+ "gardening",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2929,
+ "created": "2008-01-15T13:11:02.000Z",
+ "lastUpdated": "2021-03-21T11:43:51.926Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tuyau d'arrosage",
+ "hasLocution": true,
+ "plural": "tuyaux d'arrosage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "04186974-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 2926,
+ "created": "2008-01-15T13:08:13.000Z",
+ "lastUpdated": "2021-03-16T22:55:56.059Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "machine à coudre",
+ "hasLocution": true,
+ "plural": "machines à coudre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment",
+ "medicine",
+ "medicament"
+ ],
+ "synsets": [
+ "03747606-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment",
+ "medicament"
+ ],
+ "_id": 2930,
+ "created": "2008-01-15T13:12:18.000Z",
+ "lastUpdated": "2024-12-09T11:44:57.167Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trousse de secours",
+ "hasLocution": true,
+ "plural": "trousses de secours"
+ },
+ {
+ "keyword": "trousse à pharmacie",
+ "plural": "trousses à pharmacie",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "tourism"
+ ],
+ "synsets": [
+ "02776843-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 2931,
+ "created": "2008-01-15T13:12:40.000Z",
+ "lastUpdated": "2021-03-20T15:08:36.270Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "valise",
+ "hasLocution": true,
+ "plural": "valises"
+ },
+ {
+ "keyword": "bagage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bagages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "09381255-n",
+ "11505375-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 2933,
+ "created": "2008-01-15T13:14:51.000Z",
+ "lastUpdated": "2021-03-16T22:55:09.512Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lune",
+ "hasLocution": true,
+ "plural": "lunes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "insect",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02168108-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 2924,
+ "created": "2008-01-15T13:06:55.000Z",
+ "lastUpdated": "2021-03-16T22:56:18.975Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coccinelle",
+ "hasLocution": true,
+ "plural": "coccinelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character",
+ "movie character"
+ ],
+ "synsets": [
+ "10300371-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature",
+ "movie character",
+ "cinema"
+ ],
+ "_id": 2932,
+ "created": "2008-01-15T13:14:14.000Z",
+ "lastUpdated": "2024-12-07T07:49:55.123Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magicien",
+ "hasLocution": true,
+ "plural": "magiciens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "02561103-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 2936,
+ "created": "2008-01-15T13:16:31.000Z",
+ "lastUpdated": "2021-03-20T15:06:10.204Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "pluvieux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "03788327-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 2937,
+ "created": "2008-01-15T13:16:56.000Z",
+ "lastUpdated": "2021-03-20T15:05:33.964Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clé anglaise",
+ "hasLocution": true,
+ "plural": "clés anglaises"
+ },
+ {
+ "keyword": "clé à molette",
+ "hasLocution": false,
+ "plural": "clés à molette",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "domestic animal",
+ "pet"
+ ],
+ "synsets": [
+ "01819528-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "domestic",
+ "pet"
+ ],
+ "_id": 2934,
+ "created": "2008-01-15T13:15:29.000Z",
+ "lastUpdated": "2021-03-16T22:54:52.423Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "perroquet",
+ "hasLocution": true,
+ "plural": "perroquets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04613932-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 2938,
+ "created": "2008-01-15T13:19:12.000Z",
+ "lastUpdated": "2021-03-20T15:02:41.729Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clé plate",
+ "hasLocution": true,
+ "plural": "clés plates"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "02923643-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 2939,
+ "created": "2008-01-15T13:20:57.000Z",
+ "lastUpdated": "2021-03-20T15:02:04.391Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lits superposés",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "00377979-s"
+ ],
+ "tags": [
+ "color",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 2940,
+ "created": "2008-01-15T13:24:37.000Z",
+ "lastUpdated": "2021-03-20T15:01:33.858Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "lilas",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mauve",
+ "hasLocution": true,
+ "plural": "mauves",
+ "type": 4
+ },
+ {
+ "keyword": "lavande",
+ "hasLocution": false,
+ "plural": "lavandes",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02131037-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 2942,
+ "created": "2008-01-15T13:26:33.000Z",
+ "lastUpdated": "2021-03-16T22:53:26.323Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "léopard",
+ "hasLocution": true,
+ "plural": "léopards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "literature"
+ ],
+ "synsets": [
+ "02874886-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "literature"
+ ],
+ "_id": 2941,
+ "created": "2008-01-15T13:25:56.000Z",
+ "lastUpdated": "2021-03-16T22:53:46.881Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "librairie",
+ "hasLocution": true,
+ "plural": "librairies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "forestry",
+ "professional"
+ ],
+ "synsets": [
+ "10809717-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "forestry",
+ "professional"
+ ],
+ "_id": 2943,
+ "created": "2008-01-15T13:27:38.000Z",
+ "lastUpdated": "2021-03-21T11:45:27.243Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bûcheron",
+ "hasLocution": true,
+ "plural": "bûcherons "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "senses",
+ "digestive system",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05308571-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "senses",
+ "digestive system",
+ "core vocabulary"
+ ],
+ "_id": 2944,
+ "created": "2008-01-15T13:28:34.000Z",
+ "lastUpdated": "2021-03-16T22:53:07.886Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "langue",
+ "hasLocution": true,
+ "plural": "langues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01628203-n",
+ "01623768-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 2945,
+ "created": "2008-01-15T13:29:23.000Z",
+ "lastUpdated": "2021-03-20T15:00:13.042Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chouette",
+ "hasLocution": true,
+ "plural": "chouettes"
+ },
+ {
+ "keyword": "hibou",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "hiboux"
+ },
+ {
+ "keyword": "effraie",
+ "hasLocution": false,
+ "plural": "effraie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "02883550-n",
+ "03632523-n"
+ ],
+ "tags": [],
+ "_id": 2946,
+ "created": "2008-01-15T13:29:56.000Z",
+ "lastUpdated": "2021-08-04T08:57:28.448Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "noeud",
+ "plural": "noeuds"
+ },
+ {
+ "keyword": "nœud",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "nœuds"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "marine animal",
+ "oviparous",
+ "omnivorous",
+ "crustacean"
+ ],
+ "synsets": [
+ "01985291-n"
+ ],
+ "tags": [
+ "animal",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "oviparous",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "crustacean"
+ ],
+ "_id": 2947,
+ "created": "2008-01-15T13:30:19.000Z",
+ "lastUpdated": "2021-03-20T14:58:22.508Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "langouste",
+ "hasLocution": true,
+ "plural": "langoustes"
+ },
+ {
+ "keyword": "homard",
+ "hasLocution": false,
+ "plural": "homards",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal material",
+ "clothing industry"
+ ],
+ "synsets": [
+ "15128784-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "animal material",
+ "work",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 2948,
+ "created": "2008-01-15T13:31:19.000Z",
+ "lastUpdated": "2021-03-20T14:57:47.252Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "laine",
+ "hasLocution": true,
+ "plural": "laines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "reptile",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01677105-n",
+ "01695975-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "reptile",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 2949,
+ "created": "2008-01-15T13:31:49.000Z",
+ "lastUpdated": "2021-03-20T14:57:22.086Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lézard",
+ "hasLocution": true,
+ "plural": "lézards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "reptile",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01677105-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "reptile",
+ "oviparous",
+ "terrestrial animal",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 2950,
+ "created": "2008-01-15T13:32:25.000Z",
+ "lastUpdated": "2021-03-20T14:57:06.440Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lézard",
+ "hasLocution": true,
+ "plural": "lézard"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "construction"
+ ],
+ "synsets": [
+ "02901103-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2951,
+ "created": "2008-01-15T13:33:08.000Z",
+ "lastUpdated": "2021-03-20T14:56:28.993Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brique",
+ "hasLocution": true,
+ "plural": "briques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic"
+ ],
+ "synsets": [
+ "03482114-n",
+ "03637102-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 2952,
+ "created": "2008-01-15T13:33:28.000Z",
+ "lastUpdated": "2021-03-20T14:55:54.311Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "laque pour cheveux",
+ "hasLocution": false,
+ "plural": "laques pour cheveux"
+ },
+ {
+ "keyword": "bombe de laque",
+ "hasLocution": false,
+ "plural": "bombes de laque",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05313305-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 2953,
+ "created": "2008-01-15T13:34:10.000Z",
+ "lastUpdated": "2021-03-20T14:53:31.540Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lèvres",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01885355-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 2954,
+ "created": "2008-01-15T13:34:47.000Z",
+ "lastUpdated": "2021-03-20T14:53:23.149Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "koala",
+ "hasLocution": true,
+ "plural": "koalas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "annelid",
+ "omnivorous",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "synsets": [
+ "01938036-n",
+ "01924944-n"
+ ],
+ "tags": [
+ "animal",
+ "invertebrate",
+ "annelid",
+ "omnivorous",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "_id": 2935,
+ "created": "2008-01-15T13:16:07.000Z",
+ "lastUpdated": "2021-03-20T15:07:14.790Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ver de terre",
+ "hasLocution": true,
+ "plural": "vers de terre"
+ },
+ {
+ "keyword": "lombric",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "lombrics"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07779605-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 2955,
+ "created": "2008-01-15T13:37:05.000Z",
+ "lastUpdated": "2021-03-20T14:53:12.261Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kiwi",
+ "hasLocution": true,
+ "plural": "kiwis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "mass media",
+ "publication",
+ "trade"
+ ],
+ "synsets": [
+ "03828196-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "communication",
+ "mass media",
+ "object",
+ "publication",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 2956,
+ "created": "2008-01-15T13:40:59.000Z",
+ "lastUpdated": "2024-12-08T15:28:33.142Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kiosque à journaux",
+ "hasLocution": false,
+ "plural": "kiosques à journaux"
+ },
+ {
+ "keyword": "boutique de journaux",
+ "hasLocution": false,
+ "plural": "boutiques de journaux",
+ "type": 2
+ },
+ {
+ "keyword": "magasin de journaux",
+ "hasLocution": false,
+ "plural": "magasins de journaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "law and justice",
+ "law"
+ ],
+ "synsets": [
+ "10244889-n",
+ "10300642-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 2957,
+ "created": "2008-01-15T13:41:28.000Z",
+ "lastUpdated": "2021-03-20T14:51:24.878Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "juge",
+ "hasLocution": true,
+ "plural": "juges"
+ },
+ {
+ "keyword": "magistrate",
+ "hasLocution": false,
+ "plural": "magistrates",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "jewelry"
+ ],
+ "synsets": [
+ "10241447-n",
+ "10241626-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "object",
+ "fashion",
+ "jewelry"
+ ],
+ "_id": 2958,
+ "created": "2008-01-15T13:43:07.000Z",
+ "lastUpdated": "2024-12-06T07:20:50.974Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bijoutier",
+ "hasLocution": false,
+ "plural": "bijoutiers"
+ },
+ {
+ "keyword": "joaillier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "joailliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "jewelry"
+ ],
+ "synsets": [
+ "08080672-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "jewelry"
+ ],
+ "_id": 2959,
+ "created": "2008-01-15T13:45:35.000Z",
+ "lastUpdated": "2021-03-20T14:48:51.462Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bijouterie",
+ "hasLocution": true,
+ "plural": "bijouteries"
+ },
+ {
+ "keyword": "joaillerie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "joailleries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat"
+ ],
+ "synsets": [
+ "07685636-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 2963,
+ "created": "2008-01-15T13:50:00.000Z",
+ "lastUpdated": "2021-03-20T14:46:46.235Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jambon",
+ "hasLocution": true,
+ "plural": "jambons"
+ },
+ {
+ "type": 2,
+ "keyword": "jambon blanc",
+ "hasLocution": true,
+ "plural": "jambons blancs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "04260547-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 2964,
+ "created": "2008-01-15T13:51:06.000Z",
+ "lastUpdated": "2021-03-20T14:46:11.388Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "savon",
+ "hasLocution": true,
+ "plural": "savons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "hunting",
+ "wild animal"
+ ],
+ "synsets": [
+ "02399079-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "hunting",
+ "wild"
+ ],
+ "_id": 2965,
+ "created": "2008-01-15T13:52:14.000Z",
+ "lastUpdated": "2021-03-20T14:45:54.546Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sanglier",
+ "hasLocution": true,
+ "plural": "sanglier"
+ },
+ {
+ "keyword": "sanglier sauvage",
+ "hasLocution": false,
+ "plural": "sangliers sauvages",
+ "type": 2
+ },
+ {
+ "keyword": "cochon sauvage",
+ "hasLocution": false,
+ "plural": "cochons sauvages",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sea and oceans"
+ ],
+ "synsets": [
+ "09342362-n",
+ "09339360-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean"
+ ],
+ "_id": 2966,
+ "created": "2008-01-15T13:52:35.000Z",
+ "lastUpdated": "2021-03-20T14:44:36.614Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "île",
+ "hasLocution": true,
+ "plural": "îles"
+ },
+ {
+ "type": 2,
+ "keyword": "îlot",
+ "hasLocution": true,
+ "plural": "îlots"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "digestive system"
+ ],
+ "synsets": [
+ "05541966-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "human physiology",
+ "physiology",
+ "digestive system"
+ ],
+ "_id": 2967,
+ "created": "2008-01-15T13:54:36.000Z",
+ "lastUpdated": "2021-03-20T14:43:15.326Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "intestin",
+ "hasLocution": true,
+ "plural": "intestins"
+ },
+ {
+ "keyword": "entrailles",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "gardening"
+ ],
+ "synsets": [
+ "10140328-n",
+ "10140190-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 2961,
+ "created": "2008-01-15T13:47:52.000Z",
+ "lastUpdated": "2021-03-20T14:47:44.070Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jardinière",
+ "hasLocution": true,
+ "plural": "jardinières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "engineering",
+ "professional services",
+ "industry",
+ "construction"
+ ],
+ "synsets": [
+ "09638837-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "engineering",
+ "tertiary sector",
+ "professional services",
+ "secondary sector",
+ "industry",
+ "manufacturing industry",
+ "construction"
+ ],
+ "_id": 2968,
+ "created": "2008-01-15T13:56:53.000Z",
+ "lastUpdated": "2021-03-20T14:42:21.881Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ingénieur",
+ "hasLocution": true,
+ "plural": "ingénieurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "04383963-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 2960,
+ "created": "2008-01-15T13:46:11.000Z",
+ "lastUpdated": "2021-03-20T14:47:58.349Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "seringue",
+ "hasLocution": true,
+ "plural": "seringues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "information technology",
+ "computing"
+ ],
+ "synsets": [
+ "09970396-n",
+ "10500853-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "computing"
+ ],
+ "_id": 2969,
+ "created": "2008-01-15T13:58:40.000Z",
+ "lastUpdated": "2021-03-20T14:41:37.554Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "informaticien",
+ "hasLocution": true,
+ "plural": "informaticiens"
+ },
+ {
+ "keyword": "ingénieur informatique",
+ "hasLocution": false,
+ "plural": "ingénieurs informatiques",
+ "type": 2
+ },
+ {
+ "keyword": "technicien informatique",
+ "hasLocution": false,
+ "plural": "techniciens informatiques",
+ "type": 2
+ },
+ {
+ "type": 2,
+ "keyword": "programmeur",
+ "hasLocution": false,
+ "plural": "programmeur"
+ },
+ {
+ "keyword": "expert en informatique",
+ "hasLocution": false,
+ "plural": "experts en informatique",
+ "type": 2
+ },
+ {
+ "keyword": "programmeur informatique",
+ "hasLocution": false,
+ "plural": "programmeurs informatiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "07875559-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 2962,
+ "created": "2008-01-15T13:48:12.000Z",
+ "lastUpdated": "2021-03-20T14:47:21.682Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sirop",
+ "hasLocution": true,
+ "plural": "sirops"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system",
+ "halloween"
+ ],
+ "synsets": [
+ "05277400-n",
+ "05581526-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 2972,
+ "created": "2008-01-15T14:00:00.000Z",
+ "lastUpdated": "2021-03-20T14:37:34.322Z",
+ "keywords": [
+ {
+ "keyword": "fémur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fémurs"
+ },
+ {
+ "keyword": "os",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "agriculture"
+ ],
+ "synsets": [
+ "04220420-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 2973,
+ "created": "2008-01-15T14:09:50.000Z",
+ "lastUpdated": "2021-03-20T14:36:39.963Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "faucille",
+ "hasLocution": true,
+ "plural": "faucille"
+ },
+ {
+ "keyword": "serpe",
+ "hasLocution": false,
+ "plural": "serpe",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "worksite",
+ "workplace",
+ "agriculture",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "08456800-n"
+ ],
+ "tags": [
+ "work",
+ "workplace",
+ "place",
+ "primary sector",
+ "agriculture",
+ "core vocabulary"
+ ],
+ "_id": 2974,
+ "created": "2008-01-15T14:10:45.000Z",
+ "lastUpdated": "2021-05-24T15:04:59.108Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "potager",
+ "hasLocution": true,
+ "plural": "potagers"
+ },
+ {
+ "keyword": "jardin maraîcher",
+ "hasLocution": false,
+ "plural": "jardins maraîchers",
+ "type": 2
+ },
+ {
+ "keyword": "jardin de légumes",
+ "hasLocution": false,
+ "plural": "jardins de légumes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03577093-n",
+ "04011143-n",
+ "04010851-n",
+ "03880501-n",
+ "02912610-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 2970,
+ "created": "2008-01-15T13:59:15.000Z",
+ "lastUpdated": "2021-03-20T14:38:58.119Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "imprimante",
+ "hasLocution": true,
+ "plural": "imprimante"
+ },
+ {
+ "keyword": "imprimante à encre",
+ "hasLocution": false,
+ "plural": "imprimantes à encre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "03481436-n"
+ ],
+ "tags": [],
+ "_id": 2975,
+ "created": "2008-01-15T14:11:37.000Z",
+ "lastUpdated": "2021-03-20T14:34:10.710Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "barrette à cheveux",
+ "plural": "barrettes à cheveux"
+ },
+ {
+ "keyword": "épingle à cheveux",
+ "hasLocution": false,
+ "plural": "épingles à cheveux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work machine",
+ "construction"
+ ],
+ "synsets": [
+ "03091491-n"
+ ],
+ "tags": [
+ "work",
+ "work machine",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 2976,
+ "created": "2008-01-15T14:12:02.000Z",
+ "lastUpdated": "2021-03-20T14:32:47.599Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "bétonnière",
+ "plural": "bétonnières"
+ },
+ {
+ "keyword": "bétonneuse",
+ "hasLocution": false,
+ "plural": "bétonneuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "joint system"
+ ],
+ "synsets": [
+ "05556473-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "joint system"
+ ],
+ "_id": 2977,
+ "created": "2008-01-15T14:12:37.000Z",
+ "lastUpdated": "2021-03-20T14:30:07.663Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "épaule",
+ "hasLocution": true,
+ "plural": "épaules"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "04433923-n",
+ "02863755-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 2978,
+ "created": "2008-01-15T14:13:07.000Z",
+ "lastUpdated": "2021-03-20T14:29:53.209Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fil",
+ "hasLocution": true,
+ "plural": "fils"
+ },
+ {
+ "keyword": "bobine de fil",
+ "hasLocution": false,
+ "plural": "bobines de fil",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07769089-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 2979,
+ "created": "2008-01-15T14:15:11.000Z",
+ "lastUpdated": "2021-03-20T14:29:08.736Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "figue",
+ "hasLocution": true,
+ "plural": "figues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "07736022-n",
+ "11853140-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable",
+ "plant",
+ "hervaceouos plant"
+ ],
+ "_id": 2981,
+ "created": "2008-01-22T16:52:44.000Z",
+ "lastUpdated": "2021-08-04T08:13:02.082Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bette",
+ "hasLocution": true,
+ "plural": "bettes"
+ },
+ {
+ "keyword": "blette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "blettes"
+ },
+ {
+ "keyword": "feuilles de blettes",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "côtes de blettes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "digestive system"
+ ],
+ "synsets": [
+ "05392877-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "human physiology",
+ "physiology",
+ "digestive system"
+ ],
+ "_id": 2980,
+ "created": "2008-01-15T14:16:11.000Z",
+ "lastUpdated": "2021-03-20T14:28:57.043Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "foie",
+ "hasLocution": true,
+ "plural": "foies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "professional"
+ ],
+ "synsets": [
+ "10099179-n",
+ "10098586-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "professional"
+ ],
+ "_id": 2982,
+ "created": "2008-01-22T16:54:07.000Z",
+ "lastUpdated": "2021-03-20T14:25:54.256Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "agriculteur",
+ "hasLocution": true,
+ "plural": "agriculteurs"
+ },
+ {
+ "type": 2,
+ "keyword": "cultivateur ",
+ "hasLocution": false,
+ "plural": "cultivateur"
+ },
+ {
+ "keyword": "paysan",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paysans"
+ },
+ {
+ "keyword": "fermier",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "fermier"
+ },
+ {
+ "keyword": "travailleur agricole",
+ "hasLocution": false,
+ "plural": "travailleurs agricoles",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "maraîcher",
+ "plural": "maraîcher",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07766848-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 2983,
+ "created": "2008-01-22T16:55:19.000Z",
+ "lastUpdated": "2021-03-20T14:24:07.212Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abricot",
+ "hasLocution": true,
+ "plural": "abricots"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena",
+ "spring"
+ ],
+ "synsets": [
+ "09426302-n"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena",
+ "spring"
+ ],
+ "_id": 2986,
+ "created": "2008-01-22T17:00:40.000Z",
+ "lastUpdated": "2021-03-26T02:55:00.940Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arc-en-ciel",
+ "hasLocution": true,
+ "plural": "arcs-en-ciel"
+ },
+ {
+ "keyword": "arc en ciel",
+ "hasLocution": false,
+ "plural": "arcs en ciel ",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "14732881-n",
+ "04124013-n",
+ "15089847-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 2984,
+ "created": "2008-01-22T16:56:51.000Z",
+ "lastUpdated": "2021-07-03T14:59:23.715Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "alcool",
+ "hasLocution": true,
+ "plural": "alcools"
+ },
+ {
+ "keyword": "alcool à 90°",
+ "hasLocution": false,
+ "plural": "alcools à 90°",
+ "type": 2
+ },
+ {
+ "keyword": "alcool dénaturé",
+ "hasLocution": false,
+ "plural": "alcools dénaturés",
+ "type": 2
+ },
+ {
+ "keyword": "alcool isopropylique",
+ "hasLocution": false,
+ "plural": "alcools isopropyliques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "14894229-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 2985,
+ "created": "2008-01-22T16:59:56.000Z",
+ "lastUpdated": "2021-04-02T22:06:49.140Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coton",
+ "hasLocution": true,
+ "plural": "cotons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "01355699-v",
+ "01355509-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 2987,
+ "created": "2008-01-22T17:01:43.000Z",
+ "lastUpdated": "2021-03-21T11:46:54.944Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "visser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "04134350-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 2971,
+ "created": "2008-01-15T13:59:38.000Z",
+ "lastUpdated": "2021-03-20T14:38:17.831Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "épingle à nourrice",
+ "hasLocution": false,
+ "plural": "épingles à nourrice"
+ },
+ {
+ "keyword": "épingle de sécurité",
+ "hasLocution": false,
+ "plural": "épingles de sécurité",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "12309340-n",
+ "07768353-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 2988,
+ "created": "2008-01-22T17:02:55.000Z",
+ "lastUpdated": "2021-03-21T11:47:08.105Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "noisette",
+ "hasLocution": true,
+ "plural": "noisettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05557209-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 2989,
+ "created": "2008-01-22T17:04:04.000Z",
+ "lastUpdated": "2021-03-21T11:49:13.171Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aisselle",
+ "hasLocution": true,
+ "plural": "aisselles"
+ },
+ {
+ "keyword": "dessous de bras",
+ "hasLocution": false,
+ "plural": "dessous de bras",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05607372-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 2991,
+ "created": "2008-01-22T17:06:04.000Z",
+ "lastUpdated": "2021-04-02T22:06:24.173Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "menton",
+ "hasLocution": true,
+ "plural": "menton"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "aerial transport",
+ "transport services"
+ ],
+ "synsets": [
+ "10675314-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 2990,
+ "created": "2008-01-22T17:04:55.000Z",
+ "lastUpdated": "2021-04-10T20:15:31.892Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hôtesse de l’air",
+ "hasLocution": false,
+ "plural": "hôtesses de l’air"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "waste disposal"
+ ],
+ "synsets": [
+ "10139987-n",
+ "10681913-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "waste disposal"
+ ],
+ "_id": 2993,
+ "created": "2008-01-22T17:09:45.000Z",
+ "lastUpdated": "2021-07-18T09:16:36.979Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balayeur",
+ "hasLocution": true,
+ "plural": "balayeurs"
+ },
+ {
+ "type": 2,
+ "keyword": "éboueur",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic"
+ ],
+ "synsets": [
+ "03681809-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 2992,
+ "created": "2008-01-22T17:07:24.000Z",
+ "lastUpdated": "2021-03-21T11:51:11.088Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rouge à lèvres",
+ "hasLocution": true,
+ "plural": "rouges à lèvres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat"
+ ],
+ "synsets": [
+ "07686178-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 2994,
+ "created": "2008-01-22T17:13:08.000Z",
+ "lastUpdated": "2021-04-12T21:15:13.190Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lard",
+ "hasLocution": true,
+ "plural": "lards"
+ },
+ {
+ "type": 2,
+ "keyword": "bacon",
+ "hasLocution": true,
+ "plural": "bacons"
+ },
+ {
+ "type": 2,
+ "keyword": "lard fumé",
+ "hasLocution": true,
+ "plural": "lards fumés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01618959-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 2998,
+ "created": "2008-01-22T17:21:19.000Z",
+ "lastUpdated": "2021-03-24T22:32:26.396Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vautour",
+ "hasLocution": true,
+ "plural": "vautours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "14803364-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 2997,
+ "created": "2008-01-22T17:17:52.000Z",
+ "lastUpdated": "2021-04-07T18:23:02.150Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "eau de javel",
+ "hasLocution": true,
+ "plural": "eaux de javel"
+ },
+ {
+ "keyword": "blanchisseur",
+ "hasLocution": false,
+ "plural": "blanchisseurs",
+ "type": 2
+ },
+ {
+ "keyword": "javel",
+ "hasLocution": false,
+ "plural": "javel",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "joint system",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05563958-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "joint system",
+ "core vocabulary"
+ ],
+ "_id": 3000,
+ "created": "2008-01-22T17:23:00.000Z",
+ "lastUpdated": "2021-03-24T22:29:28.241Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hanche",
+ "hasLocution": true,
+ "plural": "hanches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "diving"
+ ],
+ "synsets": [
+ "10039277-n",
+ "10039131-n",
+ "10585095-n",
+ "10626699-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "diving"
+ ],
+ "_id": 2999,
+ "created": "2008-01-22T17:22:10.000Z",
+ "lastUpdated": "2021-04-10T20:15:00.167Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plongeur",
+ "hasLocution": true,
+ "plural": "plongeurs"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "homme-grenouille",
+ "type": 2,
+ "plural": "hommes-grenouilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "trade"
+ ],
+ "synsets": [
+ "09918741-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 3001,
+ "created": "2008-01-22T17:25:35.000Z",
+ "lastUpdated": "2021-03-24T22:27:46.128Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caissière",
+ "hasLocution": true,
+ "plural": "caissières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07797777-n",
+ "00620041-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 3002,
+ "created": "2008-01-22T17:27:24.000Z",
+ "lastUpdated": "2021-03-24T22:27:27.386Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "calamars à la romaine",
+ "hasLocution": true
+ },
+ {
+ "keyword": "calamars frits",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07647646-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 2995,
+ "created": "2008-01-22T17:15:37.000Z",
+ "lastUpdated": "2021-04-07T18:25:57.067Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gâteaux",
+ "hasLocution": true,
+ "plural": "gâteaux"
+ },
+ {
+ "keyword": "gâteaux de Savoie",
+ "hasLocution": false,
+ "plural": "gâteaux de Savoie",
+ "type": 2
+ },
+ {
+ "keyword": "biscuits de Savoie",
+ "hasLocution": false,
+ "plural": "biscuits de Savoie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "07832374-n",
+ "12837268-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable",
+ "plant",
+ "hervaceouos plant"
+ ],
+ "_id": 2996,
+ "created": "2008-01-22T17:16:53.000Z",
+ "lastUpdated": "2021-03-24T22:33:16.600Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bourrache",
+ "hasLocution": true,
+ "plural": "bourraches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "02961022-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 3006,
+ "created": "2008-01-22T17:33:54.000Z",
+ "lastUpdated": "2021-03-24T22:24:40.528Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "capsule",
+ "hasLocution": true,
+ "plural": "capsules"
+ },
+ {
+ "keyword": "gélule",
+ "hasLocution": false,
+ "plural": "gélules",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07879523-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "core vocabulary"
+ ],
+ "_id": 3005,
+ "created": "2008-01-22T17:31:14.000Z",
+ "lastUpdated": "2021-03-24T22:24:54.990Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cannelloni",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "reptile",
+ "ovoviviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01696424-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "reptile",
+ "ovoviviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 3003,
+ "created": "2008-01-22T17:28:27.000Z",
+ "lastUpdated": "2021-03-24T15:31:56.084Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caméléon",
+ "hasLocution": true,
+ "plural": "caméléons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "pet",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01535980-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "pet",
+ "domestic"
+ ],
+ "_id": 3004,
+ "created": "2008-01-22T17:29:45.000Z",
+ "lastUpdated": "2021-03-24T22:25:13.562Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canari",
+ "hasLocution": true,
+ "plural": "canaris"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "meat"
+ ],
+ "synsets": [
+ "02930545-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 3007,
+ "created": "2008-01-22T17:34:50.000Z",
+ "lastUpdated": "2021-03-24T22:22:03.593Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boucherie",
+ "hasLocution": true,
+ "plural": "boucheries"
+ },
+ {
+ "keyword": "marché de viande",
+ "hasLocution": false,
+ "plural": "marchés de viande",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "meat"
+ ],
+ "synsets": [
+ "09903843-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 3008,
+ "created": "2008-01-22T17:35:46.000Z",
+ "lastUpdated": "2021-03-24T22:20:00.200Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boucher",
+ "hasLocution": true,
+ "plural": "bouchers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "hunting"
+ ],
+ "synsets": [
+ "10212645-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "hunting"
+ ],
+ "_id": 3010,
+ "created": "2008-01-22T17:38:43.000Z",
+ "lastUpdated": "2021-03-24T22:14:32.823Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chasseur",
+ "hasLocution": true,
+ "plural": "chasseurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05321060-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 3011,
+ "created": "2008-01-22T17:39:33.000Z",
+ "lastUpdated": "2021-03-24T22:13:07.678Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sourcil",
+ "hasLocution": true,
+ "plural": "sourcils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07909617-n",
+ "07909503-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 3009,
+ "created": "2008-01-22T17:37:05.000Z",
+ "lastUpdated": "2021-03-24T22:18:07.621Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "champagne",
+ "hasLocution": true,
+ "plural": "champagnes"
+ },
+ {
+ "type": 2,
+ "keyword": "champagne catalan",
+ "hasLocution": true,
+ "plural": "champagnes catalans"
+ },
+ {
+ "keyword": "vin pétillant",
+ "hasLocution": false,
+ "plural": "vins pétillants",
+ "type": 2
+ },
+ {
+ "keyword": "vin Cava",
+ "hasLocution": false,
+ "plural": "vins Cavas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "02805104-n",
+ "04589635-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 3012,
+ "created": "2008-01-22T17:41:38.000Z",
+ "lastUpdated": "2021-03-24T22:12:42.746Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "panier",
+ "hasLocution": true,
+ "plural": "paniers"
+ },
+ {
+ "keyword": "panier en osier ",
+ "hasLocution": false,
+ "plural": "paniers en osier ",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "02788021-n",
+ "02788388-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 3016,
+ "created": "2008-01-22T17:56:40.000Z",
+ "lastUpdated": "2021-03-24T22:07:45.692Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chouchou",
+ "hasLocution": true,
+ "plural": "chouchous"
+ },
+ {
+ "keyword": "ruban",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "rubans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "crustacean",
+ "oviparous",
+ "marine animal"
+ ],
+ "synsets": [
+ "01987336-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "arthropod",
+ "crustacean",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea"
+ ],
+ "_id": 3014,
+ "created": "2008-01-22T17:55:21.000Z",
+ "lastUpdated": "2021-04-07T18:20:56.815Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "langoustine",
+ "hasLocution": true,
+ "plural": "langoustines"
+ },
+ {
+ "keyword": "langouste",
+ "hasLocution": true,
+ "plural": "langoustes",
+ "type": 2
+ },
+ {
+ "keyword": "écrevisse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "écrevisses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic"
+ ],
+ "synsets": [
+ "04119846-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 3017,
+ "created": "2008-01-22T17:57:35.000Z",
+ "lastUpdated": "2021-03-24T22:06:37.082Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fard à joues",
+ "hasLocution": true,
+ "plural": "fards à joues"
+ },
+ {
+ "keyword": "fard",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fards"
+ },
+ {
+ "keyword": "blush",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "intimate hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "04142398-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "human body",
+ "intimate hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 3018,
+ "created": "2008-01-22T17:58:38.000Z",
+ "lastUpdated": "2021-03-24T22:01:47.954Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "serviette hygiénique",
+ "plural": "serviettes hygiéniques"
+ },
+ {
+ "keyword": "serviette périodique",
+ "hasLocution": false,
+ "plural": "serviettes périodiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07881991-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "core vocabulary"
+ ],
+ "_id": 3020,
+ "created": "2008-01-22T18:01:11.000Z",
+ "lastUpdated": "2021-03-24T21:58:30.907Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "croquettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "cold meat"
+ ],
+ "synsets": [
+ "10474538-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 3013,
+ "created": "2008-01-22T17:54:35.000Z",
+ "lastUpdated": "2021-03-24T22:09:32.265Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charcutier",
+ "hasLocution": true,
+ "plural": "charcutiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "road safety",
+ "land transport"
+ ],
+ "synsets": [
+ "10054631-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 3019,
+ "created": "2008-01-22T17:59:40.000Z",
+ "lastUpdated": "2021-03-24T21:59:00.960Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conducteur",
+ "hasLocution": true,
+ "plural": "conducteurs"
+ },
+ {
+ "keyword": "chauffeur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chauffeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3021,
+ "created": "2008-01-24T11:15:25.000Z",
+ "lastUpdated": "2021-03-24T21:57:56.455Z",
+ "keywords": [
+ {
+ "type": 6,
+ "hasLocution": true,
+ "keyword": "a"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02004729-n",
+ "02005210-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 3015,
+ "created": "2008-01-22T17:55:48.000Z",
+ "lastUpdated": "2021-03-24T22:08:25.481Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cigogne",
+ "hasLocution": true,
+ "plural": "cigognes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07765558-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit",
+ "core vocabulary"
+ ],
+ "_id": 3022,
+ "created": "2008-01-24T11:18:40.000Z",
+ "lastUpdated": "2021-03-24T21:51:43.163Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "citron",
+ "hasLocution": true,
+ "plural": "citrons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3025,
+ "created": "2008-01-24T11:24:11.000Z",
+ "lastUpdated": "2021-03-24T21:57:28.979Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "d",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3027,
+ "created": "2008-01-24T11:25:52.000Z",
+ "lastUpdated": "2021-03-24T21:51:56.553Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "f",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3026,
+ "created": "2008-01-24T11:24:59.000Z",
+ "lastUpdated": "2021-03-24T21:57:22.522Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "e",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3028,
+ "created": "2008-01-24T11:26:23.000Z",
+ "lastUpdated": "2021-03-24T21:57:08.501Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "g",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3029,
+ "created": "2008-01-24T11:26:52.000Z",
+ "lastUpdated": "2021-03-24T21:57:04.294Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "h",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3031,
+ "created": "2008-01-24T11:28:12.000Z",
+ "lastUpdated": "2021-03-24T21:56:48.987Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "j",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3030,
+ "created": "2008-01-24T11:27:22.000Z",
+ "lastUpdated": "2021-03-24T21:56:59.723Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "i",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3024,
+ "created": "2008-01-24T11:23:32.000Z",
+ "lastUpdated": "2021-03-24T21:57:32.982Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "c",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3032,
+ "created": "2008-01-24T11:28:39.000Z",
+ "lastUpdated": "2021-03-24T21:56:35.881Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "k",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3023,
+ "created": "2008-01-24T11:22:37.000Z",
+ "lastUpdated": "2021-03-24T21:57:38.842Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "b",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3033,
+ "created": "2008-01-24T11:29:03.000Z",
+ "lastUpdated": "2021-03-24T21:56:25.496Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "l",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3035,
+ "created": "2008-01-24T11:39:38.000Z",
+ "lastUpdated": "2021-03-24T21:56:08.820Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "m",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3036,
+ "created": "2008-01-24T11:40:09.000Z",
+ "lastUpdated": "2021-03-24T21:56:04.862Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "n",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter",
+ "conjunction",
+ "disjunctive conjunction"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter",
+ "conjunction",
+ "copulative conjunction",
+ "disjunctive conjunction"
+ ],
+ "_id": 3037,
+ "created": "2008-01-24T11:41:32.000Z",
+ "lastUpdated": "2024-11-19T06:18:45.251Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "o",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3039,
+ "created": "2008-01-24T11:42:20.000Z",
+ "lastUpdated": "2021-03-24T21:55:51.643Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "q",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3042,
+ "created": "2008-01-24T11:44:54.000Z",
+ "lastUpdated": "2021-03-24T21:55:35.485Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "t",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3043,
+ "created": "2008-01-24T11:45:20.000Z",
+ "lastUpdated": "2021-03-24T21:55:31.204Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "u",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3044,
+ "created": "2008-01-24T11:45:48.000Z",
+ "lastUpdated": "2021-03-24T21:55:27.002Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "v",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3045,
+ "created": "2008-01-24T11:46:10.000Z",
+ "lastUpdated": "2021-03-24T21:55:21.424Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "w",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3046,
+ "created": "2008-01-24T11:46:37.000Z",
+ "lastUpdated": "2021-03-24T21:54:06.588Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "x",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3041,
+ "created": "2008-01-24T11:43:27.000Z",
+ "lastUpdated": "2021-03-24T21:55:39.642Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "s",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter",
+ "conjunction",
+ "copulative conjunction"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter",
+ "conjunction",
+ "copulative conjunction"
+ ],
+ "_id": 3047,
+ "created": "2008-01-24T11:47:04.000Z",
+ "lastUpdated": "2024-11-19T06:18:02.100Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "y",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3040,
+ "created": "2008-01-24T11:42:50.000Z",
+ "lastUpdated": "2021-03-24T21:55:45.484Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "r",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3038,
+ "created": "2008-01-24T11:41:56.000Z",
+ "lastUpdated": "2021-03-24T21:55:56.125Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "p",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3049,
+ "created": "2008-01-24T11:47:46.000Z",
+ "lastUpdated": "2021-03-24T21:54:27.508Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "A",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3048,
+ "created": "2008-01-24T11:47:24.000Z",
+ "lastUpdated": "2021-03-24T21:54:20.415Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "z",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bush"
+ ],
+ "synsets": [
+ "12777217-n"
+ ],
+ "tags": [
+ "plant",
+ "bush"
+ ],
+ "_id": 3052,
+ "created": "2008-01-24T11:54:20.000Z",
+ "lastUpdated": "2021-03-20T16:19:59.024Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "houx",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "board game",
+ "chess"
+ ],
+ "synsets": [
+ "00504248-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "board game",
+ "sport",
+ "chess"
+ ],
+ "_id": 3054,
+ "created": "2008-01-24T11:55:27.000Z",
+ "lastUpdated": "2021-03-20T16:20:43.850Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jeu d'échecs",
+ "hasLocution": true,
+ "plural": "jeux d'échecs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "facility",
+ "transport services",
+ "aerial transport"
+ ],
+ "synsets": [
+ "02695091-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "facility",
+ "work",
+ "tertiary sector",
+ "transport services",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 3053,
+ "created": "2008-01-24T11:54:45.000Z",
+ "lastUpdated": "2021-03-20T16:20:26.469Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aéroport",
+ "hasLocution": true,
+ "plural": "aéroports"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree"
+ ],
+ "synsets": [
+ "11641124-n",
+ "11641011-n"
+ ],
+ "tags": [
+ "plant",
+ "tree"
+ ],
+ "_id": 3051,
+ "created": "2008-01-24T11:52:55.000Z",
+ "lastUpdated": "2021-03-24T21:53:32.231Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sapin",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pin",
+ "hasLocution": true,
+ "plural": "pins",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "sport material",
+ "diving",
+ "beach"
+ ],
+ "synsets": [
+ "03369002-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "leisure",
+ "sport",
+ "sport material",
+ "diving",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 3055,
+ "created": "2008-01-24T11:57:03.000Z",
+ "lastUpdated": "2022-07-04T06:43:37.554Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "palmes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity",
+ "christmas"
+ ],
+ "synsets": [
+ "09562026-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 3056,
+ "created": "2008-01-24T11:58:55.000Z",
+ "lastUpdated": "2021-03-20T16:21:36.879Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ange",
+ "hasLocution": true,
+ "plural": "anges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "summer",
+ "core vocabulary-living being",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "13124818-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "summer",
+ "core vocabulary"
+ ],
+ "_id": 3057,
+ "created": "2008-01-24T12:00:19.000Z",
+ "lastUpdated": "2021-03-20T16:21:44.987Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arbre",
+ "hasLocution": true,
+ "plural": "arbres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport"
+ ],
+ "synsets": [
+ "02694015-n",
+ "02689427-n",
+ "04018460-n",
+ "04229798-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 3059,
+ "created": "2008-01-24T12:04:45.000Z",
+ "lastUpdated": "2021-07-19T08:00:07.287Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "avion de tourisme",
+ "hasLocution": true,
+ "plural": "avions de tourisme"
+ },
+ {
+ "keyword": "monomoteur",
+ "hasLocution": false,
+ "plural": "monomoteurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas"
+ ],
+ "synsets": [
+ "03030309-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 3058,
+ "created": "2008-01-24T12:01:13.000Z",
+ "lastUpdated": "2021-03-20T16:22:25.295Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sapin de Noël",
+ "hasLocution": true,
+ "plural": "sapins de Noël"
+ },
+ {
+ "keyword": "arbre de Noël",
+ "hasLocution": false,
+ "plural": "arbres de Noël",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "alphabet"
+ ],
+ "synsets": [
+ "05881364-n",
+ "06509450-n",
+ "06841868-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet"
+ ],
+ "_id": 3050,
+ "created": "2008-01-24T11:52:26.000Z",
+ "lastUpdated": "2021-04-08T10:00:48.566Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abécédaire",
+ "hasLocution": true,
+ "plural": "abécédaires"
+ },
+ {
+ "type": 6,
+ "keyword": "alphabet",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ABC",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "alphabet",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "alphabets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03223838-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 3063,
+ "created": "2008-01-24T12:07:38.000Z",
+ "lastUpdated": "2021-03-20T16:23:44.384Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Barbie",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "poupée",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "01039851-n",
+ "01030088-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "religious event",
+ "christianity"
+ ],
+ "_id": 3064,
+ "created": "2008-01-24T12:08:02.000Z",
+ "lastUpdated": "2021-03-20T16:24:08.526Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "baptême",
+ "hasLocution": true,
+ "plural": "baptêmes"
+ },
+ {
+ "type": 3,
+ "keyword": "baptiser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3061,
+ "created": "2008-01-24T12:05:42.000Z",
+ "lastUpdated": "2021-04-01T22:09:26.336Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "B",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "financial services"
+ ],
+ "synsets": [
+ "02790795-n",
+ "08437235-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector",
+ "financial services"
+ ],
+ "_id": 3062,
+ "created": "2008-01-24T12:06:12.000Z",
+ "lastUpdated": "2021-03-21T10:27:30.130Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "banque",
+ "hasLocution": true,
+ "plural": "banques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas"
+ ],
+ "synsets": [
+ "03174056-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 3067,
+ "created": "2008-01-24T12:10:03.000Z",
+ "lastUpdated": "2021-03-21T10:27:04.263Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boules de l'arbre de Noël ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "boules de Noël",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional"
+ ],
+ "synsets": [
+ "10039277-n",
+ "10039131-n",
+ "10585095-n"
+ ],
+ "tags": [
+ "work",
+ "professional"
+ ],
+ "_id": 3068,
+ "created": "2008-01-24T12:10:29.000Z",
+ "lastUpdated": "2021-03-21T10:26:36.565Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "scaphandrier",
+ "plural": "scaphandriers"
+ },
+ {
+ "keyword": "homme-grenouille",
+ "hasLocution": false,
+ "plural": "hommes-grenouilles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3069,
+ "created": "2008-01-24T12:10:51.000Z",
+ "lastUpdated": "2021-04-01T22:09:07.438Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "C",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "library science",
+ "cultural building",
+ "place"
+ ],
+ "synsets": [
+ "03666369-n"
+ ],
+ "tags": [
+ "library science",
+ "place",
+ "building",
+ "culture"
+ ],
+ "_id": 3065,
+ "created": "2008-01-24T12:08:25.000Z",
+ "lastUpdated": "2024-12-09T11:37:50.051Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bibliothèque",
+ "hasLocution": true,
+ "plural": "bibliothèques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cactus"
+ ],
+ "synsets": [
+ "11862673-n"
+ ],
+ "tags": [
+ "plant",
+ "cactus"
+ ],
+ "_id": 3070,
+ "created": "2008-01-24T12:11:13.000Z",
+ "lastUpdated": "2021-03-21T10:24:48.315Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cactus",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public building",
+ "public administration",
+ "place"
+ ],
+ "synsets": [
+ "04468672-n",
+ "03040007-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "public administration",
+ "work"
+ ],
+ "_id": 3060,
+ "created": "2008-01-24T12:05:21.000Z",
+ "lastUpdated": "2024-12-09T11:29:30.598Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mairie",
+ "hasLocution": true,
+ "plural": "mairies"
+ },
+ {
+ "keyword": "hôtel de ville",
+ "hasLocution": false,
+ "plural": "hôtels de ville",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "calendar"
+ ],
+ "synsets": [
+ "15198526-n",
+ "08283770-n",
+ "06437949-n",
+ "06438138-n"
+ ],
+ "tags": [
+ "time",
+ "calendar"
+ ],
+ "_id": 3071,
+ "created": "2008-01-24T12:13:10.000Z",
+ "lastUpdated": "2021-04-08T10:01:51.422Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "calendrier",
+ "hasLocution": true,
+ "plural": "calendriers"
+ },
+ {
+ "type": 2,
+ "keyword": "almanach ",
+ "hasLocution": false,
+ "plural": "almanach"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas",
+ "popular event"
+ ],
+ "synsets": [
+ "02827590-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 3072,
+ "created": "2008-01-24T12:14:00.000Z",
+ "lastUpdated": "2024-12-10T06:31:55.950Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cloches",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "land transport",
+ "sport"
+ ],
+ "synsets": [
+ "03132398-n",
+ "03518520-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 3076,
+ "created": "2008-01-24T12:17:25.000Z",
+ "lastUpdated": "2024-12-05T06:31:33.971Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casque de protection",
+ "hasLocution": false,
+ "plural": "casques de protection"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "football",
+ "sport",
+ "sport event"
+ ],
+ "synsets": [
+ "08533915-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "football",
+ "event",
+ "sport event"
+ ],
+ "_id": 3073,
+ "created": "2008-01-24T12:14:57.000Z",
+ "lastUpdated": "2024-12-10T06:32:58.461Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "terrain de football",
+ "hasLocution": true,
+ "plural": "terrains de football"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "cycling",
+ "sport"
+ ],
+ "synsets": [
+ "03132398-n",
+ "03518520-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "cycling"
+ ],
+ "_id": 3075,
+ "created": "2008-01-24T12:16:37.000Z",
+ "lastUpdated": "2024-12-05T06:31:44.928Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casque de cycliste",
+ "hasLocution": true,
+ "plural": "casques de cycliste"
+ },
+ {
+ "keyword": "casque de protection",
+ "hasLocution": false,
+ "plural": "casques de protection",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "carnival"
+ ],
+ "synsets": [
+ "00512566-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "carnival"
+ ],
+ "_id": 3074,
+ "created": "2008-01-24T12:15:54.000Z",
+ "lastUpdated": "2021-03-21T10:21:57.309Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carnaval",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree"
+ ],
+ "synsets": [
+ "11650940-n",
+ "11653070-n"
+ ],
+ "tags": [
+ "plant",
+ "tree"
+ ],
+ "_id": 3079,
+ "created": "2008-01-24T12:21:14.000Z",
+ "lastUpdated": "2021-04-01T22:06:43.725Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cyprès",
+ "hasLocution": true,
+ "plural": "cyprès"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "04292146-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 3081,
+ "created": "2008-01-24T12:23:57.000Z",
+ "lastUpdated": "2021-04-01T22:04:36.739Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voiture de sport",
+ "hasLocution": false,
+ "plural": "voitures de sport"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "cycling"
+ ],
+ "synsets": [
+ "10005719-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "cycling"
+ ],
+ "_id": 3078,
+ "created": "2008-01-24T12:20:09.000Z",
+ "lastUpdated": "2021-04-06T10:58:10.343Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cycliste",
+ "hasLocution": true,
+ "plural": "cyclistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "security and defense",
+ "core vocabulary-place",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "03984036-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "core vocabulary"
+ ],
+ "_id": 3083,
+ "created": "2008-01-24T12:26:24.000Z",
+ "lastUpdated": "2021-07-03T14:40:51.054Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "commissariat",
+ "hasLocution": true,
+ "plural": "commissariats"
+ },
+ {
+ "keyword": "poste de police",
+ "hasLocution": false,
+ "plural": "postes de police",
+ "type": 2
+ },
+ {
+ "keyword": "gendarmerie",
+ "hasLocution": false,
+ "plural": "gendarmeries",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "educational institution"
+ ],
+ "synsets": [
+ "04153115-n",
+ "08293641-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "educational institution"
+ ],
+ "_id": 3082,
+ "created": "2008-01-24T12:25:09.000Z",
+ "lastUpdated": "2021-07-03T14:39:18.958Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "école",
+ "hasLocution": true,
+ "plural": "écoles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "swimming",
+ "swimming pool",
+ "beach"
+ ],
+ "synsets": [
+ "03368854-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool",
+ "beach"
+ ],
+ "_id": 3077,
+ "created": "2008-01-24T12:19:20.000Z",
+ "lastUpdated": "2021-04-10T20:14:19.822Z",
+ "keywords": [
+ {
+ "keyword": "tongs",
+ "hasLocution": true,
+ "plural": "tongs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "11828937-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "hervaceouos plant"
+ ],
+ "_id": 3080,
+ "created": "2008-01-24T12:22:42.000Z",
+ "lastUpdated": "2021-08-04T09:00:56.341Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oeillet",
+ "hasLocution": true,
+ "plural": "oeillets"
+ },
+ {
+ "keyword": "œillet",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "œillets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "01038365-n",
+ "00762447-v"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "religious event",
+ "christianity"
+ ],
+ "_id": 3084,
+ "created": "2008-01-24T12:26:54.000Z",
+ "lastUpdated": "2021-04-01T22:04:00.670Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "communion",
+ "hasLocution": true,
+ "plural": "communions"
+ },
+ {
+ "type": 2,
+ "keyword": "première communion",
+ "hasLocution": true,
+ "plural": "premières communions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas"
+ ],
+ "synsets": [
+ "04613372-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 3085,
+ "created": "2008-01-24T12:27:54.000Z",
+ "lastUpdated": "2021-07-03T14:42:19.832Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couronne",
+ "hasLocution": true,
+ "plural": "couronnes"
+ },
+ {
+ "keyword": "guirlande",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "guirlandes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "telecommunication",
+ "mass media",
+ "public administration"
+ ],
+ "synsets": [
+ "08162561-n",
+ "06275051-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "tertiary sector",
+ "telecommunication",
+ "communication",
+ "mass media",
+ "public administration"
+ ],
+ "_id": 3086,
+ "created": "2008-01-24T12:28:26.000Z",
+ "lastUpdated": "2024-12-11T17:29:49.475Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "poste",
+ "plural": "poste"
+ },
+ {
+ "keyword": "bureau de poste",
+ "hasLocution": false,
+ "plural": "bureaux de poste",
+ "type": 2
+ },
+ {
+ "keyword": "service postal",
+ "hasLocution": false,
+ "plural": "services postaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "birthday"
+ ],
+ "synsets": [
+ "15277233-n",
+ "15274989-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 3087,
+ "created": "2008-01-24T12:29:23.000Z",
+ "lastUpdated": "2021-04-06T10:57:51.832Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "anniversaire",
+ "hasLocution": true,
+ "plural": "anniversaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "popular event"
+ ],
+ "synsets": [
+ "15214084-n"
+ ],
+ "tags": [
+ "event",
+ "popular event"
+ ],
+ "_id": 3091,
+ "created": "2008-01-24T12:33:32.000Z",
+ "lastUpdated": "2021-03-26T02:40:06.791Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "fête des mères",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3088,
+ "created": "2008-01-24T12:29:44.000Z",
+ "lastUpdated": "2021-04-01T22:03:01.595Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "D",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christmas",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15221021-n",
+ "15221372-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "christmas",
+ "core vocabulary"
+ ],
+ "_id": 3092,
+ "created": "2008-01-24T12:33:59.000Z",
+ "lastUpdated": "2021-04-01T22:01:32.981Z",
+ "keywords": [
+ {
+ "keyword": "Noël",
+ "hasLocution": true,
+ "type": 1
+ },
+ {
+ "keyword": "jour de Noël",
+ "hasLocution": true,
+ "type": 1
+ },
+ {
+ "keyword": "25 décembre",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "musical art"
+ ],
+ "synsets": [
+ "09972018-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "music"
+ ],
+ "_id": 3094,
+ "created": "2008-01-24T12:37:33.000Z",
+ "lastUpdated": "2021-04-10T20:11:58.706Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chef d'orchestre",
+ "hasLocution": true,
+ "plural": "chefs d'orchestre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "sport material",
+ "sport modality"
+ ],
+ "synsets": [
+ "00505220-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "sport material",
+ "sport modality"
+ ],
+ "_id": 3090,
+ "created": "2008-01-24T12:32:06.000Z",
+ "lastUpdated": "2021-04-01T22:02:15.891Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fléchettes",
+ "hasLocution": true,
+ "plural": "fléchettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "popular event"
+ ],
+ "synsets": [
+ "15214817-n"
+ ],
+ "tags": [
+ "event",
+ "popular event"
+ ],
+ "_id": 3093,
+ "created": "2008-01-24T12:35:47.000Z",
+ "lastUpdated": "2021-03-26T02:41:31.879Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "fête des pères",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gambling",
+ "board game"
+ ],
+ "synsets": [
+ "03195713-n",
+ "03195970-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "gambling",
+ "board game"
+ ],
+ "_id": 3089,
+ "created": "2008-01-24T12:30:57.000Z",
+ "lastUpdated": "2021-04-01T22:02:51.859Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "jeu de dés",
+ "plural": "jeux de dés"
+ },
+ {
+ "keyword": "dés",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "dés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "board game"
+ ],
+ "synsets": [
+ "00500488-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "board game"
+ ],
+ "_id": 3095,
+ "created": "2008-01-24T13:11:37.000Z",
+ "lastUpdated": "2021-04-06T10:57:33.879Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dominos",
+ "hasLocution": false,
+ "plural": "dominos"
+ },
+ {
+ "keyword": "jeu de dominos",
+ "hasLocution": false,
+ "plural": "jeux de dominos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3096,
+ "created": "2008-01-24T13:12:27.000Z",
+ "lastUpdated": "2021-04-06T10:56:59.099Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "E",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas",
+ "popular event"
+ ],
+ "synsets": [
+ "13904301-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 3100,
+ "created": "2008-01-24T13:16:08.000Z",
+ "lastUpdated": "2024-12-06T06:58:30.967Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Étoile de Noël",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "land transport"
+ ],
+ "synsets": [
+ "04056210-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 3099,
+ "created": "2008-01-24T13:15:46.000Z",
+ "lastUpdated": "2021-07-03T14:47:09.309Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gare",
+ "hasLocution": true,
+ "plural": "gares"
+ },
+ {
+ "keyword": "station",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "stations"
+ },
+ {
+ "keyword": "gare ferroviaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gares ferroviaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3101,
+ "created": "2008-01-24T13:16:30.000Z",
+ "lastUpdated": "2021-04-06T10:56:09.940Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "F",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "swimming pool"
+ ],
+ "synsets": [
+ "03668045-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 3103,
+ "created": "2008-01-24T13:17:30.000Z",
+ "lastUpdated": "2021-07-03T14:55:56.941Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouée de sauvetage",
+ "hasLocution": true,
+ "plural": "bouées de sauvetage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "plant anatomy"
+ ],
+ "synsets": [
+ "11689786-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "plant anatomy",
+ "anatomy"
+ ],
+ "_id": 3102,
+ "created": "2008-01-24T13:17:06.000Z",
+ "lastUpdated": "2021-04-06T10:56:04.560Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fleur",
+ "hasLocution": true,
+ "plural": "fleurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "swimming",
+ "swimming pool",
+ "beach"
+ ],
+ "synsets": [
+ "03448836-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "swimming",
+ "outdoor activity",
+ "swimming pool",
+ "beach"
+ ],
+ "_id": 3105,
+ "created": "2008-01-24T13:20:21.000Z",
+ "lastUpdated": "2022-07-04T06:43:16.025Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lunettes de natation",
+ "hasLocution": true,
+ "plural": "lunettes de natation"
+ },
+ {
+ "keyword": "lunettes de piscine",
+ "hasLocution": false,
+ "plural": "lunettes de piscine",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04235116-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 3098,
+ "created": "2008-01-24T13:15:12.000Z",
+ "lastUpdated": "2021-04-06T10:56:42.498Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "skis",
+ "hasLocution": true,
+ "plural": "skis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10624661-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 3097,
+ "created": "2008-01-24T13:14:21.000Z",
+ "lastUpdated": "2021-04-06T10:56:54.354Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "skieur",
+ "hasLocution": true,
+ "plural": "skieur"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "02810318-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 3108,
+ "created": "2008-01-24T13:23:33.000Z",
+ "lastUpdated": "2021-04-10T20:09:21.872Z",
+ "keywords": [
+ {
+ "keyword": "bonnet de bain",
+ "hasLocution": true,
+ "plural": "bonnets de bain",
+ "type": 2
+ },
+ {
+ "keyword": "bonnet de natation",
+ "hasLocution": false,
+ "plural": "bonnets de natation",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3104,
+ "created": "2008-01-24T13:19:12.000Z",
+ "lastUpdated": "2021-04-06T10:55:49.394Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "G",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "gymnastics"
+ ],
+ "synsets": [
+ "10173163-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "gymnastics"
+ ],
+ "_id": 3106,
+ "created": "2008-01-24T13:20:56.000Z",
+ "lastUpdated": "2021-11-10T15:15:45.998Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gymnaste",
+ "hasLocution": true,
+ "plural": "gymnastes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas"
+ ],
+ "synsets": [
+ "04613372-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 3111,
+ "created": "2008-01-24T13:25:45.000Z",
+ "lastUpdated": "2021-07-18T09:14:25.136Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guirlande",
+ "hasLocution": true,
+ "plural": "guirlandes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3112,
+ "created": "2008-01-24T13:26:04.000Z",
+ "lastUpdated": "2021-04-06T10:54:51.800Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "H",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbaceous plant",
+ "core vocabulary-living being",
+ "herbivorous"
+ ],
+ "synsets": [
+ "12122650-n",
+ "07817067-n"
+ ],
+ "tags": [
+ "plant",
+ "hervaceouos plant",
+ "core vocabulary",
+ "animal",
+ "herbivorous"
+ ],
+ "_id": 3113,
+ "created": "2008-01-24T13:26:33.000Z",
+ "lastUpdated": "2024-12-03T10:44:29.161Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "herbe",
+ "hasLocution": true,
+ "plural": "herbes"
+ },
+ {
+ "keyword": "gazon",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gazons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy"
+ ],
+ "synsets": [
+ "13173519-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy"
+ ],
+ "_id": 3114,
+ "created": "2008-01-24T13:27:33.000Z",
+ "lastUpdated": "2021-03-20T16:16:18.883Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "feuille",
+ "hasLocution": true,
+ "plural": "feuilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume",
+ "christmas"
+ ],
+ "synsets": [
+ "02958501-n",
+ "10570230-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 3109,
+ "created": "2008-01-24T13:24:03.000Z",
+ "lastUpdated": "2021-04-10T20:06:53.267Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bonnet du Père Noël",
+ "hasLocution": true,
+ "plural": "bonnets du Père Noël"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "rhythmic gymnastics"
+ ],
+ "synsets": [
+ "10173163-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "gymnastics",
+ "rhythmic gymnastics"
+ ],
+ "_id": 3107,
+ "created": "2008-01-24T13:21:20.000Z",
+ "lastUpdated": "2021-11-10T15:15:54.684Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gymnaste",
+ "hasLocution": true,
+ "plural": "gymnastes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "11485929-n"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 3110,
+ "created": "2008-01-24T13:24:50.000Z",
+ "lastUpdated": "2021-04-12T21:25:35.710Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grêle",
+ "hasLocution": true,
+ "plural": "grêles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3117,
+ "created": "2008-01-24T13:28:54.000Z",
+ "lastUpdated": "2021-04-06T10:54:42.684Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "I",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre",
+ "covid-19"
+ ],
+ "synsets": [
+ "08071169-n",
+ "03545775-n",
+ "03047259-n",
+ "08070828-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "covid-19"
+ ],
+ "_id": 3116,
+ "created": "2008-01-24T13:28:32.000Z",
+ "lastUpdated": "2021-03-20T16:16:08.293Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hôpital",
+ "hasLocution": true,
+ "plural": "hôpitaux"
+ },
+ {
+ "keyword": "clinique",
+ "hasLocution": true,
+ "plural": "cliniques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3121,
+ "created": "2008-01-24T13:33:03.000Z",
+ "lastUpdated": "2021-04-06T10:54:23.383Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "L",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3120,
+ "created": "2008-01-24T13:32:42.000Z",
+ "lastUpdated": "2021-04-06T10:54:28.068Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "K",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3119,
+ "created": "2008-01-24T13:29:39.000Z",
+ "lastUpdated": "2021-04-06T10:54:36.688Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "J",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity",
+ "christmas",
+ "event",
+ "popular event",
+ "religious event",
+ "social event",
+ "popular festival"
+ ],
+ "synsets": [
+ "15219341-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity",
+ "event",
+ "popular event",
+ "christmas",
+ "religious event",
+ "social event",
+ "popular festival"
+ ],
+ "_id": 3124,
+ "created": "2008-01-24T13:35:02.000Z",
+ "lastUpdated": "2024-12-15T06:40:15.333Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Rois Mages",
+ "hasLocution": true
+ },
+ {
+ "keyword": "3 Rois Mages",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena",
+ "spring"
+ ],
+ "synsets": [
+ "11521799-n"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena",
+ "spring"
+ ],
+ "_id": 3123,
+ "created": "2008-01-24T13:34:35.000Z",
+ "lastUpdated": "2021-03-20T16:14:51.383Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pluie",
+ "hasLocution": true,
+ "plural": "pluies"
+ },
+ {
+ "keyword": "averse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "averses"
+ },
+ {
+ "keyword": "giboulée",
+ "hasLocution": false,
+ "plural": "giboulées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12732356-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 3122,
+ "created": "2008-01-24T13:34:04.000Z",
+ "lastUpdated": "2021-03-20T16:15:06.462Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "citronnier",
+ "hasLocution": true,
+ "plural": "citronniers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious building",
+ "religious place",
+ "christianity",
+ "core vocabulary-place",
+ "core vocabulary-religion"
+ ],
+ "synsets": [
+ "03031762-n",
+ "04414570-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "religion",
+ "christianity",
+ "core vocabulary"
+ ],
+ "_id": 3118,
+ "created": "2008-01-24T13:29:18.000Z",
+ "lastUpdated": "2021-03-20T16:15:35.569Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "église",
+ "hasLocution": true,
+ "plural": "églises"
+ },
+ {
+ "type": 2,
+ "keyword": "temple",
+ "hasLocution": true,
+ "plural": "temples"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "gardening"
+ ],
+ "synsets": [
+ "03997420-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "work",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 3126,
+ "created": "2008-01-24T13:36:17.000Z",
+ "lastUpdated": "2021-03-20T16:13:42.451Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pot de fleur",
+ "hasLocution": true,
+ "plural": "pots de fleur"
+ },
+ {
+ "keyword": "pot en terre",
+ "hasLocution": false,
+ "plural": "pots en terre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04386330-n",
+ "03898425-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "core vocabulary"
+ ],
+ "_id": 3129,
+ "created": "2008-01-24T13:53:52.000Z",
+ "lastUpdated": "2021-03-20T16:12:05.116Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "table",
+ "hasLocution": true,
+ "plural": "tables"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03223838-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 3130,
+ "created": "2008-01-24T13:55:39.000Z",
+ "lastUpdated": "2021-07-18T09:14:09.842Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "poupée",
+ "plural": "poupées"
+ },
+ {
+ "keyword": "poupon",
+ "hasLocution": false,
+ "plural": "poupons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "06719615-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 3128,
+ "created": "2008-01-24T13:38:54.000Z",
+ "lastUpdated": "2021-03-20T16:12:33.243Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "médaille",
+ "hasLocution": true,
+ "plural": "médailles"
+ },
+ {
+ "keyword": "médaille d'or",
+ "hasLocution": false,
+ "plural": "médailles d'or",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas"
+ ],
+ "synsets": [
+ "04259093-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 3131,
+ "created": "2008-01-24T13:56:02.000Z",
+ "lastUpdated": "2021-03-20T16:11:43.555Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bonhomme de neige",
+ "hasLocution": true,
+ "plural": "bonhommes de neige"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building"
+ ],
+ "synsets": [
+ "03806085-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture"
+ ],
+ "_id": 3132,
+ "created": "2008-01-24T13:56:24.000Z",
+ "lastUpdated": "2021-03-20T16:11:30.714Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "musée",
+ "hasLocution": true,
+ "plural": "musées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christmas",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "15221372-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "christmas",
+ "religious event",
+ "religion",
+ "christianity"
+ ],
+ "_id": 3134,
+ "created": "2008-01-24T13:57:58.000Z",
+ "lastUpdated": "2021-03-20T16:10:53.764Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Noël",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3133,
+ "created": "2008-01-24T13:56:43.000Z",
+ "lastUpdated": "2021-04-06T10:53:40.247Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "N",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "herbaceous plant",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "11959960-n",
+ "11695054-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "hervaceouos plant",
+ "core vocabulary"
+ ],
+ "_id": 3127,
+ "created": "2008-01-24T13:37:18.000Z",
+ "lastUpdated": "2021-03-20T16:12:47.387Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marguerite",
+ "hasLocution": true,
+ "plural": "marguerites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena",
+ "christmas",
+ "winter"
+ ],
+ "synsets": [
+ "11528800-n",
+ "15068330-n",
+ "02764935-v"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena",
+ "event",
+ "popular event",
+ "christmas",
+ "winter"
+ ],
+ "_id": 3135,
+ "created": "2008-01-24T13:58:20.000Z",
+ "lastUpdated": "2021-03-20T16:10:42.256Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "neige",
+ "hasLocution": true
+ },
+ {
+ "keyword": "chute de neige",
+ "hasLocution": true,
+ "plural": "chutes de neige",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter",
+ "conjunction",
+ "disjunctive conjunction"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter",
+ "conjunction",
+ "copulative conjunction",
+ "disjunctive conjunction"
+ ],
+ "_id": 3136,
+ "created": "2008-01-24T14:01:25.000Z",
+ "lastUpdated": "2024-11-19T06:18:29.207Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "O",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3125,
+ "created": "2008-01-24T13:35:50.000Z",
+ "lastUpdated": "2021-04-06T10:54:18.344Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "M",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3137,
+ "created": "2008-01-24T14:02:04.000Z",
+ "lastUpdated": "2021-04-06T10:53:26.431Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "P",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "security and defense"
+ ],
+ "synsets": [
+ "03352184-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 3140,
+ "created": "2008-01-24T14:03:27.000Z",
+ "lastUpdated": "2021-03-20T16:09:31.410Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caserne de pompiers ",
+ "hasLocution": false,
+ "plural": "casernes de pompiers "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "02813606-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 3141,
+ "created": "2008-01-24T14:04:50.000Z",
+ "lastUpdated": "2021-03-20T16:08:07.819Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piles",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "04378312-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 3142,
+ "created": "2008-01-24T14:06:21.000Z",
+ "lastUpdated": "2021-03-20T16:07:47.473Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piscine",
+ "hasLocution": true,
+ "plural": "piscines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy",
+ "core vocabulary-living being",
+ "gardening"
+ ],
+ "synsets": [
+ "00017402-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy",
+ "core vocabulary",
+ "work",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 3143,
+ "created": "2008-01-24T14:07:31.000Z",
+ "lastUpdated": "2022-10-18T09:48:31.853Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plante",
+ "hasLocution": true,
+ "plural": "plantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree"
+ ],
+ "synsets": [
+ "12602979-n"
+ ],
+ "tags": [
+ "plant",
+ "tree"
+ ],
+ "_id": 3138,
+ "created": "2008-01-24T14:02:36.000Z",
+ "lastUpdated": "2021-03-20T16:10:11.983Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "palmier",
+ "hasLocution": true,
+ "plural": "palmiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "herbaceous plant",
+ "agriculture"
+ ],
+ "synsets": [
+ "12372804-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "hervaceouos plant",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 3144,
+ "created": "2008-01-24T14:08:04.000Z",
+ "lastUpdated": "2021-03-20T16:07:14.741Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bananier",
+ "hasLocution": true,
+ "plural": "bananiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3146,
+ "created": "2008-01-24T14:10:43.000Z",
+ "lastUpdated": "2021-04-06T10:53:16.171Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Q",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "fishing"
+ ],
+ "synsets": [
+ "08656633-n",
+ "08651532-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 3145,
+ "created": "2008-01-24T14:09:33.000Z",
+ "lastUpdated": "2021-07-18T09:13:53.804Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "port",
+ "hasLocution": true,
+ "plural": "ports"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "character",
+ "christmas"
+ ],
+ "synsets": [
+ "10570230-n"
+ ],
+ "tags": [
+ "character",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 3139,
+ "created": "2008-01-24T14:02:59.000Z",
+ "lastUpdated": "2021-03-20T16:09:43.457Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Père-Noël",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Père Noël",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Saint Nicolas",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "birthday",
+ "christmas"
+ ],
+ "synsets": [
+ "13285910-n",
+ "13289865-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "birthday",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 3149,
+ "created": "2008-01-24T14:12:04.000Z",
+ "lastUpdated": "2021-03-20T16:04:58.111Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cadeau",
+ "hasLocution": true,
+ "plural": "cadeaux"
+ },
+ {
+ "keyword": "présent",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "présents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3147,
+ "created": "2008-01-24T14:11:05.000Z",
+ "lastUpdated": "2021-04-06T10:53:11.106Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "R",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "12640957-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "core vocabulary"
+ ],
+ "_id": 3151,
+ "created": "2008-01-24T14:13:36.000Z",
+ "lastUpdated": "2021-03-20T16:04:27.544Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rose",
+ "hasLocution": true,
+ "plural": "roses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "character",
+ "christmas"
+ ],
+ "synsets": [
+ "02436556-n"
+ ],
+ "tags": [
+ "character",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 3150,
+ "created": "2008-01-24T14:12:39.000Z",
+ "lastUpdated": "2021-05-11T22:57:53.291Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "plural": "rennes du Père Noël",
+ "keyword": "enne du Père Noël"
+ },
+ {
+ "type": 1,
+ "hasLocution": false,
+ "keyword": "Rudolphe le Renne au nez rouge"
+ },
+ {
+ "keyword": "Rudolphe",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "easter week",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "15206279-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "easter week",
+ "religious event",
+ "religion",
+ "christianity"
+ ],
+ "_id": 3153,
+ "created": "2008-01-24T14:14:38.000Z",
+ "lastUpdated": "2021-03-26T03:03:55.574Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "semaine de Pâques espagnole",
+ "hasLocution": false,
+ "plural": "semaines de Pâques espagnoles"
+ },
+ {
+ "keyword": "semaine Sainte espagnole",
+ "hasLocution": false,
+ "type": 1,
+ "plural": "semaines Saintes espagnoles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3152,
+ "created": "2008-01-24T14:13:57.000Z",
+ "lastUpdated": "2021-04-06T10:53:00.864Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "S",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "13145876-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy",
+ "core vocabulary"
+ ],
+ "_id": 3148,
+ "created": "2008-01-24T14:11:42.000Z",
+ "lastUpdated": "2021-03-20T16:05:31.168Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "racine",
+ "hasLocution": true,
+ "plural": "racines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07750720-n",
+ "13021801-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 3154,
+ "created": "2008-01-24T14:14:59.000Z",
+ "lastUpdated": "2021-03-20T16:03:48.618Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "champignons",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3158,
+ "created": "2008-01-24T14:17:42.000Z",
+ "lastUpdated": "2021-04-06T10:52:50.529Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "T",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "10280497-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 3156,
+ "created": "2008-01-24T14:16:55.000Z",
+ "lastUpdated": "2021-07-19T06:59:58.401Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "secouriste",
+ "hasLocution": true,
+ "plural": "secouristes"
+ },
+ {
+ "keyword": "maitre nageur",
+ "hasLocution": false,
+ "plural": "maitres nageurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03005231-n",
+ "04338415-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "core vocabulary"
+ ],
+ "_id": 3155,
+ "created": "2008-01-24T14:16:07.000Z",
+ "lastUpdated": "2021-03-20T16:03:37.231Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaise",
+ "hasLocution": true,
+ "plural": "chaises"
+ },
+ {
+ "keyword": "siège",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "siège"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "object",
+ "christmas"
+ ],
+ "synsets": [
+ "04242397-n"
+ ],
+ "tags": [
+ "object",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 3161,
+ "created": "2008-01-24T14:22:01.000Z",
+ "lastUpdated": "2021-03-20T16:01:26.553Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "traîneau du Père Noël",
+ "hasLocution": true,
+ "plural": "traîneaux du Père Noël"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "gardening",
+ "cattle farming"
+ ],
+ "synsets": [
+ "09358146-n",
+ "14868863-n"
+ ],
+ "tags": [
+ "primary sector",
+ "agriculture",
+ "gardening",
+ "work",
+ "cattle farming"
+ ],
+ "_id": 3160,
+ "created": "2008-01-24T14:20:08.000Z",
+ "lastUpdated": "2024-12-18T07:49:54.481Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "terre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sol",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy"
+ ],
+ "synsets": [
+ "13149924-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy"
+ ],
+ "_id": 3159,
+ "created": "2008-01-24T14:18:12.000Z",
+ "lastUpdated": "2021-03-20T16:05:49.350Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tige",
+ "hasLocution": true,
+ "plural": "tiges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "football",
+ "sport"
+ ],
+ "synsets": [
+ "04495252-n",
+ "03152567-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "football"
+ ],
+ "_id": 3162,
+ "created": "2008-01-24T14:22:40.000Z",
+ "lastUpdated": "2024-12-11T06:47:22.228Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trophée",
+ "hasLocution": true,
+ "plural": "trophées"
+ },
+ {
+ "type": 2,
+ "keyword": "coupe",
+ "hasLocution": true,
+ "plural": "coupes"
+ },
+ {
+ "hasLocution": true,
+ "keyword": "prix",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower"
+ ],
+ "synsets": [
+ "12474664-n"
+ ],
+ "tags": [
+ "plant",
+ "flower"
+ ],
+ "_id": 3163,
+ "created": "2008-01-24T14:23:27.000Z",
+ "lastUpdated": "2021-03-20T15:59:55.709Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tulipe",
+ "hasLocution": true,
+ "plural": "tulipes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "04355437-n",
+ "04354832-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 3157,
+ "created": "2008-01-24T14:17:21.000Z",
+ "lastUpdated": "2021-03-20T16:03:07.389Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sous-marin",
+ "hasLocution": true,
+ "plural": "sous-marins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3165,
+ "created": "2008-01-24T14:24:02.000Z",
+ "lastUpdated": "2021-04-06T10:52:38.973Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "V",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3168,
+ "created": "2008-01-24T14:25:00.000Z",
+ "lastUpdated": "2021-04-06T10:52:28.702Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "X",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "horse riding"
+ ],
+ "synsets": [
+ "10205412-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "horse riding"
+ ],
+ "_id": 3169,
+ "created": "2008-01-24T14:34:57.000Z",
+ "lastUpdated": "2021-03-20T15:58:45.567Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jockey",
+ "hasLocution": true,
+ "plural": "jockeys"
+ },
+ {
+ "keyword": "cavalier",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cavaliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "political representation",
+ "leader"
+ ],
+ "synsets": [
+ "10323481-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "person",
+ "leader"
+ ],
+ "_id": 3170,
+ "created": "2008-01-25T12:25:46.000Z",
+ "lastUpdated": "2021-03-20T15:58:01.459Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maire",
+ "hasLocution": true,
+ "plural": "maires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3171,
+ "created": "2008-01-25T12:27:04.000Z",
+ "lastUpdated": "2021-04-06T10:52:14.865Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Y",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "education",
+ "teaching activity"
+ ],
+ "synsets": [
+ "15162842-n"
+ ],
+ "tags": [
+ "education",
+ "teaching activity"
+ ],
+ "_id": 3166,
+ "created": "2008-01-24T14:24:22.000Z",
+ "lastUpdated": "2021-03-20T15:59:42.473Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vacances",
+ "hasLocution": true
+ },
+ {
+ "keyword": "congés",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "jours fériés",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport",
+ "beach"
+ ],
+ "synsets": [
+ "04617370-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 3172,
+ "created": "2008-01-25T12:27:28.000Z",
+ "lastUpdated": "2022-07-04T06:44:50.265Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "yacht",
+ "hasLocution": true,
+ "plural": "yachts"
+ },
+ {
+ "keyword": "voilier",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "voiliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3173,
+ "created": "2008-01-25T12:28:08.000Z",
+ "lastUpdated": "2021-04-06T10:52:08.956Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Z",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12665935-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 3174,
+ "created": "2008-01-25T12:29:05.000Z",
+ "lastUpdated": "2021-03-20T15:57:08.336Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amandier",
+ "hasLocution": true,
+ "plural": "amandiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "day time"
+ ],
+ "synsets": [
+ "00529916-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "time",
+ "calendar"
+ ],
+ "_id": 3175,
+ "created": "2008-01-25T12:30:44.000Z",
+ "lastUpdated": "2021-07-18T12:24:21.864Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se lever",
+ "hasLocution": true
+ },
+ {
+ "keyword": "aube",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "aubes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3164,
+ "created": "2008-01-24T14:23:46.000Z",
+ "lastUpdated": "2021-04-06T10:52:44.276Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "U",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "day time"
+ ],
+ "synsets": [
+ "00313357-v",
+ "00313162-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "time",
+ "calendar"
+ ],
+ "_id": 3176,
+ "created": "2008-01-25T12:35:18.000Z",
+ "lastUpdated": "2021-07-18T09:19:22.515Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "se coucher",
+ "hasLocution": true,
+ "plural": "se coucher"
+ },
+ {
+ "keyword": "crépuscule",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "crépuscule"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign",
+ "mathematics"
+ ],
+ "synsets": [
+ "06841439-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign",
+ "mathematics"
+ ],
+ "_id": 3178,
+ "created": "2008-01-25T12:36:23.000Z",
+ "lastUpdated": "2021-04-06T10:51:35.444Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "astérisque",
+ "hasLocution": true,
+ "plural": "astérisques"
+ },
+ {
+ "keyword": "*",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "09839665-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 3179,
+ "created": "2008-01-25T12:36:44.000Z",
+ "lastUpdated": "2021-07-18T09:10:37.631Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "athlète",
+ "hasLocution": true,
+ "plural": "athlètes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "core vocabulary-movement",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "03781993-n",
+ "04527677-n",
+ "02949803-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "core vocabulary",
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 3180,
+ "created": "2008-01-25T12:37:11.000Z",
+ "lastUpdated": "2022-03-14T11:50:41.355Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "camping-car",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "card game",
+ "board game"
+ ],
+ "synsets": [
+ "07973335-n",
+ "00495779-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "card game",
+ "board game"
+ ],
+ "_id": 3182,
+ "created": "2008-01-25T12:37:55.000Z",
+ "lastUpdated": "2021-07-18T09:19:41.973Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cartes",
+ "hasLocution": true,
+ "plural": "cartes"
+ },
+ {
+ "type": 2,
+ "keyword": "jeu de cartes",
+ "hasLocution": true,
+ "plural": "jeux de cartes"
+ },
+ {
+ "type": 2,
+ "keyword": "cartes de poker",
+ "hasLocution": true,
+ "plural": "cartes de poker"
+ },
+ {
+ "keyword": "paquet de cartes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "card game",
+ "board game"
+ ],
+ "synsets": [
+ "07973335-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "card game",
+ "board game"
+ ],
+ "_id": 3181,
+ "created": "2008-01-25T12:37:33.000Z",
+ "lastUpdated": "2021-07-18T09:19:33.871Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cartes",
+ "hasLocution": true,
+ "plural": "cartes"
+ },
+ {
+ "type": 2,
+ "keyword": "jeu de cartes",
+ "hasLocution": true,
+ "plural": "jeux de cartes"
+ },
+ {
+ "keyword": "paquet de cartes",
+ "hasLocution": false,
+ "plural": "paquets de cartes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 3177,
+ "created": "2008-01-25T12:35:48.000Z",
+ "lastUpdated": "2021-03-20T15:55:23.229Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arobase",
+ "hasLocution": true
+ },
+ {
+ "keyword": "@",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "07788250-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 3183,
+ "created": "2008-01-25T12:38:25.000Z",
+ "lastUpdated": "2021-04-06T10:46:17.792Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "châtaigne",
+ "hasLocution": true,
+ "plural": "châtaignes"
+ },
+ {
+ "keyword": "marron",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "marrons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12662174-n",
+ "12662692-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 3184,
+ "created": "2008-01-25T12:38:53.000Z",
+ "lastUpdated": "2021-03-24T15:39:58.420Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cerisier",
+ "hasLocution": true,
+ "plural": "cerisiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n",
+ "01470615-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3167,
+ "created": "2008-01-24T14:24:42.000Z",
+ "lastUpdated": "2021-04-06T10:52:33.331Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "W",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree"
+ ],
+ "synsets": [
+ "12752161-n",
+ "12753251-n"
+ ],
+ "tags": [
+ "plant",
+ "tree"
+ ],
+ "_id": 3185,
+ "created": "2008-01-25T12:39:21.000Z",
+ "lastUpdated": "2021-04-06T10:45:31.757Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peuplier",
+ "hasLocution": true,
+ "plural": "peupliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12658979-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 3186,
+ "created": "2008-01-25T12:39:58.000Z",
+ "lastUpdated": "2021-04-06T10:45:07.411Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prunier",
+ "hasLocution": true,
+ "plural": "pruniers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12608564-n",
+ "12602979-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 3188,
+ "created": "2008-01-25T12:41:17.000Z",
+ "lastUpdated": "2021-04-06T10:44:28.405Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cocotier",
+ "hasLocution": true,
+ "plural": "cocotiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10698621-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 3187,
+ "created": "2008-01-25T12:40:20.000Z",
+ "lastUpdated": "2021-04-06T10:44:43.754Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chirurgien",
+ "hasLocution": true,
+ "plural": "chirurgiens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign"
+ ],
+ "synsets": [
+ "06855902-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 3189,
+ "created": "2008-01-25T12:41:38.000Z",
+ "lastUpdated": "2021-04-06T10:44:11.572Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "virgule",
+ "hasLocution": true,
+ "plural": "virgules"
+ },
+ {
+ "keyword": ",",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign"
+ ],
+ "synsets": [
+ "06857249-n",
+ "06830640-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 3190,
+ "created": "2008-01-25T12:42:00.000Z",
+ "lastUpdated": "2021-04-06T10:43:41.348Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guillemets",
+ "hasLocution": true,
+ "plural": "guillemets"
+ },
+ {
+ "keyword": "\"",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "board game"
+ ],
+ "synsets": [
+ "00503963-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "board game"
+ ],
+ "_id": 3192,
+ "created": "2008-01-25T12:42:47.000Z",
+ "lastUpdated": "2021-04-06T10:41:18.433Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dames",
+ "hasLocution": true,
+ "plural": "dames"
+ },
+ {
+ "keyword": "jeu de dames",
+ "hasLocution": false,
+ "plural": "jeux de dames",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10555161-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 3196,
+ "created": "2008-01-25T12:46:27.000Z",
+ "lastUpdated": "2021-07-18T11:19:22.122Z",
+ "keywords": [
+ {
+ "keyword": "grimpeuse",
+ "hasLocution": false,
+ "plural": "grimpeuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "christianity",
+ "death"
+ ],
+ "synsets": [
+ "07466063-n",
+ "07466297-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "christianity",
+ "social event",
+ "death"
+ ],
+ "_id": 3195,
+ "created": "2008-01-25T12:45:49.000Z",
+ "lastUpdated": "2021-04-06T10:40:41.995Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enterrement",
+ "hasLocution": true,
+ "plural": "enterrements"
+ },
+ {
+ "keyword": "funérailles",
+ "hasLocution": true,
+ "plural": "funérailles",
+ "type": 2
+ },
+ {
+ "keyword": "inhumation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "inhumations"
+ },
+ {
+ "keyword": "obsèques",
+ "hasLocution": false,
+ "plural": "obsèques",
+ "type": 2
+ },
+ {
+ "keyword": "cérémonie funéraire",
+ "hasLocution": false,
+ "plural": "cérémonies funéraires",
+ "type": 2
+ },
+ {
+ "keyword": "sépulture",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sépulture"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work machine",
+ "agriculture"
+ ],
+ "synsets": [
+ "03502017-n"
+ ],
+ "tags": [
+ "work",
+ "work machine",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 3191,
+ "created": "2008-01-25T12:42:25.000Z",
+ "lastUpdated": "2021-04-08T19:21:05.128Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "moissonneuse",
+ "plural": "moissonneuses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign",
+ "mathematics"
+ ],
+ "synsets": [
+ "06856198-n",
+ "06830640-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign",
+ "mathematics"
+ ],
+ "_id": 3200,
+ "created": "2008-01-25T12:48:07.000Z",
+ "lastUpdated": "2021-04-06T10:37:00.947Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "tiret",
+ "plural": "tirets"
+ },
+ {
+ "keyword": "-",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "trait d'union",
+ "hasLocution": false,
+ "plural": "traits d'union",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "football"
+ ],
+ "synsets": [
+ "10637858-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "football"
+ ],
+ "_id": 3199,
+ "created": "2008-01-25T12:47:40.000Z",
+ "lastUpdated": "2021-04-08T19:22:27.861Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "footballeur",
+ "hasLocution": true,
+ "plural": "footballeurs"
+ },
+ {
+ "keyword": "joueur de foot",
+ "hasLocution": false,
+ "plural": "joueurs de foot",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "visual artist",
+ "professional artist",
+ "photography"
+ ],
+ "synsets": [
+ "10446513-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "visual art",
+ "photography"
+ ],
+ "_id": 3197,
+ "created": "2008-01-25T12:46:56.000Z",
+ "lastUpdated": "2021-04-06T10:37:22.881Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "photographe",
+ "hasLocution": true,
+ "plural": "photographes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12422189-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 3201,
+ "created": "2008-01-25T12:48:33.000Z",
+ "lastUpdated": "2021-04-06T10:35:48.523Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "figuier",
+ "hasLocution": true,
+ "plural": "figuiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "00827434-n",
+ "10658320-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 3202,
+ "created": "2008-01-25T12:48:59.000Z",
+ "lastUpdated": "2021-04-08T19:22:48.224Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "judoka",
+ "hasLocution": true,
+ "plural": "judokas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12654399-n",
+ "12672582-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 3203,
+ "created": "2008-01-25T13:50:57.000Z",
+ "lastUpdated": "2021-04-06T10:35:31.122Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pommier",
+ "hasLocution": true,
+ "plural": "pommiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christmas"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 3204,
+ "created": "2008-01-25T13:52:14.000Z",
+ "lastUpdated": "2021-04-06T10:35:18.384Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "langue de belle-mère",
+ "hasLocution": true,
+ "plural": "langues de belle-mère"
+ },
+ {
+ "keyword": "mirliton",
+ "hasLocution": false,
+ "plural": "mirlitons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12668806-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 3205,
+ "created": "2008-01-25T13:52:38.000Z",
+ "lastUpdated": "2021-04-06T10:33:50.245Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "pêcher",
+ "hasLocution": true,
+ "plural": "pêchers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "03776212-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 3206,
+ "created": "2008-01-25T13:53:06.000Z",
+ "lastUpdated": "2021-07-18T09:20:12.514Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "monospace",
+ "hasLocution": false,
+ "plural": "monospaces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10702832-n",
+ "10702573-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 3208,
+ "created": "2008-01-25T13:54:05.000Z",
+ "lastUpdated": "2021-04-06T10:33:02.586Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nageur",
+ "hasLocution": true,
+ "plural": "nageurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12321697-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 3211,
+ "created": "2008-01-25T13:55:25.000Z",
+ "lastUpdated": "2021-04-06T10:32:32.773Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "olivier",
+ "hasLocution": true,
+ "plural": "oliviers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12729053-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 3209,
+ "created": "2008-01-25T13:54:31.000Z",
+ "lastUpdated": "2021-04-06T10:32:47.556Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oranger",
+ "hasLocution": true,
+ "plural": "orangers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10623899-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 3212,
+ "created": "2008-01-25T13:56:22.000Z",
+ "lastUpdated": "2021-04-08T19:26:12.468Z",
+ "keywords": [
+ {
+ "keyword": "skateuse",
+ "hasLocution": false,
+ "plural": "skateuses",
+ "type": 2
+ },
+ {
+ "keyword": "patineuse",
+ "hasLocution": false,
+ "plural": "patineuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10623899-n",
+ "03563584-n",
+ "00449625-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 3213,
+ "created": "2008-01-25T13:56:52.000Z",
+ "lastUpdated": "2021-04-08T19:27:31.459Z",
+ "keywords": [
+ {
+ "keyword": "patineuse",
+ "hasLocution": false,
+ "plural": "patineuses",
+ "type": 2
+ },
+ {
+ "keyword": "patineuse sur glace",
+ "hasLocution": false,
+ "plural": "patineuses sur glace",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12672372-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 3214,
+ "created": "2008-01-25T13:57:15.000Z",
+ "lastUpdated": "2021-04-06T10:32:11.139Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poirier",
+ "hasLocution": true,
+ "plural": "poiriers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree"
+ ],
+ "synsets": [
+ "11628701-n"
+ ],
+ "tags": [
+ "plant",
+ "tree"
+ ],
+ "_id": 3216,
+ "created": "2008-01-25T13:59:38.000Z",
+ "lastUpdated": "2021-04-06T10:31:57.842Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pin",
+ "hasLocution": true,
+ "plural": "pins"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03164306-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 3217,
+ "created": "2008-01-25T14:00:48.000Z",
+ "lastUpdated": "2021-04-06T10:31:41.449Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "podium",
+ "hasLocution": true,
+ "plural": "podiums"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign"
+ ],
+ "synsets": [
+ "06856570-n",
+ "06830640-n",
+ "06825147-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 3218,
+ "created": "2008-01-25T14:01:16.000Z",
+ "lastUpdated": "2021-04-06T10:30:28.688Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "point",
+ "hasLocution": true,
+ "plural": "points"
+ },
+ {
+ "keyword": ".",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "mountain"
+ ],
+ "synsets": [
+ "10354280-n",
+ "09805100-n",
+ "09948756-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 3207,
+ "created": "2008-01-25T13:53:36.000Z",
+ "lastUpdated": "2021-07-07T08:33:05.294Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "alpiniste",
+ "plural": "alpinistes"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "grimpeur",
+ "plural": "grimpeurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign",
+ "mathematics"
+ ],
+ "synsets": [
+ "06824844-n",
+ "06824483-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign",
+ "mathematics"
+ ],
+ "_id": 3220,
+ "created": "2008-01-25T14:03:49.000Z",
+ "lastUpdated": "2021-04-06T10:31:20.142Z",
+ "keywords": [
+ {
+ "keyword": "+",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "plus",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "plus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree"
+ ],
+ "synsets": [
+ "12745702-n",
+ "12747430-n"
+ ],
+ "tags": [
+ "plant",
+ "tree"
+ ],
+ "_id": 3219,
+ "created": "2008-01-25T14:01:49.000Z",
+ "lastUpdated": "2021-04-06T10:29:47.108Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saule",
+ "hasLocution": true,
+ "plural": "saules"
+ },
+ {
+ "keyword": "saule-pleureur",
+ "hasLocution": false,
+ "plural": "saules-pleureurs",
+ "type": 2
+ },
+ {
+ "keyword": "saule pleureur",
+ "hasLocution": true,
+ "plural": "saules pleureurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "transport services"
+ ],
+ "synsets": [
+ "10713142-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 3221,
+ "created": "2008-01-25T14:04:22.000Z",
+ "lastUpdated": "2021-04-08T19:28:10.677Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chauffeur de taxi",
+ "hasLocution": true,
+ "plural": "chauffeurs de taxi"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10720829-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 3222,
+ "created": "2008-01-25T14:04:52.000Z",
+ "lastUpdated": "2021-04-08T19:28:32.206Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joueuse de tennis",
+ "hasLocution": false,
+ "plural": "joueuses de tennis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04295811-n",
+ "03220783-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 3224,
+ "created": "2008-01-25T14:05:43.000Z",
+ "lastUpdated": "2021-04-06T10:25:09.907Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plongeoir",
+ "hasLocution": true,
+ "plural": "plongeoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "02776493-v"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 3225,
+ "created": "2008-01-25T14:06:07.000Z",
+ "lastUpdated": "2021-04-08T19:30:15.292Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tonnerre",
+ "hasLocution": false,
+ "plural": "tonnerres"
+ },
+ {
+ "keyword": "coup de tonnerre",
+ "hasLocution": true,
+ "plural": "coups de tonnerre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "cleaning product"
+ ],
+ "synsets": [
+ "04525118-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "cleaning product"
+ ],
+ "_id": 3227,
+ "created": "2008-01-31T10:32:07.000Z",
+ "lastUpdated": "2021-04-06T10:24:15.285Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aspirateur",
+ "hasLocution": true,
+ "plural": "aspirateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "educational material",
+ "education"
+ ],
+ "synsets": [
+ "03868782-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "education",
+ "educational material"
+ ],
+ "_id": 3229,
+ "created": "2008-01-31T10:35:23.000Z",
+ "lastUpdated": "2024-12-09T11:35:08.986Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blouse",
+ "hasLocution": true,
+ "plural": "blouses"
+ },
+ {
+ "keyword": "blouse de travail",
+ "hasLocution": false,
+ "plural": "blouses de travail",
+ "type": 2
+ },
+ {
+ "keyword": "tablier",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "tabliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "00463344-a"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 3210,
+ "created": "2008-01-25T13:54:58.000Z",
+ "lastUpdated": "2021-04-08T19:24:32.959Z",
+ "keywords": [
+ {
+ "keyword": "un peu nuageux",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "un peu ensoleillé",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "journée un peu ensoleillée",
+ "hasLocution": false,
+ "plural": "journées un peu ensoleillées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "03394607-n",
+ "04531608-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 3223,
+ "created": "2008-01-25T14:05:18.000Z",
+ "lastUpdated": "2021-07-18T09:20:36.841Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "4x4"
+ },
+ {
+ "hasLocution": true,
+ "plural": "tout terrain",
+ "keyword": "tout terrain",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "02881204-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 3226,
+ "created": "2008-01-31T10:29:04.000Z",
+ "lastUpdated": "2021-04-06T10:24:38.700Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "décapsuleur",
+ "plural": "décapsuleurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04146060-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 3231,
+ "created": "2008-01-31T10:38:24.000Z",
+ "lastUpdated": "2021-04-06T10:23:06.398Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casserole",
+ "hasLocution": true,
+ "plural": "casseroles"
+ },
+ {
+ "keyword": "cocotte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cocottes"
+ },
+ {
+ "keyword": "marmite",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "marmites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "04146060-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 3230,
+ "created": "2008-01-31T10:38:04.000Z",
+ "lastUpdated": "2021-04-06T10:23:31.061Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "casserole",
+ "plural": "casseroles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "work machine"
+ ],
+ "synsets": [
+ "03260869-n",
+ "04497386-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "work machine"
+ ],
+ "_id": 3232,
+ "created": "2008-01-31T10:40:25.000Z",
+ "lastUpdated": "2021-07-18T09:21:00.277Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "camion de chantier",
+ "hasLocution": true,
+ "plural": "camions de chantier"
+ },
+ {
+ "type": 2,
+ "keyword": "camion à benne",
+ "hasLocution": true,
+ "plural": "camions à benne"
+ },
+ {
+ "keyword": "camion benne",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "camions bennes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "03381125-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "core vocabulary"
+ ],
+ "_id": 3233,
+ "created": "2008-01-31T10:41:49.000Z",
+ "lastUpdated": "2021-04-06T10:21:55.346Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chemise",
+ "hasLocution": true,
+ "plural": "chemises"
+ },
+ {
+ "keyword": "dossier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dossiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "04438879-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 3234,
+ "created": "2008-01-31T10:42:31.000Z",
+ "lastUpdated": "2021-04-06T10:21:27.215Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "punaises ",
+ "hasLocution": false,
+ "plural": "punaises "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00065962-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 3239,
+ "created": "2008-01-31T11:18:24.000Z",
+ "lastUpdated": "2021-04-06T10:16:51.040Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Laisser des larmes s'échapper, en parlant des yeux ; avoir des larmes qui s'échappent des yeux",
+ "keyword": "pleurer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "beach",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "02781674-n",
+ "02817359-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 3241,
+ "created": "2008-01-31T11:24:08.000Z",
+ "lastUpdated": "2021-04-06T10:16:15.171Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ballon",
+ "hasLocution": true,
+ "plural": "ballons"
+ },
+ {
+ "type": 2,
+ "keyword": "ballon de plage",
+ "hasLocution": true,
+ "plural": "ballons de plage"
+ },
+ {
+ "keyword": "balle",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "balles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "clothes"
+ ],
+ "synsets": [
+ "03055381-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 3242,
+ "created": "2008-01-31T11:24:36.000Z",
+ "lastUpdated": "2021-04-08T19:33:42.556Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "porte-manteau",
+ "plural": "porte-manteaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "bird",
+ "oviparous",
+ "marine animal",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02058457-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 3243,
+ "created": "2008-01-31T11:27:42.000Z",
+ "lastUpdated": "2021-04-06T10:14:17.439Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pingouin",
+ "hasLocution": true,
+ "plural": "pingouins"
+ },
+ {
+ "type": 2,
+ "keyword": "manchot",
+ "hasLocution": false,
+ "plural": "manchots"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "architectural element",
+ "construction",
+ "residential building",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "03226423-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "architecture",
+ "architectural element",
+ "work",
+ "secondary sector",
+ "construction",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 3244,
+ "created": "2008-01-31T11:33:26.000Z",
+ "lastUpdated": "2022-12-06T12:31:20.667Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "porte",
+ "hasLocution": true,
+ "plural": "portes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "waste disposal"
+ ],
+ "synsets": [
+ "09946547-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "waste disposal"
+ ],
+ "_id": 3238,
+ "created": "2008-01-31T11:17:36.000Z",
+ "lastUpdated": "2021-04-06T10:18:44.179Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "employée de ménage",
+ "hasLocution": false,
+ "plural": "employées de ménage"
+ },
+ {
+ "keyword": "technicienne de surface",
+ "hasLocution": false,
+ "plural": "techniciennes de surface",
+ "type": 2
+ },
+ {
+ "keyword": "femme de ménage",
+ "hasLocution": false,
+ "plural": "femmes de ménage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cutlery",
+ "cookery"
+ ],
+ "synsets": [
+ "03628765-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "cutlery",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 3237,
+ "created": "2008-01-31T10:55:26.000Z",
+ "lastUpdated": "2021-04-06T10:18:57.857Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couteau",
+ "hasLocution": true,
+ "plural": "couteaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "cookery",
+ "feeding"
+ ],
+ "synsets": [
+ "09982799-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 3235,
+ "created": "2008-01-31T10:50:55.000Z",
+ "lastUpdated": "2024-12-11T06:44:03.528Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "cuisiner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "cuire",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire cuire",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01151786-a",
+ "00591490-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 3245,
+ "created": "2008-01-31T11:34:30.000Z",
+ "lastUpdated": "2021-04-06T10:13:28.573Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "content",
+ "hasLocution": true,
+ "plural": "content"
+ },
+ {
+ "keyword": "heureux",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "heureux"
+ },
+ {
+ "keyword": "joyeux",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "joyeux"
+ },
+ {
+ "keyword": "souriant",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "souriants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07887412-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "core vocabulary"
+ ],
+ "_id": 3249,
+ "created": "2008-01-31T12:51:24.000Z",
+ "lastUpdated": "2021-04-14T12:18:09.652Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "boulettes de viande",
+ "plural": "boulettes de viande"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01151786-a",
+ "00363547-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 3250,
+ "created": "2008-01-31T12:53:44.000Z",
+ "lastUpdated": "2021-04-08T19:36:10.232Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "joyeux",
+ "hasLocution": true,
+ "plural": "joyeux"
+ },
+ {
+ "keyword": "heureux",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "heureux"
+ },
+ {
+ "keyword": "gai",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "gais"
+ },
+ {
+ "keyword": "souriant",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "souriants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs"
+ ],
+ "synsets": [
+ "01908923-v",
+ "01886163-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs"
+ ],
+ "_id": 3251,
+ "created": "2008-01-31T12:56:43.000Z",
+ "lastUpdated": "2021-04-30T09:38:56.732Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "marcher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "aller à pied",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se promener",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media device",
+ "building facility"
+ ],
+ "synsets": [
+ "02718140-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 3252,
+ "created": "2008-01-31T12:57:35.000Z",
+ "lastUpdated": "2024-12-04T15:14:44.658Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "antenne",
+ "hasLocution": true,
+ "plural": "antenne"
+ },
+ {
+ "keyword": "antenne aérienne",
+ "hasLocution": false,
+ "plural": "antennes aériennes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "rhythmic gymnastics"
+ ],
+ "synsets": [
+ "03539152-n",
+ "03553582-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "gymnastics",
+ "rhythmic gymnastics"
+ ],
+ "_id": 3253,
+ "created": "2008-01-31T12:59:04.000Z",
+ "lastUpdated": "2021-11-10T15:16:10.315Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cerceau",
+ "hasLocution": true,
+ "plural": "cerceaux"
+ },
+ {
+ "keyword": "hula hoop",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "hula hoops"
+ },
+ {
+ "keyword": "hula-hoop",
+ "hasLocution": false,
+ "plural": "hula-hoops",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01280991-v",
+ "01280348-v",
+ "00565934-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 3254,
+ "created": "2008-01-31T13:00:29.000Z",
+ "lastUpdated": "2021-04-06T10:10:21.819Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "froisser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07939988-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 3248,
+ "created": "2008-01-31T11:42:21.000Z",
+ "lastUpdated": "2021-04-02T22:15:41.234Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jus de pêche",
+ "hasLocution": true,
+ "plural": "jus de pêche"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07774656-n",
+ "07976557-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 3247,
+ "created": "2008-01-31T11:40:13.000Z",
+ "lastUpdated": "2021-04-02T22:15:22.245Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "raisin",
+ "hasLocution": true,
+ "plural": "raisins"
+ },
+ {
+ "type": 2,
+ "keyword": "grappe de raisin",
+ "hasLocution": false,
+ "plural": "grappes de raisin"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture",
+ "playground"
+ ],
+ "synsets": [
+ "02832068-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground"
+ ],
+ "_id": 3255,
+ "created": "2008-01-31T13:01:33.000Z",
+ "lastUpdated": "2021-04-06T10:07:57.629Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "banc",
+ "hasLocution": true,
+ "plural": "bancs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "string instrument",
+ "fiestas del pilar"
+ ],
+ "synsets": [
+ "03722505-n",
+ "03806455-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "string instrument",
+ "event",
+ "popular event",
+ "fiestas del pilar"
+ ],
+ "_id": 3256,
+ "created": "2008-01-31T13:03:27.000Z",
+ "lastUpdated": "2021-04-06T10:09:19.583Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mandoline",
+ "hasLocution": true,
+ "plural": "mandolines"
+ },
+ {
+ "keyword": "bandurria",
+ "hasLocution": false,
+ "plural": "bandurrias"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery",
+ "cookery"
+ ],
+ "synsets": [
+ "02884182-n",
+ "02884435-n",
+ "04137340-n",
+ "04137530-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 3257,
+ "created": "2008-01-31T13:04:52.000Z",
+ "lastUpdated": "2021-04-06T20:26:13.057Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bol",
+ "hasLocution": true,
+ "plural": "bols"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture",
+ "mass media"
+ ],
+ "synsets": [
+ "04408815-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture",
+ "communication",
+ "mass media"
+ ],
+ "_id": 3258,
+ "created": "2008-01-31T13:06:21.000Z",
+ "lastUpdated": "2021-04-27T09:15:06.670Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cabine téléphonique",
+ "hasLocution": true,
+ "plural": "cabines téléphoniques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "03687813-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 3261,
+ "created": "2008-01-31T13:36:59.000Z",
+ "lastUpdated": "2021-04-06T20:25:34.227Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "serrure",
+ "hasLocution": true,
+ "plural": "serrures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "basketball"
+ ],
+ "synsets": [
+ "02805381-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "basketball"
+ ],
+ "_id": 3260,
+ "created": "2008-01-31T13:13:54.000Z",
+ "lastUpdated": "2021-04-10T19:35:25.495Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "panier de basket",
+ "hasLocution": false,
+ "plural": "paniers de basket"
+ },
+ {
+ "keyword": "panier de basket-ball",
+ "hasLocution": false,
+ "plural": "paniers de basket-ball",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03428389-n",
+ "03618023-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 3259,
+ "created": "2008-01-31T13:08:08.000Z",
+ "lastUpdated": "2021-04-14T12:17:14.681Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaudière à gaz",
+ "hasLocution": true,
+ "plural": "chaudières à gaz"
+ },
+ {
+ "type": 2,
+ "keyword": "chaudière",
+ "hasLocution": false,
+ "plural": "chaudière"
+ },
+ {
+ "keyword": "chauffe-eau",
+ "hasLocution": true,
+ "plural": "chauffe-eaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07638745-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 3262,
+ "created": "2008-01-31T13:38:40.000Z",
+ "lastUpdated": "2021-04-06T20:24:04.267Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chichis",
+ "hasLocution": true,
+ "plural": "chichis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "sport material"
+ ],
+ "synsets": [
+ "03610446-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "sport material"
+ ],
+ "_id": 3265,
+ "created": "2008-01-31T13:41:38.000Z",
+ "lastUpdated": "2021-04-10T19:27:29.963Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corde à sauter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sauter à la corde",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "03156166-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 3264,
+ "created": "2008-01-31T13:40:33.000Z",
+ "lastUpdated": "2021-04-06T20:22:41.991Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coussin",
+ "hasLocution": true,
+ "plural": "coussins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "hunting"
+ ],
+ "synsets": [
+ "02432691-n",
+ "02433768-n",
+ "02433205-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "hunting"
+ ],
+ "_id": 3263,
+ "created": "2008-01-31T13:39:40.000Z",
+ "lastUpdated": "2021-04-06T20:23:34.088Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cerf",
+ "hasLocution": true,
+ "plural": "cerfs"
+ },
+ {
+ "keyword": "chevreuil",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chevreuils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "04622201-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 3266,
+ "created": "2008-01-31T13:45:14.000Z",
+ "lastUpdated": "2021-04-10T19:33:06.856Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "sagattes",
+ "plural": "sagattes"
+ },
+ {
+ "keyword": "sagates",
+ "hasLocution": false,
+ "plural": "sagates",
+ "type": 2
+ },
+ {
+ "keyword": "zills",
+ "hasLocution": false,
+ "plural": "zills",
+ "type": 2
+ },
+ {
+ "keyword": "cymbales",
+ "hasLocution": false,
+ "plural": "cymbales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03331893-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 3246,
+ "created": "2008-01-31T11:35:53.000Z",
+ "lastUpdated": "2021-06-07T10:00:42.671Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "feutre",
+ "hasLocution": false,
+ "plural": "feutres"
+ },
+ {
+ "keyword": "stylo-feutre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "stylos feutres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "09915013-n",
+ "09835195-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 3267,
+ "created": "2008-01-31T13:46:37.000Z",
+ "lastUpdated": "2021-08-24T15:46:30.345Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "auxiliaire de vie",
+ "plural": "auxiliaires de vie"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "aide-soignante",
+ "plural": "aide-soignantes"
+ },
+ {
+ "keyword": "monitrice",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "monitrices"
+ },
+ {
+ "keyword": "assistante maternelle",
+ "hasLocution": false,
+ "plural": "assistantes maternelles",
+ "type": 2
+ },
+ {
+ "keyword": "aidante",
+ "hasLocution": false,
+ "plural": "aidantes",
+ "type": 2
+ },
+ {
+ "keyword": "accompagnante éducative et sociale",
+ "hasLocution": false,
+ "plural": "accompagnantes éducatives et sociales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work machine",
+ "construction"
+ ],
+ "synsets": [
+ "03389198-n"
+ ],
+ "tags": [
+ "work",
+ "work machine",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 3268,
+ "created": "2008-01-31T13:47:34.000Z",
+ "lastUpdated": "2021-04-14T12:16:01.508Z",
+ "keywords": [
+ {
+ "keyword": "chariot élévateur",
+ "hasLocution": false,
+ "plural": "chariots élévateurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 3269,
+ "created": "2008-01-31T13:48:27.000Z",
+ "lastUpdated": "2021-04-14T12:13:56.994Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "espalier",
+ "hasLocution": true,
+ "plural": "espaliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "04066628-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 3270,
+ "created": "2008-01-31T13:49:19.000Z",
+ "lastUpdated": "2021-04-06T20:22:08.163Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "presse-agrumes",
+ "hasLocution": true,
+ "plural": "presse-agrumes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item"
+ ],
+ "synsets": [
+ "04529463-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item"
+ ],
+ "_id": 3271,
+ "created": "2008-01-31T13:50:11.000Z",
+ "lastUpdated": "2021-04-06T20:20:26.111Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vase à fleurs",
+ "hasLocution": true,
+ "plural": "vases à fleurs"
+ },
+ {
+ "type": 2,
+ "keyword": "vase",
+ "hasLocution": true,
+ "plural": "vases"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture",
+ "playground"
+ ],
+ "synsets": [
+ "03246038-n",
+ "03392661-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground"
+ ],
+ "_id": 3273,
+ "created": "2008-01-31T13:52:34.000Z",
+ "lastUpdated": "2021-04-06T20:17:17.510Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "fontaine",
+ "plural": "fontaines"
+ },
+ {
+ "keyword": "fontaine à eau potable",
+ "hasLocution": false,
+ "plural": "fontaines à eau potable",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture"
+ ],
+ "synsets": [
+ "03392889-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 3274,
+ "created": "2008-01-31T13:53:53.000Z",
+ "lastUpdated": "2021-04-06T20:15:07.594Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fontaine ornementale",
+ "hasLocution": true,
+ "plural": "fontaines ornementales"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "fontaine",
+ "plural": "fontaines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "04527677-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 3275,
+ "created": "2008-01-31T13:58:06.000Z",
+ "lastUpdated": "2021-04-14T12:12:45.209Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fourgonnette",
+ "hasLocution": true,
+ "plural": "fourgonnettes"
+ },
+ {
+ "keyword": "camionnette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "camionnettes"
+ },
+ {
+ "keyword": "minibus",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "minibus"
+ },
+ {
+ "keyword": "fourgon",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fourgons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "03204585-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 3277,
+ "created": "2008-01-31T14:02:19.000Z",
+ "lastUpdated": "2021-04-14T12:11:11.969Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canot",
+ "hasLocution": true,
+ "plural": "canots"
+ },
+ {
+ "keyword": "canot pneumatique",
+ "hasLocution": false,
+ "plural": "canots pneumatiques",
+ "type": 2
+ },
+ {
+ "keyword": "zodiac",
+ "hasLocution": false,
+ "plural": "zodiacs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03278824-n",
+ "04077839-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 3272,
+ "created": "2008-01-31T13:51:04.000Z",
+ "lastUpdated": "2021-04-06T20:18:27.736Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "réfrigérateur",
+ "hasLocution": true,
+ "plural": "réfrigérateurs"
+ },
+ {
+ "keyword": "frigidaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "frigidaires"
+ },
+ {
+ "keyword": "frigo",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "frigos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "crustacean",
+ "oviparous",
+ "marine animal"
+ ],
+ "synsets": [
+ "07810135-n",
+ "01989447-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "crustacean",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea"
+ ],
+ "_id": 3276,
+ "created": "2008-01-31T13:58:58.000Z",
+ "lastUpdated": "2021-04-06T20:13:30.317Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crevettes",
+ "hasLocution": true,
+ "plural": "crevettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "04442066-n",
+ "03660398-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 3278,
+ "created": "2008-01-31T14:03:20.000Z",
+ "lastUpdated": "2021-04-06T20:12:54.985Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "collant",
+ "hasLocution": true,
+ "plural": "collants"
+ },
+ {
+ "type": 2,
+ "keyword": "collants",
+ "hasLocution": true,
+ "plural": "collants"
+ },
+ {
+ "keyword": "legging",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "leggings"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "02874800-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 3279,
+ "created": "2008-01-31T14:04:32.000Z",
+ "lastUpdated": "2021-04-06T20:08:37.775Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "bibliothèque",
+ "plural": "bibliothèques"
+ },
+ {
+ "keyword": "étagère",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "étagères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat"
+ ],
+ "synsets": [
+ "07691372-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 3280,
+ "created": "2008-01-31T14:05:22.000Z",
+ "lastUpdated": "2021-04-06T20:06:29.294Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saucisse",
+ "hasLocution": true,
+ "plural": "saucisses"
+ },
+ {
+ "keyword": "saucisson",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "saucissons"
+ },
+ {
+ "keyword": "andouille",
+ "hasLocution": false,
+ "plural": "andouille"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "04031524-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 3282,
+ "created": "2008-02-01T11:11:49.000Z",
+ "lastUpdated": "2021-04-06T15:29:36.830Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marionnette",
+ "hasLocution": true,
+ "plural": "marionnettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item"
+ ],
+ "synsets": [
+ "03938003-n",
+ "03395829-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item"
+ ],
+ "_id": 3281,
+ "created": "2008-01-31T14:08:58.000Z",
+ "lastUpdated": "2021-04-14T12:09:54.494Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "encadrement",
+ "hasLocution": true,
+ "plural": "encadrements"
+ },
+ {
+ "type": 2,
+ "keyword": "cadre-photo",
+ "hasLocution": false,
+ "plural": "cadres-photos"
+ },
+ {
+ "keyword": "cadre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cadres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "craftsmanship",
+ "educational task"
+ ],
+ "synsets": [
+ "01700922-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "craftsmanship",
+ "education",
+ "educational task"
+ ],
+ "_id": 3283,
+ "created": "2008-02-01T11:12:44.000Z",
+ "lastUpdated": "2021-04-14T21:03:00.222Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "modeler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mouler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat"
+ ],
+ "synsets": [
+ "07691866-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 3284,
+ "created": "2008-02-01T11:13:44.000Z",
+ "lastUpdated": "2021-04-06T15:29:18.123Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boudin",
+ "hasLocution": true,
+ "plural": "boudins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional game",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 3287,
+ "created": "2008-02-01T11:17:19.000Z",
+ "lastUpdated": "2021-04-06T15:27:04.308Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pétanque",
+ "hasLocution": true,
+ "plural": "pétanques"
+ },
+ {
+ "keyword": "boules de pétanque",
+ "hasLocution": false,
+ "plural": "boules de pétanque",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "jeu de pétanque",
+ "plural": "jeux de pétanque",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction",
+ "residential building"
+ ],
+ "synsets": [
+ "04047545-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "home"
+ ],
+ "_id": 3288,
+ "created": "2008-02-01T11:19:04.000Z",
+ "lastUpdated": "2021-04-06T15:25:56.082Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "radiateur",
+ "hasLocution": true,
+ "plural": "radiateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "04237021-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 3289,
+ "created": "2008-02-01T11:20:00.000Z",
+ "lastUpdated": "2021-04-06T15:25:41.302Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écumoire",
+ "hasLocution": true,
+ "plural": "écumoires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "educational equipment"
+ ],
+ "synsets": [
+ "03061905-n",
+ "03495985-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "education",
+ "educational equipment"
+ ],
+ "_id": 3286,
+ "created": "2008-02-01T11:16:23.000Z",
+ "lastUpdated": "2021-04-06T15:28:42.482Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "portemanteau",
+ "plural": "portemanteaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat"
+ ],
+ "synsets": [
+ "07691372-n",
+ "07693492-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 3290,
+ "created": "2008-02-01T11:21:24.000Z",
+ "lastUpdated": "2021-04-06T15:25:23.956Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saucisson",
+ "hasLocution": true,
+ "plural": "saucissons"
+ },
+ {
+ "keyword": "saucisse",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "saucisses"
+ },
+ {
+ "keyword": "salami",
+ "hasLocution": true,
+ "plural": "salamis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04334034-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 3291,
+ "created": "2008-02-01T11:22:29.000Z",
+ "lastUpdated": "2021-04-06T15:24:21.821Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tabouret",
+ "hasLocution": true,
+ "plural": "tabourets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 3285,
+ "created": "2008-02-01T11:15:00.000Z",
+ "lastUpdated": "2021-04-06T15:28:58.164Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "porte-parapluie",
+ "hasLocution": true,
+ "plural": "porte-parapluies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04386330-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 3295,
+ "created": "2008-02-01T11:38:47.000Z",
+ "lastUpdated": "2021-04-06T15:21:45.250Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "table de nuit",
+ "hasLocution": false,
+ "plural": "tables de nuit"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "fashion"
+ ],
+ "synsets": [
+ "03594978-n",
+ "04229374-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 3296,
+ "created": "2008-02-01T11:56:34.000Z",
+ "lastUpdated": "2024-12-07T15:41:15.881Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "veste",
+ "hasLocution": true,
+ "plural": "vestes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05574137-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "core vocabulary"
+ ],
+ "_id": 3298,
+ "created": "2008-02-01T12:03:22.000Z",
+ "lastUpdated": "2021-04-06T15:21:07.000Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "doigt",
+ "hasLocution": true,
+ "plural": "doigts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs"
+ ],
+ "synsets": [
+ "00014398-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs"
+ ],
+ "_id": 3299,
+ "created": "2008-02-01T12:03:55.000Z",
+ "lastUpdated": "2021-04-06T15:20:54.000Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se reposer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "reposer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire la sieste",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07642919-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 3300,
+ "created": "2008-02-01T12:05:55.000Z",
+ "lastUpdated": "2021-04-30T09:37:53.797Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "chaussons",
+ "plural": "chaussons"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "chaussons à la viande",
+ "plural": "chaussons à la viande"
+ },
+ {
+ "keyword": "chaussons au thon",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chaussons au thon"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "insect",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "synsets": [
+ "02167116-n",
+ "02175170-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "_id": 3301,
+ "created": "2008-02-01T12:06:54.000Z",
+ "lastUpdated": "2021-04-06T15:19:37.021Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scarabée",
+ "hasLocution": true,
+ "plural": "scarabées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "senses",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01208316-v",
+ "01208838-v",
+ "02131823-v",
+ "01209469-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses",
+ "core vocabulary"
+ ],
+ "_id": 3293,
+ "created": "2008-02-01T11:24:41.000Z",
+ "lastUpdated": "2021-04-06T15:23:46.504Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "toucher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "palper",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sentir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "verb"
+ ],
+ "synsets": [
+ "00081478-v",
+ "00078513-v",
+ "00082316-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 3302,
+ "created": "2008-02-01T12:08:02.000Z",
+ "lastUpdated": "2021-04-06T15:18:50.671Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "soigner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "guérir",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": true,
+ "keyword": "traiter",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07743116-n",
+ "07740688-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "core vocabulary"
+ ],
+ "_id": 3294,
+ "created": "2008-02-01T11:34:44.000Z",
+ "lastUpdated": "2021-04-14T12:06:27.859Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "haricots",
+ "hasLocution": true,
+ "plural": "haricots"
+ },
+ {
+ "keyword": "haricots blancs",
+ "hasLocution": false,
+ "plural": "haricots blancs",
+ "type": 2
+ },
+ {
+ "keyword": "haricots blancs à la tomate",
+ "hasLocution": false,
+ "plural": "haricots blancs à la tomate",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "02788388-n",
+ "02787755-n",
+ "02788021-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 3304,
+ "created": "2008-02-01T12:09:43.000Z",
+ "lastUpdated": "2021-04-14T12:04:48.926Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "serre-tête",
+ "hasLocution": true,
+ "plural": "serre-têtes"
+ },
+ {
+ "keyword": "bandeau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "bandeaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "04430980-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 3303,
+ "created": "2008-02-01T12:08:48.000Z",
+ "lastUpdated": "2021-04-06T15:17:58.658Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dé à coudre",
+ "hasLocution": true,
+ "plural": "dés à coudre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "residential building"
+ ],
+ "synsets": [
+ "04467273-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "home"
+ ],
+ "_id": 3292,
+ "created": "2008-02-01T11:23:35.000Z",
+ "lastUpdated": "2021-04-14T12:07:44.163Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "porte-serviette",
+ "hasLocution": true,
+ "plural": "porte-serviettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "security and defense"
+ ],
+ "synsets": [
+ "03489659-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 3307,
+ "created": "2008-02-01T13:01:16.000Z",
+ "lastUpdated": "2021-04-06T15:16:55.191Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "menottes",
+ "hasLocution": true,
+ "plural": "menottes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03963714-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 3306,
+ "created": "2008-02-01T13:00:14.000Z",
+ "lastUpdated": "2021-04-06T15:17:38.936Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sparadrap",
+ "hasLocution": true,
+ "plural": "sparadraps"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disease",
+ "patient"
+ ],
+ "synsets": [
+ "02552072-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "medicine",
+ "disease",
+ "person",
+ "patient"
+ ],
+ "_id": 3308,
+ "created": "2008-02-01T13:03:04.000Z",
+ "lastUpdated": "2021-04-06T15:16:44.299Z",
+ "keywords": [
+ {
+ "keyword": "malade",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "malade"
+ },
+ {
+ "keyword": "fiévreux",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "fiévreux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sanitary professional",
+ "health personnel",
+ "medicament"
+ ],
+ "synsets": [
+ "10441215-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "medicine",
+ "health",
+ "medicament"
+ ],
+ "_id": 3312,
+ "created": "2008-02-01T13:09:47.000Z",
+ "lastUpdated": "2021-07-28T15:31:23.987Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pharmacienne",
+ "hasLocution": true,
+ "plural": "pharmaciennes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "medicament"
+ ],
+ "synsets": [
+ "03254045-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 3313,
+ "created": "2008-02-01T13:11:10.000Z",
+ "lastUpdated": "2021-07-28T15:28:55.483Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pharmacie",
+ "hasLocution": true,
+ "plural": "pharmacies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "echinoderm",
+ "oviparous",
+ "marine animal"
+ ],
+ "synsets": [
+ "02319987-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "echinoderm",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea"
+ ],
+ "_id": 3310,
+ "created": "2008-02-01T13:06:48.000Z",
+ "lastUpdated": "2021-04-06T15:15:26.713Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étoile de mer",
+ "hasLocution": true,
+ "plural": "étoiles de mer"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture",
+ "light fixture"
+ ],
+ "synsets": [
+ "04343024-n",
+ "03642472-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture",
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 3314,
+ "created": "2008-02-01T13:11:34.000Z",
+ "lastUpdated": "2021-04-06T20:03:48.903Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lampadaire",
+ "hasLocution": true,
+ "plural": "lampadaires"
+ },
+ {
+ "keyword": "réverbère",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "réverbères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02010212-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 3316,
+ "created": "2008-02-01T13:13:04.000Z",
+ "lastUpdated": "2021-04-06T15:12:44.076Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "flamant rose",
+ "hasLocution": false,
+ "plural": "flamants roses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dessert"
+ ],
+ "synsets": [
+ "07634817-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert"
+ ],
+ "_id": 3317,
+ "created": "2008-02-01T13:13:26.000Z",
+ "lastUpdated": "2021-04-06T15:13:30.446Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "flan au caramel",
+ "hasLocution": false,
+ "plural": "flans au caramel"
+ },
+ {
+ "keyword": "crème au caramel",
+ "hasLocution": false,
+ "plural": "crèmes au caramel",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "gardening",
+ "flower"
+ ],
+ "synsets": [
+ "10117474-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "primary sector",
+ "gardening",
+ "plant",
+ "flower"
+ ],
+ "_id": 3318,
+ "created": "2008-02-01T13:14:51.000Z",
+ "lastUpdated": "2021-04-06T20:00:48.160Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fleuriste",
+ "hasLocution": true,
+ "plural": "fleuristes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "digestive system"
+ ],
+ "synsets": [
+ "05403033-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "human physiology",
+ "physiology",
+ "digestive system"
+ ],
+ "_id": 3309,
+ "created": "2008-02-01T13:04:59.000Z",
+ "lastUpdated": "2021-04-06T15:15:42.262Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "estomac",
+ "hasLocution": true,
+ "plural": "estomacs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "flower"
+ ],
+ "synsets": [
+ "03372256-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "plant",
+ "flower"
+ ],
+ "_id": 3319,
+ "created": "2008-02-01T13:15:51.000Z",
+ "lastUpdated": "2021-04-06T20:01:09.789Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de fleurs",
+ "hasLocution": true,
+ "plural": "magasins de fleurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "security and defense"
+ ],
+ "synsets": [
+ "03350683-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 3311,
+ "created": "2008-02-01T13:07:56.000Z",
+ "lastUpdated": "2021-04-06T20:04:15.495Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "extincteur",
+ "hasLocution": true,
+ "plural": "extincteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "work tool"
+ ],
+ "synsets": [
+ "03499012-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tool"
+ ],
+ "_id": 3315,
+ "created": "2008-02-01T13:12:36.000Z",
+ "lastUpdated": "2021-04-30T09:41:28.087Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quincaillerie",
+ "hasLocution": true,
+ "plural": "quincailleries"
+ },
+ {
+ "keyword": "quincailler",
+ "hasLocution": false,
+ "plural": "quincaillers",
+ "type": 2
+ },
+ {
+ "keyword": "magasin de bricolage",
+ "hasLocution": false,
+ "plural": "magasins de bricolage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "construction"
+ ],
+ "synsets": [
+ "00610937-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 3320,
+ "created": "2008-02-01T13:20:36.000Z",
+ "lastUpdated": "2021-04-30T09:34:07.669Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plombier",
+ "hasLocution": true,
+ "plural": "plombier"
+ },
+ {
+ "keyword": "plomberie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "plomberie"
+ },
+ {
+ "keyword": "tuyauterie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "tuyauterie"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "10462606-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 3321,
+ "created": "2008-02-01T13:21:16.000Z",
+ "lastUpdated": "2021-04-27T09:12:34.448Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plombier",
+ "hasLocution": true,
+ "plural": "Plombiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery",
+ "container"
+ ],
+ "synsets": [
+ "03731091-n",
+ "03598713-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "container"
+ ],
+ "_id": 3322,
+ "created": "2008-02-01T13:21:38.000Z",
+ "lastUpdated": "2021-08-30T15:04:34.856Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "flacon",
+ "hasLocution": true,
+ "plural": "flacons"
+ },
+ {
+ "type": 2,
+ "keyword": "bocal",
+ "hasLocution": false,
+ "plural": "bocaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "04374567-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 3324,
+ "created": "2008-02-01T13:26:39.000Z",
+ "lastUpdated": "2021-04-06T15:50:59.139Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balai-serpillière",
+ "hasLocution": false,
+ "plural": "balais-serpillières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cleaning product"
+ ],
+ "synsets": [
+ "00036773-v",
+ "01395993-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 3323,
+ "created": "2008-02-01T13:25:07.000Z",
+ "lastUpdated": "2021-04-27T09:12:26.053Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Passer la serpillère ",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "Nettoyer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "Récurer ",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "00326129-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 3325,
+ "created": "2008-02-01T13:27:00.000Z",
+ "lastUpdated": "2021-04-06T15:50:13.634Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire frire",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "fruit"
+ ],
+ "synsets": [
+ "03462628-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 3327,
+ "created": "2008-02-01T13:29:30.000Z",
+ "lastUpdated": "2021-06-07T10:00:13.595Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fruiterie",
+ "hasLocution": true
+ },
+ {
+ "keyword": "magasin de fruits",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05610303-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 3326,
+ "created": "2008-02-01T13:27:30.000Z",
+ "lastUpdated": "2021-04-06T15:49:41.122Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "front",
+ "hasLocution": true,
+ "plural": "fronts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "fruit"
+ ],
+ "synsets": [
+ "10166079-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 3328,
+ "created": "2008-02-01T13:30:21.000Z",
+ "lastUpdated": "2021-07-15T20:56:31.429Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "marchande de fruits et légumes",
+ "plural": "marchandes de fruits et légumes"
+ },
+ {
+ "keyword": "marchande de primeurs",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "marchande de primeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "core vocabulary-object",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "04279164-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "core vocabulary",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 3329,
+ "created": "2008-02-01T13:30:52.000Z",
+ "lastUpdated": "2021-06-01T12:01:05.679Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lunettes",
+ "hasLocution": true,
+ "plural": "lunettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry",
+ "object"
+ ],
+ "synsets": [
+ "03040851-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry",
+ "object"
+ ],
+ "_id": 3333,
+ "created": "2008-02-01T13:33:33.000Z",
+ "lastUpdated": "2024-12-06T07:08:18.097Z",
+ "keywords": [
+ {
+ "keyword": "serre-joint",
+ "hasLocution": true,
+ "plural": "serre-joints",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07650764-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 3331,
+ "created": "2008-02-01T13:31:48.000Z",
+ "lastUpdated": "2021-04-30T09:30:04.476Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "biscuit au chocolat",
+ "hasLocution": false,
+ "plural": "biscuits au chocolat"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02043900-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 3334,
+ "created": "2008-02-01T13:34:05.000Z",
+ "lastUpdated": "2021-04-06T15:47:15.641Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mouette",
+ "hasLocution": true,
+ "plural": "mouettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "03682557-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 3335,
+ "created": "2008-02-01T13:34:56.000Z",
+ "lastUpdated": "2021-04-13T22:31:48.395Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "savon liquide",
+ "plural": "savons liquides"
+ },
+ {
+ "keyword": "gel douche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gels douches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing",
+ "cattle farming",
+ "natural habitat",
+ "rural area"
+ ],
+ "synsets": [
+ "03327044-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "geography",
+ "physical geography",
+ "natural habitat",
+ "place",
+ "rural area"
+ ],
+ "_id": 3337,
+ "created": "2008-02-01T13:36:45.000Z",
+ "lastUpdated": "2021-04-27T09:10:34.799Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ferme",
+ "hasLocution": true,
+ "plural": "Fermes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cattle farming",
+ "professional"
+ ],
+ "synsets": [
+ "10098586-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "cattle farming",
+ "professional"
+ ],
+ "_id": 3338,
+ "created": "2008-02-01T13:37:07.000Z",
+ "lastUpdated": "2021-04-30T09:27:54.060Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fermier",
+ "hasLocution": true,
+ "plural": "fermiers"
+ },
+ {
+ "keyword": "paysan",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paysans"
+ },
+ {
+ "keyword": "agriculteur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "agriculteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "ophthalmology",
+ "beach"
+ ],
+ "synsets": [
+ "04363134-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "health",
+ "medicine",
+ "ophthalmology",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 3330,
+ "created": "2008-02-01T13:31:26.000Z",
+ "lastUpdated": "2022-07-04T06:36:52.524Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lunettes de soleil",
+ "hasLocution": true,
+ "plural": "lunettes de soleil"
+ },
+ {
+ "keyword": "lunettes noires",
+ "hasLocution": false,
+ "plural": "lunettes noires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "digestive system"
+ ],
+ "synsets": [
+ "05555141-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "human physiology",
+ "physiology",
+ "digestive system"
+ ],
+ "_id": 3332,
+ "created": "2008-02-01T13:33:09.000Z",
+ "lastUpdated": "2021-04-06T15:48:45.446Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gorge",
+ "hasLocution": true,
+ "plural": "gorges"
+ },
+ {
+ "keyword": "pharynx",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pharynx"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01597013-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 3336,
+ "created": "2008-02-01T13:36:01.000Z",
+ "lastUpdated": "2021-04-06T15:46:24.335Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hirondelle",
+ "hasLocution": true,
+ "plural": "hirondelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction",
+ "corporal hygiene"
+ ],
+ "synsets": [
+ "04566737-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "human body",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 3339,
+ "created": "2008-02-01T13:38:14.000Z",
+ "lastUpdated": "2024-12-12T07:24:43.531Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "robinet",
+ "hasLocution": true,
+ "plural": "Robinets"
+ },
+ {
+ "type": 2,
+ "keyword": "mitigeur",
+ "hasLocution": false,
+ "plural": "Mitigeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense"
+ ],
+ "synsets": [
+ "10789727-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 3343,
+ "created": "2008-02-01T13:41:34.000Z",
+ "lastUpdated": "2021-07-15T20:54:15.998Z",
+ "keywords": [
+ {
+ "keyword": "agent de sécurité",
+ "hasLocution": true,
+ "plural": "agents de sécurité",
+ "type": 2
+ },
+ {
+ "keyword": "gardien",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gardiens"
+ },
+ {
+ "keyword": "vigile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vigiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "annelid",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "synsets": [
+ "01924944-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "annelid",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "_id": 3344,
+ "created": "2008-02-01T13:41:57.000Z",
+ "lastUpdated": "2021-04-06T15:44:16.464Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ver de terre",
+ "hasLocution": true,
+ "plural": "vers de terre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00965602-v",
+ "01040538-v",
+ "00966726-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 3345,
+ "created": "2008-02-01T13:42:20.000Z",
+ "lastUpdated": "2021-04-27T09:17:14.965Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. ind. Discuter avec quelqu'un au sujet de quelque chose ou de quelqu'un, sur un thème",
+ "keyword": "parler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "discuter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "causer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "dialoguer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Bavarder",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "Converser ",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "Échanger ",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work machine",
+ "construction"
+ ],
+ "synsets": [
+ "03131358-n"
+ ],
+ "tags": [
+ "work",
+ "work machine",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 3341,
+ "created": "2008-02-01T13:39:02.000Z",
+ "lastUpdated": "2021-04-06T15:44:53.965Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grue",
+ "hasLocution": true,
+ "plural": "grues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "dessert"
+ ],
+ "synsets": [
+ "07630109-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert"
+ ],
+ "_id": 3347,
+ "created": "2008-02-01T13:43:43.000Z",
+ "lastUpdated": "2021-04-21T21:29:12.325Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de glaces",
+ "hasLocution": true,
+ "plural": "magasins de glaces"
+ },
+ {
+ "keyword": "glacier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "glaciers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "pet",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02345537-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "pet",
+ "domestic"
+ ],
+ "_id": 3346,
+ "created": "2008-02-01T13:42:41.000Z",
+ "lastUpdated": "2021-04-06T15:43:26.099Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hamster",
+ "hasLocution": true,
+ "plural": "hamsters"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dessert",
+ "summer"
+ ],
+ "synsets": [
+ "07631383-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "summer"
+ ],
+ "_id": 3348,
+ "created": "2008-02-01T13:44:12.000Z",
+ "lastUpdated": "2025-01-29T12:24:44.586Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "plural": "glaces",
+ "keyword": "glace"
+ },
+ {
+ "keyword": "esquimau",
+ "hasLocution": true,
+ "plural": "esquimaux",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "bâtonnet de glace",
+ "plural": "bâtonnets de glace"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "03044572-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 3350,
+ "created": "2008-02-01T13:45:37.000Z",
+ "lastUpdated": "2021-04-06T17:22:44.176Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lave-vitre",
+ "hasLocution": true,
+ "plural": "lave-vitres"
+ },
+ {
+ "keyword": "nettoyant à vitres",
+ "hasLocution": false,
+ "plural": "nettoyants à vitres",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "cleaning product",
+ "core vocabulary-communication",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "01535222-v",
+ "01535377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "object",
+ "cleaning product",
+ "core vocabulary"
+ ],
+ "_id": 3351,
+ "created": "2008-02-01T13:46:08.000Z",
+ "lastUpdated": "2021-04-06T17:21:22.523Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre net, propre en débarrassant de ce qui tache, salit, ternit",
+ "keyword": "nettoyer",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "type": 3,
+ "keyword": "faire le ménage"
+ },
+ {
+ "keyword": "laver",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "03630937-n",
+ "03137530-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 3353,
+ "created": "2008-02-01T13:51:28.000Z",
+ "lastUpdated": "2021-04-06T17:19:27.037Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aiguille à tricoter",
+ "hasLocution": true,
+ "plural": "aiguille à tricoter"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "03810820-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 3349,
+ "created": "2008-02-01T13:44:35.000Z",
+ "lastUpdated": "2021-04-06T17:23:53.497Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lime à ongles",
+ "hasLocution": true,
+ "plural": "limes à ongles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense"
+ ],
+ "synsets": [
+ "08232524-n",
+ "10169591-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 3342,
+ "created": "2008-02-01T13:39:23.000Z",
+ "lastUpdated": "2021-04-27T09:16:06.353Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Garde civil",
+ "hasLocution": false,
+ "plural": "Gardes civils"
+ },
+ {
+ "type": 2,
+ "keyword": "garde",
+ "hasLocution": true,
+ "plural": "Gardes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "accessories",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "10399699-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "accessories",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 3357,
+ "created": "2008-02-01T13:55:43.000Z",
+ "lastUpdated": "2021-06-01T09:18:43.030Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "opticien",
+ "hasLocution": true,
+ "plural": "opticiens"
+ },
+ {
+ "keyword": "magasin de lunettes",
+ "hasLocution": false,
+ "plural": "magasins de lunettes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "04374833-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 3356,
+ "created": "2008-02-01T13:53:43.000Z",
+ "lastUpdated": "2021-04-06T17:17:48.747Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cotons tiges",
+ "hasLocution": true,
+ "plural": "cotons tiges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "baking"
+ ],
+ "synsets": [
+ "09852896-n",
+ "09853011-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 3358,
+ "created": "2008-02-01T13:56:49.000Z",
+ "lastUpdated": "2021-04-06T17:16:18.261Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boulanger",
+ "hasLocution": true,
+ "plural": "boulangers"
+ },
+ {
+ "keyword": "fabricant de pain",
+ "hasLocution": false,
+ "plural": "fabricants de pain",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "baking"
+ ],
+ "synsets": [
+ "09852896-n",
+ "09853011-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 3359,
+ "created": "2008-02-01T13:57:10.000Z",
+ "lastUpdated": "2021-04-06T17:15:33.281Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boulangère",
+ "hasLocution": true,
+ "plural": "boulangères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "baking"
+ ],
+ "synsets": [
+ "03906011-n",
+ "02779636-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 3361,
+ "created": "2008-02-01T14:00:25.000Z",
+ "lastUpdated": "2021-04-30T09:27:02.312Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pâtisserie",
+ "hasLocution": true,
+ "plural": "pâtisserie"
+ },
+ {
+ "keyword": "confiseur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "confiseur"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "reproductive system",
+ "excretory system",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05522556-n",
+ "05534035-n",
+ "05521732-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "reproductive system",
+ "excretory system",
+ "core vocabulary"
+ ],
+ "_id": 3362,
+ "created": "2008-02-01T14:02:08.000Z",
+ "lastUpdated": "2021-04-13T22:25:45.201Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pénis",
+ "hasLocution": true,
+ "plural": "pénis"
+ },
+ {
+ "keyword": "parties génitales",
+ "hasLocution": false,
+ "plural": "parties génitales",
+ "type": 2
+ },
+ {
+ "keyword": "organes génitaux masculins",
+ "hasLocution": true,
+ "plural": "organes génitaux masculins",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "zizi",
+ "plural": "zizis",
+ "type": 2
+ },
+ {
+ "keyword": "verge",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "verges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "00390371-s"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 3340,
+ "created": "2008-02-01T13:38:41.000Z",
+ "lastUpdated": "2021-04-06T15:45:00.955Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "gris",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03481807-n",
+ "02799477-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 3360,
+ "created": "2008-02-01T13:59:07.000Z",
+ "lastUpdated": "2021-04-06T17:15:19.847Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "barrette",
+ "hasLocution": true,
+ "plural": "barrettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "00371931-s"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 3355,
+ "created": "2008-02-01T13:53:07.000Z",
+ "lastUpdated": "2021-04-06T17:18:40.088Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "bleu",
+ "hasLocution": true,
+ "plural": "bleus"
+ },
+ {
+ "keyword": "bleuté",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "bleutés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "water transport",
+ "fishing"
+ ],
+ "synsets": [
+ "10113427-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 3366,
+ "created": "2008-02-01T14:06:10.000Z",
+ "lastUpdated": "2021-04-06T17:10:32.137Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pêcheur",
+ "hasLocution": true,
+ "plural": "pêcheurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fishing"
+ ],
+ "synsets": [
+ "10113427-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 3367,
+ "created": "2008-02-01T14:06:33.000Z",
+ "lastUpdated": "2021-04-06T17:09:58.011Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pêcheur",
+ "hasLocution": true,
+ "plural": "pêcheurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "viviparous",
+ "marine animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01497116-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "viviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "wild"
+ ],
+ "_id": 3368,
+ "created": "2008-02-01T14:07:51.000Z",
+ "lastUpdated": "2021-04-06T17:09:42.330Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "requin-marteau",
+ "hasLocution": false,
+ "plural": "requins-marteaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "fish"
+ ],
+ "synsets": [
+ "10113587-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 3365,
+ "created": "2008-02-01T14:05:13.000Z",
+ "lastUpdated": "2021-04-06T17:11:26.399Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poissonnière",
+ "hasLocution": false,
+ "plural": "poissonnières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "construction"
+ ],
+ "synsets": [
+ "01262255-v",
+ "00338881-v",
+ "00336733-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 3369,
+ "created": "2008-02-01T14:08:53.000Z",
+ "lastUpdated": "2021-07-15T20:49:59.059Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "écraser"
+ },
+ {
+ "hasLocution": true,
+ "type": 2,
+ "keyword": "morceau",
+ "plural": "morceaux"
+ },
+ {
+ "keyword": "casser",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "éclat",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "éclats"
+ },
+ {
+ "keyword": "démolir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "aerial transport",
+ "transport services"
+ ],
+ "synsets": [
+ "10452928-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 3370,
+ "created": "2008-02-01T14:11:19.000Z",
+ "lastUpdated": "2021-04-06T17:08:45.633Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pilote",
+ "hasLocution": true,
+ "plural": "pilotes"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "pilote d'avion",
+ "plural": "pilotes d'avion",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "hygiene product"
+ ],
+ "synsets": [
+ "03922504-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 3363,
+ "created": "2008-02-01T14:03:09.000Z",
+ "lastUpdated": "2021-04-06T17:14:28.547Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parfumerie",
+ "hasLocution": true,
+ "plural": "parfumeries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "03278651-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 3373,
+ "created": "2008-02-01T14:14:54.000Z",
+ "lastUpdated": "2021-04-30T12:52:30.861Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plaque vitrocéramique",
+ "hasLocution": true,
+ "plural": "plaques vitrocéramiques"
+ },
+ {
+ "type": 2,
+ "keyword": "vitrocéramiques",
+ "hasLocution": false,
+ "plural": "vitrocéramiques"
+ },
+ {
+ "keyword": "plaque de cuisson vitrocéramique",
+ "hasLocution": false,
+ "plural": "plaques de cuisson vitrocéramique",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "07791026-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 3372,
+ "created": "2008-02-01T14:13:46.000Z",
+ "lastUpdated": "2021-04-06T19:59:28.218Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pistaches",
+ "hasLocution": true,
+ "plural": "pistaches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "meat"
+ ],
+ "synsets": [
+ "10480626-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 3375,
+ "created": "2008-02-01T14:16:55.000Z",
+ "lastUpdated": "2021-04-06T19:58:57.522Z",
+ "keywords": [
+ {
+ "keyword": "volailler",
+ "hasLocution": false,
+ "plural": "volaillers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament",
+ "medicine",
+ "medical treatment"
+ ],
+ "synsets": [
+ "03851070-n",
+ "03133170-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament",
+ "treatment"
+ ],
+ "_id": 3376,
+ "created": "2008-02-01T14:17:57.000Z",
+ "lastUpdated": "2024-12-11T17:32:34.518Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pommade",
+ "hasLocution": true,
+ "plural": "pommades"
+ },
+ {
+ "type": 2,
+ "keyword": "crème",
+ "hasLocution": true,
+ "plural": "crèmes"
+ },
+ {
+ "keyword": "baume",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "baumes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "meat"
+ ],
+ "synsets": [
+ "04209460-n",
+ "02930545-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 3374,
+ "created": "2008-02-01T14:15:54.000Z",
+ "lastUpdated": "2021-04-13T22:20:21.042Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de volailles",
+ "hasLocution": true,
+ "plural": "magasins de volailles"
+ },
+ {
+ "keyword": "volailler",
+ "hasLocution": false,
+ "plural": "volaillers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "psychology"
+ ],
+ "synsets": [
+ "10508450-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "psychology"
+ ],
+ "_id": 3377,
+ "created": "2008-02-01T14:18:56.000Z",
+ "lastUpdated": "2021-04-06T19:55:57.124Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "psychologue",
+ "hasLocution": true,
+ "plural": "psychologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07738784-n",
+ "12454744-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 3378,
+ "created": "2008-02-01T14:19:25.000Z",
+ "lastUpdated": "2021-04-06T19:55:15.331Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poireau",
+ "hasLocution": true,
+ "plural": "poireaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mollusc",
+ "oviparous",
+ "marine animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01972805-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "wild"
+ ],
+ "_id": 3379,
+ "created": "2008-02-01T14:20:36.000Z",
+ "lastUpdated": "2021-04-06T19:54:57.285Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poulpe",
+ "hasLocution": true,
+ "plural": "poulpes"
+ },
+ {
+ "keyword": "pieuvre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pieuvres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "fish"
+ ],
+ "synsets": [
+ "04209460-n",
+ "07791351-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 3364,
+ "created": "2008-02-01T14:04:11.000Z",
+ "lastUpdated": "2021-04-06T17:12:59.831Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poissonnerie",
+ "hasLocution": true,
+ "plural": "poissonneries"
+ },
+ {
+ "keyword": "magasin de poissons",
+ "hasLocution": false,
+ "plural": "magasins de poissons",
+ "type": 2
+ },
+ {
+ "keyword": "marché aux poissons",
+ "hasLocution": false,
+ "plural": "marchés aux poissons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "07791173-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 3371,
+ "created": "2008-02-01T14:12:44.000Z",
+ "lastUpdated": "2021-04-06T17:07:35.533Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pipas",
+ "hasLocution": true,
+ "plural": "pipas"
+ },
+ {
+ "keyword": "graines de tournesols",
+ "hasLocution": false,
+ "plural": "graines de tournesols",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "construction"
+ ],
+ "synsets": [
+ "08561850-n",
+ "08677624-n",
+ "03114532-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 3382,
+ "created": "2008-02-01T14:24:09.000Z",
+ "lastUpdated": "2021-04-06T19:48:14.857Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coin",
+ "hasLocution": true,
+ "plural": "coins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07711710-n",
+ "07712370-n",
+ "07714146-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 3383,
+ "created": "2008-02-01T14:24:34.000Z",
+ "lastUpdated": "2021-04-06T19:47:21.468Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sandwich",
+ "hasLocution": true,
+ "plural": "sandwichs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "amphibian",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01642406-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "amphibian",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 3384,
+ "created": "2008-02-01T14:25:32.000Z",
+ "lastUpdated": "2021-04-06T19:45:41.521Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "grenouille",
+ "plural": "grenouilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural habitat"
+ ],
+ "synsets": [
+ "08456014-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "natural habitat"
+ ],
+ "_id": 3385,
+ "created": "2008-02-01T14:26:34.000Z",
+ "lastUpdated": "2021-04-06T19:44:38.951Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jungle",
+ "hasLocution": true,
+ "plural": "jungles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant-based food",
+ "fungus"
+ ],
+ "synsets": [
+ "13021651-n",
+ "13018679-n",
+ "13021801-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "plant",
+ "fungus"
+ ],
+ "_id": 3386,
+ "created": "2008-02-01T14:26:57.000Z",
+ "lastUpdated": "2021-04-06T19:44:12.841Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "champignons",
+ "hasLocution": true,
+ "plural": "champignons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic"
+ ],
+ "synsets": [
+ "03314632-n",
+ "03117803-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 3388,
+ "created": "2008-02-01T14:28:38.000Z",
+ "lastUpdated": "2021-04-13T22:15:15.729Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fard à paupières",
+ "hasLocution": false,
+ "plural": "fards à paupières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "03974274-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 3390,
+ "created": "2008-02-01T14:31:19.000Z",
+ "lastUpdated": "2021-04-13T22:11:06.602Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cheville plastique",
+ "hasLocution": false,
+ "plural": "chevilles plastiques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "construction",
+ "carpentry"
+ ],
+ "synsets": [
+ "01445640-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "construction",
+ "carpentry"
+ ],
+ "_id": 3391,
+ "created": "2008-02-01T14:32:14.000Z",
+ "lastUpdated": "2021-04-07T00:43:01.505Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "percer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "forer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07866305-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "ultra-processed food"
+ ],
+ "_id": 3380,
+ "created": "2008-02-01T14:21:35.000Z",
+ "lastUpdated": "2021-08-04T08:16:16.571Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fromage en portion",
+ "hasLocution": true,
+ "plural": "fromages en portion"
+ },
+ {
+ "keyword": "vache qui rit",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "fromage fondu",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "construction",
+ "carpentry"
+ ],
+ "synsets": [
+ "03244429-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "construction",
+ "carpentry"
+ ],
+ "_id": 3392,
+ "created": "2008-02-01T14:32:35.000Z",
+ "lastUpdated": "2021-04-07T00:42:25.036Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "perceuse ",
+ "hasLocution": false,
+ "plural": "perceuses"
+ },
+ {
+ "keyword": "perceuse électrique",
+ "hasLocution": false,
+ "plural": "perceuses électriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05585726-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 3399,
+ "created": "2008-02-05T10:25:35.000Z",
+ "lastUpdated": "2021-04-07T00:41:18.394Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "talon",
+ "hasLocution": true,
+ "plural": "talons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "security and defense",
+ "war"
+ ],
+ "synsets": [
+ "04396120-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "event",
+ "war"
+ ],
+ "_id": 3400,
+ "created": "2008-02-05T10:27:05.000Z",
+ "lastUpdated": "2021-04-07T00:41:00.400Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tank",
+ "hasLocution": false,
+ "plural": "tanks"
+ },
+ {
+ "keyword": "char d'assaut",
+ "hasLocution": false,
+ "plural": "chars d'assaut",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "publication",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "06608568-n"
+ ],
+ "tags": [
+ "object",
+ "publication",
+ "core vocabulary"
+ ],
+ "_id": 3401,
+ "created": "2008-02-05T10:28:08.000Z",
+ "lastUpdated": "2021-04-07T00:38:43.722Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bande dessinée",
+ "hasLocution": true,
+ "plural": "bandes dessinées"
+ },
+ {
+ "keyword": "BD",
+ "hasLocution": false,
+ "plural": "BDs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "food",
+ "beverage"
+ ],
+ "synsets": [
+ "04365794-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 3389,
+ "created": "2008-02-01T14:29:50.000Z",
+ "lastUpdated": "2021-04-13T22:12:50.308Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "supermarché",
+ "hasLocution": true,
+ "plural": "supermarchés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "04023078-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 3403,
+ "created": "2008-02-05T10:31:16.000Z",
+ "lastUpdated": "2021-04-07T00:34:20.264Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sécateur",
+ "hasLocution": true,
+ "plural": "sécateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "joint system"
+ ],
+ "synsets": [
+ "05586073-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "joint system"
+ ],
+ "_id": 3405,
+ "created": "2008-02-05T10:32:41.000Z",
+ "lastUpdated": "2021-04-07T00:30:06.956Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cheville",
+ "hasLocution": true,
+ "plural": "chevilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02789081-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 3404,
+ "created": "2008-02-05T10:31:38.000Z",
+ "lastUpdated": "2021-04-07T00:32:16.976Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pansements",
+ "hasLocution": false,
+ "plural": "pansements"
+ },
+ {
+ "keyword": "pansements adhésifs",
+ "hasLocution": false,
+ "plural": "pansements adhésifs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom",
+ "covid-19"
+ ],
+ "synsets": [
+ "00005815-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom",
+ "covid-19"
+ ],
+ "_id": 3406,
+ "created": "2008-02-05T10:33:59.000Z",
+ "lastUpdated": "2021-04-07T00:29:53.013Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tousser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "04531889-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 3408,
+ "created": "2008-02-05T10:36:09.000Z",
+ "lastUpdated": "2021-04-15T13:44:24.449Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "velcro",
+ "hasLocution": true,
+ "plural": "velcros"
+ },
+ {
+ "keyword": "scratch",
+ "hasLocution": false,
+ "plural": "scratch",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance",
+ "mass media",
+ "hardware"
+ ],
+ "synsets": [
+ "04412132-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "communication",
+ "mass media",
+ "computing",
+ "hardware"
+ ],
+ "_id": 3409,
+ "created": "2008-02-05T10:37:26.000Z",
+ "lastUpdated": "2021-03-12T13:46:40.623Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caméra vidéo",
+ "hasLocution": true,
+ "plural": "caméras vidéo"
+ },
+ {
+ "type": 2,
+ "keyword": "caméscope",
+ "hasLocution": true,
+ "plural": "caméscopes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "excretory system"
+ ],
+ "synsets": [
+ "05519988-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "excretory system"
+ ],
+ "_id": 3407,
+ "created": "2008-02-05T10:35:09.000Z",
+ "lastUpdated": "2021-04-13T22:09:42.749Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vessie",
+ "hasLocution": true,
+ "plural": "vessies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "reproductive system",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05529287-n",
+ "05528762-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "reproductive system",
+ "core vocabulary"
+ ],
+ "_id": 3410,
+ "created": "2008-02-05T10:38:19.000Z",
+ "lastUpdated": "2021-04-13T22:07:42.520Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vagin",
+ "hasLocution": true,
+ "plural": "vagins"
+ },
+ {
+ "type": 2,
+ "keyword": "vulve",
+ "hasLocution": true,
+ "plural": "vulves"
+ },
+ {
+ "keyword": "sexe féminin",
+ "hasLocution": false,
+ "plural": "sexes féminins",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "footwear"
+ ],
+ "synsets": [
+ "09952556-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 3411,
+ "created": "2008-02-05T10:39:26.000Z",
+ "lastUpdated": "2021-06-07T09:24:29.534Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cordonnier",
+ "hasLocution": true,
+ "plural": "cordonniers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign"
+ ],
+ "synsets": [
+ "06857953-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 3413,
+ "created": "2008-02-05T10:51:05.000Z",
+ "lastUpdated": "2021-04-13T22:05:55.888Z",
+ "keywords": [
+ {
+ "keyword": "\\",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "barre oblique inversée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "barres obliques inversées"
+ },
+ {
+ "keyword": "antislash",
+ "hasLocution": false,
+ "plural": "antislashs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 3412,
+ "created": "2008-02-05T10:50:01.000Z",
+ "lastUpdated": "2021-06-07T09:24:12.638Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "sin traduccion",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign"
+ ],
+ "synsets": [
+ "06856067-n",
+ "06830640-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 3414,
+ "created": "2008-02-05T10:52:17.000Z",
+ "lastUpdated": "2021-06-07T09:24:06.308Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "sin traduccion",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign"
+ ],
+ "synsets": [
+ "06857090-n",
+ "06830640-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 3415,
+ "created": "2008-02-05T10:53:16.000Z",
+ "lastUpdated": "2021-07-18T11:19:31.324Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "sin traduccion",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign",
+ "mathematics"
+ ],
+ "synsets": [
+ "06856443-n",
+ "06830640-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign",
+ "mathematics"
+ ],
+ "_id": 3416,
+ "created": "2008-02-05T10:54:26.000Z",
+ "lastUpdated": "2021-04-07T00:26:46.313Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parenthèse ",
+ "hasLocution": false,
+ "plural": "parenthèses"
+ },
+ {
+ "keyword": "(",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "parenthèse ouvrante",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "parenthèses ouvrantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "derived material",
+ "clothing industry"
+ ],
+ "synsets": [
+ "03314753-n"
+ ],
+ "tags": [
+ "material",
+ "derived material",
+ "work",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 3402,
+ "created": "2008-02-05T10:29:49.000Z",
+ "lastUpdated": "2021-04-07T00:37:23.392Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tissu",
+ "hasLocution": true,
+ "plural": "tissus"
+ },
+ {
+ "keyword": "textile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "textiles"
+ },
+ {
+ "keyword": "étoffe",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "étoffes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "publication",
+ "mass media"
+ ],
+ "synsets": [
+ "10375912-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "object",
+ "publication",
+ "communication",
+ "mass media"
+ ],
+ "_id": 3381,
+ "created": "2008-02-01T14:23:11.000Z",
+ "lastUpdated": "2021-06-07T09:24:47.569Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marchand de journaux",
+ "hasLocution": true,
+ "plural": "marchands de journaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign"
+ ],
+ "synsets": [
+ "06857090-n",
+ "06830640-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 3418,
+ "created": "2008-02-05T11:00:44.000Z",
+ "lastUpdated": "2021-04-07T00:24:21.700Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "?",
+ "hasLocution": false
+ },
+ {
+ "keyword": "point d'interrogation",
+ "hasLocution": true,
+ "plural": "points d'interrogation",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "board game",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "00507071-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "board game"
+ ],
+ "_id": 3421,
+ "created": "2008-02-05T11:08:17.000Z",
+ "lastUpdated": "2021-04-07T00:20:35.550Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jeu de l'oie",
+ "hasLocution": true,
+ "plural": "jeux de l'oie"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign"
+ ],
+ "synsets": [
+ "06857789-n",
+ "06830640-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 3422,
+ "created": "2008-02-05T11:11:16.000Z",
+ "lastUpdated": "2021-04-07T00:45:02.987Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "point virgule",
+ "hasLocution": true
+ },
+ {
+ "keyword": ";",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign",
+ "mathematics"
+ ],
+ "synsets": [
+ "06824725-n",
+ "00893124-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign",
+ "mathematics"
+ ],
+ "_id": 3423,
+ "created": "2008-02-05T11:16:42.000Z",
+ "lastUpdated": "2021-04-07T00:45:37.831Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "égal",
+ "hasLocution": true
+ },
+ {
+ "keyword": "=",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign",
+ "mathematics"
+ ],
+ "synsets": [
+ "06857953-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign",
+ "mathematics"
+ ],
+ "_id": 3424,
+ "created": "2008-02-05T11:21:47.000Z",
+ "lastUpdated": "2021-04-13T21:59:32.853Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "slash",
+ "hasLocution": false,
+ "plural": "slashs"
+ },
+ {
+ "keyword": "/",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "barre oblique",
+ "hasLocution": false,
+ "plural": "barres obliques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "03145716-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 3426,
+ "created": "2008-02-05T11:33:09.000Z",
+ "lastUpdated": "2021-04-07T00:46:27.388Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voiture de police",
+ "hasLocution": true,
+ "plural": "voitures de police"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign"
+ ],
+ "synsets": [
+ "06855710-n",
+ "06830640-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 3420,
+ "created": "2008-02-05T11:05:51.000Z",
+ "lastUpdated": "2021-04-07T00:23:31.968Z",
+ "keywords": [
+ {
+ "type": 6,
+ "hasLocution": false,
+ "keyword": ":"
+ },
+ {
+ "keyword": "deux points",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "sport material"
+ ],
+ "synsets": [
+ "03610446-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "sport material"
+ ],
+ "_id": 3427,
+ "created": "2008-02-05T11:33:41.000Z",
+ "lastUpdated": "2021-04-08T09:28:32.815Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corde à sauter",
+ "hasLocution": true,
+ "plural": "cordes à sauter"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "routine"
+ ],
+ "synsets": [
+ "00071765-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "routine"
+ ],
+ "_id": 3429,
+ "created": "2008-02-05T11:37:26.000Z",
+ "lastUpdated": "2021-04-13T21:55:54.232Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "pisser"
+ },
+ {
+ "type": 3,
+ "keyword": "uriner",
+ "hasLocution": false
+ },
+ {
+ "keyword": "faire pipi",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal",
+ "road safety"
+ ],
+ "synsets": [
+ "03910302-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 3430,
+ "created": "2008-02-05T11:45:51.000Z",
+ "lastUpdated": "2021-04-08T09:29:10.878Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "passage piéton",
+ "hasLocution": true,
+ "plural": "passages piétons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "routine"
+ ],
+ "synsets": [
+ "00073096-v",
+ "00073791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "routine"
+ ],
+ "_id": 3428,
+ "created": "2008-02-05T11:36:57.000Z",
+ "lastUpdated": "2021-06-07T09:23:46.906Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire caca",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "chier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "aller à la selle",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "building",
+ "building facility"
+ ],
+ "synsets": [
+ "01656822-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 4549,
+ "created": "2008-04-24T12:03:42.000Z",
+ "lastUpdated": "2024-12-09T06:10:47.134Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ouvert",
+ "hasLocution": true,
+ "plural": "ouverts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "residential building",
+ "appliance"
+ ],
+ "synsets": [
+ "03227219-n",
+ "03583224-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "home",
+ "object",
+ "appliance"
+ ],
+ "_id": 3431,
+ "created": "2008-02-05T11:48:23.000Z",
+ "lastUpdated": "2024-12-07T13:26:10.132Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "interphone",
+ "hasLocution": true,
+ "plural": "interphones"
+ },
+ {
+ "keyword": "digicode",
+ "hasLocution": false,
+ "plural": "digicodes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human response"
+ ],
+ "synsets": [
+ "00418872-n",
+ "00418410-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response"
+ ],
+ "_id": 4550,
+ "created": "2008-04-24T12:46:37.000Z",
+ "lastUpdated": "2021-04-27T09:19:05.577Z",
+ "keywords": [
+ {
+ "keyword": "Faire un câlin ",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "Embrasser",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "Câliner ",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "Prendre dans les bras ",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traffic accident",
+ "road safety",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "07315954-n",
+ "07316568-n",
+ "01564990-v",
+ "02108651-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "traffic accident",
+ "road safety",
+ "core vocabulary"
+ ],
+ "_id": 4551,
+ "created": "2008-04-24T12:47:31.000Z",
+ "lastUpdated": "2023-01-31T12:31:17.231Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accident",
+ "hasLocution": true,
+ "plural": "accidents"
+ },
+ {
+ "type": 3,
+ "keyword": "heurter",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "keyword": "s'écraser",
+ "type": 3
+ },
+ {
+ "keyword": "percuter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine",
+ "furniture"
+ ],
+ "synsets": [
+ "00017858-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine",
+ "object",
+ "furniture"
+ ],
+ "_id": 4553,
+ "created": "2008-04-24T12:49:20.000Z",
+ "lastUpdated": "2021-04-08T09:36:06.365Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "coucher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se coucher",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "aller au lit",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre au lit",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "aller dormir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "performing artist",
+ "professional artist",
+ "theater"
+ ],
+ "synsets": [
+ "09784701-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "scenic art",
+ "visual art",
+ "theater",
+ "show"
+ ],
+ "_id": 4554,
+ "created": "2008-04-24T12:52:30.000Z",
+ "lastUpdated": "2021-04-08T09:36:51.559Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "acteur",
+ "hasLocution": true,
+ "plural": "acteurs"
+ },
+ {
+ "keyword": "comédien",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "comédiens"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 3417,
+ "created": "2019-03-01T12:38:03.000Z",
+ "lastUpdated": "2021-04-07T00:24:56.732Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "!",
+ "hasLocution": false
+ },
+ {
+ "keyword": "point d'exclamation",
+ "hasLocution": true,
+ "plural": "points d'exclamation",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "taste",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02377903-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "taste",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4552,
+ "created": "2008-04-24T12:48:33.000Z",
+ "lastUpdated": "2021-04-08T09:34:47.074Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "acide",
+ "hasLocution": true,
+ "plural": "acides"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features"
+ ],
+ "synsets": [
+ "02393670-a",
+ "01398335-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features"
+ ],
+ "_id": 4557,
+ "created": "2008-04-24T12:57:29.000Z",
+ "lastUpdated": "2021-04-08T09:39:18.391Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "grand",
+ "hasLocution": true,
+ "plural": "grands"
+ },
+ {
+ "type": 4,
+ "keyword": "plus grand",
+ "hasLocution": true,
+ "plural": "plus grand"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "sexuality"
+ ],
+ "synsets": [
+ "01468558-s",
+ "09645472-n",
+ "08002070-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "sexuality"
+ ],
+ "_id": 4558,
+ "created": "2008-04-24T12:58:10.000Z",
+ "lastUpdated": "2021-04-08T09:41:12.144Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amoureux",
+ "hasLocution": true,
+ "plural": "amoureux"
+ },
+ {
+ "type": 2,
+ "keyword": "amoureux",
+ "hasLocution": true,
+ "plural": "amoureux"
+ },
+ {
+ "keyword": "épris",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "épris"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts"
+ ],
+ "synsets": [
+ "02571278-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 4559,
+ "created": "2008-04-24T12:59:51.000Z",
+ "lastUpdated": "2021-04-06T16:44:43.416Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "large",
+ "hasLocution": true,
+ "plural": "large"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "elderly",
+ "family"
+ ],
+ "synsets": [
+ "10161911-n"
+ ],
+ "tags": [
+ "person",
+ "elderly",
+ "family"
+ ],
+ "_id": 4560,
+ "created": "2008-04-24T13:00:29.000Z",
+ "lastUpdated": "2021-06-07T09:23:30.833Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grand-père",
+ "hasLocution": true,
+ "plural": "grands-pères"
+ },
+ {
+ "type": 2,
+ "keyword": "papy",
+ "hasLocution": true,
+ "plural": "papys"
+ },
+ {
+ "keyword": "pépé",
+ "hasLocution": false,
+ "plural": "pépés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "financial services"
+ ],
+ "synsets": [
+ "02270824-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "financial services"
+ ],
+ "_id": 4556,
+ "created": "2008-04-24T12:56:46.000Z",
+ "lastUpdated": "2021-04-08T09:38:54.482Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "économiser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mettre de côté",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "épargner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "01571845-v",
+ "02766453-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 4562,
+ "created": "2008-04-24T13:03:36.000Z",
+ "lastUpdated": "2021-04-27T09:20:33.701Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éteindre",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "keyword": "Souffler la bougie ",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport rules",
+ "professional",
+ "football"
+ ],
+ "synsets": [
+ "10534022-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport rules",
+ "work",
+ "professional",
+ "football"
+ ],
+ "_id": 4564,
+ "created": "2008-04-24T13:04:53.000Z",
+ "lastUpdated": "2021-04-13T21:52:53.454Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arbitre",
+ "hasLocution": true,
+ "plural": "arbitres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beach"
+ ],
+ "synsets": [
+ "15043597-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 4565,
+ "created": "2008-04-24T13:05:28.000Z",
+ "lastUpdated": "2021-04-13T21:51:11.905Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sable",
+ "hasLocution": true,
+ "plural": "sables"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00863593-v",
+ "00034108-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 4563,
+ "created": "2008-04-24T13:04:06.000Z",
+ "lastUpdated": "2021-04-13T21:54:44.748Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "applaudir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "taper",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "frapper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "texture"
+ ],
+ "synsets": [
+ "02246206-a",
+ "02238735-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "texture"
+ ],
+ "_id": 4568,
+ "created": "2008-04-25T13:18:14.000Z",
+ "lastUpdated": "2021-07-15T20:46:42.975Z",
+ "keywords": [
+ {
+ "type": 4,
+ "hasLocution": true,
+ "plural": "rugueux",
+ "keyword": "rugueux"
+ },
+ {
+ "hasLocution": true,
+ "type": 4,
+ "keyword": "grossier",
+ "plural": "grossiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "astronomy"
+ ],
+ "synsets": [
+ "09837427-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "astronomy"
+ ],
+ "_id": 4569,
+ "created": "2008-04-25T13:19:05.000Z",
+ "lastUpdated": "2021-04-13T21:47:24.094Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "astronaute",
+ "hasLocution": true,
+ "plural": "astronautes"
+ },
+ {
+ "type": 2,
+ "keyword": "cosmonaute",
+ "hasLocution": true,
+ "plural": "cosmonautes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01063099-a",
+ "00160371-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4566,
+ "created": "2008-04-24T13:07:16.000Z",
+ "lastUpdated": "2021-04-13T21:50:40.314Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "arrangé",
+ "hasLocution": false,
+ "plural": "arrangés"
+ },
+ {
+ "keyword": "réparé",
+ "hasLocution": true,
+ "plural": "réparés",
+ "type": 4
+ },
+ {
+ "keyword": "recollé",
+ "hasLocution": false,
+ "plural": "recollés",
+ "type": 4
+ },
+ {
+ "keyword": "collé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "collés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response"
+ ],
+ "synsets": [
+ "00081834-v",
+ "02553283-v",
+ "02421408-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response"
+ ],
+ "_id": 4570,
+ "created": "2008-04-25T13:19:44.000Z",
+ "lastUpdated": "2021-04-27T09:21:04.992Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Apporter son concours à quelqu'un, joindre ses efforts aux siens dans ce qu'il fait ; lui être utile, faciliter son action, en parlant de quelque chose : Aider un ami à surmonter ses difficultés.",
+ "keyword": "aider",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "soutenir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "coopérer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "accompagner ",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features"
+ ],
+ "synsets": [
+ "02395180-a",
+ "01397927-s",
+ "01394303-a",
+ "01395201-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features"
+ ],
+ "_id": 4571,
+ "created": "2008-04-25T13:20:23.000Z",
+ "lastUpdated": "2021-07-15T20:44:42.248Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "petit",
+ "hasLocution": true,
+ "plural": "petits"
+ },
+ {
+ "type": 4,
+ "keyword": "inférieur",
+ "hasLocution": true,
+ "plural": "inférieurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "playground",
+ "street furniture",
+ "recreational facility"
+ ],
+ "synsets": [
+ "04174820-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground",
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 4572,
+ "created": "2008-04-25T13:21:05.000Z",
+ "lastUpdated": "2021-03-27T21:53:47.323Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "bascule",
+ "plural": "bascules"
+ },
+ {
+ "keyword": "balançoire à bascule",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "balançoires à bascule"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign",
+ "mathematics"
+ ],
+ "synsets": [
+ "06856443-n",
+ "06830640-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign",
+ "mathematics"
+ ],
+ "_id": 3419,
+ "created": "2008-02-05T11:01:44.000Z",
+ "lastUpdated": "2021-04-07T00:27:37.343Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parenthèse",
+ "hasLocution": true,
+ "plural": "parenthèses"
+ },
+ {
+ "keyword": ")",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "parenthèse fermante",
+ "hasLocution": false,
+ "plural": "parenthèses fermantes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "performing artist",
+ "professional artist",
+ "theater"
+ ],
+ "synsets": [
+ "09787123-n",
+ "09831743-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "scenic art",
+ "visual art",
+ "theater",
+ "show"
+ ],
+ "_id": 4555,
+ "created": "2008-04-24T12:54:47.000Z",
+ "lastUpdated": "2021-04-08T09:37:18.336Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "actrice",
+ "hasLocution": true,
+ "plural": "actrices"
+ },
+ {
+ "keyword": "comédienne",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "comédiennes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07897775-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "core vocabulary"
+ ],
+ "_id": 4575,
+ "created": "2008-04-25T13:26:08.000Z",
+ "lastUpdated": "2021-04-06T16:43:30.032Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boissons",
+ "hasLocution": true,
+ "plural": "boissons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00937468-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4574,
+ "created": "2008-04-25T13:25:14.000Z",
+ "lastUpdated": "2021-04-13T21:41:58.834Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "bon marché",
+ "hasLocution": true,
+ "plural": "bon marché"
+ },
+ {
+ "keyword": "abordable",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "abordables"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "beverage"
+ ],
+ "synsets": [
+ "02800154-n",
+ "02792510-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 4573,
+ "created": "2008-04-25T13:24:37.000Z",
+ "lastUpdated": "2021-04-13T21:45:26.382Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bar",
+ "hasLocution": true,
+ "plural": "bars"
+ },
+ {
+ "keyword": "café",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cafés"
+ },
+ {
+ "keyword": "bistrot",
+ "hasLocution": false,
+ "plural": "bistrots",
+ "type": 2
+ },
+ {
+ "keyword": "buvette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "buvettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human response"
+ ],
+ "synsets": [
+ "00139041-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response"
+ ],
+ "_id": 4576,
+ "created": "2008-04-25T13:26:45.000Z",
+ "lastUpdated": "2021-04-13T21:40:35.165Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "embrasser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "donner un baiser",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "faire un bisou"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "02880508-n"
+ ],
+ "tags": [
+ "health",
+ "babycare"
+ ],
+ "_id": 4577,
+ "created": "2008-04-25T13:27:27.000Z",
+ "lastUpdated": "2022-12-18T05:36:27.824Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "biberon",
+ "hasLocution": true,
+ "plural": "biberons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "texture",
+ "core vocabulary-communication",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "01156249-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "texture",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 4578,
+ "created": "2008-04-25T13:28:44.000Z",
+ "lastUpdated": "2021-04-06T16:40:59.759Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mou",
+ "hasLocution": true,
+ "plural": "mou"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "02885255-n",
+ "02885431-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 4579,
+ "created": "2008-04-25T13:30:02.000Z",
+ "lastUpdated": "2021-04-13T21:38:34.762Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bowling",
+ "hasLocution": false,
+ "plural": "bowlings"
+ },
+ {
+ "keyword": "piste de quilles",
+ "hasLocution": false,
+ "plural": "pistes de quilles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "sport material"
+ ],
+ "synsets": [
+ "02876113-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 4580,
+ "created": "2008-04-25T13:44:15.000Z",
+ "lastUpdated": "2021-04-13T21:34:49.338Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussures de montagne",
+ "hasLocution": true,
+ "plural": "chaussures de montagne"
+ },
+ {
+ "keyword": "chaussures de randonnée",
+ "hasLocution": false,
+ "plural": "chaussures de randonnée",
+ "type": 2
+ },
+ {
+ "keyword": "chaussures de marche",
+ "hasLocution": false,
+ "plural": "chaussures de marche",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "musical artist",
+ "professional artist",
+ "musical art"
+ ],
+ "synsets": [
+ "10619214-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "music",
+ "visual art"
+ ],
+ "_id": 4585,
+ "created": "2008-04-25T13:47:25.000Z",
+ "lastUpdated": "2021-04-13T21:32:57.961Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chanteur",
+ "hasLocution": false,
+ "plural": "chanteurs"
+ },
+ {
+ "keyword": "artiste",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "artistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "beverage",
+ "mountain"
+ ],
+ "synsets": [
+ "02955810-n",
+ "04564934-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "feeding",
+ "food",
+ "beverage",
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 4587,
+ "created": "2008-04-28T12:58:26.000Z",
+ "lastUpdated": "2021-07-15T20:39:59.919Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gourde",
+ "hasLocution": true,
+ "plural": "gourdes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "law and justice"
+ ],
+ "synsets": [
+ "04012006-n",
+ "03597432-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 4588,
+ "created": "2008-04-28T13:00:13.000Z",
+ "lastUpdated": "2021-04-06T16:39:38.851Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prison",
+ "hasLocution": true,
+ "plural": "prisons"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "maison d'arrêt",
+ "plural": "maisons d'arrêt",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00936423-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4589,
+ "created": "2008-04-28T13:00:38.000Z",
+ "lastUpdated": "2021-04-06T16:38:26.055Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "cher",
+ "hasLocution": true,
+ "plural": "chers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "death",
+ "halloween"
+ ],
+ "synsets": [
+ "08538806-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "event",
+ "social event",
+ "death",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 4591,
+ "created": "2008-04-28T13:05:01.000Z",
+ "lastUpdated": "2021-04-13T21:29:49.459Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cimetière",
+ "hasLocution": true,
+ "plural": "cimetières"
+ },
+ {
+ "keyword": "nécropole",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "nécropoles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "event",
+ "feeding",
+ "core vocabulary-time",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07591291-n",
+ "07591549-n"
+ ],
+ "tags": [
+ "event",
+ "feeding",
+ "core vocabulary"
+ ],
+ "_id": 4592,
+ "created": "2008-04-28T13:05:49.000Z",
+ "lastUpdated": "2021-04-13T21:28:07.221Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dîner",
+ "hasLocution": true,
+ "plural": "dîners"
+ },
+ {
+ "keyword": "souper",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "soupers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01170315-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 4593,
+ "created": "2008-04-28T13:08:14.000Z",
+ "lastUpdated": "2021-07-15T20:38:53.071Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "dîner",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "type": 3,
+ "keyword": "prendre le dîner"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "smoking"
+ ],
+ "synsets": [
+ "02750807-n"
+ ],
+ "tags": [
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "smoking"
+ ],
+ "_id": 4594,
+ "created": "2008-04-28T13:10:01.000Z",
+ "lastUpdated": "2021-04-06T16:37:44.576Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cendrier",
+ "hasLocution": true,
+ "plural": "cendriers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "smoking"
+ ],
+ "synsets": [
+ "03734473-n",
+ "03733928-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "smoking"
+ ],
+ "_id": 4595,
+ "created": "2008-04-28T13:10:44.000Z",
+ "lastUpdated": "2021-04-06T16:37:25.618Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "allumettes",
+ "hasLocution": true,
+ "plural": "allumettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01657224-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4596,
+ "created": "2008-04-28T13:11:20.000Z",
+ "lastUpdated": "2021-04-06T16:37:12.885Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fermé",
+ "hasLocution": true,
+ "plural": "fermés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "03668213-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 4597,
+ "created": "2008-04-28T13:12:06.000Z",
+ "lastUpdated": "2021-04-13T21:26:43.769Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gilet de sauvetage",
+ "hasLocution": true,
+ "plural": "gilets de sauvetage"
+ },
+ {
+ "keyword": "brassière de sauvetage",
+ "hasLocution": false,
+ "plural": "brassières de sauvetage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "beach",
+ "summer"
+ ],
+ "synsets": [
+ "02877081-n",
+ "02792510-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "leisure",
+ "outdoor activity",
+ "beach",
+ "summer"
+ ],
+ "_id": 4598,
+ "created": "2008-04-28T13:15:25.000Z",
+ "lastUpdated": "2024-12-11T06:42:02.229Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "buvette",
+ "hasLocution": true,
+ "plural": "Buvette "
+ },
+ {
+ "keyword": "Bar de plage",
+ "plural": "Bars de plage",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "Bar de la plage",
+ "hasLocution": false,
+ "plural": "Bars de la plage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "03079772-n"
+ ],
+ "tags": [
+ "health",
+ "babycare"
+ ],
+ "_id": 4599,
+ "created": "2008-04-28T13:16:06.000Z",
+ "lastUpdated": "2022-12-18T05:36:08.322Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tétine",
+ "hasLocution": true,
+ "plural": "tétines"
+ },
+ {
+ "keyword": "sucette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "sucettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "02166241-a",
+ "07960684-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 4600,
+ "created": "2008-04-28T13:16:46.000Z",
+ "lastUpdated": "2021-04-13T21:23:03.131Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "non-voyante",
+ "hasLocution": false,
+ "plural": "non-voyantes"
+ },
+ {
+ "type": 4,
+ "keyword": "aveugle",
+ "hasLocution": true,
+ "plural": "aveugles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "smoking"
+ ],
+ "synsets": [
+ "03034648-n"
+ ],
+ "tags": [
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "smoking"
+ ],
+ "_id": 4601,
+ "created": "2008-04-28T13:22:24.000Z",
+ "lastUpdated": "2021-04-06T16:36:27.165Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cigarette",
+ "hasLocution": true,
+ "plural": "cigarettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "cinema"
+ ],
+ "synsets": [
+ "03036237-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "scenic art",
+ "cinema",
+ "show"
+ ],
+ "_id": 4602,
+ "created": "2008-04-28T13:22:58.000Z",
+ "lastUpdated": "2021-04-27T09:24:30.826Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cinéma",
+ "hasLocution": true,
+ "plural": "Cinémas "
+ },
+ {
+ "keyword": "Salle de cinéma ",
+ "hasLocution": false,
+ "plural": "Salles de cinéma",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "shape",
+ "geometry",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "13896141-n"
+ ],
+ "tags": [
+ "shape",
+ "mathematics",
+ "geometry",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 4603,
+ "created": "2008-04-28T13:23:25.000Z",
+ "lastUpdated": "2024-12-06T06:55:33.845Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cercle",
+ "hasLocution": true,
+ "plural": "cercles"
+ },
+ {
+ "keyword": "rond",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ronds"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "color",
+ "core vocabulary-communication",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "01912661-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "color",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 4604,
+ "created": "2008-04-28T13:23:59.000Z",
+ "lastUpdated": "2021-04-06T16:35:32.187Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "clair",
+ "hasLocution": true,
+ "plural": "clairs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01133477-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4581,
+ "created": "2008-04-25T13:44:49.000Z",
+ "lastUpdated": "2021-07-15T20:42:59.508Z",
+ "keywords": [
+ {
+ "type": 4,
+ "hasLocution": false,
+ "keyword": "saint ",
+ "plural": "saints "
+ },
+ {
+ "hasLocution": true,
+ "keyword": "bon",
+ "type": 4,
+ "plural": "bons"
+ },
+ {
+ "keyword": "gentil",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "gentils"
+ },
+ {
+ "keyword": "béni",
+ "hasLocution": false,
+ "plural": "bénis",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work accident"
+ ],
+ "synsets": [
+ "01988331-v",
+ "01976312-v",
+ "01988133-v",
+ "00031270-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "work accident"
+ ],
+ "_id": 4582,
+ "created": "2008-04-25T13:45:25.000Z",
+ "lastUpdated": "2021-07-15T20:40:37.142Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tomber",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire une chute",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "beverage"
+ ],
+ "synsets": [
+ "01250274-a",
+ "01252393-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 4583,
+ "created": "2008-04-25T13:46:04.000Z",
+ "lastUpdated": "2021-04-06T16:40:40.333Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "chaud",
+ "hasLocution": true,
+ "plural": "chaud"
+ },
+ {
+ "keyword": "chauffé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "chauffé"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "02922348-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 4605,
+ "created": "2008-04-28T13:40:30.000Z",
+ "lastUpdated": "2021-04-13T21:19:25.762Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "auto-tamponneuse",
+ "hasLocution": false,
+ "plural": "autos-tamponneuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage"
+ ],
+ "synsets": [
+ "01577123-v",
+ "01226565-v",
+ "01219234-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 4606,
+ "created": "2008-04-28T13:41:00.000Z",
+ "lastUpdated": "2021-07-15T20:38:04.602Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Saisir, attraper",
+ "keyword": "prendre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "accrocher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "tenir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "saisir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beach",
+ "summer"
+ ],
+ "synsets": [
+ "02693668-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "beach",
+ "summer"
+ ],
+ "_id": 4607,
+ "created": "2008-04-28T13:42:09.000Z",
+ "lastUpdated": "2024-12-12T08:52:21.178Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "matelas gonflable",
+ "hasLocution": true,
+ "plural": "matelas gonflables"
+ },
+ {
+ "keyword": "matelas pneumatique",
+ "hasLocution": false,
+ "plural": "matelas pneumatiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "playground",
+ "street furniture",
+ "recreational facility",
+ "core vocabulary-place"
+ ],
+ "synsets": [
+ "04378861-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground",
+ "urban area",
+ "street furniture",
+ "core vocabulary"
+ ],
+ "_id": 4608,
+ "created": "2008-04-28T13:42:59.000Z",
+ "lastUpdated": "2021-03-27T21:46:49.511Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balançoire",
+ "hasLocution": true,
+ "plural": "balançoires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01187837-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 4609,
+ "created": "2008-04-28T13:43:40.000Z",
+ "lastUpdated": "2021-07-15T20:37:17.603Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "manger",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déjeuner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "shape",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "13888525-n"
+ ],
+ "tags": [
+ "shape",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 4613,
+ "created": "2008-04-28T13:46:12.000Z",
+ "lastUpdated": "2021-04-06T16:32:03.482Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coeur",
+ "hasLocution": false,
+ "plural": "coeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03821155-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "core vocabulary"
+ ],
+ "_id": 4614,
+ "created": "2008-04-28T13:46:54.000Z",
+ "lastUpdated": "2021-04-06T16:31:48.671Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cravate",
+ "hasLocution": true,
+ "plural": "cravates"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01438878-a",
+ "02395180-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4615,
+ "created": "2008-04-28T13:47:17.000Z",
+ "lastUpdated": "2021-07-18T09:22:30.059Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "court",
+ "hasLocution": true,
+ "plural": "courts"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "shape",
+ "geometry",
+ "core vocabulary-object",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "13901273-n"
+ ],
+ "tags": [
+ "shape",
+ "mathematics",
+ "geometry",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 4616,
+ "created": "2008-04-28T13:49:42.000Z",
+ "lastUpdated": "2021-04-06T16:31:29.631Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "carré",
+ "hasLocution": true,
+ "plural": "carré"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "insect",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "synsets": [
+ "02235990-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "_id": 4617,
+ "created": "2008-04-28T13:51:08.000Z",
+ "lastUpdated": "2021-04-06T16:31:17.523Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cafard",
+ "hasLocution": true,
+ "plural": "cafards"
+ },
+ {
+ "keyword": "blatte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "blattes"
+ },
+ {
+ "keyword": "cancrelat",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cancrelats"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04115362-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 4618,
+ "created": "2008-04-28T13:52:28.000Z",
+ "lastUpdated": "2021-03-27T21:31:04.474Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corde d'escalade",
+ "hasLocution": true,
+ "plural": "cordes d'escalade"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01581901-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 4619,
+ "created": "2008-04-28T13:53:43.000Z",
+ "lastUpdated": "2021-04-06T16:30:01.569Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corbeau",
+ "hasLocution": true,
+ "plural": "corbeaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02332106-a",
+ "02332825-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4620,
+ "created": "2008-04-28T13:54:16.000Z",
+ "lastUpdated": "2021-07-18T09:22:49.291Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "faible",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "paresseux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gambling",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "00509102-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "gambling"
+ ],
+ "_id": 4621,
+ "created": "2008-04-28T13:55:35.000Z",
+ "lastUpdated": "2021-04-13T21:10:51.921Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "billet de loterie",
+ "hasLocution": false,
+ "plural": "billets de loterie"
+ },
+ {
+ "type": 2,
+ "keyword": "loterie",
+ "hasLocution": true,
+ "plural": "loteries"
+ },
+ {
+ "type": 2,
+ "keyword": "loterie nationale ",
+ "hasLocution": false,
+ "plural": "loteries nationales "
+ },
+ {
+ "hasLocution": true,
+ "keyword": "loto",
+ "plural": "lotos",
+ "type": 2
+ },
+ {
+ "keyword": "tombola",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "tombolas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features"
+ ],
+ "synsets": [
+ "00991420-a",
+ "00993331-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features"
+ ],
+ "_id": 4623,
+ "created": "2008-04-29T12:15:48.000Z",
+ "lastUpdated": "2021-07-18T09:22:54.203Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mince",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "maigre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "02035990-a",
+ "05572970-n",
+ "02039393-a"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 4624,
+ "created": "2008-04-29T12:16:19.000Z",
+ "lastUpdated": "2021-07-12T22:05:30.267Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "droite",
+ "hasLocution": true,
+ "plural": "droites"
+ },
+ {
+ "type": 4,
+ "keyword": "droitier",
+ "hasLocution": true,
+ "plural": "droitiers"
+ },
+ {
+ "type": 2,
+ "keyword": "main droite ",
+ "hasLocution": false,
+ "plural": "mains droites"
+ },
+ {
+ "keyword": "droite",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "droites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01188273-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 4625,
+ "created": "2008-04-29T12:17:06.000Z",
+ "lastUpdated": "2021-04-13T21:08:25.806Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prendre le petit déjeuner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prendre le petit-déj",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "event",
+ "feeding",
+ "core vocabulary-time",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07590167-n"
+ ],
+ "tags": [
+ "event",
+ "feeding",
+ "core vocabulary"
+ ],
+ "_id": 4626,
+ "created": "2008-04-29T12:17:47.000Z",
+ "lastUpdated": "2021-04-13T21:07:49.666Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "petit déjeuner",
+ "hasLocution": true,
+ "plural": "petits déjeuners"
+ },
+ {
+ "keyword": "petit-déjeuner",
+ "hasLocution": false,
+ "plural": "petits-déjeuners",
+ "type": 2
+ },
+ {
+ "keyword": "petit-déj",
+ "hasLocution": false,
+ "plural": "petits-déjs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02434815-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4627,
+ "created": "2008-04-29T12:18:26.000Z",
+ "lastUpdated": "2021-04-12T21:29:42.072Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "désordonné",
+ "hasLocution": true,
+ "plural": "désordonnés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02072149-a",
+ "02075123-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 4628,
+ "created": "2008-04-29T12:35:13.000Z",
+ "lastUpdated": "2021-07-18T09:23:13.242Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "inégal",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "différent",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "différent",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "divers",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00748528-a",
+ "02185144-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4629,
+ "created": "2008-04-29T12:36:15.000Z",
+ "lastUpdated": "2021-04-13T21:06:01.079Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "difficile",
+ "hasLocution": true,
+ "plural": "difficiles"
+ },
+ {
+ "type": 4,
+ "keyword": "compliqué ",
+ "hasLocution": false,
+ "plural": "compliqué"
+ },
+ {
+ "keyword": "dur",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "durs"
+ },
+ {
+ "keyword": "complexe",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "complexes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "money",
+ "core vocabulary-knowledge",
+ "trade"
+ ],
+ "synsets": [
+ "13405730-n",
+ "13406050-n",
+ "13683925-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "core vocabulary",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 4630,
+ "created": "2008-04-29T12:37:24.000Z",
+ "lastUpdated": "2024-12-06T06:20:52.718Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "argent",
+ "hasLocution": true,
+ "plural": "argents"
+ },
+ {
+ "keyword": "monnaie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "monnaies"
+ },
+ {
+ "keyword": "fric",
+ "hasLocution": false,
+ "plural": "flics",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "education professionals",
+ "educational organization"
+ ],
+ "synsets": [
+ "10494230-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education",
+ "organization"
+ ],
+ "_id": 4631,
+ "created": "2008-04-29T12:38:09.000Z",
+ "lastUpdated": "2021-07-18T09:24:38.647Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "directeur",
+ "hasLocution": true,
+ "plural": "directeurs"
+ },
+ {
+ "keyword": "principal",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "principaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "food",
+ "categorization",
+ "core vocabulary-feeding",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "07571428-n",
+ "00021445-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "categorization",
+ "core vocabulary"
+ ],
+ "_id": 4610,
+ "created": "2008-04-28T13:44:19.000Z",
+ "lastUpdated": "2021-04-06T16:34:40.772Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nourriture",
+ "hasLocution": true,
+ "plural": "nourritures"
+ },
+ {
+ "type": 2,
+ "keyword": "aliment",
+ "hasLocution": false,
+ "plural": "aliments"
+ },
+ {
+ "type": 2,
+ "keyword": "alimentation",
+ "hasLocution": false,
+ "plural": "alimentations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "event",
+ "food",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "07590641-n",
+ "07591291-n"
+ ],
+ "tags": [
+ "event",
+ "feeding",
+ "food",
+ "core vocabulary"
+ ],
+ "_id": 4611,
+ "created": "2008-04-28T13:45:06.000Z",
+ "lastUpdated": "2021-07-18T11:19:35.031Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "déjeuner",
+ "hasLocution": false,
+ "plural": "déjeuners"
+ },
+ {
+ "keyword": "repas",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beach"
+ ],
+ "synsets": [
+ "01906397-n",
+ "01965958-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 4612,
+ "created": "2008-04-28T13:45:40.000Z",
+ "lastUpdated": "2021-04-06T16:33:16.772Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coquillages",
+ "hasLocution": false,
+ "plural": "coquillages"
+ },
+ {
+ "type": 2,
+ "keyword": "coquilles",
+ "hasLocution": true,
+ "plural": "coquilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "education professionals",
+ "educational organization"
+ ],
+ "synsets": [
+ "10494230-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education",
+ "organization"
+ ],
+ "_id": 4632,
+ "created": "2008-04-29T12:38:48.000Z",
+ "lastUpdated": "2021-07-18T09:24:41.394Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "directrice",
+ "hasLocution": true,
+ "plural": "directrices"
+ },
+ {
+ "keyword": "principale",
+ "hasLocution": false,
+ "plural": "principales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "entertainment facility",
+ "musical art"
+ ],
+ "synsets": [
+ "03211003-n"
+ ],
+ "tags": [
+ "leisure",
+ "place",
+ "facility",
+ "recreational facility",
+ "music"
+ ],
+ "_id": 4633,
+ "created": "2008-04-29T12:41:01.000Z",
+ "lastUpdated": "2021-04-06T16:27:42.080Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "discothèque",
+ "hasLocution": true,
+ "plural": "discothèques"
+ },
+ {
+ "keyword": "boîte de nuit",
+ "hasLocution": false,
+ "plural": "boîtes de nuit",
+ "type": 2
+ },
+ {
+ "keyword": "disco",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "disco"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00775477-v",
+ "00777201-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 4634,
+ "created": "2008-04-29T12:53:04.000Z",
+ "lastUpdated": "2021-04-12T21:31:24.506Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se disputer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "se chamailler",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se quereller",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "circus"
+ ],
+ "synsets": [
+ "10710034-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "circus",
+ "show"
+ ],
+ "_id": 4635,
+ "created": "2008-04-29T13:01:56.000Z",
+ "lastUpdated": "2021-04-06T16:26:06.201Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dompteur",
+ "hasLocution": true,
+ "plural": "dompteurs"
+ },
+ {
+ "keyword": "dresseur",
+ "hasLocution": false,
+ "plural": "dresseurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "taste",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02376904-a",
+ "02346267-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "taste",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4636,
+ "created": "2008-04-29T13:11:17.000Z",
+ "lastUpdated": "2021-04-12T21:32:19.523Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sucré",
+ "hasLocution": true,
+ "plural": "sucrés"
+ },
+ {
+ "keyword": "doux",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "doux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00477115-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 4640,
+ "created": "2008-04-29T13:26:46.000Z",
+ "lastUpdated": "2021-04-06T16:22:44.989Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "allumé",
+ "hasLocution": true,
+ "plural": "allumés"
+ },
+ {
+ "type": 4,
+ "hasLocution": false,
+ "keyword": "éclairé",
+ "plural": "éclairés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "circus"
+ ],
+ "synsets": [
+ "10135603-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "circus",
+ "show"
+ ],
+ "_id": 4641,
+ "created": "2008-04-29T13:27:58.000Z",
+ "lastUpdated": "2021-04-12T21:33:41.335Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "équilibriste",
+ "hasLocution": true,
+ "plural": "équilibristes"
+ },
+ {
+ "keyword": "funambule",
+ "hasLocution": false,
+ "plural": "funambules",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02150244-v",
+ "00427911-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 4642,
+ "created": "2008-04-29T13:28:30.000Z",
+ "lastUpdated": "2021-04-06T16:21:09.558Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "disparaitre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "cacher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se cacher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts"
+ ],
+ "synsets": [
+ "02572618-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 4643,
+ "created": "2008-04-29T13:30:53.000Z",
+ "lastUpdated": "2021-04-06T16:20:46.380Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "étroit",
+ "hasLocution": true,
+ "plural": "étroits"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "shape",
+ "geometry"
+ ],
+ "synsets": [
+ "13904301-n"
+ ],
+ "tags": [
+ "shape",
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 4644,
+ "created": "2008-04-29T13:31:35.000Z",
+ "lastUpdated": "2024-12-06T06:56:42.778Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étoile",
+ "hasLocution": true,
+ "plural": "étoiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02182456-a",
+ "00752852-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4645,
+ "created": "2008-04-29T13:44:10.000Z",
+ "lastUpdated": "2021-04-06T16:20:17.892Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "simple",
+ "hasLocution": true,
+ "plural": "simple"
+ },
+ {
+ "type": 4,
+ "keyword": "facile",
+ "hasLocution": true,
+ "plural": "faciles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "water transport"
+ ],
+ "synsets": [
+ "02817995-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 4646,
+ "created": "2008-04-29T13:44:54.000Z",
+ "lastUpdated": "2021-04-06T16:19:56.574Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "phare",
+ "hasLocution": true,
+ "plural": "phares"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00222548-a",
+ "00224135-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4647,
+ "created": "2008-04-29T13:45:16.000Z",
+ "lastUpdated": "2021-07-15T21:10:56.494Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "laide",
+ "hasLocution": true,
+ "plural": "laides"
+ },
+ {
+ "keyword": "moche",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "moches"
+ },
+ {
+ "keyword": "vilaine",
+ "hasLocution": false,
+ "plural": "vilaines",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00222548-a",
+ "00224135-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4648,
+ "created": "2008-04-29T13:46:04.000Z",
+ "lastUpdated": "2021-04-29T06:43:20.883Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "laid",
+ "hasLocution": true,
+ "plural": "laids"
+ },
+ {
+ "keyword": "moche",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "moches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility",
+ "core vocabulary-place",
+ "core vocabulary-leisure",
+ "popular event"
+ ],
+ "synsets": [
+ "00520389-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "core vocabulary",
+ "event",
+ "popular event"
+ ],
+ "_id": 4649,
+ "created": "2008-04-29T13:47:26.000Z",
+ "lastUpdated": "2024-12-12T07:14:00.867Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "foire",
+ "hasLocution": true,
+ "plural": "foires"
+ },
+ {
+ "keyword": "fête foraine",
+ "hasLocution": false,
+ "plural": "fêtes foraines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "swimming pool",
+ "beach"
+ ],
+ "synsets": [
+ "03668045-n",
+ "09304683-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "swimming pool",
+ "beach"
+ ],
+ "_id": 4650,
+ "created": "2008-04-29T13:48:08.000Z",
+ "lastUpdated": "2021-04-12T21:37:56.840Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouée",
+ "hasLocution": true,
+ "plural": "bouées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "shape",
+ "categorization",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "00028005-n"
+ ],
+ "tags": [
+ "shape",
+ "categorization",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 4651,
+ "created": "2008-04-29T13:49:21.000Z",
+ "lastUpdated": "2022-02-28T15:11:58.215Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "formes",
+ "hasLocution": true,
+ "plural": "formes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "beverage"
+ ],
+ "synsets": [
+ "01254201-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 4652,
+ "created": "2008-04-29T13:49:52.000Z",
+ "lastUpdated": "2021-04-06T16:19:00.904Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "froid",
+ "hasLocution": true,
+ "plural": "froids"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "categorization"
+ ],
+ "synsets": [
+ "13155706-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit",
+ "categorization"
+ ],
+ "_id": 4653,
+ "created": "2008-04-29T13:51:03.000Z",
+ "lastUpdated": "2021-04-06T16:18:43.898Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fruits",
+ "hasLocution": true,
+ "plural": "fruits"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chemistry",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "13502051-n"
+ ],
+ "tags": [
+ "chemistry",
+ "core vocabulary"
+ ],
+ "_id": 4654,
+ "created": "2008-04-29T13:51:29.000Z",
+ "lastUpdated": "2021-04-06T16:17:40.491Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "feu",
+ "hasLocution": true,
+ "plural": "feu"
+ },
+ {
+ "keyword": "flamme",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "flammes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02328781-a",
+ "02329581-s",
+ "00831875-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4655,
+ "created": "2008-04-29T13:51:52.000Z",
+ "lastUpdated": "2021-04-29T06:47:52.817Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fort",
+ "hasLocution": true,
+ "plural": "forts"
+ },
+ {
+ "type": 4,
+ "keyword": "robuste",
+ "hasLocution": true,
+ "plural": "robustes"
+ },
+ {
+ "keyword": "musclé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "musclés"
+ },
+ {
+ "keyword": "costaud",
+ "type": 4,
+ "plural": "costauds",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features"
+ ],
+ "synsets": [
+ "00989218-a",
+ "00990368-s",
+ "00989957-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features"
+ ],
+ "_id": 4656,
+ "created": "2008-04-29T13:52:30.000Z",
+ "lastUpdated": "2021-07-15T21:09:59.902Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "gros",
+ "hasLocution": true,
+ "plural": "gros"
+ },
+ {
+ "type": 4,
+ "keyword": "obèse",
+ "hasLocution": false,
+ "plural": "obèses"
+ },
+ {
+ "type": 4,
+ "keyword": "potelé",
+ "hasLocution": false,
+ "plural": "potelés"
+ },
+ {
+ "type": 4,
+ "keyword": "rondelet",
+ "hasLocution": false,
+ "plural": "rondelets"
+ },
+ {
+ "keyword": "joufflu",
+ "type": 4,
+ "plural": "joufflus",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01529988-n",
+ "01542214-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 4657,
+ "created": "2008-04-29T13:53:48.000Z",
+ "lastUpdated": "2021-04-06T16:17:10.772Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moineau",
+ "hasLocution": true,
+ "plural": "moineaux"
+ },
+ {
+ "keyword": "passereau",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "passereau"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "texture",
+ "core vocabulary-communication",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "01154418-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "texture",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 4637,
+ "created": "2008-04-29T13:11:49.000Z",
+ "lastUpdated": "2021-04-06T16:25:16.429Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "dur",
+ "hasLocution": true,
+ "plural": "durs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01875972-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 4638,
+ "created": "2008-04-29T13:24:43.000Z",
+ "lastUpdated": "2021-04-06T16:23:58.811Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "pousser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "02765572-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 4639,
+ "created": "2008-04-29T13:25:53.000Z",
+ "lastUpdated": "2021-04-06T16:23:28.316Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "allumer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "éclairer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "size",
+ "core vocabulary-communication",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "01385012-a",
+ "01398335-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "size",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 4658,
+ "created": "2008-04-29T13:54:10.000Z",
+ "lastUpdated": "2021-07-15T21:09:03.179Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "grand",
+ "hasLocution": true,
+ "plural": "grands"
+ },
+ {
+ "type": 4,
+ "keyword": "plus grand",
+ "hasLocution": true,
+ "plural": "plus grands"
+ },
+ {
+ "keyword": "large",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "larges"
+ },
+ {
+ "keyword": "gros",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "gros"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00221674-s",
+ "00219320-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4659,
+ "created": "2008-04-29T13:54:32.000Z",
+ "lastUpdated": "2021-04-29T06:49:52.357Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "jolie",
+ "hasLocution": true,
+ "plural": "jolies"
+ },
+ {
+ "type": 4,
+ "keyword": "belle",
+ "hasLocution": true,
+ "plural": "belles"
+ },
+ {
+ "keyword": "mignonne",
+ "plural": "mignonnes",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00220542-s",
+ "00219320-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4660,
+ "created": "2008-05-06T09:34:00.000Z",
+ "lastUpdated": "2021-04-29T06:50:19.116Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "beau",
+ "hasLocution": true,
+ "plural": "beaux"
+ },
+ {
+ "keyword": "joli",
+ "type": 4,
+ "plural": "jolis",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mignon",
+ "type": 4,
+ "plural": "mignonnes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07737201-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 4661,
+ "created": "2008-05-06T09:34:44.000Z",
+ "lastUpdated": "2021-04-06T16:16:18.349Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piment",
+ "hasLocution": false,
+ "plural": "piments"
+ },
+ {
+ "keyword": "piment fort",
+ "hasLocution": false,
+ "plural": "piments forts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media device"
+ ],
+ "synsets": [
+ "00965602-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media"
+ ],
+ "_id": 4662,
+ "created": "2008-05-06T09:35:29.000Z",
+ "lastUpdated": "2021-04-29T06:51:02.859Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "parler au téléphone",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bavarder au téléphone",
+ "hasLocution": false
+ },
+ {
+ "keyword": "discuter au téléphone",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "money"
+ ],
+ "synsets": [
+ "03941611-n",
+ "04146942-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "economy",
+ "money"
+ ],
+ "_id": 4666,
+ "created": "2008-05-06T09:38:33.000Z",
+ "lastUpdated": "2021-04-08T19:42:20.470Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tirelire",
+ "hasLocution": true,
+ "plural": "tirelires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00893124-a",
+ "01413922-a",
+ "00148422-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 4667,
+ "created": "2008-05-06T09:40:12.000Z",
+ "lastUpdated": "2021-07-15T21:06:14.336Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "égal",
+ "hasLocution": true,
+ "plural": "égaux"
+ },
+ {
+ "type": 4,
+ "keyword": "pareil",
+ "hasLocution": false,
+ "plural": "pareils"
+ },
+ {
+ "type": 4,
+ "keyword": "même",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "tel",
+ "hasLocution": true,
+ "plural": "tels"
+ },
+ {
+ "keyword": "similaire",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "similaires"
+ },
+ {
+ "keyword": "semblable",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "semblables"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building"
+ ],
+ "synsets": [
+ "07317454-n"
+ ],
+ "tags": [
+ "place",
+ "building"
+ ],
+ "_id": 4668,
+ "created": "2008-05-06T09:40:49.000Z",
+ "lastUpdated": "2024-12-12T07:29:43.788Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "incendie",
+ "hasLocution": true,
+ "plural": "incendies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural disaster"
+ ],
+ "synsets": [
+ "11475008-n",
+ "01260222-n",
+ "00330645-n",
+ "00217578-v",
+ "07363899-n"
+ ],
+ "tags": [
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 4669,
+ "created": "2008-05-06T09:42:11.000Z",
+ "lastUpdated": "2021-06-09T08:51:14.739Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "inondation",
+ "hasLocution": true,
+ "plural": "inondations"
+ },
+ {
+ "keyword": "tsunami",
+ "hasLocution": false,
+ "plural": "tsunamis",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "crue",
+ "type": 2,
+ "plural": "crues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "01924925-v",
+ "01908923-v",
+ "10616097-n",
+ "10195742-n",
+ "00312635-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 4670,
+ "created": "2008-05-06T09:47:24.000Z",
+ "lastUpdated": "2021-07-18T09:25:17.819Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "excursion",
+ "hasLocution": true,
+ "plural": "excursions"
+ },
+ {
+ "type": 3,
+ "keyword": "partir en excursion",
+ "hasLocution": true
+ },
+ {
+ "keyword": "randonnée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "randonnées"
+ },
+ {
+ "keyword": "randonner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "movement",
+ "land transport"
+ ],
+ "synsets": [
+ "01849662-v",
+ "01846997-v",
+ "01839438-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 4671,
+ "created": "2008-05-06T09:48:56.000Z",
+ "lastUpdated": "2021-07-15T21:04:51.593Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voyager",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "aller en excursion en autobus",
+ "hasLocution": true
+ },
+ {
+ "keyword": "partir en voyage",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "02040360-a",
+ "05573181-n",
+ "02036545-a"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 4672,
+ "created": "2008-05-06T09:49:33.000Z",
+ "lastUpdated": "2021-07-12T20:16:51.228Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "gauche",
+ "hasLocution": true,
+ "plural": "gauches"
+ },
+ {
+ "keyword": "gaucher",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "gauchers"
+ },
+ {
+ "keyword": "main gauche",
+ "hasLocution": false,
+ "plural": "mains gauches",
+ "type": 2
+ },
+ {
+ "keyword": "gauche",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "gauches"
+ },
+ {
+ "keyword": "gaucher",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gauchers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "teenager",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "09791452-n",
+ "01651383-a"
+ ],
+ "tags": [
+ "person",
+ "teenager",
+ "core vocabulary"
+ ],
+ "_id": 4673,
+ "created": "2008-05-06T09:53:23.000Z",
+ "lastUpdated": "2021-04-29T06:53:12.829Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "jeune",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "adolescent",
+ "hasLocution": true,
+ "plural": "adolescents"
+ },
+ {
+ "keyword": "jeune",
+ "type": 2,
+ "plural": "jeunes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "10727453-n",
+ "09856476-n",
+ "09857683-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4674,
+ "created": "2008-05-06T09:54:46.000Z",
+ "lastUpdated": "2024-12-09T11:47:19.820Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voleur",
+ "hasLocution": true,
+ "plural": "voleurs"
+ },
+ {
+ "type": 2,
+ "keyword": "bandit",
+ "hasLocution": true,
+ "plural": "bandits"
+ },
+ {
+ "keyword": "cambrioleur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cambrioleurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01436368-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4675,
+ "created": "2008-05-06T09:55:21.000Z",
+ "lastUpdated": "2021-07-15T21:03:38.398Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "long",
+ "hasLocution": true,
+ "plural": "longs"
+ },
+ {
+ "keyword": "grand",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "grands"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "core vocabulary-communication",
+ "adverb of manner"
+ ],
+ "synsets": [
+ "00983718-a",
+ "00162829-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary",
+ "adverb",
+ "adverb of manner"
+ ],
+ "_id": 4676,
+ "created": "2008-05-06T09:55:53.000Z",
+ "lastUpdated": "2024-10-23T11:08:41.554Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "lent",
+ "hasLocution": true,
+ "plural": "lents"
+ },
+ {
+ "type": 4,
+ "keyword": "doucement",
+ "hasLocution": true
+ },
+ {
+ "keyword": "lentement",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "tranquillement",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "furniture"
+ ],
+ "synsets": [
+ "01986058-v",
+ "01371262-v",
+ "01549550-v",
+ "01987278-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "furniture"
+ ],
+ "_id": 4677,
+ "created": "2008-05-06T09:59:36.000Z",
+ "lastUpdated": "2021-07-15T21:01:44.181Z",
+ "keywords": [
+ {
+ "keyword": "se lever de la chaise",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "financial services"
+ ],
+ "synsets": [
+ "13435332-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "work",
+ "tertiary sector",
+ "financial services"
+ ],
+ "_id": 4678,
+ "created": "2008-05-06T10:00:14.000Z",
+ "lastUpdated": "2021-04-12T21:48:06.631Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "livret de banque",
+ "plural": "livrets de banque"
+ },
+ {
+ "keyword": "livret bancaire",
+ "hasLocution": false,
+ "plural": "livrets bancaires",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "livret",
+ "type": 2,
+ "plural": "livrets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01189951-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4679,
+ "created": "2008-05-06T10:00:47.000Z",
+ "lastUpdated": "2021-04-08T19:50:54.700Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "léger",
+ "hasLocution": true,
+ "plural": "légers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "clothes"
+ ],
+ "synsets": [
+ "00418932-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 4680,
+ "created": "2008-05-06T10:01:18.000Z",
+ "lastUpdated": "2021-04-08T19:50:02.217Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "propre",
+ "hasLocution": true,
+ "plural": "propres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "13890262-n",
+ "02322682-a",
+ "08610818-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 4681,
+ "created": "2008-05-06T10:03:28.000Z",
+ "lastUpdated": "2021-04-08T19:49:45.933Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ligne courbe",
+ "hasLocution": true,
+ "plural": "lignes courbes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "00914876-s",
+ "02322682-a",
+ "08610818-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 4682,
+ "created": "2008-05-06T10:06:06.000Z",
+ "lastUpdated": "2021-04-08T19:49:23.338Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ligne ondulée",
+ "hasLocution": true,
+ "plural": "ligne ondulées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "02319224-a",
+ "08610818-n",
+ "01967858-s"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 4683,
+ "created": "2008-05-06T10:07:39.000Z",
+ "lastUpdated": "2021-04-08T19:49:08.880Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ligne cassée",
+ "hasLocution": true,
+ "plural": "lignes cassées"
+ },
+ {
+ "keyword": "ligne en zig-zag",
+ "hasLocution": false,
+ "plural": "lignes en zig-zag",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mountain"
+ ],
+ "synsets": [
+ "07318203-n",
+ "07317953-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 4664,
+ "created": "2008-05-06T09:37:23.000Z",
+ "lastUpdated": "2021-04-12T21:41:31.367Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "feu de joie",
+ "hasLocution": true,
+ "plural": "feux de joie"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "feu de camp",
+ "plural": "feux de camp"
+ },
+ {
+ "keyword": "feu",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "feux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "shape",
+ "geometry"
+ ],
+ "synsets": [
+ "13904933-n"
+ ],
+ "tags": [
+ "shape",
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 4663,
+ "created": "2008-05-06T09:36:50.000Z",
+ "lastUpdated": "2021-04-06T16:14:35.093Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hexagone",
+ "hasLocution": true,
+ "plural": "hexagones"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "13892630-n",
+ "08610818-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 4684,
+ "created": "2008-05-06T10:08:48.000Z",
+ "lastUpdated": "2021-04-08T19:47:52.187Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ligne",
+ "hasLocution": true,
+ "plural": "lignes"
+ },
+ {
+ "type": 2,
+ "keyword": "ligne droite",
+ "hasLocution": true,
+ "plural": "lignes droites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "texture",
+ "core vocabulary-communication",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "02244586-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "texture",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 4685,
+ "created": "2008-05-06T10:32:29.000Z",
+ "lastUpdated": "2021-07-15T21:00:25.078Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "lisse",
+ "hasLocution": true,
+ "plural": "lisses"
+ },
+ {
+ "keyword": "plat",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "plats"
+ },
+ {
+ "keyword": "doux",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "doux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00915018-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 4686,
+ "created": "2008-05-06T10:33:55.000Z",
+ "lastUpdated": "2021-07-18T09:25:24.824Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "crier",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "appeler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "vociférer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "building facility"
+ ],
+ "synsets": [
+ "01417121-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 4687,
+ "created": "2008-05-06T10:35:32.000Z",
+ "lastUpdated": "2021-04-08T19:53:50.967Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frapper",
+ "hasLocution": false
+ },
+ {
+ "keyword": "taper",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "heurter",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "cogner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "10306910-n",
+ "02474924-n",
+ "05224944-n"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 4665,
+ "created": "2008-05-06T09:38:04.000Z",
+ "lastUpdated": "2021-07-15T21:07:00.770Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "homme",
+ "hasLocution": true,
+ "plural": "hommes"
+ },
+ {
+ "keyword": "homme adulte",
+ "plural": "hommes adultes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts"
+ ],
+ "synsets": [
+ "01086845-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 4688,
+ "created": "2008-05-06T10:36:36.000Z",
+ "lastUpdated": "2021-04-08T19:53:02.674Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "plein",
+ "hasLocution": true,
+ "plural": "pleins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building"
+ ],
+ "synsets": [
+ "03666235-n",
+ "15163560-n",
+ "04126572-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture"
+ ],
+ "_id": 4689,
+ "created": "2008-05-06T10:38:03.000Z",
+ "lastUpdated": "2021-04-08T19:54:13.833Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ludothèque",
+ "hasLocution": true,
+ "plural": "ludothèques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "smoking",
+ "utensil"
+ ],
+ "synsets": [
+ "03671917-n"
+ ],
+ "tags": [
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "smoking",
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 4692,
+ "created": "2008-05-06T10:41:09.000Z",
+ "lastUpdated": "2021-04-08T19:55:56.151Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "briquet",
+ "hasLocution": true,
+ "plural": "briquets"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "size",
+ "core vocabulary-communication",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "02231517-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "size",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 4693,
+ "created": "2008-05-06T10:41:44.000Z",
+ "lastUpdated": "2021-07-18T09:25:50.307Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "moyen",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01129296-a",
+ "02523798-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4690,
+ "created": "2008-05-06T10:38:43.000Z",
+ "lastUpdated": "2021-07-18T09:25:43.039Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mauvais",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "méchant",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "scélérat",
+ "hasLocution": true
+ },
+ {
+ "keyword": "diabolique",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01159300-v",
+ "01175702-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 4694,
+ "created": "2008-05-06T10:43:18.000Z",
+ "lastUpdated": "2021-07-18T11:19:40.761Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "goûter",
+ "hasLocution": true,
+ "plural": "goûters"
+ },
+ {
+ "keyword": "en-cas",
+ "hasLocution": true,
+ "plural": "en-cas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "event",
+ "feeding",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "07591075-n",
+ "07592939-n"
+ ],
+ "tags": [
+ "event",
+ "feeding",
+ "core vocabulary"
+ ],
+ "_id": 4695,
+ "created": "2008-05-06T10:48:33.000Z",
+ "lastUpdated": "2021-09-29T10:33:02.833Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "goûter",
+ "hasLocution": true,
+ "plural": "goûters"
+ },
+ {
+ "keyword": "en-cas",
+ "hasLocution": true,
+ "plural": "en-cas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mountain"
+ ],
+ "synsets": [
+ "02772753-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 4696,
+ "created": "2008-05-06T10:49:17.000Z",
+ "lastUpdated": "2021-04-12T21:49:28.033Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sac à dos",
+ "hasLocution": true,
+ "plural": "sacs à dos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02558087-a",
+ "00216642-v",
+ "00215377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4697,
+ "created": "2008-05-06T10:49:53.000Z",
+ "lastUpdated": "2024-12-12T15:49:45.103Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mouillé",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "mouiller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "trempé",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "tremper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media device",
+ "mass media"
+ ],
+ "synsets": [
+ "00791110-v",
+ "00678054-v",
+ "00791970-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media"
+ ],
+ "_id": 4691,
+ "created": "2008-05-06T10:40:24.000Z",
+ "lastUpdated": "2024-12-19T06:53:25.211Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "téléphoner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "numéroter"
+ },
+ {
+ "keyword": "appeler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "04032893-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 4698,
+ "created": "2008-05-06T10:50:26.000Z",
+ "lastUpdated": "2021-04-07T00:50:57.067Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "porte-monnaie",
+ "hasLocution": true,
+ "plural": "porte-monnaies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01448551-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 4700,
+ "created": "2008-05-06T10:51:45.000Z",
+ "lastUpdated": "2021-04-07T00:48:27.811Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mordre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "00153897-s",
+ "00153123-s"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 4702,
+ "created": "2008-05-06T10:53:51.000Z",
+ "lastUpdated": "2021-07-18T09:27:23.749Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "muet",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "10807146-n"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 4703,
+ "created": "2008-05-06T10:54:32.000Z",
+ "lastUpdated": "2021-04-12T21:50:19.018Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "femme",
+ "hasLocution": true,
+ "plural": "femmes"
+ },
+ {
+ "keyword": "dame",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dames"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "03334247-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 4704,
+ "created": "2008-05-06T10:55:42.000Z",
+ "lastUpdated": "2021-04-08T19:57:14.902Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grande roue",
+ "hasLocution": true,
+ "plural": "grandes roues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01645077-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4705,
+ "created": "2008-05-06T11:18:24.000Z",
+ "lastUpdated": "2021-04-08T19:58:05.607Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "nouveau",
+ "hasLocution": true,
+ "plural": "nouveaux"
+ },
+ {
+ "keyword": "neuf",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "neuf"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "mountain"
+ ],
+ "synsets": [
+ "02964126-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 4701,
+ "created": "2008-05-06T10:53:11.000Z",
+ "lastUpdated": "2021-04-07T00:48:00.554Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mousqueton",
+ "hasLocution": true,
+ "plural": "mousquetons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sea and oceans",
+ "beach"
+ ],
+ "synsets": [
+ "07366790-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 4706,
+ "created": "2008-05-06T11:18:57.000Z",
+ "lastUpdated": "2022-07-04T06:38:39.362Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "vague",
+ "hasLocution": true,
+ "plural": "vagues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "04109500-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 4699,
+ "created": "2008-05-06T10:51:12.000Z",
+ "lastUpdated": "2021-04-07T00:49:25.573Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "montagne russe",
+ "hasLocution": true,
+ "plural": "montagnes russes"
+ },
+ {
+ "keyword": "grand huit",
+ "hasLocution": false,
+ "plural": "grands huit",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02432057-s",
+ "01685687-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4707,
+ "created": "2008-05-06T11:20:14.000Z",
+ "lastUpdated": "2021-04-12T21:50:34.133Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "rangé",
+ "hasLocution": false,
+ "plural": "rangés"
+ },
+ {
+ "keyword": "ordonné",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "ordonnés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "shape",
+ "geometry"
+ ],
+ "synsets": [
+ "13900945-n",
+ "02053619-s"
+ ],
+ "tags": [
+ "shape",
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 4711,
+ "created": "2008-05-06T11:25:15.000Z",
+ "lastUpdated": "2021-04-08T20:44:22.803Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ovale",
+ "hasLocution": true,
+ "plural": "ovales"
+ },
+ {
+ "keyword": "ovale",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "ovale"
+ },
+ {
+ "keyword": "ellipse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ellipses"
+ },
+ {
+ "keyword": "elliptique",
+ "hasLocution": false,
+ "plural": "elliptiques",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "fashion",
+ "clothes"
+ ],
+ "synsets": [
+ "02886446-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "clothes"
+ ],
+ "_id": 4712,
+ "created": "2008-05-06T11:25:57.000Z",
+ "lastUpdated": "2024-12-11T07:03:14.396Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "noeud papillon",
+ "hasLocution": false,
+ "plural": "noeuds papillons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "color",
+ "core vocabulary-communication",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "00273948-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "color",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 4710,
+ "created": "2008-05-06T11:24:49.000Z",
+ "lastUpdated": "2021-04-08T20:01:06.988Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sombre",
+ "hasLocution": true,
+ "plural": "sombres"
+ },
+ {
+ "keyword": "foncé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "foncés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport",
+ "beach"
+ ],
+ "synsets": [
+ "02861626-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 4713,
+ "created": "2008-05-06T11:34:07.000Z",
+ "lastUpdated": "2022-07-04T06:44:23.671Z",
+ "keywords": [
+ {
+ "keyword": "pédalo",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pédalos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "gender violence"
+ ],
+ "synsets": [
+ "01402698-v",
+ "01122487-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "gender violence"
+ ],
+ "_id": 4714,
+ "created": "2008-05-06T11:35:36.000Z",
+ "lastUpdated": "2021-07-18T11:19:44.242Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "donner un coup",
+ "hasLocution": true
+ },
+ {
+ "keyword": "frapper",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "attaquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "shape",
+ "geometry"
+ ],
+ "synsets": [
+ "13904858-n"
+ ],
+ "tags": [
+ "shape",
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 4715,
+ "created": "2008-05-06T11:36:34.000Z",
+ "lastUpdated": "2021-04-08T20:38:33.237Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pentagone",
+ "hasLocution": true,
+ "plural": "pentagones"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "size",
+ "core vocabulary-communication",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "01394303-a",
+ "01395201-s",
+ "01397927-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "size",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 4716,
+ "created": "2008-05-06T11:37:06.000Z",
+ "lastUpdated": "2021-07-18T09:28:39.427Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "petit",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "inférieur",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "petite",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "measurement unit"
+ ],
+ "synsets": [
+ "02710678-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mathematics",
+ "measurement unit"
+ ],
+ "_id": 4717,
+ "created": "2008-05-06T12:25:08.000Z",
+ "lastUpdated": "2021-04-08T20:38:16.461Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "peser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "fishing"
+ ],
+ "synsets": [
+ "10113427-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 4718,
+ "created": "2008-05-06T12:27:37.000Z",
+ "lastUpdated": "2021-04-08T20:45:20.725Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pêcheur",
+ "hasLocution": true,
+ "plural": "pêcheurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "taste",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02406317-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "taste",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4719,
+ "created": "2008-05-06T12:28:07.000Z",
+ "lastUpdated": "2021-04-08T20:46:30.528Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "piquant",
+ "hasLocution": true,
+ "plural": "piquants"
+ },
+ {
+ "keyword": "pimenté",
+ "hasLocution": false,
+ "plural": "pimentés",
+ "type": 4
+ },
+ {
+ "keyword": "épicé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "épicés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "09988375-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 4708,
+ "created": "2008-05-06T11:23:28.000Z",
+ "lastUpdated": "2021-07-18T09:27:56.179Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conseiller",
+ "hasLocution": true,
+ "plural": "conseillers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "insect",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "synsets": [
+ "01463787-n",
+ "02186509-n",
+ "02187241-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "_id": 4720,
+ "created": "2008-05-06T12:29:31.000Z",
+ "lastUpdated": "2021-04-08T20:48:48.128Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pou",
+ "hasLocution": true,
+ "plural": "poux"
+ },
+ {
+ "type": 2,
+ "keyword": "lente",
+ "hasLocution": true,
+ "plural": "lentes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "mountain"
+ ],
+ "synsets": [
+ "03561859-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 4721,
+ "created": "2008-05-06T12:30:36.000Z",
+ "lastUpdated": "2022-02-14T10:26:21.133Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piolet",
+ "hasLocution": true,
+ "plural": "piolets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "smoking"
+ ],
+ "synsets": [
+ "03951443-n"
+ ],
+ "tags": [
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "smoking"
+ ],
+ "_id": 4722,
+ "created": "2008-05-06T12:32:53.000Z",
+ "lastUpdated": "2021-04-08T20:50:48.361Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pipe",
+ "hasLocution": true,
+ "plural": "pipes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "economy"
+ ],
+ "synsets": [
+ "07964900-n",
+ "10201821-n",
+ "09866418-n",
+ "02030204-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "economy"
+ ],
+ "_id": 4723,
+ "created": "2008-05-06T12:33:31.000Z",
+ "lastUpdated": "2021-07-18T09:29:22.359Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "pauvre",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mendiant",
+ "hasLocution": true,
+ "plural": "mendiants"
+ },
+ {
+ "type": 2,
+ "keyword": "indigent",
+ "hasLocution": true,
+ "plural": "indigents"
+ },
+ {
+ "keyword": "SDF",
+ "hasLocution": false,
+ "plural": "SDFs",
+ "type": 2
+ },
+ {
+ "keyword": "sans domicile",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "10495671-n",
+ "09982445-n"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 4725,
+ "created": "2008-05-06T12:35:54.000Z",
+ "lastUpdated": "2021-07-18T09:29:56.860Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prisonnier",
+ "hasLocution": true,
+ "plural": "prisonniers"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "captif",
+ "plural": "captifs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective"
+ ],
+ "synsets": [
+ "01014459-a",
+ "02209716-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective"
+ ],
+ "_id": 4726,
+ "created": "2008-05-06T12:36:32.000Z",
+ "lastUpdated": "2021-07-18T09:30:03.680Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "premier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "insect",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "synsets": [
+ "02188805-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "terrestrial animal"
+ ],
+ "_id": 4727,
+ "created": "2008-05-06T12:39:55.000Z",
+ "lastUpdated": "2021-04-08T20:51:51.196Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "puce",
+ "hasLocution": true,
+ "plural": "puces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "02385089-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 4724,
+ "created": "2008-05-06T12:34:37.000Z",
+ "lastUpdated": "2021-07-18T09:29:46.509Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tour de poney",
+ "hasLocution": false,
+ "plural": "tours de poney"
+ },
+ {
+ "keyword": "manège de poney",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "manèges de poney"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "smoking"
+ ],
+ "synsets": [
+ "03034020-n"
+ ],
+ "tags": [
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "smoking"
+ ],
+ "_id": 4728,
+ "created": "2008-05-06T12:41:12.000Z",
+ "lastUpdated": "2021-04-08T20:52:55.385Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cigare",
+ "hasLocution": true,
+ "plural": "cigares"
+ },
+ {
+ "keyword": "havane",
+ "hasLocution": false,
+ "plural": "havanes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "football"
+ ],
+ "synsets": [
+ "00507669-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "leisure",
+ "sport",
+ "football"
+ ],
+ "_id": 4729,
+ "created": "2008-05-06T12:42:29.000Z",
+ "lastUpdated": "2021-07-18T09:30:21.907Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "loto foot",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "pari",
+ "hasLocution": true,
+ "plural": "paris"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "09988375-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 4709,
+ "created": "2008-05-06T11:24:04.000Z",
+ "lastUpdated": "2021-07-18T09:28:03.305Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conseillère",
+ "hasLocution": true,
+ "plural": "conseillères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "economy"
+ ],
+ "synsets": [
+ "02029118-a",
+ "02029380-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "economy"
+ ],
+ "_id": 4733,
+ "created": "2008-05-06T13:17:30.000Z",
+ "lastUpdated": "2021-04-08T20:59:05.454Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "riche",
+ "hasLocution": true,
+ "plural": "riches"
+ },
+ {
+ "type": 4,
+ "keyword": "millionaire",
+ "hasLocution": true,
+ "plural": "millionaires"
+ },
+ {
+ "keyword": "fortuné",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "fortunés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "shape",
+ "geometry",
+ "core vocabulary-object",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "13905618-n"
+ ],
+ "tags": [
+ "shape",
+ "mathematics",
+ "geometry",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 4734,
+ "created": "2008-05-06T13:18:01.000Z",
+ "lastUpdated": "2021-04-06T17:44:32.193Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "losange",
+ "hasLocution": true,
+ "plural": "losanges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07943437-n",
+ "07943752-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 4732,
+ "created": "2008-05-06T13:16:54.000Z",
+ "lastUpdated": "2021-04-08T20:56:39.754Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boisson gazeuse",
+ "hasLocution": false,
+ "plural": "boissons gazeuses"
+ },
+ {
+ "keyword": "soda",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sodas"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "shape",
+ "geometry",
+ "core vocabulary-object",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "13906003-n"
+ ],
+ "tags": [
+ "shape",
+ "mathematics",
+ "geometry",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 4731,
+ "created": "2008-05-06T13:14:56.000Z",
+ "lastUpdated": "2021-04-08T20:54:32.451Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "rectangle",
+ "hasLocution": true,
+ "plural": "rectangles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "mountain",
+ "core vocabulary-leisure",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "04242966-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 4738,
+ "created": "2008-05-06T13:20:20.000Z",
+ "lastUpdated": "2024-12-07T15:42:04.613Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sac de couchage",
+ "hasLocution": true,
+ "plural": "sacs de couchage"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "duvet",
+ "plural": "duvet"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "taste",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02407497-s",
+ "01076999-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "taste",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4739,
+ "created": "2008-05-06T13:21:15.000Z",
+ "lastUpdated": "2021-04-08T20:59:37.244Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "salé",
+ "hasLocution": true,
+ "plural": "salés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "texture"
+ ],
+ "synsets": [
+ "01362777-a",
+ "02246206-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "texture"
+ ],
+ "_id": 4737,
+ "created": "2008-05-06T13:19:54.000Z",
+ "lastUpdated": "2021-07-18T09:31:52.746Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "rugueux",
+ "hasLocution": true
+ },
+ {
+ "keyword": "froissé",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "bosselé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00335806-v",
+ "01576346-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 4735,
+ "created": "2008-05-06T13:18:30.000Z",
+ "lastUpdated": "2021-07-18T09:30:59.327Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mettre quelque chose en morceaux par choc, par pression, le briser",
+ "keyword": "casser",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bris",
+ "hasLocution": false,
+ "plural": "bris"
+ },
+ {
+ "keyword": "briser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "education professionals",
+ "educational organization"
+ ],
+ "synsets": [
+ "10589463-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education",
+ "organization"
+ ],
+ "_id": 4742,
+ "created": "2008-05-06T13:22:53.000Z",
+ "lastUpdated": "2021-04-08T20:59:55.352Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "secrétaire",
+ "hasLocution": true,
+ "plural": "secrétaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00219829-v",
+ "02562150-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4741,
+ "created": "2008-05-06T13:22:14.000Z",
+ "lastUpdated": "2021-07-18T09:32:30.948Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sec",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "sécher les vêtements",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "education professionals",
+ "educational organization"
+ ],
+ "synsets": [
+ "10589463-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education",
+ "organization"
+ ],
+ "_id": 4743,
+ "created": "2008-05-06T13:24:01.000Z",
+ "lastUpdated": "2021-04-08T21:00:10.839Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "secrétaire",
+ "hasLocution": true,
+ "plural": "secrétaires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "10807146-n",
+ "06352801-n",
+ "10262834-n",
+ "04226344-n"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 4745,
+ "created": "2008-05-06T13:26:31.000Z",
+ "lastUpdated": "2021-07-18T09:33:39.668Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "madame",
+ "hasLocution": true,
+ "plural": "mesdames"
+ },
+ {
+ "keyword": "silhouette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "silhouettes"
+ },
+ {
+ "keyword": "femme",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "femmes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beach"
+ ],
+ "synsets": [
+ "02766906-n",
+ "03895568-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 4746,
+ "created": "2008-05-06T13:27:58.000Z",
+ "lastUpdated": "2021-04-06T17:42:03.278Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parasol",
+ "hasLocution": true,
+ "plural": "parasols"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "10306910-n",
+ "10620859-n",
+ "04226344-n"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 4744,
+ "created": "2008-05-06T13:25:22.000Z",
+ "lastUpdated": "2021-07-18T09:33:11.751Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "monsieur",
+ "hasLocution": true,
+ "plural": "messieurs"
+ },
+ {
+ "keyword": "silhouette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "silhouette"
+ },
+ {
+ "keyword": "homme",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "hommes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "00685207-a"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 4748,
+ "created": "2008-05-06T13:39:09.000Z",
+ "lastUpdated": "2021-04-06T17:41:28.244Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sourd",
+ "hasLocution": true,
+ "plural": "sourds"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "00685207-a"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 4749,
+ "created": "2008-05-06T13:40:08.000Z",
+ "lastUpdated": "2021-04-06T17:41:10.469Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sourd",
+ "hasLocution": true,
+ "plural": "sourd"
+ },
+ {
+ "keyword": "sourd-muet",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "sourds-muets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "00007012-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 4747,
+ "created": "2008-05-06T13:28:31.000Z",
+ "lastUpdated": "2021-04-08T21:02:35.035Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "souffler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "éteindre",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "clothes"
+ ],
+ "synsets": [
+ "00420808-a",
+ "00403065-a",
+ "00423109-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 4750,
+ "created": "2008-05-06T13:40:37.000Z",
+ "lastUpdated": "2021-07-18T09:34:10.568Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sale",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "taché",
+ "hasLocution": true
+ },
+ {
+ "keyword": "dégoutant",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "financial services"
+ ],
+ "synsets": [
+ "13397185-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "work",
+ "tertiary sector",
+ "financial services"
+ ],
+ "_id": 4751,
+ "created": "2008-05-06T13:42:50.000Z",
+ "lastUpdated": "2021-04-06T17:40:24.973Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carte bancaire",
+ "hasLocution": true,
+ "plural": "cartes bancaires"
+ },
+ {
+ "type": 2,
+ "keyword": "carte de paiement",
+ "hasLocution": false,
+ "plural": "cartes de paiement"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04370646-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 4752,
+ "created": "2008-05-06T13:43:41.000Z",
+ "lastUpdated": "2021-04-08T21:03:23.969Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "planche de surf",
+ "hasLocution": true,
+ "plural": "planches de surf"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport",
+ "beach",
+ "summer"
+ ],
+ "synsets": [
+ "01952309-v"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "leisure",
+ "outdoor activity",
+ "beach",
+ "summer"
+ ],
+ "_id": 4753,
+ "created": "2008-05-06T13:46:51.000Z",
+ "lastUpdated": "2024-12-12T16:04:31.753Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "planche à voile",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "planche",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "windsurf",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00289948-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4736,
+ "created": "2008-05-06T13:18:59.000Z",
+ "lastUpdated": "2021-04-06T17:43:26.946Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "cassé",
+ "hasLocution": true,
+ "plural": "cassés"
+ },
+ {
+ "keyword": "brisé",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "brisé"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "theater",
+ "show",
+ "playground"
+ ],
+ "synsets": [
+ "07032747-n"
+ ],
+ "tags": [
+ "scenic art",
+ "theater",
+ "show",
+ "leisure",
+ "work",
+ "place",
+ "facility",
+ "recreational facility",
+ "playground"
+ ],
+ "_id": 4754,
+ "created": "2008-05-08T09:52:31.000Z",
+ "lastUpdated": "2021-07-18T09:34:39.567Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "théâtre de marionnettes",
+ "hasLocution": true,
+ "plural": "théâtres de marionnettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural disaster"
+ ],
+ "synsets": [
+ "07443554-n",
+ "11454130-n",
+ "07329438-n",
+ "07444084-n"
+ ],
+ "tags": [
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 4755,
+ "created": "2008-05-08T09:53:08.000Z",
+ "lastUpdated": "2021-07-18T09:35:16.012Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tremblement de terre",
+ "hasLocution": true,
+ "plural": "tremblements de terre"
+ },
+ {
+ "type": 2,
+ "keyword": "séisme",
+ "hasLocution": true,
+ "plural": "séismes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau",
+ "beach"
+ ],
+ "synsets": [
+ "04466597-n",
+ "02817563-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 4758,
+ "created": "2008-05-08T10:04:46.000Z",
+ "lastUpdated": "2021-04-06T17:38:51.311Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "serviette de bain",
+ "hasLocution": true,
+ "plural": "serviettes de bain"
+ },
+ {
+ "type": 2,
+ "keyword": "serviette de plage",
+ "hasLocution": true,
+ "plural": "serviettes de plage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "02969645-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 4757,
+ "created": "2008-05-08T09:55:23.000Z",
+ "lastUpdated": "2021-07-18T09:36:15.232Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "manège",
+ "hasLocution": true,
+ "plural": "manèges"
+ },
+ {
+ "keyword": "carrousel",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "carrousels"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "04245234-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 4759,
+ "created": "2008-05-08T10:06:13.000Z",
+ "lastUpdated": "2021-03-27T00:08:53.445Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toboggan",
+ "hasLocution": true,
+ "plural": "toboggans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "shape"
+ ],
+ "synsets": [
+ "13904169-n"
+ ],
+ "tags": [
+ "shape"
+ ],
+ "_id": 4761,
+ "created": "2008-05-08T10:09:06.000Z",
+ "lastUpdated": "2021-04-06T17:38:07.701Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trapèze",
+ "hasLocution": true,
+ "plural": "trapèzes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "00505855-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 4760,
+ "created": "2008-05-08T10:07:34.000Z",
+ "lastUpdated": "2021-07-18T09:36:45.526Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tombola",
+ "hasLocution": true,
+ "plural": "tombolas"
+ },
+ {
+ "type": 2,
+ "keyword": "stand de foire",
+ "hasLocution": true,
+ "plural": "stands de foire"
+ },
+ {
+ "type": 2,
+ "keyword": "stand de féria",
+ "hasLocution": false,
+ "plural": "stands de féria"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mountain",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "04418399-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 4756,
+ "created": "2008-05-08T09:53:45.000Z",
+ "lastUpdated": "2024-12-05T06:18:56.134Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tente de camping",
+ "hasLocution": true,
+ "plural": "tentes de camping"
+ },
+ {
+ "keyword": "tente",
+ "hasLocution": false,
+ "plural": "tentes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "circus"
+ ],
+ "synsets": [
+ "09783804-n",
+ "04482646-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "circus",
+ "show"
+ ],
+ "_id": 4762,
+ "created": "2008-05-08T10:10:29.000Z",
+ "lastUpdated": "2021-04-08T21:05:37.416Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trapéziste",
+ "hasLocution": true,
+ "plural": "trapézistes"
+ },
+ {
+ "type": 2,
+ "keyword": "acrobate",
+ "hasLocution": false,
+ "plural": "acrobates"
+ },
+ {
+ "keyword": "voltigeuse",
+ "hasLocution": false,
+ "plural": "voltigeuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human response",
+ "polite set expression"
+ ],
+ "synsets": [
+ "06644604-n",
+ "06642524-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response",
+ "communication",
+ "language",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 4740,
+ "created": "2008-05-06T13:21:39.000Z",
+ "lastUpdated": "2021-07-18T09:32:13.315Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "saluer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "serrer la main",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "beach",
+ "summer"
+ ],
+ "synsets": [
+ "04069540-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "leisure",
+ "outdoor activity",
+ "beach",
+ "summer"
+ ],
+ "_id": 4764,
+ "created": "2008-05-08T10:14:07.000Z",
+ "lastUpdated": "2024-12-12T07:26:07.466Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaise longue",
+ "hasLocution": true,
+ "plural": "chaises longues"
+ },
+ {
+ "keyword": "transatlantique",
+ "hasLocution": false,
+ "plural": "transatlantiques",
+ "type": 2
+ },
+ {
+ "keyword": "transat",
+ "hasLocution": false,
+ "plural": "transats",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts"
+ ],
+ "synsets": [
+ "01090234-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 4767,
+ "created": "2008-05-08T10:17:17.000Z",
+ "lastUpdated": "2021-04-06T17:36:49.374Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "vide",
+ "hasLocution": true,
+ "plural": "vides"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "04567196-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 4768,
+ "created": "2008-05-08T10:18:48.000Z",
+ "lastUpdated": "2021-04-06T17:36:33.127Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "verre d'eau",
+ "hasLocution": true,
+ "plural": "verres d'eau"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective"
+ ],
+ "synsets": [
+ "01016876-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective"
+ ],
+ "_id": 4765,
+ "created": "2008-05-08T10:14:51.000Z",
+ "lastUpdated": "2021-04-06T17:37:33.329Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "dernier",
+ "hasLocution": true,
+ "plural": "derniers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01584861-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 4766,
+ "created": "2008-05-08T10:16:48.000Z",
+ "lastUpdated": "2021-04-06T17:37:17.942Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pie",
+ "hasLocution": true,
+ "plural": "pies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01642580-a",
+ "02504601-a",
+ "02590887-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 4770,
+ "created": "2008-05-08T10:20:29.000Z",
+ "lastUpdated": "2021-07-18T09:37:35.730Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "vieux",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "usé ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "string instrument"
+ ],
+ "synsets": [
+ "02995666-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "string instrument"
+ ],
+ "_id": 4771,
+ "created": "2008-05-08T10:21:00.000Z",
+ "lastUpdated": "2021-04-06T17:35:46.905Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "violoncelle",
+ "hasLocution": true,
+ "plural": "violoncelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01235721-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 4772,
+ "created": "2008-05-08T10:22:02.000Z",
+ "lastUpdated": "2021-07-18T09:37:54.826Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "visiter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rendre visite",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "dairy product"
+ ],
+ "synsets": [
+ "03443167-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "animal-based food",
+ "dairy product"
+ ],
+ "_id": 4769,
+ "created": "2008-05-08T10:19:40.000Z",
+ "lastUpdated": "2021-04-06T17:36:12.270Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "verre de lait",
+ "hasLocution": true,
+ "plural": "verres de lait"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "entertainment facility",
+ "recreational facility"
+ ],
+ "synsets": [
+ "03750637-n"
+ ],
+ "tags": [
+ "leisure",
+ "place",
+ "facility",
+ "recreational facility"
+ ],
+ "_id": 4773,
+ "created": "2008-05-08T10:22:35.000Z",
+ "lastUpdated": "2021-04-06T17:35:26.937Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parc zoologique",
+ "hasLocution": false,
+ "plural": "parcs zoologiques"
+ },
+ {
+ "type": 2,
+ "keyword": "zoo",
+ "hasLocution": true,
+ "plural": "zoos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "coin"
+ ],
+ "synsets": [
+ "13411799-n",
+ "13686626-n",
+ "13683925-n",
+ "13409418-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "coin"
+ ],
+ "_id": 4775,
+ "created": "2008-05-08T13:32:08.000Z",
+ "lastUpdated": "2021-04-06T17:32:53.334Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "1 centime",
+ "hasLocution": true,
+ "plural": "1 centime"
+ },
+ {
+ "type": 2,
+ "keyword": "centime",
+ "hasLocution": true,
+ "plural": "centimes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "shape",
+ "geometry"
+ ],
+ "synsets": [
+ "13901977-n"
+ ],
+ "tags": [
+ "shape",
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 4763,
+ "created": "2008-05-08T10:12:52.000Z",
+ "lastUpdated": "2021-04-06T17:37:52.142Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "triangle",
+ "hasLocution": true,
+ "plural": "triangles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bill"
+ ],
+ "synsets": [
+ "13683925-n",
+ "13414935-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "bill"
+ ],
+ "_id": 4780,
+ "created": "2008-05-08T13:35:13.000Z",
+ "lastUpdated": "2021-04-06T17:31:18.733Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "5 euros",
+ "hasLocution": true,
+ "plural": "5 euros"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "coin"
+ ],
+ "synsets": [
+ "13686626-n",
+ "13683925-n",
+ "13409418-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "coin"
+ ],
+ "_id": 4781,
+ "created": "2008-05-08T13:35:46.000Z",
+ "lastUpdated": "2021-04-06T17:31:07.674Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "10 centimes",
+ "hasLocution": true,
+ "plural": "10 centimes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bill"
+ ],
+ "synsets": [
+ "13683925-n",
+ "13414935-n",
+ "02194935-s"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "bill"
+ ],
+ "_id": 4782,
+ "created": "2008-05-08T13:36:20.000Z",
+ "lastUpdated": "2021-04-06T17:30:56.481Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "10 euros",
+ "hasLocution": true,
+ "plural": "10 euros"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "coin"
+ ],
+ "synsets": [
+ "13686626-n",
+ "13683925-n",
+ "13409418-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "coin"
+ ],
+ "_id": 4783,
+ "created": "2008-05-08T13:36:58.000Z",
+ "lastUpdated": "2021-04-06T17:30:43.931Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "20 centimes",
+ "hasLocution": true,
+ "plural": "20 centimes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "coin"
+ ],
+ "synsets": [
+ "13686626-n",
+ "13683925-n",
+ "13409418-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "coin"
+ ],
+ "_id": 4777,
+ "created": "2008-05-08T13:33:25.000Z",
+ "lastUpdated": "2021-04-06T17:31:53.628Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "2 centimes",
+ "hasLocution": true,
+ "plural": "2 centimes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bill"
+ ],
+ "synsets": [
+ "13683925-n",
+ "13414935-n",
+ "02195956-s"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "bill"
+ ],
+ "_id": 4784,
+ "created": "2008-05-08T13:37:37.000Z",
+ "lastUpdated": "2021-04-06T17:30:32.028Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "20 euros",
+ "hasLocution": true,
+ "plural": "20 euros"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "coin"
+ ],
+ "synsets": [
+ "13686626-n",
+ "13683925-n",
+ "13409418-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "coin"
+ ],
+ "_id": 4785,
+ "created": "2008-05-12T12:58:09.000Z",
+ "lastUpdated": "2021-04-06T17:30:21.186Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "50 centimes",
+ "hasLocution": true,
+ "plural": "50 centimes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "coin"
+ ],
+ "synsets": [
+ "13686626-n",
+ "13683925-n",
+ "13409418-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "coin"
+ ],
+ "_id": 4779,
+ "created": "2008-05-08T13:34:34.000Z",
+ "lastUpdated": "2021-04-06T17:31:31.125Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "5 centimes",
+ "hasLocution": true,
+ "plural": "5 centimes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "coin"
+ ],
+ "synsets": [
+ "13683925-n",
+ "13409418-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "coin"
+ ],
+ "_id": 4776,
+ "created": "2008-05-08T13:32:54.000Z",
+ "lastUpdated": "2021-04-06T17:32:07.775Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "1 euro",
+ "hasLocution": true,
+ "plural": "1 euro"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bill"
+ ],
+ "synsets": [
+ "13683925-n",
+ "13414935-n",
+ "02205971-s"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "bill"
+ ],
+ "_id": 4788,
+ "created": "2008-05-12T13:00:17.000Z",
+ "lastUpdated": "2021-04-06T17:29:23.475Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "200 euros",
+ "hasLocution": true,
+ "plural": "200 euros"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bill"
+ ],
+ "synsets": [
+ "13683925-n",
+ "13406050-n",
+ "13414935-n",
+ "02198871-s"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "bill"
+ ],
+ "_id": 4786,
+ "created": "2008-05-12T12:58:52.000Z",
+ "lastUpdated": "2021-04-06T17:30:06.322Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "50 euros",
+ "hasLocution": true,
+ "plural": "50 euros"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bill"
+ ],
+ "synsets": [
+ "13683925-n",
+ "13414935-n",
+ "02203776-s"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "bill"
+ ],
+ "_id": 4787,
+ "created": "2008-05-12T12:59:37.000Z",
+ "lastUpdated": "2021-04-06T17:28:26.804Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "100 euros",
+ "hasLocution": true,
+ "plural": "100 euros"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural disaster"
+ ],
+ "synsets": [
+ "00378172-n",
+ "07323181-n"
+ ],
+ "tags": [
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 4791,
+ "created": "2008-05-12T13:05:48.000Z",
+ "lastUpdated": "2021-04-08T21:08:53.452Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "explosion",
+ "hasLocution": true,
+ "plural": "explosions"
+ },
+ {
+ "keyword": "détonation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "détonations"
+ },
+ {
+ "keyword": "déflagration",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "déflagrations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mountain"
+ ],
+ "synsets": [
+ "03733437-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 4793,
+ "created": "2008-05-12T13:13:13.000Z",
+ "lastUpdated": "2021-07-18T09:38:48.155Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "natte",
+ "hasLocution": true,
+ "plural": "nattes"
+ },
+ {
+ "keyword": "matelas",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "matelas"
+ },
+ {
+ "keyword": "matelas de camping",
+ "hasLocution": false,
+ "plural": "matelas de camping",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beach"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 4790,
+ "created": "2008-05-12T13:01:33.000Z",
+ "lastUpdated": "2021-04-06T17:28:47.281Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "château de sable",
+ "hasLocution": true,
+ "plural": "châteaux de sable"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "00371931-s"
+ ],
+ "tags": [
+ "color",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 4869,
+ "created": "2008-06-26T12:27:28.000Z",
+ "lastUpdated": "2021-05-11T07:42:46.671Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "bleu",
+ "hasLocution": true,
+ "plural": "bleus"
+ },
+ {
+ "keyword": "bleu marine",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "03044572-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 4871,
+ "created": "2008-06-26T12:31:52.000Z",
+ "lastUpdated": "2021-07-18T09:39:30.034Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nettoyant",
+ "hasLocution": false,
+ "plural": "nettoyants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "construction"
+ ],
+ "synsets": [
+ "03880896-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 4870,
+ "created": "2008-06-26T12:30:18.000Z",
+ "lastUpdated": "2024-12-08T15:32:06.294Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peinture",
+ "hasLocution": true,
+ "plural": "peintures"
+ },
+ {
+ "type": 2,
+ "keyword": "pot de peinture",
+ "hasLocution": true,
+ "plural": "pots de peinture"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "core vocabulary-object",
+ "fashion"
+ ],
+ "synsets": [
+ "02966595-n",
+ "03594978-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 4872,
+ "created": "2008-06-26T12:40:06.000Z",
+ "lastUpdated": "2024-12-11T06:38:04.909Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "veste ",
+ "hasLocution": false,
+ "plural": "vestes"
+ },
+ {
+ "keyword": "gilet",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "gilets"
+ },
+ {
+ "keyword": "cardigan",
+ "hasLocution": false,
+ "plural": "cardigans",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07647646-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 4792,
+ "created": "2008-05-12T13:11:49.000Z",
+ "lastUpdated": "2021-07-18T09:38:09.871Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sponge cake",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic"
+ ],
+ "synsets": [
+ "03489570-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 4873,
+ "created": "2008-06-26T12:43:12.000Z",
+ "lastUpdated": "2021-04-14T00:25:06.573Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crème pour les mains",
+ "hasLocution": true,
+ "plural": "crèmes pour les mains"
+ },
+ {
+ "type": 2,
+ "keyword": "crème",
+ "hasLocution": true,
+ "plural": "crèmes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bill"
+ ],
+ "synsets": [
+ "13683925-n",
+ "13414935-n",
+ "02206300-s"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "bill"
+ ],
+ "_id": 4789,
+ "created": "2008-05-12T13:00:58.000Z",
+ "lastUpdated": "2021-04-06T17:29:10.704Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "500 euros",
+ "hasLocution": true,
+ "plural": "500 euros"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "02913195-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 4874,
+ "created": "2008-06-26T12:45:01.000Z",
+ "lastUpdated": "2021-07-18T09:40:03.585Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "seau pour nettoyer le sol",
+ "hasLocution": false,
+ "plural": "seaux pour nettoyer le sol"
+ },
+ {
+ "keyword": "seau à serpillère",
+ "hasLocution": false,
+ "plural": "seaus à serpillère",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 4875,
+ "created": "2008-06-26T12:46:37.000Z",
+ "lastUpdated": "2021-07-18T09:40:29.607Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "seau",
+ "hasLocution": false,
+ "plural": "seaux"
+ },
+ {
+ "type": 2,
+ "keyword": "seau de peinture",
+ "hasLocution": false,
+ "plural": "seaux de peinture"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit",
+ "food",
+ "plant-based food"
+ ],
+ "synsets": [
+ "07747928-n",
+ "12165097-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 4879,
+ "created": "2008-06-26T13:00:36.000Z",
+ "lastUpdated": "2024-12-11T06:42:53.341Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maïs",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "maïs grillé",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "routine"
+ ],
+ "synsets": [
+ "00073096-v",
+ "00071765-v",
+ "00073791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "routine"
+ ],
+ "_id": 4880,
+ "created": "2008-06-27T13:01:26.000Z",
+ "lastUpdated": "2021-07-18T09:41:39.577Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire caca",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire pipi",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "chier",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "uriner",
+ "hasLocution": false
+ },
+ {
+ "keyword": "déféquer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cleaning product"
+ ],
+ "synsets": [
+ "01246915-v",
+ "01535222-v",
+ "01535377-v",
+ "01395572-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 4878,
+ "created": "2008-06-26T12:52:44.000Z",
+ "lastUpdated": "2021-07-18T09:41:01.785Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "enlever la poussière",
+ "hasLocution": true
+ },
+ {
+ "keyword": "épousseter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "processed food"
+ ],
+ "synsets": [
+ "07866305-n",
+ "07670276-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "processed food"
+ ],
+ "_id": 4881,
+ "created": "2008-06-27T13:06:21.000Z",
+ "lastUpdated": "2021-04-10T20:53:52.490Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fromage en tranches",
+ "hasLocution": true,
+ "plural": "fromages en tranches"
+ },
+ {
+ "keyword": "tranches de fromage",
+ "hasLocution": false,
+ "plural": "tranches de fromage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "sweets"
+ ],
+ "synsets": [
+ "03094080-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 4882,
+ "created": "2008-06-27T13:07:19.000Z",
+ "lastUpdated": "2021-04-10T20:52:46.027Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de bonbons",
+ "hasLocution": true,
+ "plural": "magasins de bonbons"
+ },
+ {
+ "keyword": "confiserie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "confiseries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "land transport"
+ ],
+ "synsets": [
+ "04216878-n",
+ "09971196-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 4883,
+ "created": "2008-06-27T13:07:57.000Z",
+ "lastUpdated": "2021-04-10T20:51:37.181Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de voitures",
+ "hasLocution": true,
+ "plural": "magasins de voitures"
+ },
+ {
+ "type": 2,
+ "keyword": "concessionnaire",
+ "hasLocution": false,
+ "plural": "concessionnaires"
+ },
+ {
+ "keyword": "salon automobile",
+ "hasLocution": false,
+ "plural": "salons automobiles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "furniture"
+ ],
+ "synsets": [
+ "08019967-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "furniture"
+ ],
+ "_id": 4884,
+ "created": "2008-06-27T13:09:02.000Z",
+ "lastUpdated": "2021-04-14T00:24:21.993Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de meubles",
+ "hasLocution": true,
+ "plural": "magasins de meubles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "03278824-n",
+ "04077839-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 4876,
+ "created": "2008-06-26T12:50:30.000Z",
+ "lastUpdated": "2021-07-18T09:40:37.757Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "réfrigérateur",
+ "hasLocution": true,
+ "plural": "réfrigérateurs"
+ },
+ {
+ "type": 2,
+ "keyword": "réfrigérateur combi",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "keyword": "frigidaire",
+ "type": 2,
+ "plural": "frigidaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothes"
+ ],
+ "synsets": [
+ "03056449-n",
+ "02882551-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 4885,
+ "created": "2008-06-27T13:09:41.000Z",
+ "lastUpdated": "2021-07-18T09:41:56.271Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de vêtements",
+ "hasLocution": true,
+ "plural": "magasins de vêtements"
+ },
+ {
+ "type": 2,
+ "keyword": "boutique",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "01247417-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 4877,
+ "created": "2008-06-26T12:51:48.000Z",
+ "lastUpdated": "2021-07-18T09:40:47.066Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aspirer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "passer l'aspirateur",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194109-s",
+ "13765409-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 4890,
+ "created": "2008-06-27T13:19:32.000Z",
+ "lastUpdated": "2024-10-20T09:28:14.813Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "2",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "deux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194219-s",
+ "13766184-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 4891,
+ "created": "2008-06-27T13:20:02.000Z",
+ "lastUpdated": "2024-10-20T09:28:25.196Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "3",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "trois",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "00377031-s"
+ ],
+ "tags": [
+ "color",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 4887,
+ "created": "2008-06-27T13:12:44.000Z",
+ "lastUpdated": "2021-04-08T21:16:22.452Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "vert",
+ "hasLocution": true,
+ "plural": "verts"
+ },
+ {
+ "type": 4,
+ "keyword": "vert foncé",
+ "hasLocution": true,
+ "plural": "verts foncés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194304-s",
+ "13766444-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 4892,
+ "created": "2008-06-27T13:20:35.000Z",
+ "lastUpdated": "2024-10-20T09:28:41.830Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "4",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "quatre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194389-s",
+ "13766661-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 4893,
+ "created": "2008-06-27T13:22:56.000Z",
+ "lastUpdated": "2024-10-20T09:28:37.762Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "5",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "cinq",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194472-s",
+ "13766862-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 4894,
+ "created": "2008-06-27T13:23:22.000Z",
+ "lastUpdated": "2024-10-20T09:28:50.870Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "6",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "six",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194609-s",
+ "13767056-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 4895,
+ "created": "2008-06-27T13:23:49.000Z",
+ "lastUpdated": "2024-10-20T09:28:33.618Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "7",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "sept",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02193977-s",
+ "13764713-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 4889,
+ "created": "2008-06-27T13:18:57.000Z",
+ "lastUpdated": "2024-10-20T09:28:20.712Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "un",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "1",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "basketball"
+ ],
+ "synsets": [
+ "02805592-n",
+ "02781674-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "basketball"
+ ],
+ "_id": 4918,
+ "created": "2008-06-30T13:10:51.000Z",
+ "lastUpdated": "2021-04-08T21:18:35.053Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ballon de basket-ball",
+ "hasLocution": true,
+ "plural": "ballons de basket-ball"
+ },
+ {
+ "keyword": "ballon de basket",
+ "hasLocution": true,
+ "plural": "ballons de basket",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "educational equipment"
+ ],
+ "synsets": [
+ "02832068-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "education",
+ "educational equipment"
+ ],
+ "_id": 4919,
+ "created": "2008-06-30T13:15:01.000Z",
+ "lastUpdated": "2024-12-04T15:33:02.746Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "banc",
+ "hasLocution": true,
+ "plural": "bancs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "00377031-s"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 4886,
+ "created": "2008-06-27T13:12:14.000Z",
+ "lastUpdated": "2021-04-08T21:15:38.354Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "vert",
+ "hasLocution": true,
+ "plural": "verts"
+ },
+ {
+ "type": 4,
+ "keyword": "vert clair",
+ "hasLocution": true,
+ "plural": "verts clairs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "psychomotor equipment"
+ ],
+ "synsets": [
+ "02855782-n",
+ "02925183-a"
+ ],
+ "tags": [
+ "object",
+ "psychomotor equipment"
+ ],
+ "_id": 4921,
+ "created": "2008-06-30T13:32:48.000Z",
+ "lastUpdated": "2021-07-18T09:42:38.196Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blocs",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "blocs psychomotricité ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "02873098-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 4922,
+ "created": "2008-06-30T13:34:40.000Z",
+ "lastUpdated": "2021-04-08T21:22:07.743Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bongo",
+ "hasLocution": true,
+ "plural": "bongos"
+ },
+ {
+ "keyword": "tambour bongo",
+ "hasLocution": false,
+ "plural": "tambours bongos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194800-s",
+ "13767410-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 4897,
+ "created": "2008-06-27T13:24:42.000Z",
+ "lastUpdated": "2024-10-20T09:28:29.338Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "9",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "neuf",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "04122550-n",
+ "04044440-n",
+ "02861626-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 4920,
+ "created": "2008-06-30T13:19:37.000Z",
+ "lastUpdated": "2021-07-18T09:42:31.199Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bateau",
+ "hasLocution": true,
+ "plural": "bateaux"
+ },
+ {
+ "keyword": "barque",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "barques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03528796-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 4923,
+ "created": "2008-06-30T13:38:26.000Z",
+ "lastUpdated": "2021-03-27T21:56:44.703Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cheval à bascule",
+ "hasLocution": false,
+ "plural": "chevaux à bascules"
+ },
+ {
+ "type": 2,
+ "keyword": "cheval de bois",
+ "hasLocution": true,
+ "plural": "chevaux de bois"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "03921556-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument",
+ "core vocabulary"
+ ],
+ "_id": 4924,
+ "created": "2008-06-30T13:41:06.000Z",
+ "lastUpdated": "2021-07-18T09:43:50.072Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caisse chinoise",
+ "hasLocution": true,
+ "plural": "caisses chinoises"
+ },
+ {
+ "keyword": "woodblock",
+ "hasLocution": false,
+ "plural": "woodblocks",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "security and defense"
+ ],
+ "synsets": [
+ "03350333-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 4925,
+ "created": "2008-06-30T13:42:37.000Z",
+ "lastUpdated": "2021-07-18T09:44:05.737Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "camion de pompiers ",
+ "hasLocution": false,
+ "plural": "camions de pompiers "
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04056517-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 4927,
+ "created": "2008-07-02T11:06:45.000Z",
+ "lastUpdated": "2021-04-08T21:26:49.111Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ciré",
+ "hasLocution": true,
+ "plural": "cirés"
+ },
+ {
+ "keyword": "imperméable",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "imperméables"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "04474900-n",
+ "04497386-n",
+ "03695799-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 4926,
+ "created": "2008-07-02T11:05:17.000Z",
+ "lastUpdated": "2021-07-18T09:44:19.796Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "semi-remorque ",
+ "hasLocution": false,
+ "plural": "semi-remorques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194712-s",
+ "13767226-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 4896,
+ "created": "2008-06-27T13:24:16.000Z",
+ "lastUpdated": "2024-10-20T09:28:46.355Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "8",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "huit",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "psychomotor equipment",
+ "traffic"
+ ],
+ "synsets": [
+ "03093804-n"
+ ],
+ "tags": [
+ "object",
+ "psychomotor equipment",
+ "movement",
+ "traffic"
+ ],
+ "_id": 4928,
+ "created": "2008-07-02T11:14:33.000Z",
+ "lastUpdated": "2024-12-11T17:23:22.596Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cône de signalisation ",
+ "hasLocution": false,
+ "plural": "cônes de signalisation "
+ },
+ {
+ "type": 2,
+ "keyword": "cône",
+ "hasLocution": true,
+ "plural": "cônes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "07287250-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 4932,
+ "created": "2008-07-02T12:29:22.000Z",
+ "lastUpdated": "2021-04-08T21:33:06.121Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gommettes",
+ "hasLocution": true,
+ "plural": "gommettes"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "étiquettes adhésives",
+ "plural": "étiquettes adhésives",
+ "type": 2
+ },
+ {
+ "keyword": "stickers",
+ "hasLocution": false,
+ "plural": "stickers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "03446036-n",
+ "03780604-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 4933,
+ "created": "2008-07-02T12:55:36.000Z",
+ "lastUpdated": "2021-04-08T21:35:10.960Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gant de four",
+ "hasLocution": false,
+ "plural": "gants de four"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "educational material",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "03660621-n",
+ "02855782-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "education",
+ "educational material",
+ "core vocabulary"
+ ],
+ "_id": 4935,
+ "created": "2008-07-02T13:04:32.000Z",
+ "lastUpdated": "2024-12-09T11:39:26.994Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "constructions",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "blocs",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "jeu de construction ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "educational material"
+ ],
+ "synsets": [
+ "13937623-n",
+ "02855782-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "education",
+ "educational material"
+ ],
+ "_id": 4930,
+ "created": "2008-07-02T12:23:34.000Z",
+ "lastUpdated": "2021-04-08T21:29:06.278Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cubes empilables",
+ "hasLocution": true,
+ "plural": "cubes empilables"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cutlery",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04387433-n",
+ "03628765-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "cutlery",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 4931,
+ "created": "2008-07-02T12:25:41.000Z",
+ "lastUpdated": "2021-04-08T21:30:36.230Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couteau",
+ "hasLocution": true,
+ "plural": "couteaux"
+ },
+ {
+ "keyword": "couteau de table",
+ "hasLocution": false,
+ "plural": "couteaux de table",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "light fixture",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03641940-n",
+ "04387620-n",
+ "03641539-n",
+ "03277294-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "light fixture",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 4936,
+ "created": "2008-07-02T13:05:57.000Z",
+ "lastUpdated": "2021-04-08T21:36:54.327Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lampe",
+ "hasLocution": true,
+ "plural": "lampes"
+ },
+ {
+ "type": 2,
+ "keyword": "lampe de chevet",
+ "hasLocution": true,
+ "plural": "lampes de chevet"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "light fixture"
+ ],
+ "synsets": [
+ "03641940-n",
+ "03371905-n",
+ "03641539-n",
+ "03277294-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 4937,
+ "created": "2008-07-02T13:06:56.000Z",
+ "lastUpdated": "2021-04-08T21:38:23.661Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lampe",
+ "hasLocution": true,
+ "plural": "lampes"
+ },
+ {
+ "type": 2,
+ "keyword": "lampadaire",
+ "hasLocution": true,
+ "plural": "lampadaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "light fixture"
+ ],
+ "synsets": [
+ "03641940-n",
+ "03277294-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 4938,
+ "created": "2008-07-02T13:08:03.000Z",
+ "lastUpdated": "2021-04-08T21:39:41.021Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lampe",
+ "hasLocution": true,
+ "plural": "lampes"
+ },
+ {
+ "type": 2,
+ "keyword": "plafonnier",
+ "hasLocution": true,
+ "plural": "plafonniers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00036355-v",
+ "01538956-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 4939,
+ "created": "2008-07-02T13:09:17.000Z",
+ "lastUpdated": "2021-04-10T20:48:20.873Z",
+ "keywords": [
+ {
+ "keyword": "se savonner la figure",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "savonner le visage",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "03626176-n",
+ "04386330-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 4943,
+ "created": "2008-07-03T10:25:58.000Z",
+ "lastUpdated": "2021-04-08T21:43:50.874Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "table de cuisine",
+ "hasLocution": true,
+ "plural": "tables de cuisine"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "03207038-n",
+ "04386330-n",
+ "03205719-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 4944,
+ "created": "2008-07-03T10:27:10.000Z",
+ "lastUpdated": "2021-04-08T21:45:18.357Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "table de salle-à-manger",
+ "hasLocution": false,
+ "plural": "tables de salle-à-manger"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "04406517-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 4945,
+ "created": "2008-07-03T10:28:42.000Z",
+ "lastUpdated": "2021-04-08T21:46:11.098Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peluche",
+ "hasLocution": true,
+ "plural": "peluches"
+ },
+ {
+ "type": 2,
+ "keyword": "nounours",
+ "hasLocution": true,
+ "plural": "nounours"
+ },
+ {
+ "type": 2,
+ "keyword": "ours en peluche",
+ "hasLocution": true,
+ "plural": "ours en peluche"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "hygiene product"
+ ],
+ "synsets": [
+ "04192847-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 4941,
+ "created": "2008-07-03T10:20:56.000Z",
+ "lastUpdated": "2021-04-08T21:40:28.876Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rasoir électrique",
+ "hasLocution": true,
+ "plural": "rasoirs électriques"
+ },
+ {
+ "keyword": "rasoir",
+ "hasLocution": true,
+ "plural": "rasoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03529313-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 4947,
+ "created": "2008-07-03T10:33:10.000Z",
+ "lastUpdated": "2021-04-08T21:46:51.768Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crosse de hockey",
+ "hasLocution": false,
+ "plural": "crosses de hockey"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "psychomotor equipment"
+ ],
+ "synsets": [
+ "03983015-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "object",
+ "psychomotor equipment"
+ ],
+ "_id": 4948,
+ "created": "2008-07-03T10:37:37.000Z",
+ "lastUpdated": "2021-07-18T09:45:50.288Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plot de gymnastique",
+ "hasLocution": false,
+ "plural": "plots de gymnastique"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04045857-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 4946,
+ "created": "2008-07-03T10:31:31.000Z",
+ "lastUpdated": "2021-07-18T09:45:42.104Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "raquette",
+ "hasLocution": true,
+ "plural": "raquettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07937600-n",
+ "07939004-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "core vocabulary"
+ ],
+ "_id": 4940,
+ "created": "2008-07-02T13:12:10.000Z",
+ "lastUpdated": "2021-07-18T09:45:03.362Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lait au cacao",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Cacolac",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "boisson chocolatée",
+ "hasLocution": false,
+ "plural": "boissons chocolatées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "03067971-n",
+ "04386330-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 4942,
+ "created": "2008-07-03T10:23:11.000Z",
+ "lastUpdated": "2021-04-08T21:43:12.272Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "table basse",
+ "hasLocution": false,
+ "plural": "tables basses"
+ },
+ {
+ "keyword": "petite table",
+ "hasLocution": true,
+ "plural": "petites tables",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01445398-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 4949,
+ "created": "2008-07-03T10:40:05.000Z",
+ "lastUpdated": "2021-07-14T20:30:58.751Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "piquer avec un poinçon",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "piquer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "perforer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01496967-v",
+ "01334887-v",
+ "01617485-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 4953,
+ "created": "2008-07-03T10:54:08.000Z",
+ "lastUpdated": "2021-03-25T21:34:38.183Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mettre des gomettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "coller des gomettes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "musical art"
+ ],
+ "synsets": [
+ "10713754-n",
+ "10361074-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "music"
+ ],
+ "_id": 4955,
+ "created": "2008-07-03T10:57:36.000Z",
+ "lastUpdated": "2021-04-08T21:48:38.895Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "professeur de musique ",
+ "hasLocution": false,
+ "plural": "professeurs de musique"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals"
+ ],
+ "synsets": [
+ "10713754-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work"
+ ],
+ "_id": 4956,
+ "created": "2008-07-03T10:59:20.000Z",
+ "lastUpdated": "2021-04-10T20:35:16.007Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "professeure d'atelier",
+ "hasLocution": false,
+ "plural": "professeures d'atelier"
+ },
+ {
+ "keyword": "éducatrice d'atelier",
+ "hasLocution": false,
+ "plural": "éducatrices d'atelier",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "meat",
+ "core vocabulary-feeding",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07660576-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat",
+ "core vocabulary",
+ "gastronomy"
+ ],
+ "_id": 4952,
+ "created": "2008-07-03T10:52:25.000Z",
+ "lastUpdated": "2024-12-08T07:32:05.415Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poulet",
+ "hasLocution": true,
+ "plural": "poulets"
+ },
+ {
+ "type": 2,
+ "keyword": "poulet rôti",
+ "hasLocution": true,
+ "plural": "poulets rôtis"
+ },
+ {
+ "keyword": "poulet grillé ",
+ "hasLocution": false,
+ "plural": "poulets grillés ",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "04541241-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 4957,
+ "created": "2008-07-03T11:01:09.000Z",
+ "lastUpdated": "2021-04-08T21:51:08.124Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lecteur de DVD",
+ "hasLocution": false,
+ "plural": "lecteurs de DVD"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "lecteur de Blu-Ray",
+ "plural": "lecteurs de Blu-Ray",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traffic signal"
+ ],
+ "synsets": [
+ "06887441-n",
+ "01916152-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 4958,
+ "created": "2008-07-03T11:02:20.000Z",
+ "lastUpdated": "2021-07-18T09:46:15.791Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "feu vert ",
+ "hasLocution": false,
+ "plural": "feux verts"
+ },
+ {
+ "keyword": "traverser au feu vert",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03346960-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 4950,
+ "created": "2008-07-03T10:43:00.000Z",
+ "lastUpdated": "2021-03-25T21:42:25.531Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peinture",
+ "hasLocution": true,
+ "plural": "peintures"
+ },
+ {
+ "type": 2,
+ "keyword": "peinture au doigt",
+ "hasLocution": false,
+ "plural": "peintures au doigt"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "03005231-n",
+ "04168419-n",
+ "04169042-n",
+ "04338415-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 4960,
+ "created": "2008-07-03T11:04:40.000Z",
+ "lastUpdated": "2021-04-08T21:52:04.073Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaise de cuisine",
+ "hasLocution": true,
+ "plural": "chaises de cuisine"
+ },
+ {
+ "keyword": "chaise",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chaise"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "03005231-n",
+ "04168419-n",
+ "04169042-n",
+ "04338415-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 4961,
+ "created": "2008-07-03T11:05:53.000Z",
+ "lastUpdated": "2021-07-14T20:28:20.075Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaise",
+ "hasLocution": true,
+ "plural": "chaises"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic needs",
+ "body sensation"
+ ],
+ "synsets": [
+ "01272183-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "person",
+ "basic needs",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 4962,
+ "created": "2008-07-03T11:17:44.000Z",
+ "lastUpdated": "2021-04-10T20:33:03.072Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "affamé",
+ "hasLocution": true,
+ "plural": "affamés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic needs",
+ "body sensation"
+ ],
+ "synsets": [
+ "01273114-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "person",
+ "basic needs",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 4963,
+ "created": "2008-07-03T11:18:20.000Z",
+ "lastUpdated": "2021-04-10T20:32:26.117Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "assoiffé",
+ "hasLocution": true,
+ "plural": "assoiffés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04155119-n",
+ "03626258-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 4964,
+ "created": "2008-07-03T11:20:07.000Z",
+ "lastUpdated": "2021-04-10T20:31:26.069Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ciseaux",
+ "hasLocution": true,
+ "plural": "ciseaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03006695-n",
+ "03299762-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 4965,
+ "created": "2008-07-03T11:24:56.000Z",
+ "lastUpdated": "2021-04-10T20:31:05.199Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "craie et brosse pour tableau",
+ "hasLocution": false,
+ "plural": "craies et brosses pour tableau"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07858729-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 4966,
+ "created": "2008-07-03T12:05:05.000Z",
+ "lastUpdated": "2021-04-10T20:27:46.902Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "omelette aux pommes de terre ",
+ "hasLocution": false,
+ "plural": "omelettes aux pommes de terre "
+ },
+ {
+ "keyword": "tortilla",
+ "hasLocution": false,
+ "plural": "tortillas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traffic signal"
+ ],
+ "synsets": [
+ "06887547-n",
+ "01916152-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 4959,
+ "created": "2008-07-03T11:03:43.000Z",
+ "lastUpdated": "2021-07-18T09:46:34.675Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "feu rouge",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ne pas traverser au feu rouge",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03132899-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 4951,
+ "created": "2008-07-03T10:51:31.000Z",
+ "lastUpdated": "2021-04-10T20:41:19.171Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crayons de cire",
+ "hasLocution": true,
+ "plural": "crayons de cire"
+ },
+ {
+ "keyword": "craies à la cire",
+ "hasLocution": false,
+ "plural": "craies à la cire",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "sport"
+ ],
+ "synsets": [
+ "04219349-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 4969,
+ "created": "2008-07-03T12:14:18.000Z",
+ "lastUpdated": "2024-12-13T07:23:57.277Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "badminton",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "volant",
+ "hasLocution": true,
+ "plural": "volants"
+ },
+ {
+ "type": 2,
+ "keyword": "volant de badminton ",
+ "hasLocution": false,
+ "plural": "volants de badminton"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "winter",
+ "tree"
+ ],
+ "synsets": [
+ "13124818-n"
+ ],
+ "tags": [
+ "winter",
+ "plant",
+ "tree"
+ ],
+ "_id": 5062,
+ "created": "2008-07-04T12:19:17.000Z",
+ "lastUpdated": "2021-03-26T02:51:38.112Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arbre d'hiver",
+ "hasLocution": true,
+ "plural": "arbres d'hiver"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "autumn",
+ "tree"
+ ],
+ "synsets": [
+ "15261656-n",
+ "13124818-n"
+ ],
+ "tags": [
+ "autumn",
+ "plant",
+ "tree"
+ ],
+ "_id": 5063,
+ "created": "2008-07-04T12:20:02.000Z",
+ "lastUpdated": "2021-03-26T02:52:44.455Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arbre d'automne",
+ "hasLocution": true,
+ "plural": "arbres d'automne"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "olympic games",
+ "signaling system",
+ "core vocabulary-leisure",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "07471917-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 5064,
+ "created": "2008-07-04T12:20:51.000Z",
+ "lastUpdated": "2021-04-10T20:20:52.319Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Jeux Olympiques",
+ "hasLocution": true,
+ "plural": "Jeux Olympiques"
+ },
+ {
+ "type": 2,
+ "keyword": "anneaux olympiques",
+ "hasLocution": true,
+ "plural": "anneaux olympiques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "basketball",
+ "sport event"
+ ],
+ "synsets": [
+ "02805710-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "basketball",
+ "event",
+ "sport event"
+ ],
+ "_id": 5066,
+ "created": "2008-07-04T12:22:35.000Z",
+ "lastUpdated": "2024-12-10T06:33:20.027Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "terrain de basket-ball",
+ "hasLocution": true,
+ "plural": "terrains de basket-ball"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "03488071-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 5067,
+ "created": "2008-07-04T12:23:11.000Z",
+ "lastUpdated": "2021-04-10T21:43:04.678Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "terrain de hand-ball",
+ "hasLocution": true,
+ "plural": "terrains de hand-ball"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "03491080-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 5060,
+ "created": "2008-07-04T12:07:39.000Z",
+ "lastUpdated": "2021-04-10T20:22:28.705Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poignée",
+ "hasLocution": false,
+ "plural": "poignées"
+ },
+ {
+ "keyword": "poignée de porte",
+ "hasLocution": false,
+ "plural": "poignées de porte",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas"
+ ],
+ "synsets": [
+ "03030189-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 5065,
+ "created": "2008-07-04T12:21:55.000Z",
+ "lastUpdated": "2021-04-10T21:44:31.572Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussette de Père Noël ",
+ "hasLocution": false,
+ "plural": "chaussettes de Père Noël"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07858729-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "core vocabulary"
+ ],
+ "_id": 4967,
+ "created": "2008-07-03T12:07:29.000Z",
+ "lastUpdated": "2021-04-10T20:26:34.856Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "omelette",
+ "hasLocution": true,
+ "plural": "omelettes"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "oeufs brouillés",
+ "plural": "oeufs brouillés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "04547439-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 5069,
+ "created": "2008-07-04T12:24:24.000Z",
+ "lastUpdated": "2021-04-10T21:42:01.403Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "terrain de volley-ball",
+ "hasLocution": true,
+ "plural": "terrains de volley-ball"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christmas",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "15219341-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "christmas",
+ "religious event",
+ "religion",
+ "christianity"
+ ],
+ "_id": 5072,
+ "created": "2008-07-04T12:26:42.000Z",
+ "lastUpdated": "2021-04-10T21:38:30.338Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Jour des 3 Rois Mages",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Épiphanie",
+ "hasLocution": true
+ },
+ {
+ "keyword": "6 Janvier",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Jour des Rois",
+ "hasLocution": true,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "saragossa"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "Aragon",
+ "Saragossa"
+ ],
+ "_id": 5073,
+ "created": "2008-07-04T12:27:27.000Z",
+ "lastUpdated": "2021-07-14T20:25:40.159Z",
+ "keywords": [
+ {
+ "type": 1,
+ "hasLocution": false,
+ "keyword": "Fête Nationale",
+ "plural": "Fêtes Nationales"
+ },
+ {
+ "type": 1,
+ "keyword": "Fêtes du Pilar ",
+ "hasLocution": false,
+ "plural": "Fêtes du Pilar"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "diving",
+ "beach"
+ ],
+ "synsets": [
+ "03448836-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "diving",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 5074,
+ "created": "2008-07-04T12:30:43.000Z",
+ "lastUpdated": "2022-07-04T06:43:00.689Z",
+ "keywords": [
+ {
+ "keyword": "masque de plongée",
+ "hasLocution": false,
+ "plural": "masques de plongée",
+ "type": 2
+ },
+ {
+ "hasLocution": true,
+ "keyword": "lunettes de plongée"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "04416847-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 5068,
+ "created": "2008-07-04T12:23:50.000Z",
+ "lastUpdated": "2021-04-10T21:42:43.521Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "terrain de tennis",
+ "hasLocution": true,
+ "plural": "terrains de tennis"
+ },
+ {
+ "keyword": "court de tennis",
+ "hasLocution": false,
+ "plural": "courts de tennis",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "04043919-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 5070,
+ "created": "2008-07-04T12:25:01.000Z",
+ "lastUpdated": "2021-04-10T21:41:39.479Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voiture de course",
+ "hasLocution": false,
+ "plural": "voitures de course"
+ },
+ {
+ "type": 2,
+ "keyword": "bolide",
+ "hasLocution": false,
+ "plural": "bolides"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "new year"
+ ],
+ "synsets": [
+ "15207024-n",
+ "15207154-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "new year"
+ ],
+ "_id": 5071,
+ "created": "2008-07-04T12:25:56.000Z",
+ "lastUpdated": "2021-04-10T21:40:11.549Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Nouvel An",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Premier de l'An",
+ "hasLocution": true
+ },
+ {
+ "keyword": "1er Janvier",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Jour de l'An",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "00480451-n",
+ "10658320-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 5079,
+ "created": "2008-07-04T12:53:24.000Z",
+ "lastUpdated": "2021-05-04T19:43:26.424Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joueur de hand-ball ",
+ "hasLocution": false,
+ "plural": "joueurs de hand-ball"
+ },
+ {
+ "keyword": "handballeur",
+ "hasLocution": false,
+ "plural": "handballeurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10198922-n",
+ "00464604-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 5080,
+ "created": "2008-07-04T12:54:18.000Z",
+ "lastUpdated": "2021-05-04T19:43:36.967Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joueur de hockey sur glace",
+ "hasLocution": true,
+ "plural": "joueurs de hockey sur glace"
+ },
+ {
+ "keyword": "hockeyeur",
+ "hasLocution": false,
+ "plural": "hockeyeurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10198922-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 5081,
+ "created": "2008-07-04T12:55:01.000Z",
+ "lastUpdated": "2021-07-14T20:22:50.987Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joueur de hockey sur gazon",
+ "hasLocution": true,
+ "plural": "joueurs de hockey sur gazon"
+ },
+ {
+ "keyword": "hockeyeur sur gazon",
+ "hasLocution": false,
+ "plural": "hockeyeurs sur gazon",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy"
+ ],
+ "synsets": [
+ "13173519-n",
+ "15261656-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy"
+ ],
+ "_id": 5076,
+ "created": "2008-07-04T12:48:23.000Z",
+ "lastUpdated": "2021-07-14T20:23:23.696Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "feuille",
+ "hasLocution": true,
+ "plural": "feuilles"
+ },
+ {
+ "type": 2,
+ "keyword": "feuille marron",
+ "hasLocution": true,
+ "plural": "feuilles marrons"
+ },
+ {
+ "type": 2,
+ "keyword": "feuille d'automne",
+ "hasLocution": false,
+ "plural": "feuilles d'automne"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas"
+ ],
+ "synsets": [
+ "03323239-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 5083,
+ "created": "2008-07-04T12:56:22.000Z",
+ "lastUpdated": "2021-04-10T21:22:15.288Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guirlandes de Noël",
+ "hasLocution": false
+ },
+ {
+ "keyword": "guirlandes électriques",
+ "hasLocution": false,
+ "plural": "guirlandes électriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "03796045-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 5084,
+ "created": "2008-07-04T12:57:11.000Z",
+ "lastUpdated": "2021-07-14T20:21:53.599Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moto",
+ "hasLocution": true,
+ "plural": "motos"
+ },
+ {
+ "type": 2,
+ "keyword": "moto de course",
+ "hasLocution": true,
+ "plural": "motos de course"
+ },
+ {
+ "keyword": "motocyclette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "motocyclettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ "06841868-n",
+ "06831828-n",
+ "06837277-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 5085,
+ "created": "2008-07-04T12:57:59.000Z",
+ "lastUpdated": "2021-04-14T00:21:17.913Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "sin traducción",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "athletics"
+ ],
+ "synsets": [
+ "00440766-n",
+ "04044101-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "athletics"
+ ],
+ "_id": 5086,
+ "created": "2008-07-04T12:58:37.000Z",
+ "lastUpdated": "2021-07-14T20:19:36.637Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piste d'athlétisme",
+ "hasLocution": true,
+ "plural": "pistes d'athlétisme"
+ },
+ {
+ "type": 2,
+ "keyword": "piste de course",
+ "hasLocution": false,
+ "plural": "pistes de course"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "13173519-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy",
+ "core vocabulary"
+ ],
+ "_id": 5077,
+ "created": "2008-07-04T12:50:12.000Z",
+ "lastUpdated": "2021-05-04T19:43:02.860Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "feuille",
+ "hasLocution": true,
+ "plural": "feuilles"
+ },
+ {
+ "type": 2,
+ "keyword": "feuille verte",
+ "hasLocution": true,
+ "plural": "feuilles vertes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "basketball"
+ ],
+ "synsets": [
+ "09861435-n",
+ "00482004-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "basketball"
+ ],
+ "_id": 5078,
+ "created": "2008-07-04T12:52:41.000Z",
+ "lastUpdated": "2021-05-04T19:43:14.222Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joueur de basket-ball ",
+ "hasLocution": false,
+ "plural": "joueurs de basket-ball "
+ },
+ {
+ "keyword": "basketteur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "basketteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "winter"
+ ],
+ "synsets": [
+ "04238637-n",
+ "08669951-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "winter"
+ ],
+ "_id": 5087,
+ "created": "2008-07-04T12:59:19.000Z",
+ "lastUpdated": "2024-12-12T15:58:03.914Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piste de ski",
+ "hasLocution": true,
+ "plural": "pistes de ski"
+ },
+ {
+ "type": 2,
+ "keyword": "piste",
+ "hasLocution": true,
+ "plural": "pistes"
+ },
+ {
+ "type": 2,
+ "keyword": "station de ski",
+ "hasLocution": false,
+ "plural": "stations de ski"
+ },
+ {
+ "keyword": "pente de ski",
+ "hasLocution": false,
+ "plural": "pentes de ski",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "09497542-n",
+ "00326920-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 5090,
+ "created": "2008-07-04T13:04:24.000Z",
+ "lastUpdated": "2021-03-27T21:30:43.312Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "centre d'escalade",
+ "hasLocution": true,
+ "plural": "centres d'escalade"
+ },
+ {
+ "keyword": "mur d'escalade",
+ "hasLocution": true,
+ "plural": "murs d'escalade",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious place",
+ "christianity",
+ "christmas"
+ ],
+ "synsets": [
+ "03134287-n",
+ "15221021-n"
+ ],
+ "tags": [
+ "religion",
+ "place",
+ "christianity",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 5089,
+ "created": "2008-07-04T13:03:47.000Z",
+ "lastUpdated": "2021-05-01T20:26:21.920Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crèche",
+ "hasLocution": true,
+ "plural": "crèches"
+ },
+ {
+ "keyword": "scène de la Nativité",
+ "hasLocution": false,
+ "plural": "scènes de la Nativité",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "foreign currency",
+ "orthographic sign"
+ ],
+ "synsets": [
+ "06834306-n",
+ "06834465-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "foreign currency",
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 5091,
+ "created": "2008-07-04T13:07:55.000Z",
+ "lastUpdated": "2021-04-10T21:19:36.123Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dollar",
+ "hasLocution": true,
+ "plural": "dollars"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "$",
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign",
+ "mathematics"
+ ],
+ "synsets": [
+ "13839738-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign",
+ "mathematics"
+ ],
+ "_id": 5093,
+ "created": "2008-07-04T13:10:54.000Z",
+ "lastUpdated": "2021-04-10T21:17:20.115Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pourcentage",
+ "hasLocution": true,
+ "plural": "pourcentages"
+ },
+ {
+ "keyword": "%",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03971038-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 5094,
+ "created": "2008-07-04T13:11:20.000Z",
+ "lastUpdated": "2021-04-14T00:20:24.244Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "train",
+ "hasLocution": true,
+ "plural": "trains"
+ },
+ {
+ "type": 2,
+ "keyword": "petit train ",
+ "hasLocution": false,
+ "plural": "petits trains"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign"
+ ],
+ "synsets": [
+ "06819327-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 5095,
+ "created": "2008-07-04T13:14:16.000Z",
+ "lastUpdated": "2021-04-10T21:16:14.325Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dièse",
+ "hasLocution": true,
+ "plural": "dièses"
+ },
+ {
+ "keyword": "#",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "hashtag",
+ "hasLocution": false,
+ "plural": "hashtags",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "foreign currency",
+ "orthographic sign",
+ "core vocabulary-knowledge",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "13683925-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "foreign currency",
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign",
+ "core vocabulary"
+ ],
+ "_id": 5092,
+ "created": "2008-07-04T13:08:56.000Z",
+ "lastUpdated": "2021-04-10T21:17:53.064Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "euro",
+ "hasLocution": true,
+ "plural": "euros"
+ },
+ {
+ "keyword": "€",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "skating"
+ ],
+ "synsets": [
+ "03563356-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "skating"
+ ],
+ "_id": 5088,
+ "created": "2008-07-04T12:59:49.000Z",
+ "lastUpdated": "2021-07-14T20:16:42.973Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patinoire",
+ "hasLocution": true,
+ "plural": "patinoires"
+ },
+ {
+ "type": 2,
+ "keyword": "piste de patinage",
+ "hasLocution": false,
+ "plural": "pistes de patinage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "education professionals",
+ "educational organization"
+ ],
+ "synsets": [
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education",
+ "organization"
+ ],
+ "_id": 5098,
+ "created": "2008-07-04T13:18:21.000Z",
+ "lastUpdated": "2021-07-14T20:13:08.727Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "directeur des études",
+ "hasLocution": false,
+ "plural": "directeurs des études"
+ },
+ {
+ "keyword": "responsable des études",
+ "hasLocution": false,
+ "plural": "responsables des études",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "education professionals",
+ "educational organization"
+ ],
+ "synsets": [
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education",
+ "organization"
+ ],
+ "_id": 5097,
+ "created": "2008-07-04T13:17:40.000Z",
+ "lastUpdated": "2021-07-14T20:14:20.701Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "directrice des études",
+ "hasLocution": false,
+ "plural": "directrices des études"
+ },
+ {
+ "plural": "responsables des études",
+ "keyword": "responsable des études",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03879526-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 5100,
+ "created": "2008-07-08T11:18:36.000Z",
+ "lastUpdated": "2021-07-18T09:46:39.023Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "raquettes de plage",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "raquettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine",
+ "furniture"
+ ],
+ "synsets": [
+ "00018151-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine",
+ "object",
+ "furniture"
+ ],
+ "_id": 5099,
+ "created": "2008-07-04T13:22:07.000Z",
+ "lastUpdated": "2021-07-14T20:10:57.624Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "sortir du lit"
+ },
+ {
+ "keyword": "se lever",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "smoking"
+ ],
+ "synsets": [
+ "04449965-n",
+ "03034648-n",
+ "03876224-n"
+ ],
+ "tags": [
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "smoking"
+ ],
+ "_id": 5101,
+ "created": "2008-07-08T12:01:02.000Z",
+ "lastUpdated": "2021-04-10T21:46:26.333Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "paquet de cigarettes",
+ "hasLocution": false,
+ "plural": "paquets de cigarettes"
+ },
+ {
+ "type": 2,
+ "keyword": "tabac",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "cigarettes",
+ "hasLocution": false,
+ "plural": "cigarettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "00520389-n",
+ "04306353-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 5102,
+ "created": "2008-07-08T12:10:03.000Z",
+ "lastUpdated": "2021-07-14T20:08:33.341Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "plural": "stands de fête foraine",
+ "keyword": "stand de fête foraine"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "stand de foire",
+ "plural": "stands de foire"
+ },
+ {
+ "keyword": "stand de tir",
+ "hasLocution": false,
+ "plural": "stands de tir",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "personal services",
+ "public administration"
+ ],
+ "synsets": [
+ "10639543-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "personal services",
+ "public administration"
+ ],
+ "_id": 5104,
+ "created": "2008-07-08T12:13:59.000Z",
+ "lastUpdated": "2021-07-14T20:04:16.898Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "assistante sociale",
+ "hasLocution": true,
+ "plural": "assistantes sociales"
+ },
+ {
+ "keyword": "travailleuse sociale",
+ "hasLocution": false,
+ "plural": "travailleuses sociales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "personal services",
+ "public administration"
+ ],
+ "synsets": [
+ "10639543-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "personal services",
+ "public administration"
+ ],
+ "_id": 5103,
+ "created": "2008-07-08T12:13:14.000Z",
+ "lastUpdated": "2021-07-14T20:05:28.809Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "assistant social ",
+ "hasLocution": false,
+ "plural": "assistants sociaux"
+ },
+ {
+ "keyword": "travailleur social",
+ "hasLocution": false,
+ "plural": "travailleurs sociaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "adverb of manner"
+ ],
+ "synsets": [
+ "00032846-s",
+ "00982557-s",
+ "00086161-r",
+ "00106290-r",
+ "00981390-s",
+ "00979699-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "adverb",
+ "adverb of manner"
+ ],
+ "_id": 5306,
+ "created": "2008-07-14T11:16:24.000Z",
+ "lastUpdated": "2024-10-23T11:08:25.203Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "rapide",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "prompt",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "hasLocution": false,
+ "keyword": "vite"
+ },
+ {
+ "keyword": "rapidement",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of place",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00080389-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of place",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 5355,
+ "created": "2008-09-02T10:24:55.000Z",
+ "lastUpdated": "2021-07-14T20:02:14.924Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "dessous",
+ "hasLocution": true
+ },
+ {
+ "keyword": "en dessous",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "en bas",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "sous",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "jewelry",
+ "craftsmanship"
+ ],
+ "synsets": [
+ "02818206-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "jewelry",
+ "work",
+ "secondary sector",
+ "craftsmanship"
+ ],
+ "_id": 5356,
+ "created": "2008-09-02T10:26:13.000Z",
+ "lastUpdated": "2021-07-14T20:00:20.404Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "perles",
+ "plural": "perles"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "perles de verre",
+ "plural": "perles de verre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "01370565-v",
+ "01346574-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 5357,
+ "created": "2008-09-02T10:57:42.000Z",
+ "lastUpdated": "2021-07-14T19:58:24.600Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attacher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "boutonner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "08585406-n",
+ "00211367-n",
+ "08583423-n",
+ "02615799-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 5358,
+ "created": "2008-09-02T12:19:24.000Z",
+ "lastUpdated": "2021-07-14T19:57:17.266Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mener quelque chose à son terme, le finir, l'achever : Terminer un tableau. J'ai terminé la lecture de votre rapport.",
+ "keyword": "terminer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "finir",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "fini",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic concepts"
+ ],
+ "synsets": [
+ "02057865-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5359,
+ "created": "2008-09-02T12:20:04.000Z",
+ "lastUpdated": "2021-07-18T09:47:33.410Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rapprocher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se rapprocher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10778715-n",
+ "00481222-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 5082,
+ "created": "2008-07-04T12:55:40.000Z",
+ "lastUpdated": "2021-04-10T21:23:06.952Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joueur de volley-ball",
+ "hasLocution": true,
+ "plural": "joueurs de volley-ball"
+ },
+ {
+ "keyword": "volleyeur",
+ "hasLocution": false,
+ "plural": "volleyeurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "06627914-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 5105,
+ "created": "2008-07-08T12:24:59.000Z",
+ "lastUpdated": "2021-04-14T00:18:43.943Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "train fantôme",
+ "hasLocution": true,
+ "plural": "trains fantômes"
+ },
+ {
+ "keyword": "attraction",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "attractions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cosmetic"
+ ],
+ "synsets": [
+ "01366351-v",
+ "01614650-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 5096,
+ "created": "2008-07-04T13:16:58.000Z",
+ "lastUpdated": "2021-04-10T21:13:05.882Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se mettre de la crème",
+ "hasLocution": true
+ },
+ {
+ "keyword": "appliquer de la crème",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre de la crème",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories"
+ ],
+ "synsets": [
+ "00420328-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 5363,
+ "created": "2008-09-02T12:24:17.000Z",
+ "lastUpdated": "2021-07-18T09:47:38.741Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "desserrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "continent",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "09212308-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "continent",
+ "core vocabulary"
+ ],
+ "_id": 5364,
+ "created": "2008-09-02T12:25:20.000Z",
+ "lastUpdated": "2021-04-10T21:53:28.214Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Afrique",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool"
+ ],
+ "synsets": [
+ "01249165-v",
+ "00806415-s",
+ "00804397-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool"
+ ],
+ "_id": 5362,
+ "created": "2008-09-02T12:23:32.000Z",
+ "lastUpdated": "2021-07-14T19:56:42.676Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "affûter",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "aiguisé",
+ "hasLocution": false
+ },
+ {
+ "keyword": "pointu",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "aiguiser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming pool",
+ "sea and oceans",
+ "river"
+ ],
+ "synsets": [
+ "00361154-v",
+ "02110088-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "swimming pool",
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean",
+ "river"
+ ],
+ "_id": 5366,
+ "created": "2008-09-02T12:28:23.000Z",
+ "lastUpdated": "2024-12-05T09:43:19.215Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "noyer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se noyer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "couler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02275890-s",
+ "00117698-r",
+ "02118964-a",
+ "00446553-a"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 5367,
+ "created": "2008-09-02T12:29:08.000Z",
+ "lastUpdated": "2021-07-18T09:47:49.085Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "à côté de",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "près de",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "proche",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "près",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "les deux",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "conjoint",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage"
+ ],
+ "synsets": [
+ "01893603-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 5365,
+ "created": "2008-09-02T12:26:57.000Z",
+ "lastUpdated": "2021-04-10T21:54:52.122Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "agiter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "secouer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "02154277-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 5368,
+ "created": "2008-09-02T12:29:49.000Z",
+ "lastUpdated": "2021-04-10T21:56:07.604Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aile",
+ "hasLocution": true,
+ "plural": "ailes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "02810801-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 5369,
+ "created": "2008-09-02T12:33:29.000Z",
+ "lastUpdated": "2021-04-10T21:56:34.273Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peignoir",
+ "hasLocution": true,
+ "plural": "peignoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing",
+ "pet"
+ ],
+ "synsets": [
+ "02735077-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing",
+ "pet"
+ ],
+ "_id": 5360,
+ "created": "2008-09-02T12:21:47.000Z",
+ "lastUpdated": "2021-04-10T21:51:57.122Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aquarium",
+ "hasLocution": true,
+ "plural": "aquariums"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00037291-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 5361,
+ "created": "2008-09-02T12:22:42.000Z",
+ "lastUpdated": "2021-04-14T00:12:10.343Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "raser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se raser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07734492-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 5370,
+ "created": "2008-09-02T12:34:11.000Z",
+ "lastUpdated": "2021-04-10T21:57:34.098Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "artichaut",
+ "hasLocution": true,
+ "plural": "artichauts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14556418-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 5372,
+ "created": "2008-09-02T12:35:58.000Z",
+ "lastUpdated": "2021-04-10T21:57:55.319Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "allergie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic concepts"
+ ],
+ "synsets": [
+ "02436167-v",
+ "01559703-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5371,
+ "created": "2008-09-02T12:34:47.000Z",
+ "lastUpdated": "2021-07-18T09:47:54.908Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éloigner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'éloigner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "séparer ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of place",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00071450-r",
+ "00072001-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of place",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5376,
+ "created": "2008-09-02T12:38:38.000Z",
+ "lastUpdated": "2021-04-14T00:08:13.811Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "autour",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "continent",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "09218493-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "continent",
+ "core vocabulary"
+ ],
+ "_id": 5377,
+ "created": "2008-09-02T12:39:31.000Z",
+ "lastUpdated": "2021-04-10T22:00:52.114Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Amérique",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of place",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00109919-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of place",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5375,
+ "created": "2008-09-02T12:38:03.000Z",
+ "lastUpdated": "2021-04-14T00:09:02.518Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "là",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "là-bas",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "marine animal",
+ "fishing",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02528752-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing",
+ "domestic"
+ ],
+ "_id": 5378,
+ "created": "2008-09-02T12:43:36.000Z",
+ "lastUpdated": "2021-04-10T22:01:10.329Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "anguille",
+ "hasLocution": true,
+ "plural": "anguilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories",
+ "routine"
+ ],
+ "synsets": [
+ "00421085-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories",
+ "person",
+ "routine"
+ ],
+ "_id": 5380,
+ "created": "2008-09-03T13:37:06.000Z",
+ "lastUpdated": "2021-04-10T22:02:41.955Z",
+ "keywords": [
+ {
+ "keyword": "serrer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "resserrer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool"
+ ],
+ "synsets": [
+ "00421085-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool"
+ ],
+ "_id": 5381,
+ "created": "2008-09-03T13:38:18.000Z",
+ "lastUpdated": "2021-04-10T22:04:09.819Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "serrer l'écrou",
+ "hasLocution": true
+ },
+ {
+ "keyword": "serrer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "reserrer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traffic",
+ "usual verbs",
+ "core vocabulary-communication",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "01938286-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 5379,
+ "created": "2008-09-03T13:35:57.000Z",
+ "lastUpdated": "2021-04-10T22:01:43.723Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "stationner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se garer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of place",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00109247-r",
+ "00109415-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of place",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5382,
+ "created": "2008-09-03T13:39:00.000Z",
+ "lastUpdated": "2021-07-18T09:48:19.769Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ici",
+ "hasLocution": true
+ },
+ {
+ "keyword": "là",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region",
+ "aragon"
+ ],
+ "synsets": [
+ "09049830-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region",
+ "Aragon"
+ ],
+ "_id": 5383,
+ "created": "2008-09-03T13:41:01.000Z",
+ "lastUpdated": "2021-04-10T22:04:25.591Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Aragon",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region",
+ "aragon"
+ ],
+ "synsets": [
+ "09049830-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region",
+ "Aragon"
+ ],
+ "_id": 5384,
+ "created": "2008-09-03T13:41:49.000Z",
+ "lastUpdated": "2021-04-10T22:04:36.496Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Aragon",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04562157-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 5385,
+ "created": "2008-09-03T13:43:01.000Z",
+ "lastUpdated": "2021-04-10T22:06:23.067Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rondelle",
+ "hasLocution": true,
+ "plural": "rondelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "weapon"
+ ],
+ "synsets": [
+ "02882960-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "object",
+ "weapon"
+ ],
+ "_id": 5386,
+ "created": "2008-09-03T13:44:06.000Z",
+ "lastUpdated": "2024-12-04T15:17:14.200Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arc",
+ "hasLocution": true,
+ "plural": "arcs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "olympic games"
+ ],
+ "synsets": [
+ "09824747-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "event",
+ "sport event",
+ "olympic games"
+ ],
+ "_id": 5387,
+ "created": "2008-09-03T13:46:50.000Z",
+ "lastUpdated": "2024-12-09T06:37:26.187Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "archer",
+ "hasLocution": true,
+ "plural": "archers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indefinite adjective",
+ "indefinite pronoun",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00007414-r",
+ "01683245-s",
+ "02276025-s",
+ "00496454-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "indefinite adjective",
+ "pronoun",
+ "indefinite pronoun",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5374,
+ "created": "2008-09-02T12:37:23.000Z",
+ "lastUpdated": "2021-07-18T09:48:04.001Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "quelques-uns",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "certaine",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "quelque",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "quelques",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "plusieurs",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "quelques unes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy",
+ "fish-animal"
+ ],
+ "synsets": [
+ "02468763-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy",
+ "vertebrate",
+ "fish"
+ ],
+ "_id": 5373,
+ "created": "2008-09-02T12:36:43.000Z",
+ "lastUpdated": "2024-12-09T06:28:25.270Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nageoires",
+ "hasLocution": true,
+ "plural": "nageoires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01302730-v",
+ "01289516-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 5391,
+ "created": "2008-09-03T13:49:56.000Z",
+ "lastUpdated": "2021-07-12T23:36:45.001Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "nouer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "attacher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "condiment",
+ "cookery"
+ ],
+ "synsets": [
+ "02199916-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment",
+ "cookery"
+ ],
+ "_id": 5392,
+ "created": "2008-09-03T13:50:38.000Z",
+ "lastUpdated": "2021-04-10T22:08:26.946Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sucrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07669757-n",
+ "02793692-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 5393,
+ "created": "2008-09-03T13:51:37.000Z",
+ "lastUpdated": "2021-04-10T22:10:40.951Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "barbecue",
+ "hasLocution": true,
+ "plural": "barbecues"
+ },
+ {
+ "hasLocution": true,
+ "keyword": "gril",
+ "type": 2,
+ "plural": "grils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "religious building",
+ "religious place",
+ "fiestas del pilar",
+ "saragossa"
+ ],
+ "synsets": [
+ "02804350-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "building",
+ "religion",
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "Aragon",
+ "Saragossa"
+ ],
+ "_id": 5394,
+ "created": "2008-09-03T13:52:27.000Z",
+ "lastUpdated": "2021-04-14T00:07:17.839Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "basilique",
+ "hasLocution": true,
+ "plural": "basiliques"
+ },
+ {
+ "type": 1,
+ "keyword": "Basilique del Pilar",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "hasLocution": false,
+ "keyword": "Vierge du Pilar"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "regional dance",
+ "aragon"
+ ],
+ "synsets": [
+ "10118631-n",
+ "05994487-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "dance",
+ "regional dance",
+ "show",
+ "Aragon"
+ ],
+ "_id": 5395,
+ "created": "2008-09-03T13:53:39.000Z",
+ "lastUpdated": "2021-07-12T23:37:11.548Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "danseuse folklorique",
+ "hasLocution": false,
+ "plural": "danseuses folkloriques"
+ },
+ {
+ "type": 2,
+ "keyword": "danseuse de jota",
+ "hasLocution": true,
+ "plural": "danseuses de jota"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "regional dance",
+ "aragon"
+ ],
+ "synsets": [
+ "10118631-n",
+ "05994487-n"
+ ],
+ "tags": [
+ "scenic art",
+ "dance",
+ "regional dance",
+ "show",
+ "Aragon"
+ ],
+ "_id": 5396,
+ "created": "2008-09-03T13:54:33.000Z",
+ "lastUpdated": "2021-07-18T09:49:06.044Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "baturro",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "danseur de jota",
+ "hasLocution": true,
+ "plural": "danseurs de jota"
+ },
+ {
+ "keyword": "danseur folklorique",
+ "hasLocution": false,
+ "plural": "danseurs folkloriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "continent",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "09230176-n",
+ "09277520-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "continent",
+ "core vocabulary"
+ ],
+ "_id": 5390,
+ "created": "2008-09-03T13:49:22.000Z",
+ "lastUpdated": "2021-04-10T22:08:04.046Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Asie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of manner",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00011555-r",
+ "00636250-a",
+ "02088253-s",
+ "06700446-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of manner",
+ "core vocabulary"
+ ],
+ "_id": 5397,
+ "created": "2008-09-03T13:55:26.000Z",
+ "lastUpdated": "2021-07-18T09:49:46.813Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "bien",
+ "hasLocution": true
+ },
+ {
+ "keyword": "super",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "d'accord",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "board game",
+ "sport modality"
+ ],
+ "synsets": [
+ "03988788-n",
+ "00500935-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "board game",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 5398,
+ "created": "2008-09-03T13:56:05.000Z",
+ "lastUpdated": "2021-07-18T09:49:51.632Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "billard",
+ "hasLocution": true,
+ "plural": "billards"
+ },
+ {
+ "type": 2,
+ "keyword": "table de billard",
+ "hasLocution": true,
+ "plural": "tables de billard"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of place",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00096883-r",
+ "02499848-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of place",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 5388,
+ "created": "2008-09-03T13:47:40.000Z",
+ "lastUpdated": "2021-07-18T09:48:52.861Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "en-haut",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "christmas"
+ ],
+ "synsets": [
+ "07596347-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 5389,
+ "created": "2008-09-03T13:48:30.000Z",
+ "lastUpdated": "2021-07-12T23:35:35.932Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "plural": "gigots",
+ "keyword": "gigot"
+ },
+ {
+ "hasLocution": true,
+ "type": 2,
+ "keyword": "rôti",
+ "plural": "rôtis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beach"
+ ],
+ "synsets": [
+ "00103780-v",
+ "00103901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 5402,
+ "created": "2008-09-04T09:12:38.000Z",
+ "lastUpdated": "2021-07-18T09:51:18.355Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bronzer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prendre un bain de soleil",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "beverage"
+ ],
+ "synsets": [
+ "04599923-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 5401,
+ "created": "2008-09-03T14:01:02.000Z",
+ "lastUpdated": "2021-07-18T09:51:13.766Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "outre",
+ "hasLocution": true,
+ "plural": "outre"
+ },
+ {
+ "type": 2,
+ "keyword": "outre à vin",
+ "hasLocution": true,
+ "plural": "outres à vin"
+ },
+ {
+ "keyword": "gourde",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "gourdes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character",
+ "halloween",
+ "costume"
+ ],
+ "synsets": [
+ "09526414-n",
+ "10075105-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature",
+ "event",
+ "popular event",
+ "halloween",
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 5404,
+ "created": "2008-09-04T09:14:57.000Z",
+ "lastUpdated": "2021-04-10T22:15:38.321Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sorcière",
+ "hasLocution": true,
+ "plural": "sorcières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "09950334-n",
+ "09950623-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 5405,
+ "created": "2008-09-04T09:16:34.000Z",
+ "lastUpdated": "2021-07-18T09:51:30.120Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouffon",
+ "hasLocution": true,
+ "plural": "bouffons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14169755-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 5403,
+ "created": "2008-09-04T09:13:24.000Z",
+ "lastUpdated": "2021-04-10T22:14:57.464Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bronchite",
+ "hasLocution": true,
+ "plural": "bronchites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 5407,
+ "created": "2008-09-04T09:26:07.000Z",
+ "lastUpdated": "2021-07-18T09:51:38.040Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cabochard",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Cabochard Berrugon",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07728127-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 5399,
+ "created": "2008-09-03T13:59:09.000Z",
+ "lastUpdated": "2021-07-18T09:50:45.438Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sachet d'amuse-gueule",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "chips au fromage",
+ "hasLocution": false
+ },
+ {
+ "keyword": "biscuits au fromage",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07726825-n",
+ "07728127-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 5400,
+ "created": "2008-09-03T14:00:11.000Z",
+ "lastUpdated": "2021-04-10T22:13:31.061Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "sac de chips",
+ "plural": "sac de chips"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "chips",
+ "plural": "chips"
+ },
+ {
+ "type": 2,
+ "keyword": "paquet de chips",
+ "hasLocution": true,
+ "plural": "paquets de chips"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character",
+ "book character",
+ "middle ages"
+ ],
+ "synsets": [
+ "02742673-n",
+ "10258072-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "book character",
+ "literature",
+ "middle ages"
+ ],
+ "_id": 5406,
+ "created": "2008-09-04T09:21:01.000Z",
+ "lastUpdated": "2021-04-14T00:01:18.417Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "armure",
+ "hasLocution": false,
+ "plural": "armures"
+ },
+ {
+ "keyword": "chevalier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chevaliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 5409,
+ "created": "2008-09-04T11:13:50.000Z",
+ "lastUpdated": "2021-07-18T09:51:45.516Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cabochard",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Cabocharde Forana",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 5412,
+ "created": "2008-09-04T11:16:51.000Z",
+ "lastUpdated": "2021-07-18T09:52:11.641Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cabochard",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Cabochard Pilara",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 5414,
+ "created": "2008-09-04T11:18:09.000Z",
+ "lastUpdated": "2021-07-18T09:52:20.659Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cabochard",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Torero",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 5413,
+ "created": "2008-09-04T11:17:33.000Z",
+ "lastUpdated": "2021-07-18T09:52:16.398Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cabochard",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Cabochard Robaculeros",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 5415,
+ "created": "2008-09-04T11:18:42.000Z",
+ "lastUpdated": "2021-07-18T09:52:27.471Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cabochard",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Borgne",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 5411,
+ "created": "2008-09-04T11:15:47.000Z",
+ "lastUpdated": "2021-07-18T09:52:00.516Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cabochard",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Cabochard Morico",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 5416,
+ "created": "2008-09-04T11:19:29.000Z",
+ "lastUpdated": "2021-04-13T23:58:52.638Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grosses têtes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "fiestas del pilar",
+ "popular event"
+ ],
+ "synsets": [
+ "03820357-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "event",
+ "popular event",
+ "fiestas del pilar"
+ ],
+ "_id": 5417,
+ "created": "2008-09-04T11:20:16.000Z",
+ "lastUpdated": "2024-12-08T15:49:07.303Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "foulard",
+ "hasLocution": true,
+ "plural": "foulards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mollusc",
+ "oviparous",
+ "marine animal"
+ ],
+ "synsets": [
+ "01973921-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea"
+ ],
+ "_id": 5418,
+ "created": "2008-09-04T11:31:21.000Z",
+ "lastUpdated": "2021-04-10T22:20:36.526Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "calamar",
+ "hasLocution": true,
+ "plural": "calamars"
+ },
+ {
+ "keyword": "encornet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "encornets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 5410,
+ "created": "2008-09-04T11:15:12.000Z",
+ "lastUpdated": "2021-07-18T09:51:52.610Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cabochard",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Cabochard Forano",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "02942270-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 5419,
+ "created": "2008-09-04T11:32:07.000Z",
+ "lastUpdated": "2021-04-10T22:22:01.674Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "calculatrice",
+ "hasLocution": true,
+ "plural": "calculatrices"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "machine à calculer",
+ "plural": "machines à calculer",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "saragossa"
+ ],
+ "synsets": [
+ "08336128-n",
+ "02983900-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "Aragon",
+ "Saragossa"
+ ],
+ "_id": 5421,
+ "created": "2008-09-04T11:33:53.000Z",
+ "lastUpdated": "2021-04-13T23:58:32.912Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "château",
+ "hasLocution": true,
+ "plural": "châteaux"
+ },
+ {
+ "type": 1,
+ "hasLocution": false,
+ "keyword": "Palais de l'Aljaferia"
+ },
+ {
+ "keyword": "Cortès d'Aragon",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Parlement d'Aragon",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "huesca"
+ ],
+ "synsets": [
+ "02983900-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "Aragon",
+ "Huesca"
+ ],
+ "_id": 5422,
+ "created": "2008-09-04T11:34:56.000Z",
+ "lastUpdated": "2021-04-13T23:55:52.130Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "château",
+ "hasLocution": true,
+ "plural": "châteaux"
+ },
+ {
+ "type": 1,
+ "keyword": "Château de Loarre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts",
+ "mathematics"
+ ],
+ "synsets": [
+ "08538999-n"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5424,
+ "created": "2008-09-04T11:36:41.000Z",
+ "lastUpdated": "2024-12-05T06:36:49.571Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "centre",
+ "hasLocution": true,
+ "plural": "centres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "religious building",
+ "religious place",
+ "christianity",
+ "saragossa"
+ ],
+ "synsets": [
+ "02987658-n",
+ "02987516-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "building",
+ "religion",
+ "christianity",
+ "Aragon",
+ "Saragossa"
+ ],
+ "_id": 5423,
+ "created": "2008-09-04T11:36:05.000Z",
+ "lastUpdated": "2021-04-13T23:54:55.417Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Cathédrale La Séo",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "cathédrale",
+ "hasLocution": true,
+ "plural": "cathédrales"
+ },
+ {
+ "type": 1,
+ "keyword": "Cathédrale de Saragosse",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14313006-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 5427,
+ "created": "2008-09-04T11:43:24.000Z",
+ "lastUpdated": "2021-04-13T23:53:02.119Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bosse sur la tête",
+ "hasLocution": false,
+ "plural": "bosses sur la tête"
+ },
+ {
+ "keyword": "choc sur la tête",
+ "hasLocution": false,
+ "plural": "chocs sur la tête",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features"
+ ],
+ "synsets": [
+ "00212440-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features"
+ ],
+ "_id": 5420,
+ "created": "2008-09-04T11:32:52.000Z",
+ "lastUpdated": "2021-04-10T22:22:23.240Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "chauve",
+ "hasLocution": true,
+ "plural": "chauves"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cleaning product"
+ ],
+ "synsets": [
+ "01246546-v",
+ "01246373-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 5425,
+ "created": "2008-09-04T11:37:31.000Z",
+ "lastUpdated": "2024-12-05T12:25:00.462Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "brosser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "hairdresser"
+ ],
+ "synsets": [
+ "05267863-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 5429,
+ "created": "2008-09-04T13:34:08.000Z",
+ "lastUpdated": "2021-04-10T22:26:43.296Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couette",
+ "hasLocution": true,
+ "plural": "couettes"
+ },
+ {
+ "keyword": "queue de cheval",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "queues de cheval"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14386888-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 5428,
+ "created": "2008-09-04T11:44:02.000Z",
+ "lastUpdated": "2021-04-13T23:51:51.960Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cicatrice",
+ "hasLocution": true,
+ "plural": "cicatrices"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information technology",
+ "mass media",
+ "computing"
+ ],
+ "synsets": [
+ "06289979-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "computing",
+ "communication",
+ "mass media"
+ ],
+ "_id": 5432,
+ "created": "2008-09-04T13:36:33.000Z",
+ "lastUpdated": "2021-04-13T23:50:00.251Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "email",
+ "plural": "emails"
+ },
+ {
+ "type": 2,
+ "keyword": "courriel",
+ "hasLocution": true,
+ "plural": "courriels"
+ },
+ {
+ "keyword": "courrier électronique",
+ "hasLocution": false,
+ "plural": "courriers électroniques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00346415-v",
+ "02614382-v",
+ "08671448-n",
+ "07339790-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 5431,
+ "created": "2008-09-04T13:35:50.000Z",
+ "lastUpdated": "2021-07-18T09:53:24.685Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "commencer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "débuter",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "début",
+ "hasLocution": true,
+ "plural": "débuts"
+ },
+ {
+ "keyword": "départ",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "départs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of place",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00488355-r",
+ "01210218-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of place",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5437,
+ "created": "2008-09-04T13:39:59.000Z",
+ "lastUpdated": "2021-04-13T23:45:06.639Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "dessous",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sous",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "en dessous",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system",
+ "human body"
+ ],
+ "synsets": [
+ "05286525-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system"
+ ],
+ "_id": 5433,
+ "created": "2008-09-04T13:37:20.000Z",
+ "lastUpdated": "2024-12-11T17:31:10.368Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "côtes",
+ "hasLocution": true,
+ "plural": "côtes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "13759620-n",
+ "03395053-n",
+ "05876035-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 5436,
+ "created": "2008-09-04T13:39:23.000Z",
+ "lastUpdated": "2021-07-18T11:19:47.779Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "1/4",
+ "hasLocution": false
+ },
+ {
+ "keyword": "quart",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "quarts"
+ },
+ {
+ "type": 4,
+ "keyword": "quart",
+ "hasLocution": false,
+ "plural": "quarts"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of place",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00067181-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of place",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5438,
+ "created": "2008-09-04T13:42:18.000Z",
+ "lastUpdated": "2021-04-13T23:47:22.450Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "devant",
+ "hasLocution": true
+ },
+ {
+ "keyword": "en avant",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "hasLocution": false,
+ "keyword": "en tête",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "playground"
+ ],
+ "synsets": [
+ "01881348-v",
+ "01881613-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground"
+ ],
+ "_id": 5430,
+ "created": "2008-09-04T13:34:54.000Z",
+ "lastUpdated": "2021-07-18T09:53:05.327Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "balancer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se balancer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "balançoire",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "balançoires"
+ },
+ {
+ "keyword": "pousser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of place",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00111276-r",
+ "00111558-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of place",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 5439,
+ "created": "2008-09-04T13:42:55.000Z",
+ "lastUpdated": "2021-07-18T09:54:08.160Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "dedans",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "contenu",
+ "hasLocution": true
+ },
+ {
+ "keyword": "intérieur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "intérieur"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "01370704-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 5440,
+ "created": "2008-09-04T13:43:51.000Z",
+ "lastUpdated": "2021-04-16T20:26:23.178Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "défaire",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "déboutonner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "09566877-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 5445,
+ "created": "2008-09-04T13:56:47.000Z",
+ "lastUpdated": "2021-04-15T14:37:37.548Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lutin",
+ "hasLocution": true,
+ "plural": "lutins"
+ },
+ {
+ "keyword": "gobelin",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gobelins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of place",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00223465-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of place",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5443,
+ "created": "2008-09-04T13:45:57.000Z",
+ "lastUpdated": "2021-07-18T09:54:52.953Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "derrière",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "river"
+ ],
+ "synsets": [
+ "09294321-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "river"
+ ],
+ "_id": 5446,
+ "created": "2008-09-04T13:57:34.000Z",
+ "lastUpdated": "2021-04-15T14:36:30.257Z",
+ "keywords": [
+ {
+ "type": 1,
+ "hasLocution": false,
+ "keyword": "rivière Ebro"
+ },
+ {
+ "type": 1,
+ "keyword": "Ebro",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01516062-v",
+ "01501904-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 5447,
+ "created": "2008-09-04T13:58:22.000Z",
+ "lastUpdated": "2021-07-18T09:55:12.181Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "jeter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "lancer",
+ "type": 2,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "07493458-n",
+ "00023639-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 5442,
+ "created": "2008-09-04T13:45:26.000Z",
+ "lastUpdated": "2021-07-18T09:54:43.375Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "évanouissement",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'évanouir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "malaise",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "malaises"
+ },
+ {
+ "keyword": "syncope",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "syncopes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "02343725-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 5448,
+ "created": "2008-09-04T14:00:30.000Z",
+ "lastUpdated": "2021-07-18T09:55:23.610Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mettre de l'essence",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire le plein",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of place",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00080519-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of place",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5451,
+ "created": "2008-09-05T11:12:38.000Z",
+ "lastUpdated": "2021-07-18T09:55:32.914Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "dessus",
+ "hasLocution": true
+ },
+ {
+ "keyword": "au-dessus",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "hasLocution": true,
+ "keyword": "sur",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts"
+ ],
+ "synsets": [
+ "00500585-r",
+ "00252367-r",
+ "01018550-s"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5449,
+ "created": "2008-09-05T11:10:10.000Z",
+ "lastUpdated": "2021-05-11T07:28:27.581Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "au milieu",
+ "hasLocution": true
+ },
+ {
+ "keyword": "entre",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "09564236-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 5450,
+ "created": "2008-09-05T11:11:47.000Z",
+ "lastUpdated": "2021-04-15T14:35:20.577Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "plural": "nains",
+ "keyword": "nain"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "gnome",
+ "plural": "gnomes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07747563-n",
+ "11973808-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 5452,
+ "created": "2008-09-05T11:13:23.000Z",
+ "lastUpdated": "2021-04-15T14:33:12.412Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "endive",
+ "hasLocution": true,
+ "plural": "endives"
+ },
+ {
+ "keyword": "chicorée",
+ "hasLocution": false,
+ "plural": "chicorées",
+ "type": 2
+ },
+ {
+ "keyword": "chicon",
+ "hasLocution": false,
+ "plural": "chicon",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication",
+ "human response",
+ "feeding",
+ "mode of transport",
+ "educational material",
+ "sport material",
+ "toy"
+ ],
+ "synsets": [
+ "01829179-v",
+ "01191258-v",
+ "00711034-v",
+ "00905166-v",
+ "00905052-v",
+ "01830126-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary",
+ "psychology",
+ "human response",
+ "feeding",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "education",
+ "educational material",
+ "leisure",
+ "sport",
+ "sport material",
+ "toy"
+ ],
+ "_id": 5441,
+ "created": "2008-09-04T13:44:35.000Z",
+ "lastUpdated": "2025-01-11T07:53:26.553Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Avoir la volonté de, souhaiter",
+ "keyword": "vouloir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "désirer",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "je veux",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "je veux celui-là",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "avoir envie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "01524545-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 5453,
+ "created": "2008-09-05T11:14:15.000Z",
+ "lastUpdated": "2021-04-15T14:32:15.206Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "enfiler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "01905518-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 5456,
+ "created": "2008-09-05T11:16:24.000Z",
+ "lastUpdated": "2021-04-15T14:27:14.743Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écailles",
+ "hasLocution": true,
+ "plural": "écailles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "01903129-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 5459,
+ "created": "2008-09-05T12:02:40.000Z",
+ "lastUpdated": "2021-07-18T09:55:48.698Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arête",
+ "hasLocution": true,
+ "plural": "arêtes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "01701582-s",
+ "15017180-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 5457,
+ "created": "2008-09-05T11:53:05.000Z",
+ "lastUpdated": "2021-04-15T14:27:01.783Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plâtre",
+ "hasLocution": true,
+ "plural": "plâtre"
+ },
+ {
+ "type": 2,
+ "keyword": "plâtré",
+ "hasLocution": true,
+ "plural": "plâtrés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "07752668-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable",
+ "plant",
+ "hervaceouos plant"
+ ],
+ "_id": 5460,
+ "created": "2008-09-05T12:29:19.000Z",
+ "lastUpdated": "2021-04-15T14:25:20.994Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "épinards",
+ "hasLocution": true,
+ "plural": "épinards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 5461,
+ "created": "2008-09-05T13:28:28.000Z",
+ "lastUpdated": "2021-07-18T09:55:55.909Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cabochard",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Pharmacien",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts"
+ ],
+ "synsets": [
+ "00522139-a",
+ "00517305-s"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5455,
+ "created": "2008-09-05T11:15:22.000Z",
+ "lastUpdated": "2021-04-15T14:29:30.371Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "entier",
+ "hasLocution": true,
+ "plural": "entiers"
+ },
+ {
+ "keyword": "complet",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "complets"
+ },
+ {
+ "keyword": "plein",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "pleins"
+ },
+ {
+ "keyword": "total",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "totaux"
+ },
+ {
+ "keyword": "4/4",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "season",
+ "categorization"
+ ],
+ "synsets": [
+ "15261272-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "season",
+ "categorization"
+ ],
+ "_id": 5464,
+ "created": "2008-09-10T11:42:06.000Z",
+ "lastUpdated": "2021-08-02T22:16:23.567Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "saison",
+ "plural": "saisons"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "saison",
+ "plural": "saisons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02661230-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 5465,
+ "created": "2008-09-10T11:42:41.000Z",
+ "lastUpdated": "2021-04-14T21:47:23.653Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Réunit le sujet au complément précédé d'une préposition, ou à l'adverbe de manière, de temps, de lieu pour indiquer l'appartenance, l'origine, le lieu, le temps, l'état, l'opinion, etc. : Ce livre est à moi. Ãtre de Paris. Ãtre en deuil, sans ressources.",
+ "keyword": "être",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication",
+ "object",
+ "food",
+ "mode of transport",
+ "educational material",
+ "sport material",
+ "medical equipment"
+ ],
+ "synsets": [
+ "02661230-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary",
+ "object",
+ "feeding",
+ "food",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "education",
+ "educational material",
+ "leisure",
+ "sport",
+ "sport material",
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 5466,
+ "created": "2008-09-10T11:43:12.000Z",
+ "lastUpdated": "2025-01-10T07:08:36.185Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "être",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07604518-n",
+ "07608052-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 5467,
+ "created": "2008-09-10T11:44:02.000Z",
+ "lastUpdated": "2021-04-14T21:47:06.077Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "estouffade",
+ "hasLocution": true,
+ "plural": "estouffades"
+ },
+ {
+ "keyword": "pot-au-feu",
+ "hasLocution": false,
+ "plural": "pots-au-feu",
+ "type": 2
+ },
+ {
+ "keyword": "ragoût de viande",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ragoûts de viande"
+ },
+ {
+ "keyword": "daube",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "daubes"
+ },
+ {
+ "keyword": "civet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "civets"
+ },
+ {
+ "keyword": "ragoût",
+ "hasLocution": false,
+ "plural": "ragoûts",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "continent"
+ ],
+ "synsets": [
+ "09298379-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "continent"
+ ],
+ "_id": 5468,
+ "created": "2008-09-10T11:44:53.000Z",
+ "lastUpdated": "2021-04-14T21:45:45.556Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Europe",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry",
+ "basic concepts"
+ ],
+ "synsets": [
+ "08561850-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry",
+ "basic concepts"
+ ],
+ "_id": 5463,
+ "created": "2008-09-10T11:41:09.000Z",
+ "lastUpdated": "2021-04-15T14:25:05.516Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coin",
+ "hasLocution": true,
+ "plural": "coins"
+ },
+ {
+ "keyword": "angle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "angles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "movie character",
+ "tale character",
+ "halloween",
+ "costume"
+ ],
+ "synsets": [
+ "09570240-n",
+ "09569105-n"
+ ],
+ "tags": [
+ "character",
+ "movie character",
+ "cinema",
+ "book character",
+ "tale character",
+ "literature",
+ "event",
+ "popular event",
+ "halloween",
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 5469,
+ "created": "2008-09-10T11:45:53.000Z",
+ "lastUpdated": "2021-04-15T14:23:58.403Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fantôme",
+ "hasLocution": true,
+ "plural": "fantômes"
+ },
+ {
+ "keyword": "spectre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "spectres"
+ },
+ {
+ "keyword": "revenant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "revenants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14388761-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 5470,
+ "created": "2008-09-10T11:50:06.000Z",
+ "lastUpdated": "2021-04-15T14:22:07.789Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fièvre",
+ "hasLocution": true,
+ "plural": "fièvres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "02745758-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 5471,
+ "created": "2008-09-10T11:51:05.000Z",
+ "lastUpdated": "2021-04-15T14:21:26.451Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "flèche",
+ "hasLocution": true,
+ "plural": "flèches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "show",
+ "popular festival"
+ ],
+ "synsets": [
+ "03353300-n"
+ ],
+ "tags": [
+ "leisure",
+ "show",
+ "work",
+ "event",
+ "popular event",
+ "popular festival"
+ ],
+ "_id": 5474,
+ "created": "2008-09-10T11:54:59.000Z",
+ "lastUpdated": "2021-04-15T14:18:53.518Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "feux d'artifice",
+ "hasLocution": true,
+ "plural": "feux d'artifice"
+ },
+ {
+ "keyword": "pyrotechnie",
+ "hasLocution": false,
+ "plural": "pyrotechnies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01362506-v",
+ "01362135-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 5454,
+ "created": "2008-09-05T11:14:50.000Z",
+ "lastUpdated": "2021-04-15T14:32:08.987Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "enfiler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "03024375-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5472,
+ "created": "2008-09-10T11:51:55.000Z",
+ "lastUpdated": "2021-04-15T14:21:01.487Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ciseau à bois",
+ "hasLocution": true,
+ "plural": "ciseaux à bois"
+ },
+ {
+ "keyword": "burin",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "burins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [
+ "10148670-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 5478,
+ "created": "2008-09-10T11:57:41.000Z",
+ "lastUpdated": "2021-04-15T14:15:46.692Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "géants",
+ "hasLocution": true,
+ "plural": "géants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "02778488-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 5476,
+ "created": "2008-09-10T11:56:20.000Z",
+ "lastUpdated": "2021-03-26T14:02:21.447Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cornemuse (Aragon)",
+ "hasLocution": false,
+ "plural": "cornemuses (Aragon)"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14145979-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 5479,
+ "created": "2008-09-10T11:58:28.000Z",
+ "lastUpdated": "2021-04-15T14:15:00.311Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grippe",
+ "hasLocution": true,
+ "plural": "grippes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "body sensation"
+ ],
+ "synsets": [
+ "00145265-n",
+ "02124605-v"
+ ],
+ "tags": [
+ "human body",
+ "body sensation"
+ ],
+ "_id": 5480,
+ "created": "2008-09-10T11:59:03.000Z",
+ "lastUpdated": "2021-04-15T14:14:11.325Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chatouilles",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "chatouiller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "guiliguili ",
+ "hasLocution": false,
+ "plural": "guiliguilis",
+ "type": 2
+ },
+ {
+ "keyword": "chatouillement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chatouillements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01759660-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 5481,
+ "created": "2008-09-10T11:59:47.000Z",
+ "lastUpdated": "2021-04-15T14:12:35.467Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire le lit",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "09563541-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 5482,
+ "created": "2008-09-10T12:03:49.000Z",
+ "lastUpdated": "2021-04-15T14:11:58.327Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fée",
+ "hasLocution": true,
+ "plural": "fées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "02157394-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 5477,
+ "created": "2008-09-10T11:57:00.000Z",
+ "lastUpdated": "2021-04-15T14:16:34.669Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "griffe",
+ "hasLocution": true,
+ "plural": "griffes"
+ },
+ {
+ "keyword": "serre",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "serres"
+ },
+ {
+ "keyword": "pince",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pince"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "dessert"
+ ],
+ "synsets": [
+ "10568094-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert"
+ ],
+ "_id": 5483,
+ "created": "2008-09-10T12:04:38.000Z",
+ "lastUpdated": "2021-07-18T09:56:24.072Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marchand de glace",
+ "hasLocution": true,
+ "plural": "marchands de glace"
+ },
+ {
+ "keyword": "glacier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "glaciers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of place",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00111662-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of place",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 5475,
+ "created": "2008-09-10T11:55:33.000Z",
+ "lastUpdated": "2021-04-15T14:17:07.351Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "dehors",
+ "hasLocution": true
+ },
+ {
+ "keyword": "à l'extérieur",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "en dehors",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "01667644-v",
+ "00320687-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 5487,
+ "created": "2008-09-10T12:08:56.000Z",
+ "lastUpdated": "2021-04-15T14:06:55.073Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "cuire"
+ },
+ {
+ "keyword": "faire cuire",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "cuisiner",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "00328938-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 5485,
+ "created": "2008-09-10T12:06:39.000Z",
+ "lastUpdated": "2021-04-15T14:09:53.903Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bouillir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indigenouos people",
+ "movie character"
+ ],
+ "synsets": [
+ "09664887-n",
+ "01040065-s"
+ ],
+ "tags": [
+ "person",
+ "character",
+ "movie character",
+ "cinema"
+ ],
+ "_id": 5489,
+ "created": "2008-09-10T12:24:10.000Z",
+ "lastUpdated": "2021-07-21T12:47:05.197Z",
+ "keywords": [
+ {
+ "keyword": "indien d'Amérique",
+ "hasLocution": false,
+ "plural": "indiens d'Amérique",
+ "type": 2
+ },
+ {
+ "keyword": "natif américain",
+ "hasLocution": false,
+ "plural": "natifs américains",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "09049830-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 5488,
+ "created": "2008-09-10T12:12:33.000Z",
+ "lastUpdated": "2021-04-15T14:05:59.369Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Huesca",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14136337-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 5490,
+ "created": "2008-09-10T12:25:05.000Z",
+ "lastUpdated": "2021-04-15T14:03:33.627Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "infarctus",
+ "hasLocution": true,
+ "plural": "infarctus"
+ },
+ {
+ "keyword": "crise cardiaque",
+ "hasLocution": false,
+ "plural": "crises cardiaques",
+ "type": 2
+ },
+ {
+ "keyword": "arrêt cardiaque",
+ "hasLocution": false,
+ "plural": "arrêts cardiaques",
+ "type": 2
+ },
+ {
+ "keyword": "attaque cardiaque",
+ "hasLocution": false,
+ "plural": "attaques cardiaques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "04002503-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5491,
+ "created": "2008-09-10T12:25:53.000Z",
+ "lastUpdated": "2021-04-16T20:25:03.726Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scie à onglet",
+ "hasLocution": true,
+ "plural": "scies à onglet"
+ },
+ {
+ "keyword": "scie électrique",
+ "hasLocution": false,
+ "plural": "scies électriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "computing",
+ "mass media"
+ ],
+ "synsets": [
+ "03585784-n"
+ ],
+ "tags": [
+ "computing",
+ "communication",
+ "mass media"
+ ],
+ "_id": 5492,
+ "created": "2008-09-10T12:27:08.000Z",
+ "lastUpdated": "2021-04-15T14:00:11.668Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "internet",
+ "hasLocution": true
+ },
+ {
+ "keyword": "cyberespace",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "02940098-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 5494,
+ "created": "2008-09-11T10:13:50.000Z",
+ "lastUpdated": "2021-04-15T13:59:06.393Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cage",
+ "hasLocution": true,
+ "plural": "cage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "regional dance",
+ "fiestas del pilar",
+ "aragon"
+ ],
+ "synsets": [
+ "05994487-n",
+ "00538719-n"
+ ],
+ "tags": [
+ "scenic art",
+ "dance",
+ "regional dance",
+ "show",
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "Aragon"
+ ],
+ "_id": 5495,
+ "created": "2008-09-11T10:14:46.000Z",
+ "lastUpdated": "2021-04-15T13:58:40.401Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jota",
+ "hasLocution": false,
+ "plural": "jotas"
+ },
+ {
+ "keyword": "danse folklorique",
+ "hasLocution": false,
+ "plural": "danses folkloriques",
+ "type": 2
+ },
+ {
+ "keyword": "danse traditionnelle",
+ "hasLocution": false,
+ "plural": "danses traditionnelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance",
+ "clothes"
+ ],
+ "synsets": [
+ "01538034-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 5496,
+ "created": "2008-09-11T10:16:45.000Z",
+ "lastUpdated": "2021-04-15T13:56:59.115Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver le linge",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire la lessive",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "laver",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "14874050-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5498,
+ "created": "2008-09-11T10:18:46.000Z",
+ "lastUpdated": "2021-04-15T13:55:50.669Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "papier de verre",
+ "hasLocution": true,
+ "plural": "papiers de verre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "03255291-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5499,
+ "created": "2008-09-11T10:19:31.000Z",
+ "lastUpdated": "2021-04-15T13:55:06.461Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ponceuse",
+ "hasLocution": true,
+ "plural": "ponceuses"
+ },
+ {
+ "type": 2,
+ "keyword": "ponceuse électrique",
+ "hasLocution": true,
+ "plural": "ponceuses électriques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "01389087-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5500,
+ "created": "2008-09-11T10:20:04.000Z",
+ "lastUpdated": "2021-04-15T13:55:34.397Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "poncer",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "keyword": "passer du papier de verre",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "03341784-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5501,
+ "created": "2008-09-11T10:20:56.000Z",
+ "lastUpdated": "2021-04-16T20:24:50.645Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lime",
+ "hasLocution": true,
+ "plural": "limes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "01389676-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5502,
+ "created": "2008-09-11T10:21:44.000Z",
+ "lastUpdated": "2021-04-16T20:24:36.999Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "limer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "teruel"
+ ],
+ "synsets": [
+ "03737605-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "Aragon",
+ "Teruel"
+ ],
+ "_id": 5503,
+ "created": "2008-09-11T10:22:29.000Z",
+ "lastUpdated": "2021-07-18T09:57:27.646Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Les Amants",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mausolée",
+ "hasLocution": false,
+ "plural": "mausolées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of manner",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01129296-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of manner",
+ "core vocabulary"
+ ],
+ "_id": 5504,
+ "created": "2008-09-11T10:23:08.000Z",
+ "lastUpdated": "2021-07-18T09:58:05.271Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mal",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mauvais",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "pas d'accord",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14309164-n",
+ "14310615-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 5484,
+ "created": "2008-09-10T12:05:54.000Z",
+ "lastUpdated": "2021-04-15T14:11:26.030Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blessure",
+ "hasLocution": true,
+ "plural": "blessures"
+ },
+ {
+ "type": 2,
+ "keyword": "coupure",
+ "hasLocution": true,
+ "plural": "coupures"
+ },
+ {
+ "keyword": "lésion",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "lésions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "01334030-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 5486,
+ "created": "2008-09-10T12:07:13.000Z",
+ "lastUpdated": "2021-04-15T14:09:06.623Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faufiler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bâtir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "clothing industry",
+ "fashion",
+ "clothes"
+ ],
+ "synsets": [
+ "00509113-v",
+ "01585566-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 5506,
+ "created": "2008-09-11T10:25:03.000Z",
+ "lastUpdated": "2024-12-19T06:53:49.851Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Représenter quelqu'un, quelque chose par un dessin, en tracer, en reproduire la forme, les contours, les volumes",
+ "keyword": "dessiner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "dessiner le patron",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "marquer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tracer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "political geography"
+ ],
+ "synsets": [
+ "03725654-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography"
+ ],
+ "_id": 5505,
+ "created": "2008-09-11T10:23:57.000Z",
+ "lastUpdated": "2021-04-15T23:25:16.643Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carte",
+ "hasLocution": true,
+ "plural": "cartes"
+ },
+ {
+ "keyword": "plan",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "plans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "water transport",
+ "security and defense"
+ ],
+ "synsets": [
+ "09880801-n",
+ "10367324-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 5507,
+ "created": "2008-09-11T10:26:03.000Z",
+ "lastUpdated": "2024-12-12T15:43:22.362Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marin",
+ "hasLocution": true,
+ "plural": "marins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "egg product",
+ "condiment",
+ "cookery"
+ ],
+ "synsets": [
+ "07850483-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "egg product",
+ "ultra-processed food",
+ "condiment",
+ "cookery"
+ ],
+ "_id": 5509,
+ "created": "2008-09-11T10:29:22.000Z",
+ "lastUpdated": "2021-03-26T13:39:26.433Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mayonnaise",
+ "hasLocution": true,
+ "plural": "mayonnaises"
+ },
+ {
+ "keyword": "sauce mayonnaise",
+ "hasLocution": false,
+ "plural": "sauces mayonnaises",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "00648747-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5510,
+ "created": "2008-09-11T10:30:26.000Z",
+ "lastUpdated": "2021-04-15T23:24:25.616Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mesurer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 5511,
+ "created": "2008-09-11T10:31:14.000Z",
+ "lastUpdated": "2021-04-16T20:23:51.230Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "macédoine de légumes",
+ "hasLocution": true,
+ "plural": "macédoines de légumes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of degree",
+ "basic concepts",
+ "core vocabulary-communication",
+ "adverb",
+ "adverb of addition"
+ ],
+ "synsets": [
+ "00099891-r",
+ "00100262-r",
+ "01559526-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of degree",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary",
+ "adverb of addition"
+ ],
+ "_id": 5508,
+ "created": "2008-09-11T10:28:36.000Z",
+ "lastUpdated": "2024-12-15T06:35:54.640Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "plus",
+ "hasLocution": true
+ },
+ {
+ "keyword": "d'avantage",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "season",
+ "winter",
+ "core vocabulary-time",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "15262579-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "season",
+ "winter",
+ "core vocabulary"
+ ],
+ "_id": 5493,
+ "created": "2008-09-10T12:28:08.000Z",
+ "lastUpdated": "2021-03-26T02:56:34.171Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hiver",
+ "hasLocution": true,
+ "plural": "hivers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "condiment",
+ "cookery"
+ ],
+ "synsets": [
+ "01464634-v",
+ "00395719-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment",
+ "cookery"
+ ],
+ "_id": 5515,
+ "created": "2008-09-11T10:40:46.000Z",
+ "lastUpdated": "2021-04-15T21:53:33.231Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mélanger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "15282640-n",
+ "13758939-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 5516,
+ "created": "2008-09-11T10:41:29.000Z",
+ "lastUpdated": "2021-07-18T09:59:54.759Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moitié",
+ "hasLocution": true
+ },
+ {
+ "keyword": "deux quarts",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "2/4",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "06504930-n",
+ "07580648-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "work",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 5513,
+ "created": "2008-09-11T10:32:30.000Z",
+ "lastUpdated": "2021-04-15T21:54:48.507Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "menu",
+ "hasLocution": true,
+ "plural": "menus"
+ },
+ {
+ "keyword": "carte",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cartes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00187671-v",
+ "01424276-v",
+ "00187671-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 5514,
+ "created": "2008-09-11T10:33:04.000Z",
+ "lastUpdated": "2021-07-18T09:59:07.733Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mettre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "outdoor activity",
+ "land transport"
+ ],
+ "synsets": [
+ "01939335-v",
+ "02106676-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 5517,
+ "created": "2008-09-11T10:42:07.000Z",
+ "lastUpdated": "2021-07-18T10:00:21.227Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "monter à vélo",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire du vélo",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rouler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "river",
+ "saragossa"
+ ],
+ "synsets": [
+ "09498422-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "geography",
+ "physical geography",
+ "landform",
+ "river",
+ "Aragon",
+ "Saragossa"
+ ],
+ "_id": 5518,
+ "created": "2008-09-11T10:43:04.000Z",
+ "lastUpdated": "2021-04-15T21:51:31.669Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Monastère de Piedra",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "09382700-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 5520,
+ "created": "2008-09-11T10:46:33.000Z",
+ "lastUpdated": "2021-04-15T21:49:16.991Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Moncayo",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of degree",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00100418-r",
+ "00100077-r",
+ "01561306-s",
+ "01561009-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of degree",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 5512,
+ "created": "2008-09-11T10:31:46.000Z",
+ "lastUpdated": "2021-07-18T09:58:59.338Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "moins",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "religious place",
+ "christianity",
+ "huesca"
+ ],
+ "synsets": [
+ "03786777-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "religion",
+ "christianity",
+ "Aragon",
+ "Huesca"
+ ],
+ "_id": 5519,
+ "created": "2008-09-11T10:45:41.000Z",
+ "lastUpdated": "2021-09-03T16:53:02.814Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Monastère Saint-Jean de la Peña",
+ "hasLocution": false
+ },
+ {
+ "keyword": "monastère",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "monastères"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of degree",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00059709-r",
+ "00059624-r",
+ "00059709-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of degree",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5521,
+ "created": "2008-09-11T10:47:41.000Z",
+ "lastUpdated": "2021-07-18T10:00:32.318Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "beaucoup",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of time",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00021214-r",
+ "00021452-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5527,
+ "created": "2008-09-11T10:51:45.000Z",
+ "lastUpdated": "2021-04-15T21:45:50.307Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "jamais",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "continent",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "08854867-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "continent",
+ "core vocabulary"
+ ],
+ "_id": 5528,
+ "created": "2008-09-11T10:52:33.000Z",
+ "lastUpdated": "2021-04-10T22:34:22.994Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Océanie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "religious act",
+ "christianity",
+ "saragossa"
+ ],
+ "synsets": [
+ "01043530-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "religion",
+ "christianity",
+ "Aragon",
+ "Saragossa"
+ ],
+ "_id": 5529,
+ "created": "2008-09-11T10:53:18.000Z",
+ "lastUpdated": "2021-07-18T10:00:36.535Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Offrande de fleurs",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "offrande",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00083562-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 5530,
+ "created": "2008-09-11T10:53:59.000Z",
+ "lastUpdated": "2021-04-15T21:45:34.383Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "opérer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "season",
+ "autumn",
+ "core vocabulary-time",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "15261656-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "season",
+ "autumn",
+ "core vocabulary"
+ ],
+ "_id": 5531,
+ "created": "2008-09-11T10:54:45.000Z",
+ "lastUpdated": "2021-03-26T02:57:02.304Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "automne",
+ "hasLocution": true,
+ "plural": "automnes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07607532-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 5532,
+ "created": "2008-09-11T10:55:38.000Z",
+ "lastUpdated": "2021-04-10T22:35:07.741Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "paëlla",
+ "hasLocution": true,
+ "plural": "paëllas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04460661-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 5533,
+ "created": "2008-09-11T11:02:43.000Z",
+ "lastUpdated": "2021-04-10T22:35:28.112Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cure-dents",
+ "hasLocution": true,
+ "plural": "cure-dents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07748612-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "core vocabulary"
+ ],
+ "_id": 5534,
+ "created": "2008-09-11T11:03:32.000Z",
+ "lastUpdated": "2021-04-15T21:45:02.897Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pop-corn",
+ "hasLocution": true,
+ "plural": "pops-corns"
+ },
+ {
+ "keyword": "popcorn",
+ "hasLocution": false,
+ "plural": "popcorns",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "09848006-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 5536,
+ "created": "2008-09-11T11:04:58.000Z",
+ "lastUpdated": "2021-04-15T21:43:22.467Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pédiatre",
+ "hasLocution": true,
+ "plural": "pédiatres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "plant-based food"
+ ],
+ "synsets": [
+ "01265500-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "plant-based food"
+ ],
+ "_id": 5537,
+ "created": "2008-09-11T11:05:34.000Z",
+ "lastUpdated": "2021-04-15T21:42:42.565Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éplucher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "peler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy",
+ "animal"
+ ],
+ "synsets": [
+ "01760949-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 5538,
+ "created": "2008-09-11T11:06:10.000Z",
+ "lastUpdated": "2024-12-08T15:39:19.536Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bec",
+ "hasLocution": true,
+ "plural": "becs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "usual verbs"
+ ],
+ "synsets": [
+ "01443420-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs"
+ ],
+ "_id": 5539,
+ "created": "2008-09-11T11:06:42.000Z",
+ "lastUpdated": "2024-10-22T11:25:32.935Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "piquer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cosmetic"
+ ],
+ "synsets": [
+ "03811265-n",
+ "01365439-v",
+ "01366185-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 5540,
+ "created": "2008-09-11T11:34:25.000Z",
+ "lastUpdated": "2021-04-15T21:40:35.755Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mettre du vernis à ongle",
+ "hasLocution": true
+ },
+ {
+ "keyword": "vernir les ongles",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "09424349-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 5541,
+ "created": "2008-09-11T12:26:29.000Z",
+ "lastUpdated": "2021-04-15T21:33:35.173Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pyrénées",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "work tool",
+ "hairdresser"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "work",
+ "tool",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 5542,
+ "created": "2008-09-11T12:50:50.000Z",
+ "lastUpdated": "2021-04-15T21:36:34.980Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fer à lisser",
+ "hasLocution": false,
+ "plural": "fers à lisser"
+ },
+ {
+ "keyword": "fer à friser",
+ "hasLocution": false,
+ "plural": "fer à friser",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "teruel"
+ ],
+ "synsets": [
+ "08617999-n",
+ "08637195-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "Aragon",
+ "Teruel"
+ ],
+ "_id": 5543,
+ "created": "2008-09-11T12:51:38.000Z",
+ "lastUpdated": "2021-04-15T23:23:23.599Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Place del Torico",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01280538-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 5544,
+ "created": "2008-09-11T12:52:17.000Z",
+ "lastUpdated": "2021-04-15T23:21:46.477Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "plier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "replier",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "01898672-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 5545,
+ "created": "2008-09-11T12:53:02.000Z",
+ "lastUpdated": "2021-04-16T20:23:25.813Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plume",
+ "hasLocution": true,
+ "plural": "plumes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product"
+ ],
+ "synsets": [
+ "07636997-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product"
+ ],
+ "_id": 5523,
+ "created": "2008-09-11T10:49:13.000Z",
+ "lastUpdated": "2021-04-10T22:33:57.476Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crème fouettée",
+ "hasLocution": false,
+ "plural": "crèmes fouettées"
+ },
+ {
+ "keyword": "crème Chantilly",
+ "hasLocution": false,
+ "plural": "crèmes Chantilly",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "07219764-n",
+ "00024715-r",
+ "00818217-v",
+ "02217607-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 5525,
+ "created": "2008-09-11T10:50:33.000Z",
+ "lastUpdated": "2024-10-13T06:16:04.079Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "non",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "nier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "refuser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb",
+ "adverb of denial",
+ "core vocabulary-communication",
+ "adjective",
+ "indefinite adjective"
+ ],
+ "synsets": [
+ "07219764-n",
+ "00024715-r",
+ "00024946-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of denial",
+ "education",
+ "core vocabulary",
+ "adjective",
+ "indefinite adjective"
+ ],
+ "_id": 5526,
+ "created": "2008-09-11T10:51:07.000Z",
+ "lastUpdated": "2024-11-22T06:05:35.572Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "non",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of degree",
+ "basic concepts"
+ ],
+ "synsets": [
+ "01557242-a",
+ "01396681-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of degree",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5546,
+ "created": "2008-09-11T12:54:16.000Z",
+ "lastUpdated": "2021-07-18T10:00:44.941Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "peu",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense",
+ "road safety"
+ ],
+ "synsets": [
+ "08226608-n",
+ "10468557-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security",
+ "movement",
+ "traffic",
+ "road safety"
+ ],
+ "_id": 5547,
+ "created": "2008-09-11T12:57:16.000Z",
+ "lastUpdated": "2021-07-18T10:01:38.138Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "police",
+ "hasLocution": true,
+ "plural": "polices"
+ },
+ {
+ "type": 2,
+ "keyword": "agent de police municipale",
+ "hasLocution": true,
+ "plural": "agents de police municipale"
+ },
+ {
+ "type": 2,
+ "keyword": "police municipale",
+ "hasLocution": true
+ },
+ {
+ "keyword": "policier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "policiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "political representation"
+ ],
+ "synsets": [
+ "10469877-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 5548,
+ "created": "2008-09-11T12:58:10.000Z",
+ "lastUpdated": "2021-04-16T20:22:13.524Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "homme politique",
+ "hasLocution": false,
+ "plural": "hommes politiques"
+ },
+ {
+ "keyword": "politicien",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "politiciens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "00407168-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 5549,
+ "created": "2008-09-11T13:13:04.000Z",
+ "lastUpdated": "2021-04-16T20:21:07.131Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mettre la table",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mettre le couvert",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport event"
+ ],
+ "synsets": [
+ "02266695-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "event",
+ "sport event"
+ ],
+ "_id": 5551,
+ "created": "2008-09-11T13:14:35.000Z",
+ "lastUpdated": "2021-05-13T10:27:44.752Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "récompenser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "remettre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "décerner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character",
+ "book character",
+ "historical character",
+ "literature",
+ "history",
+ "movie character"
+ ],
+ "synsets": [
+ "10492384-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "book character",
+ "tale character",
+ "literature",
+ "movie character",
+ "cinema"
+ ],
+ "_id": 5555,
+ "created": "2008-09-11T13:18:46.000Z",
+ "lastUpdated": "2024-12-08T15:23:59.699Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prince",
+ "hasLocution": true,
+ "plural": "prince"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "06796860-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 5556,
+ "created": "2008-09-11T13:19:26.000Z",
+ "lastUpdated": "2021-04-26T20:48:22.969Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "problème",
+ "hasLocution": true,
+ "plural": "problèmes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure"
+ ],
+ "synsets": [
+ "02901994-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure"
+ ],
+ "_id": 5557,
+ "created": "2008-09-11T13:20:09.000Z",
+ "lastUpdated": "2021-03-27T21:38:33.246Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pont",
+ "hasLocution": true,
+ "plural": "ponts"
+ },
+ {
+ "type": 1,
+ "keyword": "Pont de Piedra (Aragon",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01611610-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 5558,
+ "created": "2008-09-11T13:20:49.000Z",
+ "lastUpdated": "2021-07-18T10:02:42.399Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "débarrasser la table",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nettoyer la table",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "leader",
+ "book character",
+ "tale character",
+ "movie character",
+ "literature",
+ "history",
+ "historical character"
+ ],
+ "synsets": [
+ "10518940-n",
+ "10519442-n",
+ "10073247-n",
+ "04737242-n"
+ ],
+ "tags": [
+ "person",
+ "leader",
+ "character",
+ "book character",
+ "literature",
+ "tale character",
+ "movie character",
+ "cinema",
+ "history",
+ "historical character"
+ ],
+ "_id": 5559,
+ "created": "2008-09-11T13:21:38.000Z",
+ "lastUpdated": "2024-12-08T15:23:04.443Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "reine",
+ "hasLocution": true,
+ "plural": "reines"
+ },
+ {
+ "type": 2,
+ "keyword": "impératrice",
+ "hasLocution": true,
+ "plural": "impératrices"
+ },
+ {
+ "type": 2,
+ "keyword": "majesté",
+ "hasLocution": true,
+ "plural": "majesté"
+ },
+ {
+ "keyword": "souveraine",
+ "hasLocution": false,
+ "plural": "souveraines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "chronological device",
+ "chronological instrument"
+ ],
+ "synsets": [
+ "02697521-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "time",
+ "chronological device"
+ ],
+ "_id": 5560,
+ "created": "2008-09-11T13:41:03.000Z",
+ "lastUpdated": "2021-04-23T21:50:20.382Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "réveil-matin",
+ "hasLocution": false,
+ "plural": "réveil-matin"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "réveil",
+ "plural": "réveil"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chronological device",
+ "chronological instrument"
+ ],
+ "synsets": [
+ "03915635-n",
+ "03050242-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "time",
+ "chronological device"
+ ],
+ "_id": 5561,
+ "created": "2008-09-11T13:41:50.000Z",
+ "lastUpdated": "2021-04-23T21:49:20.672Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "pendule",
+ "plural": "pendule"
+ },
+ {
+ "keyword": "horloge",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "horloge"
+ },
+ {
+ "keyword": "pendule à balancier",
+ "hasLocution": false,
+ "plural": "pendules à balancier",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "leader",
+ "book character",
+ "tale character",
+ "history",
+ "literature",
+ "movie character"
+ ],
+ "synsets": [
+ "10251212-n",
+ "10072812-n",
+ "08380739-n",
+ "04737242-n"
+ ],
+ "tags": [
+ "person",
+ "leader",
+ "character",
+ "book character",
+ "literature",
+ "tale character",
+ "history",
+ "movie character",
+ "cinema"
+ ],
+ "_id": 5563,
+ "created": "2008-09-11T13:44:33.000Z",
+ "lastUpdated": "2024-12-08T15:23:40.788Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "roi",
+ "hasLocution": true,
+ "plural": "rois"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "empereur",
+ "plural": "empereurs"
+ },
+ {
+ "type": 2,
+ "keyword": "monarque",
+ "hasLocution": true,
+ "plural": "monarque"
+ },
+ {
+ "type": 2,
+ "keyword": "majesté",
+ "hasLocution": true,
+ "plural": "majesté"
+ },
+ {
+ "keyword": "sire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sires"
+ },
+ {
+ "keyword": "souverain",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "souverains"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "05265220-n"
+ ],
+ "tags": [
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 5564,
+ "created": "2008-09-11T13:45:07.000Z",
+ "lastUpdated": "2021-04-23T21:44:45.701Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boucles",
+ "hasLocution": true,
+ "plural": "boucles"
+ },
+ {
+ "keyword": "anglaises",
+ "hasLocution": false,
+ "plural": "anglaises",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "traditional dish",
+ "christmas",
+ "saragossa"
+ ],
+ "synsets": [
+ "02052280-s",
+ "07696677-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "gastronomy",
+ "traditional dish",
+ "event",
+ "popular event",
+ "christmas",
+ "Aragon",
+ "Saragossa"
+ ],
+ "_id": 5565,
+ "created": "2008-09-11T13:45:55.000Z",
+ "lastUpdated": "2021-07-18T10:04:29.356Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gâteau traditionnel",
+ "hasLocution": true,
+ "plural": "gâteaux traditionnels"
+ },
+ {
+ "type": 2,
+ "keyword": "couronne",
+ "hasLocution": true,
+ "plural": "couronnes"
+ },
+ {
+ "keyword": "Roscon de San Valero",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "gateau des rois",
+ "hasLocution": false,
+ "plural": "gateaux des rois",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport",
+ "cycling"
+ ],
+ "synsets": [
+ "04582285-n",
+ "02839240-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport",
+ "leisure",
+ "sport",
+ "cycling"
+ ],
+ "_id": 5566,
+ "created": "2008-09-11T13:46:30.000Z",
+ "lastUpdated": "2021-04-23T21:42:23.260Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "roue",
+ "hasLocution": true,
+ "plural": "roues"
+ },
+ {
+ "type": 2,
+ "keyword": "roue de vélo",
+ "hasLocution": true,
+ "plural": "roues de vélo"
+ },
+ {
+ "keyword": "roue de bicyclette",
+ "hasLocution": false,
+ "plural": "roues de bicyclette",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural habitat"
+ ],
+ "synsets": [
+ "08663422-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "natural habitat"
+ ],
+ "_id": 5567,
+ "created": "2008-09-11T13:47:15.000Z",
+ "lastUpdated": "2021-04-26T20:47:16.145Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "savane",
+ "plural": "savanes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01999243-v",
+ "01355093-v",
+ "01217161-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 5568,
+ "created": "2008-09-11T13:47:45.000Z",
+ "lastUpdated": "2021-05-13T10:26:41.905Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "retirer",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": true,
+ "keyword": "enlever",
+ "type": 3
+ },
+ {
+ "keyword": "sortir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "00173351-v",
+ "01353852-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5569,
+ "created": "2008-09-11T13:48:16.000Z",
+ "lastUpdated": "2021-05-13T10:25:24.338Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "enlever",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "hasLocution": true,
+ "keyword": "retirer"
+ },
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "ôter"
+ },
+ {
+ "keyword": "déclouer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "toy",
+ "sport material",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01970868-v",
+ "03610446-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "toy",
+ "sport material",
+ "physical exercise"
+ ],
+ "_id": 5570,
+ "created": "2008-09-11T13:49:02.000Z",
+ "lastUpdated": "2021-07-18T10:04:35.429Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sauter à la corde",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mythological character",
+ "tale character"
+ ],
+ "synsets": [
+ "09517519-n"
+ ],
+ "tags": [
+ "character",
+ "mythological character",
+ "mythology",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 5572,
+ "created": "2008-09-16T16:34:04.000Z",
+ "lastUpdated": "2021-04-26T20:46:24.089Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dragon",
+ "hasLocution": true,
+ "plural": "dragons"
+ },
+ {
+ "keyword": "dragon cracheur de feu",
+ "hasLocution": false,
+ "plural": "dragons cracheur de feu",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01688558-v",
+ "01688794-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 5574,
+ "created": "2008-09-17T10:53:07.000Z",
+ "lastUpdated": "2021-03-25T21:43:40.982Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Représenter quelque chose à l'aide de peinture sur un support",
+ "keyword": "peindre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recycling",
+ "street furniture"
+ ],
+ "synsets": [
+ "03099154-n",
+ "04072901-n"
+ ],
+ "tags": [
+ "environmental science",
+ "recycling",
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 5575,
+ "created": "2008-09-18T09:36:32.000Z",
+ "lastUpdated": "2021-07-18T10:05:03.065Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "benne",
+ "hasLocution": true,
+ "plural": "bennes"
+ },
+ {
+ "type": 2,
+ "keyword": "container de recyclage papier",
+ "hasLocution": false,
+ "plural": "containers de recyclage papier"
+ },
+ {
+ "keyword": "benne à papier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bennes à papier"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "00421085-v",
+ "01393270-v",
+ "01390440-v",
+ "01449876-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5552,
+ "created": "2008-09-11T13:16:09.000Z",
+ "lastUpdated": "2021-07-18T10:02:26.229Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "serrer avec le cric",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "presser ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "tenir avec une pince",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "serrer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "season",
+ "spring",
+ "core vocabulary-time",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "15261841-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "season",
+ "spring",
+ "core vocabulary"
+ ],
+ "_id": 5553,
+ "created": "2008-09-11T13:16:49.000Z",
+ "lastUpdated": "2021-03-26T02:56:03.163Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "printemps",
+ "hasLocution": true,
+ "plural": "printemps"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "historical character",
+ "tale character",
+ "book character",
+ "literature",
+ "history"
+ ],
+ "synsets": [
+ "10493649-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 5554,
+ "created": "2008-09-11T13:17:38.000Z",
+ "lastUpdated": "2024-12-08T15:22:44.764Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "princesse",
+ "hasLocution": true,
+ "plural": "princesses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "historical character",
+ "christianity"
+ ],
+ "synsets": [
+ "11016281-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "historical character",
+ "history",
+ "christianity"
+ ],
+ "_id": 5576,
+ "created": "2008-09-18T09:39:50.000Z",
+ "lastUpdated": "2021-04-26T20:44:25.361Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saint Georges",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Saint Georges et le Dragon",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "historical character",
+ "christianity",
+ "huesca"
+ ],
+ "synsets": [
+ "11141098-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "historical character",
+ "history",
+ "christianity",
+ "Aragon",
+ "Huesca"
+ ],
+ "_id": 5577,
+ "created": "2008-09-18T09:40:45.000Z",
+ "lastUpdated": "2021-05-13T10:22:28.717Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saint Laurent",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14345380-n",
+ "14249538-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 5578,
+ "created": "2008-09-18T09:41:21.000Z",
+ "lastUpdated": "2021-07-18T10:05:13.666Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éruption cutanée",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "eczéma",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "condiment",
+ "cookery"
+ ],
+ "synsets": [
+ "02200660-v",
+ "02196212-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment",
+ "cookery"
+ ],
+ "_id": 5579,
+ "created": "2008-09-18T09:42:05.000Z",
+ "lastUpdated": "2021-03-27T21:41:51.219Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "assaisonner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "saler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural disaster"
+ ],
+ "synsets": [
+ "15269316-n",
+ "14560656-n"
+ ],
+ "tags": [
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 5580,
+ "created": "2008-09-18T09:42:42.000Z",
+ "lastUpdated": "2021-05-13T10:22:09.941Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sécheresse",
+ "hasLocution": true,
+ "plural": "sécheresses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07937695-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 5585,
+ "created": "2008-09-18T09:47:04.000Z",
+ "lastUpdated": "2021-05-13T10:20:36.994Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cidre",
+ "hasLocution": true,
+ "plural": "cidres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "04002503-n",
+ "03084908-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5586,
+ "created": "2008-09-18T09:47:43.000Z",
+ "lastUpdated": "2021-07-18T10:05:56.018Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scie",
+ "hasLocution": true,
+ "plural": "scies"
+ },
+ {
+ "type": 2,
+ "keyword": "scie sauteuse",
+ "hasLocution": true,
+ "plural": "scies sauteuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "04002503-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5587,
+ "created": "2008-09-18T09:48:38.000Z",
+ "lastUpdated": "2021-07-18T10:06:17.331Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scie",
+ "hasLocution": true,
+ "plural": "scies"
+ },
+ {
+ "type": 2,
+ "keyword": "scie table",
+ "hasLocution": true,
+ "plural": "scies tables"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "04147147-n",
+ "03108670-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5588,
+ "created": "2008-09-18T09:49:25.000Z",
+ "lastUpdated": "2021-05-01T21:13:30.988Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scie",
+ "hasLocution": true,
+ "plural": "scies"
+ },
+ {
+ "type": 2,
+ "keyword": "scie à chantourner",
+ "hasLocution": false,
+ "plural": "scies à chantourner"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "mythological character",
+ "tale character"
+ ],
+ "synsets": [
+ "09512731-n"
+ ],
+ "tags": [
+ "character",
+ "mythological character",
+ "mythology",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 5589,
+ "created": "2008-09-18T09:50:15.000Z",
+ "lastUpdated": "2021-05-01T21:10:45.732Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sirène",
+ "hasLocution": true,
+ "plural": "sirènes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "05776550-n"
+ ],
+ "tags": [],
+ "_id": 5590,
+ "created": "2008-09-18T09:51:34.000Z",
+ "lastUpdated": "2021-05-01T21:10:16.826Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rêve",
+ "hasLocution": true,
+ "plural": "rêves"
+ },
+ {
+ "keyword": "songe",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "songes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "easter week",
+ "christianity"
+ ],
+ "synsets": [
+ "03254272-n",
+ "00518784-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "easter week",
+ "religion",
+ "christianity"
+ ],
+ "_id": 5592,
+ "created": "2008-09-18T09:52:59.000Z",
+ "lastUpdated": "2021-07-18T10:06:32.221Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tambourinade",
+ "hasLocution": true,
+ "plural": "tambourinades"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes"
+ ],
+ "synsets": [
+ "01483990-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 5593,
+ "created": "2008-09-18T09:53:50.000Z",
+ "lastUpdated": "2021-07-18T10:06:40.509Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "09049830-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "province"
+ ],
+ "_id": 5594,
+ "created": "2008-09-18T09:56:10.000Z",
+ "lastUpdated": "2021-04-15T21:18:46.978Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Teruel",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indefinite pronoun",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00008423-r",
+ "00523527-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "indefinite pronoun",
+ "core vocabulary"
+ ],
+ "_id": 5596,
+ "created": "2008-09-18T10:59:43.000Z",
+ "lastUpdated": "2021-07-18T10:06:56.665Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "tout",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "tous",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "toutes",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "toute",
+ "hasLocution": true
+ },
+ {
+ "keyword": "totalement",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "bullfighting"
+ ],
+ "synsets": [
+ "09855548-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "bullfighting"
+ ],
+ "_id": 5597,
+ "created": "2008-09-18T11:01:12.000Z",
+ "lastUpdated": "2021-04-15T21:18:30.267Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "torero",
+ "hasLocution": true,
+ "plural": "toreros"
+ },
+ {
+ "keyword": "toréador",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "toréadors"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural disaster"
+ ],
+ "synsets": [
+ "11539883-n"
+ ],
+ "tags": [
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 5598,
+ "created": "2008-09-18T11:01:55.000Z",
+ "lastUpdated": "2021-04-15T21:16:31.640Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tornade",
+ "hasLocution": true,
+ "plural": "tornades"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "hairdresser"
+ ],
+ "synsets": [
+ "05266995-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 5599,
+ "created": "2008-09-18T11:02:25.000Z",
+ "lastUpdated": "2021-04-15T21:15:28.492Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tresse",
+ "hasLocution": true,
+ "plural": "tresses"
+ },
+ {
+ "keyword": "natte",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "nattes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carpentry"
+ ],
+ "synsets": [
+ "03233947-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5600,
+ "created": "2008-09-18T11:03:09.000Z",
+ "lastUpdated": "2021-04-15T21:13:20.831Z",
+ "keywords": [
+ {
+ "keyword": "chevilles",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chevilles"
+ },
+ {
+ "keyword": "goupilles",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "goupilles"
+ },
+ {
+ "keyword": "chevilles en bois",
+ "hasLocution": false,
+ "plural": "chevilles en bois",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "verb"
+ ],
+ "synsets": [
+ "00086072-v",
+ "00698618-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 5601,
+ "created": "2008-09-18T11:03:50.000Z",
+ "lastUpdated": "2024-10-22T11:27:59.751Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "injecter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "piquer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire une piqure",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "injection",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "injections"
+ },
+ {
+ "keyword": "piqûre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "piqûres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "movie character",
+ "costume"
+ ],
+ "synsets": [
+ "09992191-n",
+ "09992602-n",
+ "10612800-n"
+ ],
+ "tags": [
+ "character",
+ "movie character",
+ "cinema",
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 5602,
+ "created": "2008-09-18T11:04:32.000Z",
+ "lastUpdated": "2021-04-15T20:51:57.533Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cow-boy",
+ "hasLocution": true,
+ "plural": "cow-boys"
+ },
+ {
+ "type": 2,
+ "keyword": "tueur",
+ "hasLocution": true,
+ "plural": "tueurs"
+ },
+ {
+ "keyword": "homme armé",
+ "hasLocution": false,
+ "plural": "hommes armés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "sweets"
+ ],
+ "synsets": [
+ "10567784-n",
+ "10611560-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 5603,
+ "created": "2008-09-18T11:05:10.000Z",
+ "lastUpdated": "2021-05-13T10:19:49.480Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marchand de friandises",
+ "hasLocution": true,
+ "plural": "marchands de friandises"
+ },
+ {
+ "keyword": "vendeur de bonbons",
+ "hasLocution": false,
+ "plural": "vendeurs de bonbons",
+ "type": 2
+ },
+ {
+ "keyword": "vendeur de sucreries",
+ "hasLocution": false,
+ "plural": "vendeurs de sucreries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "season",
+ "summer",
+ "core vocabulary-time",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "15262047-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "season",
+ "summer",
+ "core vocabulary"
+ ],
+ "_id": 5604,
+ "created": "2008-09-18T11:05:44.000Z",
+ "lastUpdated": "2021-03-26T02:54:11.291Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "été",
+ "hasLocution": true,
+ "plural": "étés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "usual verbs",
+ "adjective"
+ ],
+ "synsets": [
+ "02610777-v",
+ "02622439-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "adjective"
+ ],
+ "_id": 5581,
+ "created": "2008-09-18T09:43:19.000Z",
+ "lastUpdated": "2025-01-08T15:31:25.534Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Réunit le sujet au complément précédé d'une préposition, ou à l'adverbe de manière, de temps, de lieu pour indiquer l'appartenance, l'origine, le lieu, le temps, l'état, l'opinion, etc. : Ce livre est à moi. Ãtre de Paris. Ãtre en deuil, sans ressources.",
+ "keyword": "être",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": true,
+ "keyword": "exister",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "07218560-n",
+ "00515323-r",
+ "01013752-v",
+ "01013058-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 5583,
+ "created": "2008-09-18T09:45:42.000Z",
+ "lastUpdated": "2024-10-13T06:08:20.606Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "oui",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "affirmer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "acquiescer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb",
+ "adverb of affirmation",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "07218560-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of affirmation",
+ "education",
+ "core vocabulary"
+ ],
+ "_id": 5584,
+ "created": "2008-09-18T09:46:26.000Z",
+ "lastUpdated": "2024-10-13T06:19:58.366Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "oui",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ok",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "condiment",
+ "cookery",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07844963-n",
+ "15112678-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment",
+ "cookery",
+ "core vocabulary"
+ ],
+ "_id": 5605,
+ "created": "2008-09-18T11:06:28.000Z",
+ "lastUpdated": "2021-04-15T20:52:47.920Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vinaigre",
+ "hasLocution": true,
+ "plural": "vinaigres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity",
+ "fiestas del pilar",
+ "saragossa"
+ ],
+ "synsets": [
+ "11181402-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity",
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "Aragon",
+ "Saragossa"
+ ],
+ "_id": 5606,
+ "created": "2008-09-18T11:07:19.000Z",
+ "lastUpdated": "2021-04-15T20:58:49.941Z",
+ "keywords": [
+ {
+ "type": 1,
+ "hasLocution": false,
+ "keyword": "Notre-Dame du Pillar"
+ },
+ {
+ "type": 2,
+ "keyword": "vierge",
+ "hasLocution": true,
+ "plural": "vierges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "09049830-n",
+ "09050049-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 5607,
+ "created": "2008-09-18T11:09:37.000Z",
+ "lastUpdated": "2021-04-15T20:59:05.427Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saragosse",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region",
+ "aragon"
+ ],
+ "synsets": [
+ "09049830-n",
+ "03359749-n",
+ "08671935-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region",
+ "Aragon"
+ ],
+ "_id": 5608,
+ "created": "2008-09-18T11:15:15.000Z",
+ "lastUpdated": "2021-04-15T20:59:13.459Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Aragon",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "03961007-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 5609,
+ "created": "2008-09-18T11:17:20.000Z",
+ "lastUpdated": "2021-04-15T21:02:12.711Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "rabot",
+ "plural": "rabots"
+ },
+ {
+ "keyword": "rabot d'ébéniste",
+ "hasLocution": false,
+ "plural": "rabots d'ébéniste",
+ "type": 2
+ },
+ {
+ "keyword": "rabot de menuisier",
+ "hasLocution": false,
+ "plural": "rabots de menuisier",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system"
+ ],
+ "synsets": [
+ "05548146-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system"
+ ],
+ "_id": 5697,
+ "created": "2008-09-29T09:33:36.000Z",
+ "lastUpdated": "2021-05-01T21:08:29.477Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crâne",
+ "hasLocution": true,
+ "plural": "crânes"
+ },
+ {
+ "keyword": "boîte crânienne",
+ "hasLocution": false,
+ "plural": "boîtes crâniennes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system",
+ "locomotor system",
+ "halloween"
+ ],
+ "synsets": [
+ "05593033-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system",
+ "locomotor system",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 5727,
+ "created": "2008-09-29T11:14:50.000Z",
+ "lastUpdated": "2021-05-01T21:05:47.404Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "squelette",
+ "hasLocution": true,
+ "plural": "squelettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hobby",
+ "educational task"
+ ],
+ "synsets": [
+ "06798511-n"
+ ],
+ "tags": [
+ "leisure",
+ "hobby",
+ "education",
+ "educational task"
+ ],
+ "_id": 5698,
+ "created": "2008-09-29T09:35:32.000Z",
+ "lastUpdated": "2021-05-01T21:07:20.830Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mots croisés",
+ "hasLocution": true,
+ "plural": "mots croisés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "00643334-v",
+ "00873254-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 5798,
+ "created": "2008-09-30T13:57:21.000Z",
+ "lastUpdated": "2021-05-01T21:00:08.830Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "multiplier",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "multiplication",
+ "hasLocution": true,
+ "plural": "multiplications"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics",
+ "education"
+ ],
+ "synsets": [
+ "13754218-n"
+ ],
+ "tags": [
+ "mathematics",
+ "education"
+ ],
+ "_id": 5739,
+ "created": "2008-09-29T12:41:23.000Z",
+ "lastUpdated": "2024-12-11T06:48:58.856Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fraction",
+ "hasLocution": true,
+ "plural": "fractions"
+ },
+ {
+ "keyword": "calcul",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "calculs"
+ },
+ {
+ "keyword": "ratio",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ratios"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region",
+ "aragon"
+ ],
+ "synsets": [
+ "09049830-n",
+ "03062747-n",
+ "03287502-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region",
+ "Aragon"
+ ],
+ "_id": 5610,
+ "created": "2008-09-18T11:20:59.000Z",
+ "lastUpdated": "2021-04-15T21:04:51.184Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Aragon",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "blason d'Aragon",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "armoiries",
+ "hasLocution": false,
+ "plural": "armoiries"
+ },
+ {
+ "type": 2,
+ "keyword": "blason",
+ "hasLocution": true,
+ "plural": "blasons"
+ },
+ {
+ "keyword": "écusson",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "écussons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "03464523-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 5811,
+ "created": "2008-10-01T10:30:31.000Z",
+ "lastUpdated": "2021-05-01T20:59:24.395Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grill",
+ "hasLocution": false,
+ "plural": "grills"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indefinite adjective",
+ "indefinite pronoun",
+ "basic concepts"
+ ],
+ "synsets": [
+ "02276797-s",
+ "00526784-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "indefinite adjective",
+ "pronoun",
+ "indefinite pronoun",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 5800,
+ "created": "2008-10-01T09:27:05.000Z",
+ "lastUpdated": "2021-07-18T10:07:10.569Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "aucun",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "aucune",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rien",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "00873540-n",
+ "00642914-v"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 5841,
+ "created": "2008-10-01T12:39:01.000Z",
+ "lastUpdated": "2021-05-01T20:58:03.340Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "soustraire",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "soustraction",
+ "hasLocution": true,
+ "plural": "soustractions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "00873785-n",
+ "00642490-v",
+ "00951320-v"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 5868,
+ "created": "2008-10-07T13:16:14.000Z",
+ "lastUpdated": "2021-07-18T10:07:41.622Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "additionner",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "addition",
+ "hasLocution": true,
+ "plural": "additions"
+ },
+ {
+ "keyword": "ajouter",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "somme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sommes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02116752-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 5892,
+ "created": "2008-10-20T13:20:31.000Z",
+ "lastUpdated": "2021-04-15T23:16:26.181Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "loup",
+ "hasLocution": true,
+ "plural": "loups"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs"
+ ],
+ "synsets": [
+ "02610777-v",
+ "02622439-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs"
+ ],
+ "_id": 5858,
+ "created": "2008-10-01T13:26:28.000Z",
+ "lastUpdated": "2022-10-18T12:09:09.635Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Réunit le sujet au complément précédé d'une préposition, ou à l'adverbe de manière, de temps, de lieu pour indiquer l'appartenance, l'origine, le lieu, le temps, l'état, l'opinion, etc. : Ce livre est à moi. Ãtre de Paris. Ãtre en deuil, sans ressources.",
+ "keyword": "être",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "00481377-n",
+ "03125142-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 5893,
+ "created": "2008-10-24T10:36:46.000Z",
+ "lastUpdated": "2021-04-15T23:15:52.991Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "terrain de pelote basque",
+ "hasLocution": false,
+ "plural": "terrains de pelote basque"
+ },
+ {
+ "keyword": "mur de pelote basque",
+ "hasLocution": false,
+ "plural": "murs de pelote basque",
+ "type": 2
+ },
+ {
+ "keyword": "trinquet",
+ "hasLocution": false,
+ "plural": "trinquets",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "keyboard instrument",
+ "wind instrument"
+ ],
+ "synsets": [
+ "02675461-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "keyboard instrument",
+ "wind instrument"
+ ],
+ "_id": 5895,
+ "created": "2008-10-25T16:23:09.000Z",
+ "lastUpdated": "2021-04-15T23:11:17.629Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accordéon",
+ "hasLocution": true,
+ "plural": "accordéons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "tourism"
+ ],
+ "synsets": [
+ "08372619-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 5897,
+ "created": "2008-10-25T16:26:02.000Z",
+ "lastUpdated": "2021-04-26T21:18:16.161Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "agence de voyage",
+ "hasLocution": true,
+ "plural": "agences de voyage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "polite set expression"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 5896,
+ "created": "2008-10-25T16:24:09.000Z",
+ "lastUpdated": "2021-05-01T20:56:40.699Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "au revoir",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "à tout à l'heure",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "au revoir ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "à bientôt",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "salut",
+ "hasLocution": true,
+ "type": 5
+ },
+ {
+ "keyword": "à plus tard",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "adieu",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "03194391-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "core vocabulary"
+ ],
+ "_id": 5898,
+ "created": "2008-10-25T16:27:23.000Z",
+ "lastUpdated": "2021-04-15T23:10:53.190Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "agenda",
+ "hasLocution": true,
+ "plural": "agendas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "students"
+ ],
+ "synsets": [
+ "10685137-n"
+ ],
+ "tags": [
+ "education",
+ "students"
+ ],
+ "_id": 5899,
+ "created": "2008-10-25T16:28:45.000Z",
+ "lastUpdated": "2021-04-15T23:10:04.818Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "élève",
+ "hasLocution": true,
+ "plural": "élève"
+ },
+ {
+ "keyword": "étudiante",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "étudiantes"
+ },
+ {
+ "keyword": "écolière",
+ "hasLocution": false,
+ "plural": "écolières",
+ "type": 2
+ },
+ {
+ "keyword": "collégienne",
+ "hasLocution": false,
+ "plural": "collégiennes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "students"
+ ],
+ "synsets": [
+ "10685137-n"
+ ],
+ "tags": [
+ "education",
+ "students"
+ ],
+ "_id": 5900,
+ "created": "2008-10-25T16:29:57.000Z",
+ "lastUpdated": "2021-04-15T23:09:49.471Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "élève",
+ "hasLocution": true,
+ "plural": "élèves"
+ },
+ {
+ "keyword": "étudiant",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "étudiants"
+ },
+ {
+ "keyword": "écolier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "écoliers"
+ },
+ {
+ "keyword": "collégien",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "collégiens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "00872590-n",
+ "00643760-v"
+ ],
+ "tags": [
+ "mathematics",
+ "communication"
+ ],
+ "_id": 5707,
+ "created": "2008-09-29T10:03:15.000Z",
+ "lastUpdated": "2024-12-05T18:29:03.097Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "division",
+ "hasLocution": true,
+ "plural": "divisions"
+ },
+ {
+ "type": 3,
+ "keyword": "diviser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "covid-19"
+ ],
+ "synsets": [
+ "13499728-n",
+ "00635519-n",
+ "05750496-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "covid-19"
+ ],
+ "_id": 5901,
+ "created": "2008-10-25T16:31:26.000Z",
+ "lastUpdated": "2021-04-15T23:05:47.465Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "analyse de sang",
+ "hasLocution": true,
+ "plural": "analyses de sang"
+ },
+ {
+ "keyword": "test sanguin",
+ "hasLocution": false,
+ "plural": "tests sanguins",
+ "type": 2
+ },
+ {
+ "keyword": "prise de sang",
+ "hasLocution": false,
+ "plural": "prises de sang",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product",
+ "medicine"
+ ],
+ "synsets": [
+ "04552757-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product",
+ "health",
+ "medicine"
+ ],
+ "_id": 5902,
+ "created": "2008-10-25T16:33:20.000Z",
+ "lastUpdated": "2024-12-09T06:32:37.847Z",
+ "keywords": [
+ {
+ "keyword": "rollator",
+ "hasLocution": false,
+ "plural": "rollators",
+ "type": 2
+ },
+ {
+ "keyword": "déambulateur",
+ "hasLocution": false,
+ "plural": "déambulateurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00860989-v",
+ "01822202-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 5903,
+ "created": "2008-10-25T16:34:38.000Z",
+ "lastUpdated": "2021-10-04T21:03:11.489Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "encourager",
+ "hasLocution": true
+ },
+ {
+ "keyword": "réconforter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "03730361-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 5904,
+ "created": "2008-10-25T16:36:04.000Z",
+ "lastUpdated": "2021-04-15T23:04:05.123Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "olympic games"
+ ],
+ "synsets": [
+ "04463386-n",
+ "07471917-n",
+ "13502051-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games"
+ ],
+ "_id": 5905,
+ "created": "2008-10-25T16:37:39.000Z",
+ "lastUpdated": "2021-04-26T21:17:52.749Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "torche",
+ "hasLocution": false,
+ "plural": "torches"
+ },
+ {
+ "type": 2,
+ "keyword": "flamme olympique",
+ "hasLocution": false,
+ "plural": "flammes olympiques"
+ },
+ {
+ "keyword": "flamme",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "flammes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fishing"
+ ],
+ "synsets": [
+ "02779210-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 5906,
+ "created": "2008-10-25T16:39:05.000Z",
+ "lastUpdated": "2021-04-15T23:02:35.456Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hameçon",
+ "hasLocution": true,
+ "plural": "hameçons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "personal services"
+ ],
+ "synsets": [
+ "03533280-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "personal services"
+ ],
+ "_id": 5910,
+ "created": "2008-10-25T16:46:27.000Z",
+ "lastUpdated": "2021-08-02T22:28:58.377Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maison de retraite",
+ "hasLocution": true,
+ "plural": "maisons de retraite"
+ },
+ {
+ "keyword": "EHPAD",
+ "hasLocution": false,
+ "plural": "EHPAD",
+ "type": 2
+ },
+ {
+ "keyword": "résidence pour personnes âgées",
+ "hasLocution": false,
+ "plural": "résidences pour personnes âgées",
+ "type": 2
+ },
+ {
+ "keyword": "RPA",
+ "hasLocution": false,
+ "plural": "RPA",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport"
+ ],
+ "synsets": [
+ "00053320-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 5911,
+ "created": "2008-10-25T16:47:40.000Z",
+ "lastUpdated": "2021-04-15T22:58:31.779Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "attérrissage",
+ "hasLocution": true,
+ "plural": "attérrissages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "03511871-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 5912,
+ "created": "2008-10-25T16:49:28.000Z",
+ "lastUpdated": "2021-04-15T22:58:11.548Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aide auditive",
+ "hasLocution": false,
+ "plural": "aides auditives"
+ },
+ {
+ "keyword": "appareil auditif",
+ "hasLocution": true,
+ "plural": "appareils auditifs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03042670-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 5913,
+ "created": "2008-10-25T16:50:36.000Z",
+ "lastUpdated": "2021-04-15T22:56:32.680Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "classe",
+ "hasLocution": true,
+ "plural": "classes"
+ },
+ {
+ "type": 2,
+ "keyword": "salle de cours",
+ "hasLocution": true,
+ "plural": "salles de cours"
+ },
+ {
+ "keyword": "salle de classe",
+ "hasLocution": true,
+ "plural": "salles de classe",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03042670-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 5914,
+ "created": "2008-10-25T16:51:41.000Z",
+ "lastUpdated": "2021-03-12T13:56:27.428Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de musique",
+ "hasLocution": true,
+ "plural": "salles de musique"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "music device"
+ ],
+ "synsets": [
+ "03266479-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "music device"
+ ],
+ "_id": 5915,
+ "created": "2008-10-25T16:53:53.000Z",
+ "lastUpdated": "2021-05-01T20:51:33.833Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casques",
+ "hasLocution": true,
+ "plural": "casques"
+ },
+ {
+ "type": 2,
+ "keyword": "écouteurs",
+ "hasLocution": true,
+ "plural": "écouteurs"
+ },
+ {
+ "keyword": "baisser le volume",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "music device"
+ ],
+ "synsets": [
+ "00268741-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "music device"
+ ],
+ "_id": 5916,
+ "created": "2008-10-25T16:56:05.000Z",
+ "lastUpdated": "2021-07-18T10:08:38.633Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "baisse le son",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "baisser le son",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "réduire le volume",
+ "hasLocution": false
+ },
+ {
+ "keyword": "réduire la puissance",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04125632-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 5917,
+ "created": "2008-10-25T16:57:44.000Z",
+ "lastUpdated": "2021-04-15T22:54:03.400Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ballon de rugby",
+ "hasLocution": true,
+ "plural": "ballons de rugby"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag"
+ ],
+ "synsets": [
+ "06888144-n",
+ "03359749-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag"
+ ],
+ "_id": 5918,
+ "created": "2008-10-25T16:59:07.000Z",
+ "lastUpdated": "2021-04-15T22:53:41.009Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "drapeau",
+ "hasLocution": true,
+ "plural": "drapeaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag"
+ ],
+ "synsets": [
+ "06888338-n",
+ "03917985-n",
+ "03947170-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag"
+ ],
+ "_id": 5919,
+ "created": "2008-10-25T17:00:24.000Z",
+ "lastUpdated": "2021-04-15T22:53:08.679Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fanion",
+ "hasLocution": true,
+ "plural": "fanions"
+ },
+ {
+ "keyword": "drapeau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "drapeaux"
+ },
+ {
+ "keyword": "pavillon",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pavillons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "08226440-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 5920,
+ "created": "2008-10-25T17:01:52.000Z",
+ "lastUpdated": "2021-04-15T22:51:26.428Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "banc",
+ "hasLocution": true,
+ "plural": "bancs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "04453410-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 5921,
+ "created": "2008-10-25T17:03:37.000Z",
+ "lastUpdated": "2021-04-30T09:23:22.838Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "toilettes",
+ "plural": "toilettes"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "WC",
+ "plural": "WCs"
+ },
+ {
+ "keyword": "sanitaires",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "sanitaires"
+ },
+ {
+ "keyword": "W.C.",
+ "hasLocution": false,
+ "plural": "W.C.",
+ "type": 2
+ },
+ {
+ "keyword": "cabinets",
+ "hasLocution": false,
+ "plural": "cabinets",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "04553480-n",
+ "03138769-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 5922,
+ "created": "2008-10-25T17:08:30.000Z",
+ "lastUpdated": "2021-04-15T22:50:46.472Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canne",
+ "hasLocution": true,
+ "plural": "cannes"
+ },
+ {
+ "keyword": "bâton de marche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bâtons de marche"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument",
+ "musical art",
+ "show"
+ ],
+ "synsets": [
+ "03254272-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument",
+ "leisure",
+ "show",
+ "work"
+ ],
+ "_id": 5923,
+ "created": "2008-10-25T17:10:33.000Z",
+ "lastUpdated": "2024-12-09T11:35:45.365Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "batterie",
+ "hasLocution": true,
+ "plural": "batteries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "01420522-v",
+ "01420691-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 5924,
+ "created": "2008-10-25T17:12:13.000Z",
+ "lastUpdated": "2021-04-15T22:48:53.105Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "battre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "fouetter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mélanger",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cutlery",
+ "cookery"
+ ],
+ "synsets": [
+ "01420833-v",
+ "01420522-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "cutlery",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 5925,
+ "created": "2008-10-25T17:15:36.000Z",
+ "lastUpdated": "2021-04-30T09:19:51.866Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "battre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "fouetter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space"
+ ],
+ "synsets": [
+ "03666235-n",
+ "03665990-n"
+ ],
+ "tags": [
+ "education",
+ "educational space"
+ ],
+ "_id": 5926,
+ "created": "2008-10-27T10:30:14.000Z",
+ "lastUpdated": "2021-04-26T21:16:12.622Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bibliothèque",
+ "hasLocution": true,
+ "plural": "bibliothèques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "14614473-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 5927,
+ "created": "2008-10-27T10:31:57.000Z",
+ "lastUpdated": "2021-07-11T09:26:07.448Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poche de sérum physiologique",
+ "hasLocution": false,
+ "plural": "poches de sérum physiologique"
+ },
+ {
+ "keyword": "poche de sérum",
+ "hasLocution": true,
+ "plural": "poches de sérum",
+ "type": 2
+ },
+ {
+ "keyword": "solution saline",
+ "hasLocution": false,
+ "plural": "solutions salines",
+ "type": 2
+ },
+ {
+ "keyword": "sérum physiologique",
+ "hasLocution": false,
+ "plural": "sérums physiologiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "security and defense",
+ "natural disaster"
+ ],
+ "synsets": [
+ "01571845-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 5907,
+ "created": "2008-10-25T16:41:21.000Z",
+ "lastUpdated": "2024-12-05T10:19:30.003Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éteindre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mineral origin material",
+ "craftsmanship"
+ ],
+ "synsets": [
+ "14837352-n",
+ "14980464-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "mineral origin material",
+ "work",
+ "secondary sector",
+ "craftsmanship"
+ ],
+ "_id": 5908,
+ "created": "2008-10-25T16:42:53.000Z",
+ "lastUpdated": "2021-04-15T23:01:18.685Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boue",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "argile",
+ "hasLocution": true,
+ "plural": "argiles"
+ },
+ {
+ "keyword": "terre glaise",
+ "hasLocution": false,
+ "plural": "terres glaises"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "03499379-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 5909,
+ "created": "2008-10-25T16:44:03.000Z",
+ "lastUpdated": "2021-04-15T22:59:40.085Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "harmonica",
+ "hasLocution": true,
+ "plural": "harmonicas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "02884998-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 5928,
+ "created": "2008-10-27T10:33:05.000Z",
+ "lastUpdated": "2021-04-26T21:12:23.463Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chapeau melon",
+ "hasLocution": true,
+ "plural": "chapeaux melons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01407043-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 5929,
+ "created": "2008-10-27T10:35:43.000Z",
+ "lastUpdated": "2021-04-30T09:18:29.704Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rebondir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03747606-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 5930,
+ "created": "2008-10-27T11:06:16.000Z",
+ "lastUpdated": "2021-04-26T20:22:53.285Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "armoire à pharmacie",
+ "plural": "armoires à pharmacie"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "04234962-n",
+ "02906451-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 5931,
+ "created": "2008-10-27T11:10:36.000Z",
+ "lastUpdated": "2021-04-26T20:21:46.234Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brochette de fruit",
+ "hasLocution": true,
+ "plural": "brochettes de fruit"
+ },
+ {
+ "type": 2,
+ "keyword": "brochette ",
+ "hasLocution": false,
+ "plural": "brochettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "04234962-n",
+ "02906451-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 5932,
+ "created": "2008-10-27T11:11:54.000Z",
+ "lastUpdated": "2021-04-26T20:21:13.403Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brochette mélangée",
+ "hasLocution": false,
+ "plural": "brochettes mélangées"
+ },
+ {
+ "type": 2,
+ "keyword": "brochette ",
+ "hasLocution": false,
+ "plural": "brochettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "04989456-n",
+ "01042933-v",
+ "00462448-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 5936,
+ "created": "2008-10-27T11:29:23.000Z",
+ "lastUpdated": "2021-04-26T20:15:55.361Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "silence",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "taire",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire taire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se taire",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "04343930-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 5937,
+ "created": "2008-10-27T11:30:55.000Z",
+ "lastUpdated": "2021-04-26T20:14:22.413Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brancard",
+ "hasLocution": true,
+ "plural": "brancards"
+ },
+ {
+ "keyword": "civière",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "civières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "02827590-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 5938,
+ "created": "2008-10-27T11:32:26.000Z",
+ "lastUpdated": "2021-03-26T02:43:08.070Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cloche",
+ "hasLocution": true,
+ "plural": "cloches"
+ },
+ {
+ "keyword": "clochette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "clochettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "outdoor activity"
+ ],
+ "synsets": [
+ "08535449-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 5939,
+ "created": "2008-10-27T11:33:58.000Z",
+ "lastUpdated": "2021-07-18T10:09:01.047Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "camping",
+ "hasLocution": true,
+ "plural": "campings"
+ },
+ {
+ "keyword": "camp",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "camps"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "basketball"
+ ],
+ "synsets": [
+ "02805381-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "basketball"
+ ],
+ "_id": 5940,
+ "created": "2008-10-27T11:35:20.000Z",
+ "lastUpdated": "2021-04-26T20:13:18.331Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "panier",
+ "hasLocution": true,
+ "plural": "paniers"
+ },
+ {
+ "keyword": "panier de basket",
+ "hasLocution": false,
+ "plural": "paniers de basket",
+ "type": 2
+ },
+ {
+ "keyword": "panier de basket-ball",
+ "hasLocution": false,
+ "plural": "paniers de basket-ball",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "fishing"
+ ],
+ "synsets": [
+ "03356825-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 5941,
+ "created": "2008-10-27T11:36:57.000Z",
+ "lastUpdated": "2021-04-26T20:10:55.098Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "canne à pêche",
+ "plural": "cannes à pêche"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "10287416-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 5942,
+ "created": "2008-10-27T12:16:51.000Z",
+ "lastUpdated": "2021-04-26T20:09:34.216Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Petit Chaperon Rouge",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fossil origin material",
+ "mining industry",
+ "christmas"
+ ],
+ "synsets": [
+ "14838786-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "fossil origin material",
+ "work",
+ "primary sector",
+ "mining",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 5943,
+ "created": "2008-10-27T12:18:35.000Z",
+ "lastUpdated": "2021-04-26T20:09:14.873Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charbon",
+ "hasLocution": true,
+ "plural": "charbons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume",
+ "scenic art",
+ "carnival"
+ ],
+ "synsets": [
+ "03730361-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume",
+ "scenic art",
+ "document",
+ "event",
+ "popular event",
+ "carnival"
+ ],
+ "_id": 5944,
+ "created": "2008-10-27T12:19:43.000Z",
+ "lastUpdated": "2024-12-13T06:36:57.784Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "supporting document"
+ ],
+ "synsets": [
+ "06562197-n"
+ ],
+ "tags": [
+ "document",
+ "supporting document"
+ ],
+ "_id": 5945,
+ "created": "2008-10-27T12:21:13.000Z",
+ "lastUpdated": "2021-04-26T21:10:36.720Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "permis de conduire",
+ "hasLocution": true,
+ "plural": "permis de conduire"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "04103160-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 5946,
+ "created": "2008-10-27T12:26:49.000Z",
+ "lastUpdated": "2021-04-26T21:09:54.761Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "route",
+ "hasLocution": true,
+ "plural": "routes"
+ },
+ {
+ "keyword": "rue",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "rues"
+ },
+ {
+ "keyword": "voie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "voies"
+ },
+ {
+ "keyword": "chemin",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chemins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "construction"
+ ],
+ "synsets": [
+ "02800454-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 5947,
+ "created": "2008-10-27T12:34:38.000Z",
+ "lastUpdated": "2021-04-26T21:08:08.010Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brouette",
+ "hasLocution": true,
+ "plural": "brouettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "trade",
+ "feeding",
+ "object",
+ "hygiene product",
+ "cleaning product"
+ ],
+ "synsets": [
+ "04211393-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "work",
+ "tertiary sector",
+ "trade",
+ "feeding",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "cleaning product"
+ ],
+ "_id": 5948,
+ "created": "2008-10-27T12:37:49.000Z",
+ "lastUpdated": "2024-12-10T06:40:39.641Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caddie de supermarché",
+ "hasLocution": true,
+ "plural": "caddies de supermarché"
+ },
+ {
+ "type": 2,
+ "keyword": "caddie",
+ "hasLocution": true,
+ "plural": "caddies"
+ },
+ {
+ "keyword": "chariot de courses",
+ "hasLocution": false,
+ "plural": "chariots de courses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02827590-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument",
+ "core vocabulary"
+ ],
+ "_id": 5949,
+ "created": "2008-10-27T12:41:11.000Z",
+ "lastUpdated": "2021-04-26T21:04:50.426Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grelot",
+ "hasLocution": true,
+ "plural": "grelots"
+ },
+ {
+ "keyword": "clochette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "clochettes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "literature",
+ "history"
+ ],
+ "synsets": [
+ "02983900-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "literature",
+ "history"
+ ],
+ "_id": 5950,
+ "created": "2008-10-27T12:42:40.000Z",
+ "lastUpdated": "2024-12-08T15:19:17.274Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "château",
+ "hasLocution": true,
+ "plural": "châteaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "09498422-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 5951,
+ "created": "2008-10-27T12:43:53.000Z",
+ "lastUpdated": "2021-04-26T21:03:17.909Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cascade",
+ "hasLocution": true,
+ "plural": "cascades"
+ },
+ {
+ "type": 2,
+ "keyword": "chute d'eau",
+ "hasLocution": false,
+ "plural": "chutes d'eau"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "gardening"
+ ],
+ "synsets": [
+ "01313763-v",
+ "02148219-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 5952,
+ "created": "2008-10-27T12:45:09.000Z",
+ "lastUpdated": "2021-04-26T21:02:01.330Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "creuser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bêcher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product",
+ "clothes"
+ ],
+ "synsets": [
+ "04163201-n",
+ "02911542-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 5953,
+ "created": "2008-10-27T12:48:30.000Z",
+ "lastUpdated": "2024-12-11T06:34:33.395Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brosse",
+ "hasLocution": true,
+ "plural": "brosses"
+ },
+ {
+ "keyword": "brosse de lavage",
+ "hasLocution": false,
+ "plural": "brosses de lavage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mineral origin material"
+ ],
+ "synsets": [
+ "14741436-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "mineral origin material"
+ ],
+ "_id": 5933,
+ "created": "2008-10-27T11:14:04.000Z",
+ "lastUpdated": "2021-04-26T20:19:51.958Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bronze",
+ "hasLocution": true,
+ "plural": "bronzes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport",
+ "cycling"
+ ],
+ "synsets": [
+ "02838617-n",
+ "03003017-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport",
+ "leisure",
+ "sport",
+ "cycling"
+ ],
+ "_id": 5934,
+ "created": "2008-10-27T11:16:21.000Z",
+ "lastUpdated": "2021-04-26T20:19:13.999Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaîne",
+ "hasLocution": true,
+ "plural": "chaînes"
+ },
+ {
+ "keyword": "chaîne de vélo",
+ "hasLocution": false,
+ "plural": "chaînes de vélo",
+ "type": 2
+ },
+ {
+ "keyword": "chaîne de bicyclette",
+ "hasLocution": false,
+ "plural": "chaînes de bicyclette",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "02886585-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "core vocabulary"
+ ],
+ "_id": 5935,
+ "created": "2008-10-27T11:20:13.000Z",
+ "lastUpdated": "2021-04-26T20:17:20.180Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte",
+ "hasLocution": true,
+ "plural": "boîtes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "02398346-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 5954,
+ "created": "2008-10-27T12:52:57.000Z",
+ "lastUpdated": "2021-07-18T10:09:09.335Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "porcelet",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "grand Cochonnet",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "02398346-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 5955,
+ "created": "2008-10-27T12:54:00.000Z",
+ "lastUpdated": "2021-07-18T10:09:20.373Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "porcelet",
+ "plural": "porcelets"
+ },
+ {
+ "type": 1,
+ "keyword": "Cochonnet moyen",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "02398346-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 5956,
+ "created": "2008-10-27T12:54:57.000Z",
+ "lastUpdated": "2021-07-18T10:09:24.660Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "porcelet",
+ "plural": "porcelets"
+ },
+ {
+ "type": 1,
+ "keyword": "Petit Cochon",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "03185531-n",
+ "03006420-n",
+ "03549540-n",
+ "08576692-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 5957,
+ "created": "2008-10-27T12:57:44.000Z",
+ "lastUpdated": "2021-04-26T20:54:49.293Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maison individuelle",
+ "hasLocution": false,
+ "plural": "maisons individuelles"
+ },
+ {
+ "keyword": "pavillon",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pavillons"
+ },
+ {
+ "keyword": "maison indépendante",
+ "hasLocution": false,
+ "plural": "maisons indépendantes",
+ "type": 2
+ },
+ {
+ "keyword": "habitation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "habitations"
+ },
+ {
+ "keyword": "résidence",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "résidences"
+ },
+ {
+ "keyword": "chalet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chalets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indigenouos people"
+ ],
+ "synsets": [
+ "01040065-s"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 5958,
+ "created": "2008-10-27T12:59:05.000Z",
+ "lastUpdated": "2021-07-21T12:47:19.929Z",
+ "keywords": [
+ {
+ "keyword": "asiatique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "asiatiques"
+ },
+ {
+ "keyword": "native d'Asie",
+ "hasLocution": false,
+ "plural": "natives d'Asie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "04132954-n",
+ "04169767-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 5962,
+ "created": "2008-10-27T13:08:03.000Z",
+ "lastUpdated": "2021-03-13T14:00:26.272Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ceinture de sécurité",
+ "hasLocution": true,
+ "plural": "ceintures de sécurité"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "urban area"
+ ],
+ "synsets": [
+ "08542298-n"
+ ],
+ "tags": [
+ "place",
+ "urban area"
+ ],
+ "_id": 5963,
+ "created": "2008-10-27T13:10:18.000Z",
+ "lastUpdated": "2021-04-30T09:13:08.108Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ville",
+ "hasLocution": true,
+ "plural": "villes"
+ },
+ {
+ "keyword": "cité",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cités"
+ },
+ {
+ "keyword": "métropole",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "métropoles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "09304683-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 5960,
+ "created": "2008-10-27T13:01:53.000Z",
+ "lastUpdated": "2021-04-30T09:16:22.386Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "frite",
+ "hasLocution": true,
+ "plural": "frites"
+ },
+ {
+ "keyword": "nouille de piscine",
+ "hasLocution": false,
+ "plural": "nouilles de piscine",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "03041694-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 5964,
+ "created": "2008-10-27T13:19:18.000Z",
+ "lastUpdated": "2021-04-30T09:11:48.087Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clarinette",
+ "hasLocution": true,
+ "plural": "clarinettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "furniture"
+ ],
+ "synsets": [
+ "03068353-n",
+ "03018359-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "furniture"
+ ],
+ "_id": 5966,
+ "created": "2008-10-27T13:24:17.000Z",
+ "lastUpdated": "2021-04-30T09:10:58.484Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coffre",
+ "hasLocution": true,
+ "plural": "coffres"
+ },
+ {
+ "type": 2,
+ "keyword": "malle",
+ "hasLocution": false,
+ "plural": "malles"
+ },
+ {
+ "keyword": "coffre au trésor",
+ "hasLocution": false,
+ "plural": "coffres au trésor",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03625099-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 5965,
+ "created": "2008-10-27T13:22:21.000Z",
+ "lastUpdated": "2021-04-30T09:11:32.177Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuisine",
+ "hasLocution": true,
+ "plural": "cuisines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy",
+ "animal"
+ ],
+ "synsets": [
+ "02160209-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 5967,
+ "created": "2008-10-27T13:25:51.000Z",
+ "lastUpdated": "2024-12-12T08:53:11.686Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "queue",
+ "hasLocution": true,
+ "plural": "queues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "football"
+ ],
+ "synsets": [
+ "01086877-v",
+ "01407698-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "football"
+ ],
+ "_id": 5961,
+ "created": "2008-10-27T13:03:10.000Z",
+ "lastUpdated": "2021-05-01T20:48:57.546Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "donner un coup",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "shooter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tirer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "lancer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "coup de pied",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indigenouos people"
+ ],
+ "synsets": [
+ "01040065-s"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 5959,
+ "created": "2008-10-27T13:00:23.000Z",
+ "lastUpdated": "2021-07-21T12:47:23.403Z",
+ "keywords": [
+ {
+ "keyword": "asiatique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "asiatiques"
+ },
+ {
+ "plural": "natifs d'Asie",
+ "keyword": "natif d'Asie",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "educational space",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-education",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "03205385-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "education",
+ "educational space",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 5970,
+ "created": "2008-10-27T13:33:14.000Z",
+ "lastUpdated": "2021-03-12T13:56:51.529Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle à manger",
+ "hasLocution": true,
+ "plural": "salles à manger"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "communication aid",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "03082291-n",
+ "03081962-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid",
+ "core vocabulary"
+ ],
+ "_id": 5971,
+ "created": "2008-10-27T13:35:26.000Z",
+ "lastUpdated": "2021-07-18T10:10:42.084Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "communicateur",
+ "hasLocution": true,
+ "plural": "communicateurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "building facility"
+ ],
+ "synsets": [
+ "04068905-n",
+ "04068793-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 5972,
+ "created": "2008-10-27T13:36:45.000Z",
+ "lastUpdated": "2024-12-13T06:55:40.481Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "accueil",
+ "plural": "accueils"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "réception",
+ "type": 2,
+ "plural": "réceptions"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "bureau d'accueil",
+ "plural": "bureaux d'accueil",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "literature"
+ ],
+ "synsets": [
+ "00955248-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "literature"
+ ],
+ "_id": 5973,
+ "created": "2008-10-27T13:38:25.000Z",
+ "lastUpdated": "2021-05-01T20:40:18.163Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "raconter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "lire",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "dire",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "03115320-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 5974,
+ "created": "2008-10-27T13:39:52.000Z",
+ "lastUpdated": "2021-05-01T20:23:46.136Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cornet à pistons",
+ "hasLocution": false,
+ "plural": "cornets à pistons"
+ },
+ {
+ "keyword": "cornet",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cornets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cutlery",
+ "usual verbs",
+ "core vocabulary-communication",
+ "food"
+ ],
+ "synsets": [
+ "01555301-v",
+ "01613738-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "cutlery",
+ "home",
+ "usual verbs",
+ "core vocabulary",
+ "feeding",
+ "food"
+ ],
+ "_id": 5975,
+ "created": "2008-10-27T13:41:35.000Z",
+ "lastUpdated": "2024-12-10T06:11:49.157Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": " tr. Entamer la matière de quelque chose, sectionner avec un objet ou un instrument tranchant",
+ "keyword": "couper",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color",
+ "categorization"
+ ],
+ "synsets": [
+ "04963771-n"
+ ],
+ "tags": [
+ "color",
+ "categorization"
+ ],
+ "_id": 5968,
+ "created": "2008-10-27T13:27:16.000Z",
+ "lastUpdated": "2021-05-01T20:46:58.876Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couleurs",
+ "hasLocution": true,
+ "plural": "couleurs"
+ },
+ {
+ "type": 2,
+ "keyword": "couleur",
+ "hasLocution": true,
+ "plural": "couleurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02444573-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 5969,
+ "created": "2008-10-27T13:28:38.000Z",
+ "lastUpdated": "2021-05-01T20:46:32.072Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "belette",
+ "hasLocution": true,
+ "plural": "belettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "road safety"
+ ],
+ "synsets": [
+ "01916152-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "road safety"
+ ],
+ "_id": 5976,
+ "created": "2008-10-27T13:44:37.000Z",
+ "lastUpdated": "2021-05-01T20:20:17.038Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "traverser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "01328058-n",
+ "14782206-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 5978,
+ "created": "2008-10-27T13:47:32.000Z",
+ "lastUpdated": "2021-05-01T20:15:29.227Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corne",
+ "hasLocution": true,
+ "plural": "cornes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cutlery",
+ "cookery"
+ ],
+ "synsets": [
+ "01898313-v",
+ "00184262-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "cutlery",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 5981,
+ "created": "2008-10-28T11:16:27.000Z",
+ "lastUpdated": "2021-05-01T20:11:45.094Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mélanger",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "hasLocution": true,
+ "keyword": "remuer"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "childcare"
+ ],
+ "synsets": [
+ "03136225-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 5980,
+ "created": "2008-10-27T13:50:38.000Z",
+ "lastUpdated": "2021-05-01T20:14:47.088Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "berceau",
+ "hasLocution": true,
+ "plural": "berceaux"
+ },
+ {
+ "keyword": "lit d'enfant",
+ "hasLocution": false,
+ "plural": "lits d'enfant",
+ "type": 2
+ },
+ {
+ "keyword": "lit de bébé",
+ "hasLocution": false,
+ "plural": "lits de bébé",
+ "type": 2
+ },
+ {
+ "keyword": "petit lit",
+ "hasLocution": false,
+ "plural": "petits lits",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage"
+ ],
+ "synsets": [
+ "01544989-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 5982,
+ "created": "2008-10-28T11:17:29.000Z",
+ "lastUpdated": "2021-05-13T10:12:53.809Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "renverser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "éclabousser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal material"
+ ],
+ "synsets": [
+ "14783901-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "animal material"
+ ],
+ "_id": 5979,
+ "created": "2008-10-27T13:49:35.000Z",
+ "lastUpdated": "2021-05-01T20:15:16.957Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuir",
+ "hasLocution": true,
+ "plural": "cuirs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03847186-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 5983,
+ "created": "2008-10-28T11:18:42.000Z",
+ "lastUpdated": "2021-05-03T20:24:28.106Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bureau",
+ "hasLocution": true,
+ "plural": "bureaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "costume",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03118308-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume",
+ "core vocabulary"
+ ],
+ "_id": 5985,
+ "created": "2008-10-28T11:21:49.000Z",
+ "lastUpdated": "2021-05-13T10:11:09.095Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "déguisement",
+ "hasLocution": true,
+ "plural": "déguisement"
+ },
+ {
+ "keyword": "costume",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "costumes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "costume",
+ "carnival",
+ "halloween"
+ ],
+ "synsets": [
+ "00051478-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "costume",
+ "event",
+ "popular event",
+ "carnival",
+ "halloween"
+ ],
+ "_id": 5986,
+ "created": "2008-10-28T11:23:16.000Z",
+ "lastUpdated": "2021-05-13T10:10:39.436Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "déguiser",
+ "hasLocution": false
+ },
+ {
+ "keyword": "habiller",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "04280915-n",
+ "03846663-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 5977,
+ "created": "2008-10-27T13:46:15.000Z",
+ "lastUpdated": "2021-05-01T20:19:32.874Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "compteur",
+ "hasLocution": true,
+ "plural": "compteurs"
+ },
+ {
+ "keyword": "compteur de vitesse",
+ "hasLocution": false,
+ "plural": "compteurs de vitesse",
+ "type": 2
+ },
+ {
+ "keyword": "indicateur de vitesse",
+ "hasLocution": false,
+ "plural": "indicateurs de vitesse",
+ "type": 2
+ },
+ {
+ "keyword": "compteur kilométrique",
+ "hasLocution": true,
+ "plural": "compteurs kilométriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport"
+ ],
+ "synsets": [
+ "00306928-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 5984,
+ "created": "2008-10-28T11:20:36.000Z",
+ "lastUpdated": "2021-05-13T10:11:53.108Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "décollage",
+ "hasLocution": true,
+ "plural": "décollages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "supporting document"
+ ],
+ "synsets": [
+ "06900328-n"
+ ],
+ "tags": [
+ "document",
+ "supporting document"
+ ],
+ "_id": 5987,
+ "created": "2008-10-28T11:25:30.000Z",
+ "lastUpdated": "2021-05-03T20:23:02.008Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Carte Nationale d'Identité",
+ "hasLocution": false,
+ "plural": "Cartes Nationales d'Identité"
+ },
+ {
+ "type": 2,
+ "keyword": "carte d'identité",
+ "hasLocution": true,
+ "plural": "cartes d'identité"
+ },
+ {
+ "keyword": "papier d'identité",
+ "hasLocution": false,
+ "plural": "papiers d'identité",
+ "type": 2
+ },
+ {
+ "keyword": "CNI",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "CNIs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "sport rules",
+ "football"
+ ],
+ "synsets": [
+ "10742224-n",
+ "09951098-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "sport",
+ "sport rules",
+ "football"
+ ],
+ "_id": 5991,
+ "created": "2008-10-30T10:37:19.000Z",
+ "lastUpdated": "2021-05-13T10:07:06.437Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entraîneur",
+ "hasLocution": true,
+ "plural": "entraîneur"
+ },
+ {
+ "keyword": "coach",
+ "hasLocution": false,
+ "plural": "coach"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade"
+ ],
+ "synsets": [
+ "03216510-n",
+ "04210748-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 5992,
+ "created": "2008-10-30T10:38:17.000Z",
+ "lastUpdated": "2021-07-18T10:11:23.262Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vitrine",
+ "hasLocution": true,
+ "plural": "vitrines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02290474-v",
+ "00423043-v",
+ "02291049-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 5990,
+ "created": "2008-10-30T10:35:24.000Z",
+ "lastUpdated": "2021-07-18T10:11:11.359Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "trouver",
+ "hasLocution": true
+ },
+ {
+ "keyword": "localiser",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "apparaitre",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "01596858-v",
+ "01352000-v",
+ "01353653-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 5994,
+ "created": "2008-10-30T10:41:10.000Z",
+ "lastUpdated": "2021-07-18T10:11:35.755Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "presser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "football"
+ ],
+ "synsets": [
+ "08533915-n",
+ "04303019-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "football"
+ ],
+ "_id": 5993,
+ "created": "2008-10-30T10:39:52.000Z",
+ "lastUpdated": "2021-05-13T10:06:04.574Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "terrain de football",
+ "hasLocution": true,
+ "plural": "terrains de football"
+ },
+ {
+ "type": 2,
+ "keyword": "stade de football",
+ "hasLocution": true,
+ "plural": "stades de football"
+ },
+ {
+ "type": 2,
+ "keyword": "stade",
+ "hasLocution": true,
+ "plural": "stade"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "place",
+ "trade"
+ ],
+ "synsets": [
+ "06528946-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "place",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 5995,
+ "created": "2008-10-30T10:45:23.000Z",
+ "lastUpdated": "2024-12-11T06:49:18.092Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "facture",
+ "hasLocution": true,
+ "plural": "factures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport",
+ "cycling"
+ ],
+ "synsets": [
+ "03509141-n",
+ "03670692-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport",
+ "leisure",
+ "sport",
+ "cycling"
+ ],
+ "_id": 5996,
+ "created": "2008-10-30T10:47:04.000Z",
+ "lastUpdated": "2021-05-13T10:03:42.253Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "phare",
+ "hasLocution": true,
+ "plural": "phares"
+ },
+ {
+ "type": 2,
+ "keyword": "phare de vélo",
+ "hasLocution": true,
+ "plural": "phares de vélo"
+ },
+ {
+ "keyword": "phare avant",
+ "hasLocution": false,
+ "plural": "phares avant",
+ "type": 2
+ },
+ {
+ "keyword": "lumière de vélo",
+ "hasLocution": false,
+ "plural": "lumières de vélo",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-communication",
+ "building",
+ "building facility",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "02824762-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system",
+ "core vocabulary",
+ "building facility",
+ "work",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 5988,
+ "created": "2008-10-30T10:31:16.000Z",
+ "lastUpdated": "2024-12-13T18:18:24.347Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chambre à coucher",
+ "hasLocution": true,
+ "plural": "chambres à coucher"
+ },
+ {
+ "keyword": "chambre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chambres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building"
+ ],
+ "synsets": [
+ "02916498-n",
+ "08530790-n"
+ ],
+ "tags": [
+ "place",
+ "building"
+ ],
+ "_id": 5989,
+ "created": "2008-10-30T10:32:55.000Z",
+ "lastUpdated": "2021-05-13T10:08:59.369Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "plural": "bâtiments",
+ "keyword": "bâtiment"
+ },
+ {
+ "hasLocution": true,
+ "type": 2,
+ "keyword": "immeuble",
+ "plural": "immeuble"
+ },
+ {
+ "keyword": "édifice",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "édifices"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "birthday"
+ ],
+ "synsets": [
+ "15274989-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 5997,
+ "created": "2008-10-30T10:49:39.000Z",
+ "lastUpdated": "2021-05-03T20:17:39.835Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "Joyeux Anniversaire !",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "Bon Anniversaire !",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "physiotherapy",
+ "signaling system"
+ ],
+ "synsets": [
+ "00701253-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "physiotherapy",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 5998,
+ "created": "2008-10-30T11:00:20.000Z",
+ "lastUpdated": "2021-05-13T10:01:29.254Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kinésithérapie",
+ "hasLocution": true,
+ "plural": "kinésithérapies"
+ },
+ {
+ "hasLocution": true,
+ "type": 2,
+ "keyword": "physiothérapie",
+ "plural": "physiothérapies"
+ },
+ {
+ "keyword": "salle de physiothérapie",
+ "hasLocution": false,
+ "plural": "salles de physiothérapie",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "salle de kinésithérapie",
+ "plural": "salles de kinésithérapie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "09626138-n",
+ "10118014-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 5999,
+ "created": "2008-10-30T11:06:14.000Z",
+ "lastUpdated": "2021-05-13T09:58:34.419Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "flûtiste",
+ "hasLocution": true,
+ "plural": "flûtistes"
+ },
+ {
+ "type": 1,
+ "keyword": "Le joueur de flûte d'Hamelin",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "land transport"
+ ],
+ "synsets": [
+ "03430002-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 6002,
+ "created": "2008-11-04T11:23:16.000Z",
+ "lastUpdated": "2021-05-13T09:55:27.255Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "station essence",
+ "hasLocution": true,
+ "plural": "stations essence"
+ },
+ {
+ "keyword": "station-service",
+ "hasLocution": false,
+ "plural": "stations-service",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "station de carburant",
+ "plural": "stations de carburant",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03421399-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6003,
+ "created": "2008-11-06T11:37:51.000Z",
+ "lastUpdated": "2021-05-03T20:15:17.023Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "garage",
+ "hasLocution": true,
+ "plural": "garages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "09567562-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 6004,
+ "created": "2008-11-06T11:39:05.000Z",
+ "lastUpdated": "2021-05-03T20:14:25.321Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "génie",
+ "hasLocution": true,
+ "plural": "génies"
+ },
+ {
+ "keyword": "djinn",
+ "hasLocution": false,
+ "plural": "djinns",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03477235-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6005,
+ "created": "2008-11-06T11:40:20.000Z",
+ "lastUpdated": "2021-05-13T09:51:26.632Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gymnase",
+ "hasLocution": true,
+ "plural": "gymnases"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "astronomy"
+ ],
+ "synsets": [
+ "02100445-v",
+ "02094251-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "astronomy"
+ ],
+ "_id": 6006,
+ "created": "2008-11-06T11:41:38.000Z",
+ "lastUpdated": "2024-12-18T07:52:50.455Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tourner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "football"
+ ],
+ "synsets": [
+ "00188186-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "football"
+ ],
+ "_id": 6007,
+ "created": "2008-11-06T11:43:12.000Z",
+ "lastUpdated": "2021-05-13T09:46:43.567Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "but",
+ "hasLocution": true,
+ "plural": "buts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport",
+ "cycling"
+ ],
+ "synsets": [
+ "02892666-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport",
+ "leisure",
+ "sport",
+ "cycling"
+ ],
+ "_id": 6001,
+ "created": "2008-10-30T11:19:11.000Z",
+ "lastUpdated": "2021-05-13T09:56:26.041Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "frein de vélo",
+ "hasLocution": true,
+ "plural": "freins de vélo"
+ },
+ {
+ "type": 2,
+ "keyword": "frein",
+ "hasLocution": true,
+ "plural": "freins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "communication system"
+ ],
+ "synsets": [
+ "01041202-v",
+ "00931122-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "augmentative communication",
+ "communication system"
+ ],
+ "_id": 6008,
+ "created": "2008-11-06T11:45:01.000Z",
+ "lastUpdated": "2021-05-13T09:46:07.932Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "signer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "03056080-a"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 6010,
+ "created": "2008-11-06T11:51:06.000Z",
+ "lastUpdated": "2021-05-13T09:45:28.346Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "arabe",
+ "hasLocution": true,
+ "plural": "arabe"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "polite set expression"
+ ],
+ "synsets": [
+ "06645018-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 6009,
+ "created": "2008-11-06T11:47:11.000Z",
+ "lastUpdated": "2021-05-13T09:45:38.851Z",
+ "keywords": [
+ {
+ "type": 5,
+ "hasLocution": true,
+ "keyword": "bonjour"
+ },
+ {
+ "keyword": "salut",
+ "type": 5,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indigenouos people"
+ ],
+ "synsets": [
+ "01040065-s",
+ "09657682-n"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 6011,
+ "created": "2008-11-06T12:00:14.000Z",
+ "lastUpdated": "2021-07-18T10:12:05.500Z",
+ "keywords": [
+ {
+ "keyword": "natif d'Afrique",
+ "hasLocution": false,
+ "plural": "natifs d'Afrique",
+ "type": 2
+ },
+ {
+ "keyword": "africain",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "africains"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "04324313-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 6000,
+ "created": "2008-10-30T11:08:02.000Z",
+ "lastUpdated": "2021-05-03T20:16:30.882Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "stéthoscope",
+ "hasLocution": true,
+ "plural": "stéthoscopes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sea and oceans"
+ ],
+ "synsets": [
+ "09331478-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean"
+ ],
+ "_id": 6014,
+ "created": "2008-11-06T12:06:56.000Z",
+ "lastUpdated": "2021-05-03T20:09:12.757Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "iceberg",
+ "hasLocution": true,
+ "plural": "icebergs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02430184-v",
+ "02431018-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6016,
+ "created": "2008-11-06T12:14:21.000Z",
+ "lastUpdated": "2021-05-13T09:42:45.812Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "inaugurer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "03576431-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 6017,
+ "created": "2008-11-06T12:16:30.000Z",
+ "lastUpdated": "2021-04-16T15:51:23.763Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "inhalateur",
+ "hasLocution": true,
+ "plural": "inhalateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "07277372-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 6018,
+ "created": "2008-11-06T12:18:17.000Z",
+ "lastUpdated": "2021-05-13T09:41:22.990Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clignotant",
+ "hasLocution": true,
+ "plural": "clignotants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "book character",
+ "movie character"
+ ],
+ "synsets": [
+ "10212031-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "literature",
+ "movie character",
+ "cinema"
+ ],
+ "_id": 6020,
+ "created": "2008-11-06T13:32:18.000Z",
+ "lastUpdated": "2021-05-03T20:08:22.905Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bossu",
+ "hasLocution": true,
+ "plural": "bossus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "00465546-n",
+ "10459618-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 6021,
+ "created": "2008-11-06T13:34:17.000Z",
+ "lastUpdated": "2021-07-18T10:12:35.753Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joueur de water-polo",
+ "hasLocution": true,
+ "plural": "joueurs de water-polo"
+ },
+ {
+ "keyword": "waterpoliste",
+ "hasLocution": false,
+ "plural": "waterpoliste",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "light fixture"
+ ],
+ "synsets": [
+ "00292635-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 6015,
+ "created": "2008-11-06T12:12:32.000Z",
+ "lastUpdated": "2021-05-13T09:44:54.284Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éclairer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "illuminer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "01635953-v",
+ "00723361-v",
+ "01641524-v",
+ "00592510-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 6019,
+ "created": "2008-11-06T13:30:10.000Z",
+ "lastUpdated": "2021-07-18T10:12:09.722Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "avoir une idée",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "trouver",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "inventer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "découvrir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational organization",
+ "work organization",
+ "chronological instrument"
+ ],
+ "synsets": [
+ "06508490-n"
+ ],
+ "tags": [
+ "education",
+ "organization",
+ "work",
+ "chronological device",
+ "time"
+ ],
+ "_id": 6012,
+ "created": "2008-11-06T12:02:41.000Z",
+ "lastUpdated": "2021-05-03T20:10:15.250Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "calendrier",
+ "plural": "calendriers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "09351810-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 6022,
+ "created": "2008-11-06T13:35:53.000Z",
+ "lastUpdated": "2021-04-16T15:50:33.767Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lac",
+ "hasLocution": true,
+ "plural": "lacs"
+ },
+ {
+ "keyword": "étang",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "étang"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "routine",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "00017858-v",
+ "01989043-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "person",
+ "routine",
+ "core vocabulary"
+ ],
+ "_id": 6027,
+ "created": "2008-11-14T13:51:30.000Z",
+ "lastUpdated": "2021-07-18T10:13:29.467Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se coucher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "aller au lit",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'allonger",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "polite set expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "06642117-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression",
+ "core vocabulary"
+ ],
+ "_id": 6028,
+ "created": "2008-11-14T14:01:53.000Z",
+ "lastUpdated": "2021-07-18T10:13:52.472Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "au revoir",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "à tout à l'heure",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bye",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "à plus",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mountain",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "01516880-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 6025,
+ "created": "2008-11-14T13:41:18.000Z",
+ "lastUpdated": "2022-03-14T11:50:18.776Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "camper",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "signaling system",
+ "transport services",
+ "core vocabulary-place",
+ "core vocabulary-communication",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "02695091-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "communication",
+ "signaling system",
+ "work",
+ "tertiary sector",
+ "transport services",
+ "core vocabulary"
+ ],
+ "_id": 6031,
+ "created": "2008-11-19T09:57:49.000Z",
+ "lastUpdated": "2021-04-16T15:49:26.372Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aéroport",
+ "hasLocution": true,
+ "plural": "aéroports"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00037291-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 6032,
+ "created": "2008-11-19T10:01:57.000Z",
+ "lastUpdated": "2021-05-13T19:43:51.915Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "raser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se raser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 6033,
+ "created": "2008-11-19T10:03:57.000Z",
+ "lastUpdated": "2021-07-18T10:14:16.585Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se baisser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'accroupir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15237251-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month",
+ "core vocabulary"
+ ],
+ "_id": 6034,
+ "created": "2008-11-19T10:06:16.000Z",
+ "lastUpdated": "2021-03-26T02:58:08.971Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Août",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "01427110-v",
+ "00418410-n",
+ "01428162-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 6023,
+ "created": "2008-11-14T13:36:30.000Z",
+ "lastUpdated": "2021-07-18T10:12:53.520Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "serrer dans les bras",
+ "hasLocution": true
+ },
+ {
+ "keyword": "caliner",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "embrasser",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "agriculture"
+ ],
+ "synsets": [
+ "10099179-n",
+ "10098586-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 6035,
+ "created": "2008-11-19T10:36:16.000Z",
+ "lastUpdated": "2021-07-18T10:14:50.656Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "agriculteur",
+ "hasLocution": true,
+ "plural": "agriculteurs"
+ },
+ {
+ "type": 2,
+ "keyword": "cultivateur ",
+ "hasLocution": false,
+ "plural": "cultivateurs"
+ },
+ {
+ "type": 2,
+ "keyword": "paysan",
+ "hasLocution": false,
+ "plural": "paysans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15235985-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month",
+ "core vocabulary"
+ ],
+ "_id": 6024,
+ "created": "2008-11-14T13:38:23.000Z",
+ "lastUpdated": "2021-03-26T02:49:09.052Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Avril",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "09327371-n",
+ "03531378-n"
+ ],
+ "tags": [],
+ "_id": 6036,
+ "created": "2008-11-19T10:37:43.000Z",
+ "lastUpdated": "2021-05-03T20:06:51.916Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trou",
+ "hasLocution": true,
+ "plural": "trous"
+ },
+ {
+ "keyword": "ouverture",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "ouverture"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant",
+ "oceanography",
+ "sea and oceans"
+ ],
+ "synsets": [
+ "01400138-n"
+ ],
+ "tags": [
+ "plant",
+ "oceanography",
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean"
+ ],
+ "_id": 6040,
+ "created": "2008-11-19T10:54:18.000Z",
+ "lastUpdated": "2021-04-16T15:48:25.863Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "algue",
+ "hasLocution": true,
+ "plural": "algues"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming pool",
+ "sea and oceans",
+ "river"
+ ],
+ "synsets": [
+ "00361154-v",
+ "02110088-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "swimming pool",
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean",
+ "river"
+ ],
+ "_id": 6037,
+ "created": "2008-11-19T10:39:34.000Z",
+ "lastUpdated": "2024-12-05T09:43:47.276Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "noyer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se noyer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "couler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "students"
+ ],
+ "synsets": [
+ "10685137-n"
+ ],
+ "tags": [
+ "education",
+ "students"
+ ],
+ "_id": 6041,
+ "created": "2008-11-19T10:55:48.000Z",
+ "lastUpdated": "2021-07-18T10:15:43.356Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "élève",
+ "hasLocution": true,
+ "plural": "élèves"
+ },
+ {
+ "keyword": "étudiante",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "étudiantes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "students"
+ ],
+ "synsets": [
+ "10685137-n"
+ ],
+ "tags": [
+ "education",
+ "students"
+ ],
+ "_id": 6042,
+ "created": "2008-11-19T10:59:27.000Z",
+ "lastUpdated": "2021-07-18T10:16:07.141Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "élève",
+ "hasLocution": true,
+ "plural": "élèves"
+ },
+ {
+ "keyword": "étudiants",
+ "hasLocution": false,
+ "plural": "étudiants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component"
+ ],
+ "synsets": [
+ "02712226-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component"
+ ],
+ "_id": 6043,
+ "created": "2008-11-19T11:01:57.000Z",
+ "lastUpdated": "2021-04-16T15:47:25.486Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ancre",
+ "hasLocution": true,
+ "plural": "ancres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "basic needs",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01908923-v",
+ "01886163-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "person",
+ "basic needs",
+ "core vocabulary"
+ ],
+ "_id": 6044,
+ "created": "2008-11-19T11:03:19.000Z",
+ "lastUpdated": "2021-07-18T10:16:10.836Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "marcher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00860989-v",
+ "01822202-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response",
+ "core vocabulary"
+ ],
+ "_id": 6046,
+ "created": "2008-11-19T11:10:39.000Z",
+ "lastUpdated": "2021-10-04T21:04:20.083Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "encourager",
+ "hasLocution": true
+ },
+ {
+ "keyword": "réconforter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "soutenir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "outdoor activity",
+ "land transport",
+ "healthy habit",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01939335-v",
+ "02106676-v",
+ "01959843-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "leisure",
+ "outdoor activity",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "health",
+ "lifestyle",
+ "healthy habit",
+ "core vocabulary"
+ ],
+ "_id": 6045,
+ "created": "2008-11-19T11:07:13.000Z",
+ "lastUpdated": "2022-02-28T18:40:22.488Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se balader en vélo",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "monter à vélo",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rouler",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "faire du vélo",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "photography"
+ ],
+ "synsets": [
+ "02697938-n"
+ ],
+ "tags": [
+ "visual art",
+ "photography"
+ ],
+ "_id": 6039,
+ "created": "2008-11-19T10:51:32.000Z",
+ "lastUpdated": "2021-07-18T10:15:20.830Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "album photos",
+ "hasLocution": true,
+ "plural": "albums photos"
+ },
+ {
+ "type": 2,
+ "keyword": "album",
+ "hasLocution": true,
+ "plural": "albums"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "birthday",
+ "core vocabulary-communication",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "01571845-v",
+ "02766453-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "event",
+ "social event",
+ "birthday",
+ "core vocabulary"
+ ],
+ "_id": 6047,
+ "created": "2008-11-19T11:12:02.000Z",
+ "lastUpdated": "2021-07-18T10:16:56.197Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éteindre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "souffler",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "furniture",
+ "document"
+ ],
+ "synsets": [
+ "01003688-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "furniture",
+ "document"
+ ],
+ "_id": 6048,
+ "created": "2008-11-19T11:14:35.000Z",
+ "lastUpdated": "2024-12-10T15:47:21.488Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "classer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "hasLocution": true,
+ "keyword": "ranger"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space"
+ ],
+ "synsets": [
+ "04141422-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground",
+ "education",
+ "educational space"
+ ],
+ "_id": 6049,
+ "created": "2008-11-19T11:31:34.000Z",
+ "lastUpdated": "2021-05-03T20:04:03.509Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bac à sable",
+ "hasLocution": true,
+ "plural": "bacs à sable"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "core vocabulary-knowledge",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "10386665-n",
+ "10387518-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "core vocabulary"
+ ],
+ "_id": 6050,
+ "created": "2008-11-19T11:37:25.000Z",
+ "lastUpdated": "2021-05-03T20:02:43.519Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "infirmier",
+ "hasLocution": true,
+ "plural": "infirmiers"
+ },
+ {
+ "keyword": "infirmière",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "infirmières"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "dance",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01898642-v",
+ "01712535-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "scenic art",
+ "dance",
+ "show",
+ "core vocabulary"
+ ],
+ "_id": 6052,
+ "created": "2008-11-20T09:51:36.000Z",
+ "lastUpdated": "2021-05-13T19:39:54.856Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "danser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "09979006-n",
+ "10317198-n",
+ "09893984-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 6038,
+ "created": "2008-11-19T10:49:08.000Z",
+ "lastUpdated": "2021-07-18T10:15:02.549Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maçon",
+ "hasLocution": true,
+ "plural": "maçons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "construction"
+ ],
+ "synsets": [
+ "04442314-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 6054,
+ "created": "2008-11-20T10:02:14.000Z",
+ "lastUpdated": "2021-05-03T19:59:42.952Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carreau",
+ "hasLocution": true,
+ "plural": "carreaux"
+ },
+ {
+ "keyword": "dalle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dalles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "07607532-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 6057,
+ "created": "2008-11-20T10:10:03.000Z",
+ "lastUpdated": "2021-03-26T16:32:43.654Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poêle à paella",
+ "hasLocution": true,
+ "plural": "poêles à paella"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "usual verbs",
+ "core vocabulary-communication",
+ "building facility"
+ ],
+ "synsets": [
+ "00035596-v",
+ "00258637-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "usual verbs",
+ "core vocabulary",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 6058,
+ "created": "2008-11-20T10:11:55.000Z",
+ "lastUpdated": "2024-12-05T12:12:19.660Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se baigner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prendre un bain",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cleaning product",
+ "place"
+ ],
+ "synsets": [
+ "01396368-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "cleaning product",
+ "place"
+ ],
+ "_id": 6059,
+ "created": "2008-11-20T10:13:29.000Z",
+ "lastUpdated": "2024-12-05T07:27:22.806Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "balayer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baby",
+ "childcare",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "09846929-n"
+ ],
+ "tags": [
+ "person",
+ "baby",
+ "health",
+ "medicine",
+ "babycare",
+ "core vocabulary"
+ ],
+ "_id": 6060,
+ "created": "2008-11-20T10:15:19.000Z",
+ "lastUpdated": "2021-05-10T17:36:26.854Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bébé",
+ "hasLocution": true,
+ "plural": "bébés"
+ },
+ {
+ "keyword": "nourrisson",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "nourrissons"
+ },
+ {
+ "keyword": "nouveau-né",
+ "hasLocution": false,
+ "plural": "nouveaux-nés",
+ "type": 2
+ },
+ {
+ "keyword": "petit",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "petit"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "beverage",
+ "basic needs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01172332-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "feeding",
+ "food",
+ "beverage",
+ "person",
+ "basic needs",
+ "core vocabulary"
+ ],
+ "_id": 6061,
+ "created": "2008-11-20T10:18:39.000Z",
+ "lastUpdated": "2021-05-13T19:38:23.844Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Absorber, ingérer un liquide",
+ "keyword": "boire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01433863-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response",
+ "core vocabulary"
+ ],
+ "_id": 6062,
+ "created": "2008-11-20T10:20:20.000Z",
+ "lastUpdated": "2021-07-18T10:17:35.281Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "embrasser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire un bisou",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "financial services",
+ "signaling system"
+ ],
+ "synsets": [
+ "02790795-n",
+ "08437235-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector",
+ "financial services",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6055,
+ "created": "2008-11-20T10:03:41.000Z",
+ "lastUpdated": "2021-04-16T15:46:45.840Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "banque",
+ "hasLocution": true,
+ "plural": "banques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01974840-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 6053,
+ "created": "2008-11-20T09:54:45.000Z",
+ "lastUpdated": "2022-03-01T09:14:29.129Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Aller de haut en bas, quitter un lieu pour un autre moins élevé",
+ "keyword": "descendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "library science",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-knowledge",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "03666369-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "library science",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 6063,
+ "created": "2008-11-20T10:22:17.000Z",
+ "lastUpdated": "2021-04-16T15:44:56.974Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bibliothèque",
+ "hasLocution": true,
+ "plural": "bibliothèques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "residential building"
+ ],
+ "synsets": [
+ "04132122-n",
+ "04347828-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "home"
+ ],
+ "_id": 6068,
+ "created": "2008-11-21T13:38:15.000Z",
+ "lastUpdated": "2021-04-16T15:42:46.848Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coffre-fort",
+ "hasLocution": false,
+ "plural": "coffres-forts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recycling",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "14881302-n",
+ "14881648-n",
+ "03964521-n"
+ ],
+ "tags": [
+ "environmental science",
+ "recycling",
+ "core vocabulary"
+ ],
+ "_id": 6065,
+ "created": "2008-11-20T10:24:38.000Z",
+ "lastUpdated": "2021-04-16T15:44:25.488Z",
+ "keywords": [
+ {
+ "keyword": "sac de poubelle",
+ "hasLocution": false,
+ "plural": "sacs de poubelle",
+ "type": 2
+ },
+ {
+ "keyword": "poubelle",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "poubelles"
+ },
+ {
+ "keyword": "sac de déchets",
+ "hasLocution": false,
+ "plural": "sacs de déchets",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "trade"
+ ],
+ "synsets": [
+ "09918741-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 6069,
+ "created": "2008-11-21T13:42:03.000Z",
+ "lastUpdated": "2021-05-03T19:56:24.209Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caissier",
+ "hasLocution": true,
+ "plural": "caissiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "03238608-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 6070,
+ "created": "2008-11-21T13:47:51.000Z",
+ "lastUpdated": "2021-04-16T15:41:53.318Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tiroir",
+ "hasLocution": true,
+ "plural": "tiroirs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry",
+ "beverage"
+ ],
+ "synsets": [
+ "10783051-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 6072,
+ "created": "2008-11-21T13:50:55.000Z",
+ "lastUpdated": "2021-05-13T19:35:53.603Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "serveur",
+ "hasLocution": true,
+ "plural": "serveurs"
+ },
+ {
+ "keyword": "garçon",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "garçons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "signaling system"
+ ],
+ "synsets": [
+ "04989456-n",
+ "01042933-v",
+ "00462448-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "signaling system"
+ ],
+ "_id": 6071,
+ "created": "2008-11-21T13:49:16.000Z",
+ "lastUpdated": "2021-07-18T10:18:13.798Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "silence",
+ "hasLocution": true,
+ "plural": "silences"
+ },
+ {
+ "type": 3,
+ "keyword": "taire",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire taire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "work accident",
+ "core vocabulary-communication",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "01988331-v",
+ "01976312-v",
+ "01988133-v",
+ "00031270-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "work",
+ "work accident",
+ "core vocabulary"
+ ],
+ "_id": 6067,
+ "created": "2008-11-21T13:31:13.000Z",
+ "lastUpdated": "2021-07-18T10:17:48.564Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tomber",
+ "hasLocution": true
+ },
+ {
+ "keyword": "chuter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "library science"
+ ],
+ "synsets": [
+ "06489870-n",
+ "06900328-n"
+ ],
+ "tags": [
+ "library science"
+ ],
+ "_id": 6073,
+ "created": "2008-11-21T13:53:08.000Z",
+ "lastUpdated": "2024-12-10T06:38:44.558Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carte de bibliothèque",
+ "hasLocution": false,
+ "plural": "cartes de bibliothèque"
+ },
+ {
+ "keyword": "carte d'emprunt",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cartes d'emprunt"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "meat"
+ ],
+ "synsets": [
+ "02930545-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 6074,
+ "created": "2008-11-21T13:54:51.000Z",
+ "lastUpdated": "2021-05-13T19:33:54.353Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boucherie",
+ "hasLocution": true,
+ "plural": "boucheries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "carpentry",
+ "construction"
+ ],
+ "synsets": [
+ "09916137-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "carpentry",
+ "construction"
+ ],
+ "_id": 6076,
+ "created": "2008-11-21T13:57:46.000Z",
+ "lastUpdated": "2021-04-16T15:40:53.577Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "menuisier",
+ "hasLocution": true,
+ "plural": "menuisiers"
+ },
+ {
+ "keyword": "charpentier",
+ "hasLocution": false,
+ "plural": "charpentier",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "meat"
+ ],
+ "synsets": [
+ "09903843-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 6075,
+ "created": "2008-11-21T13:56:07.000Z",
+ "lastUpdated": "2021-05-13T19:33:26.238Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "boucher",
+ "hasLocution": true,
+ "plural": "bouchers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "beverage"
+ ],
+ "synsets": [
+ "04404162-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 6077,
+ "created": "2008-11-21T14:00:00.000Z",
+ "lastUpdated": "2024-12-05T06:29:24.120Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charriot",
+ "hasLocution": true,
+ "plural": "charriots"
+ },
+ {
+ "type": 2,
+ "keyword": "charriot de boissons",
+ "hasLocution": false,
+ "plural": "charriots de boissons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "10111420-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security",
+ "core vocabulary"
+ ],
+ "_id": 6066,
+ "created": "2008-11-20T10:27:17.000Z",
+ "lastUpdated": "2021-05-03T19:58:03.037Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pompier",
+ "hasLocution": true,
+ "plural": "pompiers"
+ },
+ {
+ "keyword": "sapeur-pompier",
+ "hasLocution": false,
+ "plural": "sapeurs-pompiers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "gardening"
+ ],
+ "synsets": [
+ "01313763-v",
+ "02148219-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 6078,
+ "created": "2008-11-21T14:01:10.000Z",
+ "lastUpdated": "2021-05-13T19:32:15.172Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "creuser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bêcher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "mountain"
+ ],
+ "synsets": [
+ "03363983-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 6138,
+ "created": "2008-11-25T12:20:17.000Z",
+ "lastUpdated": "2021-04-16T15:38:57.576Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lampe de poche",
+ "hasLocution": true,
+ "plural": "lampes de poche"
+ },
+ {
+ "keyword": "torche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "torches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02081903-v",
+ "02290237-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6139,
+ "created": "2008-11-25T12:20:49.000Z",
+ "lastUpdated": "2021-07-18T10:20:55.651Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "porter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "emporter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indigenouos people",
+ "movie character"
+ ],
+ "synsets": [
+ "10083442-n",
+ "01040065-s"
+ ],
+ "tags": [
+ "person",
+ "character",
+ "movie character",
+ "cinema"
+ ],
+ "_id": 6135,
+ "created": "2008-11-25T12:14:30.000Z",
+ "lastUpdated": "2021-07-21T12:47:59.648Z",
+ "keywords": [
+ {
+ "keyword": "inuit",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "inuits"
+ },
+ {
+ "keyword": "esquimau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "esquimaux"
+ },
+ {
+ "keyword": "natif d'Arctique",
+ "hasLocution": false,
+ "plural": "natifs d'Arctique",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "02116752-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 6140,
+ "created": "2008-11-25T12:21:33.000Z",
+ "lastUpdated": "2021-05-06T22:11:17.627Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Grand Méchant Loup",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indigenouos people"
+ ],
+ "synsets": [
+ "09664887-n",
+ "01040065-s"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 6137,
+ "created": "2008-11-25T12:18:23.000Z",
+ "lastUpdated": "2021-07-21T12:48:06.714Z",
+ "keywords": [
+ {
+ "keyword": "sud-américain",
+ "hasLocution": true,
+ "plural": "sud-américains",
+ "type": 2
+ },
+ {
+ "keyword": "natif d'Amérique du Sud",
+ "hasLocution": false,
+ "plural": "natifs d'Amérique du Sud",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "speech therapy"
+ ],
+ "synsets": [
+ "10653862-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "speech therapy"
+ ],
+ "_id": 6141,
+ "created": "2008-11-25T12:22:16.000Z",
+ "lastUpdated": "2021-04-16T15:38:01.376Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "orthophoniste",
+ "hasLocution": true,
+ "plural": "orthophonistes"
+ },
+ {
+ "keyword": "logopède",
+ "hasLocution": false,
+ "plural": "logopède",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "speech therapy",
+ "signaling system"
+ ],
+ "synsets": [
+ "00708466-n"
+ ],
+ "tags": [
+ "speech therapy",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6142,
+ "created": "2008-11-25T12:22:50.000Z",
+ "lastUpdated": "2021-05-06T22:10:51.358Z",
+ "keywords": [
+ {
+ "keyword": "orthophonie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "orthophonies"
+ },
+ {
+ "keyword": "logopédie",
+ "type": 2,
+ "plural": "logopédies",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 6144,
+ "created": "2008-11-25T12:24:19.000Z",
+ "lastUpdated": "2021-07-18T10:20:58.850Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "maman Ours",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetal origin material",
+ "carpentry",
+ "core vocabulary-object",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "15122728-n",
+ "15126421-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "vegetal origin material",
+ "work",
+ "secondary sector",
+ "carpentry",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 6143,
+ "created": "2008-11-25T12:23:37.000Z",
+ "lastUpdated": "2021-05-13T19:31:27.880Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bois",
+ "hasLocution": true,
+ "plural": "bois"
+ },
+ {
+ "type": 2,
+ "keyword": "planche",
+ "hasLocution": true,
+ "plural": "planche"
+ },
+ {
+ "type": 2,
+ "keyword": "panneau",
+ "hasLocution": false,
+ "plural": "panneaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport",
+ "cycling"
+ ],
+ "synsets": [
+ "03492173-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport",
+ "leisure",
+ "sport",
+ "cycling"
+ ],
+ "_id": 6145,
+ "created": "2008-11-25T12:25:05.000Z",
+ "lastUpdated": "2021-05-13T19:29:03.406Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guidon",
+ "hasLocution": true,
+ "plural": "guidons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "10096087-n"
+ ],
+ "tags": [
+ "person",
+ "character",
+ "book character",
+ "literature",
+ "tale character"
+ ],
+ "_id": 6136,
+ "created": "2008-11-25T12:15:28.000Z",
+ "lastUpdated": "2021-07-18T10:20:06.144Z",
+ "keywords": [
+ {
+ "keyword": "fakir",
+ "hasLocution": false,
+ "plural": "fakirs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "ovoviviparous",
+ "marine animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01502732-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "ovoviviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "wild"
+ ],
+ "_id": 6146,
+ "created": "2008-11-25T12:48:24.000Z",
+ "lastUpdated": "2021-05-06T22:09:59.322Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "raie",
+ "plural": "raies"
+ },
+ {
+ "keyword": "raie manta",
+ "hasLocution": false,
+ "plural": "raies mantas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "basketball",
+ "sport"
+ ],
+ "synsets": [
+ "04156878-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "basketball"
+ ],
+ "_id": 6147,
+ "created": "2008-11-25T12:49:08.000Z",
+ "lastUpdated": "2024-12-11T06:58:17.200Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tableau d'affichage",
+ "hasLocution": true,
+ "plural": "tableaux d'affichage"
+ },
+ {
+ "type": 2,
+ "keyword": "résultat ",
+ "hasLocution": false,
+ "plural": "résultats"
+ },
+ {
+ "keyword": "tableau de scores",
+ "hasLocution": false,
+ "plural": "tableaux de scores",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "03056080-a"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 6150,
+ "created": "2008-11-25T12:51:21.000Z",
+ "lastUpdated": "2021-07-18T10:22:37.496Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "arabe",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indigenouos people",
+ "movie character"
+ ],
+ "synsets": [
+ "10083442-n",
+ "01040065-s"
+ ],
+ "tags": [
+ "person",
+ "character",
+ "movie character",
+ "cinema"
+ ],
+ "_id": 6151,
+ "created": "2008-11-25T12:53:53.000Z",
+ "lastUpdated": "2021-07-21T12:49:07.931Z",
+ "keywords": [
+ {
+ "keyword": "inuite",
+ "hasLocution": false,
+ "plural": "inuites",
+ "type": 2
+ },
+ {
+ "keyword": "esquimau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "esquimaux"
+ },
+ {
+ "keyword": "native d'Arctique",
+ "hasLocution": false,
+ "plural": "natives d'Arctique",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indigenouos people"
+ ],
+ "synsets": [
+ "01040065-s",
+ "09693046-n"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 6152,
+ "created": "2008-11-25T12:54:52.000Z",
+ "lastUpdated": "2021-07-21T12:49:11.714Z",
+ "keywords": [
+ {
+ "keyword": "Indienne",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "Indiennes"
+ },
+ {
+ "keyword": "native d'Inde",
+ "hasLocution": false,
+ "plural": "natives d'Inde",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indigenouos people"
+ ],
+ "synsets": [
+ "09664887-n",
+ "01040065-s"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 6153,
+ "created": "2008-11-25T12:56:34.000Z",
+ "lastUpdated": "2021-07-21T12:50:05.355Z",
+ "keywords": [
+ {
+ "keyword": "native d'Amérique",
+ "hasLocution": false,
+ "plural": "natives d'Amérique",
+ "type": 2
+ },
+ {
+ "keyword": "Américaine",
+ "hasLocution": true,
+ "plural": "Américaines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "03146474-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 6154,
+ "created": "2008-11-25T12:57:20.000Z",
+ "lastUpdated": "2021-04-16T15:35:08.464Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "béquilles",
+ "hasLocution": true,
+ "plural": "béquilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication",
+ "object",
+ "feeding",
+ "mode of transport",
+ "educational material",
+ "sport material",
+ "toy"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary",
+ "object",
+ "feeding",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "education",
+ "educational material",
+ "leisure",
+ "sport",
+ "sport material",
+ "toy"
+ ],
+ "_id": 6156,
+ "created": "2008-11-25T12:58:38.000Z",
+ "lastUpdated": "2025-01-11T08:02:26.113Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "je ne veux pas",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "ne pas vouloir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses",
+ "food"
+ ],
+ "synsets": [
+ "07516784-n",
+ "01780648-v",
+ "01821097-v",
+ "01806732-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses",
+ "feeding",
+ "food"
+ ],
+ "_id": 6155,
+ "created": "2008-11-25T12:58:01.000Z",
+ "lastUpdated": "2024-12-12T06:52:31.501Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ne pas aimer",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "je n'aime pas ça",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "désagréable",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "déplaire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pas bon",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "dégoutant",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "01581362-v",
+ "00215377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 6149,
+ "created": "2008-11-25T12:50:27.000Z",
+ "lastUpdated": "2021-07-18T10:22:32.195Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mouiller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se mouiller",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "mouillée",
+ "hasLocution": true
+ },
+ {
+ "keyword": "trempée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical notation"
+ ],
+ "synsets": [
+ "06884584-n"
+ ],
+ "tags": [
+ "music",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 6157,
+ "created": "2008-11-25T12:59:52.000Z",
+ "lastUpdated": "2021-07-18T10:23:51.187Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "double-croches",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "river animal",
+ "marine animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02447450-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "marine animal",
+ "sea",
+ "wild"
+ ],
+ "_id": 6158,
+ "created": "2008-11-25T13:04:30.000Z",
+ "lastUpdated": "2021-04-16T15:34:23.865Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "loutre",
+ "hasLocution": true,
+ "plural": "loutres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "08523517-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 6159,
+ "created": "2008-11-25T13:05:17.000Z",
+ "lastUpdated": "2021-04-16T15:33:49.388Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oasis",
+ "hasLocution": true,
+ "plural": "oasis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mythological character",
+ "tale character"
+ ],
+ "synsets": [
+ "09513956-n"
+ ],
+ "tags": [
+ "character",
+ "mythological character",
+ "mythology",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 6160,
+ "created": "2008-11-25T13:06:26.000Z",
+ "lastUpdated": "2021-04-16T15:33:36.171Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ogre",
+ "hasLocution": true,
+ "plural": "ogres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mineral origin material",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "14662977-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "mineral origin material",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 6161,
+ "created": "2008-11-25T13:07:25.000Z",
+ "lastUpdated": "2021-05-09T20:19:24.957Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "or",
+ "hasLocution": true,
+ "plural": "ors"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "derived material",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "14649636-n",
+ "01531539-a"
+ ],
+ "tags": [
+ "material",
+ "derived material",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 6148,
+ "created": "2008-11-25T12:49:49.000Z",
+ "lastUpdated": "2021-07-18T10:22:12.423Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "métallique",
+ "hasLocution": false,
+ "plural": "métalliques"
+ },
+ {
+ "keyword": "métal",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "métaux"
+ },
+ {
+ "type": 2,
+ "keyword": "objet en métal",
+ "hasLocution": false,
+ "plural": "objets en métal"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "cattle farming",
+ "herbivorous"
+ ],
+ "synsets": [
+ "14984078-n",
+ "02781461-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "cattle farming",
+ "animal",
+ "herbivorous"
+ ],
+ "_id": 6163,
+ "created": "2008-11-25T13:11:40.000Z",
+ "lastUpdated": "2024-12-03T10:45:42.413Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "paille",
+ "hasLocution": true,
+ "plural": "pailles"
+ },
+ {
+ "type": 2,
+ "keyword": "balle",
+ "hasLocution": true,
+ "plural": "balles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 6165,
+ "created": "2008-11-25T13:13:55.000Z",
+ "lastUpdated": "2021-04-26T20:42:09.117Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Papa Ours",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "14998823-n",
+ "03893394-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 6166,
+ "created": "2008-11-25T13:14:39.000Z",
+ "lastUpdated": "2021-04-16T15:31:31.342Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "papier absorbant",
+ "hasLocution": false,
+ "plural": "papiers absorbants"
+ },
+ {
+ "keyword": "essuie-tout",
+ "hasLocution": false,
+ "plural": "essuie-touts",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "sopalin",
+ "plural": "sopalins",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10417181-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 6167,
+ "created": "2008-11-25T13:15:31.000Z",
+ "lastUpdated": "2021-07-18T10:24:18.220Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parachutiste",
+ "hasLocution": true,
+ "plural": "parachutistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "beverage"
+ ],
+ "synsets": [
+ "04341370-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 6164,
+ "created": "2008-11-25T13:12:59.000Z",
+ "lastUpdated": "2024-12-03T10:46:02.219Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "paille",
+ "hasLocution": true,
+ "plural": "pailles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport",
+ "sport modality"
+ ],
+ "synsets": [
+ "00305175-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport",
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 6169,
+ "created": "2008-11-25T13:17:02.000Z",
+ "lastUpdated": "2021-04-16T15:28:10.925Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parapente",
+ "hasLocution": true,
+ "plural": "parapentes"
+ },
+ {
+ "keyword": "parapentiste",
+ "hasLocution": false,
+ "plural": "parapentiste",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 6162,
+ "created": "2008-11-25T13:08:16.000Z",
+ "lastUpdated": "2021-07-18T10:24:09.515Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Petit ours",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tv show",
+ "football"
+ ],
+ "synsets": [
+ "00457223-n",
+ "07485811-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show",
+ "leisure",
+ "sport",
+ "football"
+ ],
+ "_id": 6170,
+ "created": "2008-11-25T13:20:10.000Z",
+ "lastUpdated": "2021-07-18T10:24:28.751Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "match",
+ "hasLocution": true,
+ "plural": "matchs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "02921979-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 6168,
+ "created": "2008-11-25T13:16:17.000Z",
+ "lastUpdated": "2021-04-16T15:28:50.845Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pare-chocs",
+ "hasLocution": true,
+ "plural": "pare-chocs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02054499-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 6174,
+ "created": "2008-11-25T13:24:08.000Z",
+ "lastUpdated": "2021-04-26T20:39:04.360Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pélican",
+ "hasLocution": true,
+ "plural": "pélicans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "supporting document"
+ ],
+ "synsets": [
+ "06512928-n"
+ ],
+ "tags": [
+ "document",
+ "supporting document"
+ ],
+ "_id": 6171,
+ "created": "2008-11-25T13:21:16.000Z",
+ "lastUpdated": "2021-04-16T15:27:17.962Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "passeport",
+ "hasLocution": true,
+ "plural": "passeports"
+ },
+ {
+ "keyword": "passeport espagnol",
+ "hasLocution": false,
+ "plural": "passeports espagnols",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport",
+ "cycling"
+ ],
+ "synsets": [
+ "03909502-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport",
+ "leisure",
+ "sport",
+ "cycling"
+ ],
+ "_id": 6172,
+ "created": "2008-11-25T13:22:17.000Z",
+ "lastUpdated": "2021-04-16T15:26:37.926Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pédale",
+ "hasLocution": true,
+ "plural": "pédales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "object"
+ ],
+ "synsets": [
+ "02292463-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object"
+ ],
+ "_id": 6175,
+ "created": "2008-11-25T13:25:35.000Z",
+ "lastUpdated": "2024-12-07T13:20:30.488Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "perdre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "égarer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 6177,
+ "created": "2008-11-25T13:33:31.000Z",
+ "lastUpdated": "2021-04-26T20:36:21.250Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pinocchio",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "sport"
+ ],
+ "synsets": [
+ "04578578-n",
+ "03259733-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 6176,
+ "created": "2008-11-25T13:32:35.000Z",
+ "lastUpdated": "2024-12-08T15:41:47.509Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poids",
+ "hasLocution": true,
+ "plural": "poids"
+ },
+ {
+ "keyword": "haltère",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "haltères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03947960-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 6178,
+ "created": "2008-11-25T13:34:32.000Z",
+ "lastUpdated": "2021-04-26T20:36:12.960Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pince",
+ "hasLocution": true,
+ "plural": "pinces"
+ },
+ {
+ "type": 2,
+ "keyword": "pince à épiler",
+ "hasLocution": true,
+ "plural": "pinces à épiler"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "02954794-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 6179,
+ "created": "2008-11-25T13:35:17.000Z",
+ "lastUpdated": "2021-04-26T20:34:17.328Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pirogue",
+ "hasLocution": true,
+ "plural": "pirogues"
+ },
+ {
+ "type": 2,
+ "keyword": "canöe",
+ "hasLocution": true,
+ "plural": "canöes"
+ },
+ {
+ "keyword": "canöe-kayak",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "canöes-kayaks"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cycling"
+ ],
+ "synsets": [
+ "01939335-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "cycling"
+ ],
+ "_id": 6173,
+ "created": "2008-11-25T13:23:00.000Z",
+ "lastUpdated": "2021-04-16T15:26:09.211Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "pédaler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character",
+ "movie character",
+ "historical character"
+ ],
+ "synsets": [
+ "10455134-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature",
+ "movie character",
+ "cinema",
+ "historical character",
+ "history"
+ ],
+ "_id": 6180,
+ "created": "2008-11-25T13:36:28.000Z",
+ "lastUpdated": "2021-04-26T20:32:59.744Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pirate",
+ "hasLocution": true,
+ "plural": "pirates"
+ },
+ {
+ "keyword": "corsaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "corsaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "urban area",
+ "place"
+ ],
+ "synsets": [
+ "08637195-n"
+ ],
+ "tags": [
+ "place",
+ "urban area"
+ ],
+ "_id": 6184,
+ "created": "2008-11-25T13:39:26.000Z",
+ "lastUpdated": "2024-12-08T15:29:21.487Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "place",
+ "hasLocution": true,
+ "plural": "places"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "bullfighting",
+ "signaling system",
+ "popular event"
+ ],
+ "synsets": [
+ "02921496-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "scenic art",
+ "bullfighting",
+ "communication",
+ "signaling system",
+ "event",
+ "popular event"
+ ],
+ "_id": 6185,
+ "created": "2008-11-25T13:45:55.000Z",
+ "lastUpdated": "2024-12-08T15:29:38.607Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arène",
+ "hasLocution": true,
+ "plural": "arènes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "swimming"
+ ],
+ "synsets": [
+ "04378312-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "swimming"
+ ],
+ "_id": 6181,
+ "created": "2008-11-25T13:37:19.000Z",
+ "lastUpdated": "2021-07-18T10:25:00.996Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piscine couverte",
+ "hasLocution": true,
+ "plural": "piscines couvertes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "08629393-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 6187,
+ "created": "2008-11-25T13:51:19.000Z",
+ "lastUpdated": "2021-04-26T20:29:48.930Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pôle Nord",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mineral origin material",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "14679133-n",
+ "04227590-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "mineral origin material",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 6183,
+ "created": "2008-11-25T13:38:34.000Z",
+ "lastUpdated": "2021-04-26T20:31:14.624Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "argent",
+ "hasLocution": true,
+ "plural": "argents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "03125142-n",
+ "02739516-n",
+ "03338555-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 6186,
+ "created": "2008-11-25T13:46:46.000Z",
+ "lastUpdated": "2021-07-18T10:25:59.337Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle omnisports",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "terrain",
+ "hasLocution": true,
+ "plural": "terrains"
+ },
+ {
+ "keyword": "terrain de sports",
+ "hasLocution": false,
+ "plural": "terrains de sports"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "08670292-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 6188,
+ "created": "2008-11-25T13:52:31.000Z",
+ "lastUpdated": "2021-04-26T20:29:40.603Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pôle Sud",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00407168-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6190,
+ "created": "2008-11-25T13:54:47.000Z",
+ "lastUpdated": "2021-07-18T10:26:12.696Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "préparer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure"
+ ],
+ "synsets": [
+ "03164975-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure"
+ ],
+ "_id": 6191,
+ "created": "2008-11-25T13:55:45.000Z",
+ "lastUpdated": "2021-04-26T20:29:27.804Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "barrage",
+ "plural": "barrages"
+ },
+ {
+ "type": 2,
+ "keyword": "digue",
+ "hasLocution": false,
+ "plural": "digues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "football"
+ ],
+ "synsets": [
+ "04586953-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "football"
+ ],
+ "_id": 6182,
+ "created": "2008-11-25T13:37:56.000Z",
+ "lastUpdated": "2021-04-26T20:31:34.801Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sifflet",
+ "hasLocution": true,
+ "plural": "sifflets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "social movement",
+ "group"
+ ],
+ "synsets": [
+ "01130619-v",
+ "01132302-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "sociology",
+ "social movement",
+ "person",
+ "group"
+ ],
+ "_id": 6192,
+ "created": "2008-11-25T13:56:19.000Z",
+ "lastUpdated": "2024-12-05T17:51:05.354Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "défendre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "protéger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00196708-v",
+ "00379335-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6196,
+ "created": "2008-11-25T13:59:49.000Z",
+ "lastUpdated": "2021-05-09T20:09:30.383Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "brûler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "incendier",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "allumer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "04290516-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 6197,
+ "created": "2008-11-26T10:05:52.000Z",
+ "lastUpdated": "2021-05-09T20:07:28.031Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rayon de bicyclette",
+ "hasLocution": false,
+ "plural": "rayons de bicyclette"
+ },
+ {
+ "keyword": "rayon",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "rayons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware",
+ "communication aid",
+ "core vocabulary-knowledge",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "04379457-n",
+ "04033499-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware",
+ "communication",
+ "augmentative communication",
+ "communication aid",
+ "core vocabulary"
+ ],
+ "_id": 6195,
+ "created": "2008-11-25T13:58:57.000Z",
+ "lastUpdated": "2021-05-09T20:12:29.981Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "contacteur",
+ "plural": "contacteurs"
+ },
+ {
+ "type": 2,
+ "keyword": "commutateur",
+ "hasLocution": true,
+ "plural": "commutateurs"
+ },
+ {
+ "hasLocution": true,
+ "plural": "boutons",
+ "keyword": "bouton",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "04107714-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 6198,
+ "created": "2008-11-26T10:06:38.000Z",
+ "lastUpdated": "2021-05-09T20:01:42.914Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "radiographie",
+ "plural": "radiographies"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "rayons X",
+ "plural": "rayons X"
+ },
+ {
+ "hasLocution": true,
+ "keyword": "radio",
+ "type": 2,
+ "plural": "radios"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building"
+ ],
+ "synsets": [
+ "04240233-n"
+ ],
+ "tags": [
+ "place",
+ "building"
+ ],
+ "_id": 6199,
+ "created": "2008-11-26T10:07:20.000Z",
+ "lastUpdated": "2021-05-02T13:44:26.229Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "gratte-ciel",
+ "plural": "gratte-ciels"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04057178-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 6200,
+ "created": "2008-11-26T10:08:07.000Z",
+ "lastUpdated": "2021-05-02T13:43:33.436Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "râteau",
+ "hasLocution": true,
+ "plural": "râteaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade"
+ ],
+ "synsets": [
+ "13281835-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 6202,
+ "created": "2008-11-26T10:11:10.000Z",
+ "lastUpdated": "2021-05-02T13:42:42.745Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "soldes",
+ "hasLocution": true,
+ "plural": "soldes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03608096-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 6201,
+ "created": "2008-11-26T10:08:56.000Z",
+ "lastUpdated": "2021-05-09T19:49:30.558Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": " joystick ",
+ "plural": " joysticks"
+ },
+ {
+ "type": 2,
+ "keyword": "manette",
+ "hasLocution": true,
+ "plural": "manettes"
+ },
+ {
+ "keyword": "souris adaptée",
+ "hasLocution": false,
+ "plural": "souris adaptées",
+ "type": 2
+ },
+ {
+ "keyword": "joystick adapté",
+ "hasLocution": false,
+ "plural": "joysticks adaptés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03042670-n",
+ "02925183-a"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6193,
+ "created": "2008-11-25T13:57:09.000Z",
+ "lastUpdated": "2021-05-09T20:16:49.515Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "plural": "salles de psychomotricité",
+ "keyword": "salle de psychomotricité"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "plural": "psychomotricité",
+ "keyword": "psychomotricité"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "fishing",
+ "water transport"
+ ],
+ "synsets": [
+ "03825534-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "primary sector",
+ "fishing",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 6205,
+ "created": "2008-11-26T10:12:55.000Z",
+ "lastUpdated": "2021-05-02T13:42:24.532Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "filet",
+ "hasLocution": true,
+ "plural": "filets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "core vocabulary-place"
+ ],
+ "synsets": [
+ "02901994-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "core vocabulary"
+ ],
+ "_id": 6194,
+ "created": "2008-11-25T13:57:59.000Z",
+ "lastUpdated": "2021-03-27T21:37:27.072Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pont",
+ "hasLocution": true,
+ "plural": "ponts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03842942-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 6206,
+ "created": "2008-11-26T10:13:32.000Z",
+ "lastUpdated": "2021-05-02T13:41:41.855Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rame",
+ "hasLocution": true,
+ "plural": "rames"
+ },
+ {
+ "keyword": "aviron",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "avirons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "02718424-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6203,
+ "created": "2008-11-26T10:11:50.000Z",
+ "lastUpdated": "2021-07-18T10:26:46.434Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entrée",
+ "hasLocution": true,
+ "plural": "entrées"
+ },
+ {
+ "keyword": "vestibule",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vestibules"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03969939-n",
+ "08664839-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6204,
+ "created": "2008-11-26T10:12:24.000Z",
+ "lastUpdated": "2021-07-18T10:27:25.760Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "récréation",
+ "hasLocution": true,
+ "plural": "récréations"
+ },
+ {
+ "type": 2,
+ "keyword": "cour",
+ "hasLocution": true,
+ "plural": "cour"
+ },
+ {
+ "keyword": "aire de jeux",
+ "hasLocution": false,
+ "plural": "aires de jeux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 6207,
+ "created": "2008-11-26T10:36:59.000Z",
+ "lastUpdated": "2021-05-02T13:41:11.213Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Boucle d'Or",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "movie character"
+ ],
+ "synsets": [
+ "02764397-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "character",
+ "movie character",
+ "cinema"
+ ],
+ "_id": 6208,
+ "created": "2008-11-26T10:38:10.000Z",
+ "lastUpdated": "2021-05-02T13:39:46.598Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "robot",
+ "hasLocution": true,
+ "plural": "robots"
+ },
+ {
+ "keyword": "automate",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "automates"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03685038-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6211,
+ "created": "2008-11-26T10:41:56.000Z",
+ "lastUpdated": "2021-07-18T10:28:09.117Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salon",
+ "hasLocution": true,
+ "plural": "salons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "04583288-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 6212,
+ "created": "2008-11-26T10:42:49.000Z",
+ "lastUpdated": "2021-05-02T13:38:46.493Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fauteuil roulant",
+ "hasLocution": true,
+ "plural": "fauteuils roulants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport",
+ "cycling"
+ ],
+ "synsets": [
+ "02839120-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport",
+ "leisure",
+ "sport",
+ "cycling"
+ ],
+ "_id": 6213,
+ "created": "2008-11-26T10:43:18.000Z",
+ "lastUpdated": "2021-05-02T13:38:28.173Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "selle",
+ "hasLocution": false,
+ "plural": "selles"
+ },
+ {
+ "keyword": "selle de vélo",
+ "hasLocution": false,
+ "plural": "selles de vélo",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "selle de bicyclette",
+ "type": 2,
+ "plural": "selles de bicyclette"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport",
+ "object",
+ "appliance",
+ "security and defense"
+ ],
+ "synsets": [
+ "04231457-n",
+ "07280494-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport",
+ "object",
+ "appliance",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 6214,
+ "created": "2008-11-26T10:43:58.000Z",
+ "lastUpdated": "2024-12-07T13:38:06.469Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sirène",
+ "hasLocution": true,
+ "plural": "sirènes"
+ },
+ {
+ "type": 2,
+ "keyword": "alarme",
+ "hasLocution": true,
+ "plural": "alarmes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01477180-v",
+ "01989937-v",
+ "01980855-v",
+ "01516062-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 6215,
+ "created": "2008-11-26T10:44:34.000Z",
+ "lastUpdated": "2021-07-18T10:28:30.473Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "lâcher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire tomber",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "fashion",
+ "clothes"
+ ],
+ "synsets": [
+ "03242119-n",
+ "03502782-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "clothes"
+ ],
+ "_id": 6216,
+ "created": "2008-11-26T10:45:10.000Z",
+ "lastUpdated": "2024-12-08T07:28:20.026Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chapeau",
+ "hasLocution": true,
+ "plural": "chapeau"
+ },
+ {
+ "type": 2,
+ "keyword": "haut de forme",
+ "hasLocution": true,
+ "plural": "hauts de forme"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage"
+ ],
+ "synsets": [
+ "01172967-v",
+ "01541851-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 6217,
+ "created": "2008-11-26T10:45:45.000Z",
+ "lastUpdated": "2021-07-18T10:29:17.922Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "siroter"
+ },
+ {
+ "keyword": "aspirer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "boire à la paille",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01006280-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 6219,
+ "created": "2008-11-26T10:47:03.000Z",
+ "lastUpdated": "2021-05-02T13:35:49.905Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "souligner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "music device"
+ ],
+ "synsets": [
+ "00156409-v",
+ "00158311-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "music device"
+ ],
+ "_id": 6218,
+ "created": "2008-11-26T10:46:24.000Z",
+ "lastUpdated": "2021-07-14T19:51:11.978Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "augmenter la puissance",
+ "hasLocution": true
+ },
+ {
+ "keyword": "monter le volume",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre plus fort",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "monter le son",
+ "hasLocution": true,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "14614473-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 6220,
+ "created": "2008-11-26T10:56:34.000Z",
+ "lastUpdated": "2021-07-28T15:21:00.018Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sérum",
+ "hasLocution": true,
+ "plural": "sérums"
+ },
+ {
+ "keyword": "sérum physiologique",
+ "hasLocution": false,
+ "plural": "sérums physiologiques",
+ "type": 2
+ },
+ {
+ "keyword": "dosette de sérum",
+ "hasLocution": false,
+ "plural": "dosettes de sérum",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "construction"
+ ],
+ "synsets": [
+ "03475026-n",
+ "13791346-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 6210,
+ "created": "2008-11-26T10:41:08.000Z",
+ "lastUpdated": "2024-12-07T15:44:01.775Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sac",
+ "hasLocution": true,
+ "plural": "sacs"
+ },
+ {
+ "keyword": "sac de toile",
+ "hasLocution": false,
+ "plural": "sacs de toile",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "land transport"
+ ],
+ "synsets": [
+ "03430323-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 6221,
+ "created": "2008-11-26T10:57:21.000Z",
+ "lastUpdated": "2021-05-02T13:35:12.599Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "pompe à essence",
+ "plural": "pompes à essence"
+ },
+ {
+ "keyword": "distributeur à essence",
+ "hasLocution": false,
+ "plural": "distributeurs à essence",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "04582285-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport",
+ "core vocabulary"
+ ],
+ "_id": 6209,
+ "created": "2008-11-26T10:40:21.000Z",
+ "lastUpdated": "2021-05-02T13:39:16.559Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "roue",
+ "hasLocution": true,
+ "plural": "roues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "03082291-n",
+ "06262268-n",
+ "02859743-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid",
+ "core vocabulary"
+ ],
+ "_id": 6222,
+ "created": "2008-11-26T10:58:23.000Z",
+ "lastUpdated": "2021-07-18T12:24:35.481Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tableau de communication",
+ "hasLocution": true,
+ "plural": "tableaux de communication"
+ },
+ {
+ "type": 2,
+ "keyword": "tableau",
+ "hasLocution": true,
+ "plural": "tableaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00802412-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 6223,
+ "created": "2008-11-26T10:58:57.000Z",
+ "lastUpdated": "2021-05-02T13:33:25.314Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rayer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "barrer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "workplace",
+ "worksite",
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "04610439-n"
+ ],
+ "tags": [
+ "place",
+ "workplace",
+ "work",
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6225,
+ "created": "2008-11-26T11:00:16.000Z",
+ "lastUpdated": "2021-05-02T13:32:52.257Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier",
+ "hasLocution": true,
+ "plural": "ateliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "02965981-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 6226,
+ "created": "2008-11-26T11:00:49.000Z",
+ "lastUpdated": "2021-07-18T10:30:06.731Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cartons",
+ "hasLocution": true
+ },
+ {
+ "keyword": "cartes",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical features"
+ ],
+ "synsets": [
+ "04402786-n"
+ ],
+ "tags": [
+ "human body",
+ "physical features"
+ ],
+ "_id": 6227,
+ "created": "2008-11-26T11:01:44.000Z",
+ "lastUpdated": "2021-05-02T13:32:21.557Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tatouage",
+ "hasLocution": true,
+ "plural": "tatouages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04418970-n",
+ "03055026-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 6228,
+ "created": "2008-11-26T11:02:54.000Z",
+ "lastUpdated": "2021-07-18T12:12:44.941Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étendoir",
+ "hasLocution": true,
+ "plural": "étendoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "13391842-n"
+ ],
+ "tags": [],
+ "_id": 6229,
+ "created": "2008-11-26T11:07:32.000Z",
+ "lastUpdated": "2021-05-02T13:31:52.830Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trésor",
+ "hasLocution": true,
+ "plural": "trésors"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "forestry"
+ ],
+ "synsets": [
+ "01260517-v",
+ "01259737-v",
+ "01322222-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "forestry"
+ ],
+ "_id": 6224,
+ "created": "2008-11-26T10:59:33.000Z",
+ "lastUpdated": "2021-07-18T10:29:49.182Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "élaguer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "couper",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "02827590-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 6230,
+ "created": "2008-11-26T11:19:05.000Z",
+ "lastUpdated": "2021-07-18T10:30:33.674Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sonnette",
+ "hasLocution": true,
+ "plural": "sonnettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "04494650-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 6233,
+ "created": "2008-11-26T11:21:08.000Z",
+ "lastUpdated": "2021-05-02T13:29:30.018Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trombone",
+ "hasLocution": true,
+ "plural": "trombones"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "building",
+ "building facility"
+ ],
+ "synsets": [
+ "04467365-n",
+ "04509242-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 6232,
+ "created": "2008-11-26T11:20:22.000Z",
+ "lastUpdated": "2024-12-13T07:18:42.096Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tour",
+ "hasLocution": true,
+ "plural": "tours"
+ },
+ {
+ "keyword": "tourelle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tourelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "04466597-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 6231,
+ "created": "2008-11-26T11:19:44.000Z",
+ "lastUpdated": "2021-05-09T16:23:17.388Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lingettes",
+ "hasLocution": true,
+ "plural": "lingettes"
+ },
+ {
+ "keyword": "lingettes pour bébé",
+ "hasLocution": false,
+ "plural": "lingettes pour bébé",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tourism"
+ ],
+ "synsets": [
+ "10737780-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 6236,
+ "created": "2008-11-26T11:23:30.000Z",
+ "lastUpdated": "2021-04-16T20:12:02.965Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "touriste",
+ "hasLocution": true,
+ "plural": "touriste"
+ },
+ {
+ "keyword": "visiteur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "visiteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "03399752-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 6234,
+ "created": "2008-11-26T11:21:47.000Z",
+ "lastUpdated": "2021-05-02T13:28:45.125Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cor",
+ "hasLocution": true,
+ "plural": "cors"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mythological character"
+ ],
+ "synsets": [
+ "10757621-n"
+ ],
+ "tags": [
+ "character",
+ "mythological character",
+ "mythology"
+ ],
+ "_id": 6237,
+ "created": "2008-11-26T11:24:03.000Z",
+ "lastUpdated": "2021-04-16T20:10:33.342Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "licorne",
+ "hasLocution": false,
+ "plural": "licornes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "book character",
+ "movie character",
+ "halloween",
+ "costume",
+ "core vocabulary-living being",
+ "core vocabulary-time",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "09567238-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "literature",
+ "movie character",
+ "cinema",
+ "event",
+ "popular event",
+ "halloween",
+ "object",
+ "fashion",
+ "clothes",
+ "costume",
+ "core vocabulary"
+ ],
+ "_id": 6239,
+ "created": "2008-11-26T11:26:13.000Z",
+ "lastUpdated": "2021-04-16T20:09:13.436Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vampire",
+ "hasLocution": true,
+ "plural": "vampires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform",
+ "rural area"
+ ],
+ "synsets": [
+ "09491734-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "place",
+ "rural area"
+ ],
+ "_id": 6238,
+ "created": "2008-11-26T11:25:26.000Z",
+ "lastUpdated": "2021-04-16T20:10:03.650Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vallée",
+ "hasLocution": true,
+ "plural": "vallées"
+ },
+ {
+ "keyword": "vallon",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vallons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "08242011-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 6241,
+ "created": "2008-11-26T11:35:50.000Z",
+ "lastUpdated": "2021-04-16T20:07:01.916Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voisins",
+ "hasLocution": true,
+ "plural": "voisins"
+ },
+ {
+ "keyword": "voisinage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "voisinages"
+ },
+ {
+ "keyword": "environs",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "environs"
+ },
+ {
+ "keyword": "quartier",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "quartiers"
+ },
+ {
+ "keyword": "entourage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "entourages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "04556915-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 6240,
+ "created": "2008-11-26T11:35:05.000Z",
+ "lastUpdated": "2021-04-16T20:08:25.578Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "baguette magique",
+ "hasLocution": true,
+ "plural": "baguettes magiques"
+ },
+ {
+ "type": 2,
+ "keyword": "baguette",
+ "hasLocution": true,
+ "plural": "baguettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "02807418-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 6235,
+ "created": "2008-11-26T11:22:23.000Z",
+ "lastUpdated": "2021-05-02T13:28:01.837Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tuba",
+ "hasLocution": true,
+ "plural": "tubas"
+ },
+ {
+ "keyword": "cor de basse",
+ "hasLocution": false,
+ "plural": "cors de basse",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "halloween"
+ ],
+ "synsets": [
+ "02951508-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 6242,
+ "created": "2008-11-26T11:36:24.000Z",
+ "lastUpdated": "2021-04-16T20:04:56.536Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bougie",
+ "hasLocution": true,
+ "plural": "bougie"
+ },
+ {
+ "keyword": "chandelle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chandelles"
+ },
+ {
+ "keyword": "cierge",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cierge"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "04320641-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 6245,
+ "created": "2008-11-26T11:38:30.000Z",
+ "lastUpdated": "2021-04-16T19:58:35.147Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "volant",
+ "hasLocution": true,
+ "plural": "volant"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "animal physiology",
+ "core vocabulary-communication",
+ "animal",
+ "bird",
+ "flying animal"
+ ],
+ "synsets": [
+ "01944262-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "animal",
+ "animal physiology",
+ "core vocabulary",
+ "vertebrate",
+ "bird",
+ "flying animal"
+ ],
+ "_id": 6246,
+ "created": "2008-11-26T11:39:11.000Z",
+ "lastUpdated": "2024-12-25T16:33:56.070Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "battre des ailes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07723196-n",
+ "12232878-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 6244,
+ "created": "2008-11-26T11:37:54.000Z",
+ "lastUpdated": "2021-04-16T19:59:44.340Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "légumes",
+ "hasLocution": true,
+ "plural": "légumes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "09495727-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 6247,
+ "created": "2008-11-26T11:39:48.000Z",
+ "lastUpdated": "2021-04-16T19:54:42.922Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "volcan",
+ "hasLocution": true,
+ "plural": "volcans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02008888-v",
+ "02082541-v",
+ "01911251-v",
+ "00347358-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6248,
+ "created": "2008-11-26T11:40:18.000Z",
+ "lastUpdated": "2021-07-18T10:31:07.052Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "revenir",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "demi-tour",
+ "hasLocution": false,
+ "plural": "demi-tour"
+ },
+ {
+ "keyword": "retourner",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "tourner",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "03726875-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 6249,
+ "created": "2008-11-26T11:41:15.000Z",
+ "lastUpdated": "2021-04-16T19:53:45.448Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "xylophone",
+ "hasLocution": true,
+ "plural": "xylophones"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "00154678-a",
+ "02740838-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 6280,
+ "created": "2008-11-27T10:02:20.000Z",
+ "lastUpdated": "2021-04-16T19:53:20.063Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bras articulé",
+ "hasLocution": true,
+ "plural": "bras articulés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02788671-n",
+ "04108954-n",
+ "03435001-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 6243,
+ "created": "2008-11-26T11:37:15.000Z",
+ "lastUpdated": "2021-04-16T20:03:58.352Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bandage",
+ "hasLocution": true,
+ "plural": "bandages"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "bande velpeau",
+ "plural": "bandes velpeaus",
+ "type": 2
+ },
+ {
+ "keyword": "rouleau de gaze",
+ "hasLocution": false,
+ "plural": "rouleaux de gaze",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "02769539-n"
+ ],
+ "tags": [
+ "health",
+ "babycare"
+ ],
+ "_id": 6281,
+ "created": "2008-11-27T10:03:12.000Z",
+ "lastUpdated": "2022-12-18T05:42:06.236Z",
+ "keywords": [
+ {
+ "keyword": "poussette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "poussettes"
+ },
+ {
+ "keyword": "landau",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "landaus"
+ },
+ {
+ "keyword": "voiture d'enfant",
+ "hasLocution": false,
+ "plural": "voitures d'enfant",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indigenouos people"
+ ],
+ "synsets": [
+ "01040065-s",
+ "09657682-n"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 6282,
+ "created": "2008-11-27T10:04:12.000Z",
+ "lastUpdated": "2021-07-21T12:50:13.106Z",
+ "keywords": [
+ {
+ "keyword": "Africain",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "Africains"
+ },
+ {
+ "keyword": "natif d'Afrique",
+ "hasLocution": false,
+ "plural": "natifs d'Afrique",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "land transport"
+ ],
+ "synsets": [
+ "13800883-n",
+ "08633213-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 6283,
+ "created": "2008-11-27T10:05:02.000Z",
+ "lastUpdated": "2021-04-16T19:47:43.446Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parking",
+ "hasLocution": true,
+ "plural": "parkings"
+ },
+ {
+ "keyword": "parc de stationnement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "parcs de stationnement"
+ },
+ {
+ "keyword": "zone de parking",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "zones de parking"
+ },
+ {
+ "keyword": "garage",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "garages"
+ },
+ {
+ "keyword": "stationnement",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "stationnements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01525496-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 6285,
+ "created": "2008-11-27T10:06:37.000Z",
+ "lastUpdated": "2021-07-18T10:31:22.387Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "entourer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "halloween"
+ ],
+ "synsets": [
+ "04282482-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 6286,
+ "created": "2008-11-27T10:07:21.000Z",
+ "lastUpdated": "2021-04-16T19:44:23.369Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toile d'araignée",
+ "hasLocution": true,
+ "plural": "toiles d'araignée"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "cold meat"
+ ],
+ "synsets": [
+ "03011781-n",
+ "03178053-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 6446,
+ "created": "2008-12-01T09:52:19.000Z",
+ "lastUpdated": "2021-04-16T19:42:56.443Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charcuterie",
+ "hasLocution": true,
+ "plural": "charcuteries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility",
+ "circus",
+ "core vocabulary-place",
+ "core vocabulary-leisure",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "03039237-n",
+ "00520795-n",
+ "08206141-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "scenic art",
+ "circus",
+ "show",
+ "core vocabulary"
+ ],
+ "_id": 6450,
+ "created": "2008-12-01T10:00:02.000Z",
+ "lastUpdated": "2021-04-16T19:35:54.212Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chapiteau",
+ "hasLocution": true,
+ "plural": "chapiteaux"
+ },
+ {
+ "type": 2,
+ "keyword": "cirque",
+ "hasLocution": true,
+ "plural": "cirques"
+ },
+ {
+ "keyword": "tente",
+ "hasLocution": false,
+ "plural": "tente",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "01360534-v",
+ "01419193-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 6451,
+ "created": "2008-12-01T10:01:03.000Z",
+ "lastUpdated": "2021-04-16T19:34:41.642Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "clouer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "enfoncer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "marteler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01216829-v",
+ "01980103-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6452,
+ "created": "2008-12-01T10:01:40.000Z",
+ "lastUpdated": "2021-07-18T10:31:43.623Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Saisir, attraper",
+ "keyword": "prendre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ramasser",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "cueillir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01216829-v",
+ "01980103-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 6453,
+ "created": "2008-12-01T10:02:20.000Z",
+ "lastUpdated": "2021-07-18T10:31:59.120Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Saisir, attraper",
+ "keyword": "prendre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ramasser",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "cueillir",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "signaling system"
+ ],
+ "synsets": [
+ "04153115-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6454,
+ "created": "2008-12-01T10:03:10.000Z",
+ "lastUpdated": "2021-05-09T16:20:48.661Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "plural": "écoles",
+ "keyword": "école"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "plural": "collèges",
+ "keyword": "collège"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "playground"
+ ],
+ "synsets": [
+ "01881348-v",
+ "01881613-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground"
+ ],
+ "_id": 6455,
+ "created": "2008-12-01T10:05:29.000Z",
+ "lastUpdated": "2021-07-18T10:32:27.672Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "balancer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se balancer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "pousser",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "food",
+ "basic needs",
+ "core vocabulary-communication",
+ "gastronomy"
+ ],
+ "synsets": [
+ "01170802-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "person",
+ "basic needs",
+ "core vocabulary",
+ "gastronomy"
+ ],
+ "_id": 6456,
+ "created": "2008-12-01T12:03:31.000Z",
+ "lastUpdated": "2024-12-09T11:41:24.584Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "manger",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se nourrir",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "trade",
+ "money",
+ "usual verbs",
+ "core vocabulary-communication",
+ "object",
+ "mode of transport",
+ "toy",
+ "game",
+ "educational material",
+ "sport material",
+ "medicine"
+ ],
+ "synsets": [
+ "02211988-v",
+ "02256551-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "trade",
+ "economy",
+ "money",
+ "usual verbs",
+ "core vocabulary",
+ "object",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "leisure",
+ "sport",
+ "toy",
+ "game",
+ "education",
+ "educational material",
+ "sport material",
+ "health",
+ "medicine"
+ ],
+ "_id": 6457,
+ "created": "2008-12-01T12:04:01.000Z",
+ "lastUpdated": "2024-12-15T06:31:02.661Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": " tr. Obtenir un bien, un droit contre paiement ; acquérir",
+ "keyword": "acheter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "payer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "acquérir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "land transport",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01934845-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "core vocabulary"
+ ],
+ "_id": 6458,
+ "created": "2008-12-01T12:05:16.000Z",
+ "lastUpdated": "2024-12-12T16:34:54.761Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "conduire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rouler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "road safety",
+ "land transport"
+ ],
+ "synsets": [
+ "10054631-n",
+ "09928311-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 6459,
+ "created": "2008-12-01T12:05:51.000Z",
+ "lastUpdated": "2021-05-02T13:24:51.295Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conducteur",
+ "hasLocution": true,
+ "plural": "conducteurs"
+ },
+ {
+ "type": 2,
+ "keyword": "chauffeur",
+ "hasLocution": true,
+ "plural": "chauffeurs"
+ },
+ {
+ "keyword": "automobiliste",
+ "hasLocution": false,
+ "plural": "automobilistes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "literature"
+ ],
+ "synsets": [
+ "00955248-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "literature"
+ ],
+ "_id": 6461,
+ "created": "2008-12-01T12:43:46.000Z",
+ "lastUpdated": "2021-07-18T10:32:40.949Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "raconter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "conter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "telecommunication",
+ "mass media",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-work",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "08162561-n",
+ "06275051-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "tertiary sector",
+ "telecommunication",
+ "communication",
+ "mass media",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 6464,
+ "created": "2008-12-01T12:49:07.000Z",
+ "lastUpdated": "2021-05-02T13:23:28.971Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poste",
+ "hasLocution": true,
+ "plural": "postes"
+ },
+ {
+ "keyword": "bureau de poste",
+ "hasLocution": false,
+ "plural": "bureaux de poste",
+ "type": 2
+ },
+ {
+ "keyword": "service postal",
+ "hasLocution": false,
+ "plural": "services postaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "physical exercise",
+ "core vocabulary-communication",
+ "animal",
+ "person according to their age"
+ ],
+ "synsets": [
+ "01930264-v",
+ "01918940-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "core vocabulary",
+ "animal",
+ "person"
+ ],
+ "_id": 6465,
+ "created": "2008-12-01T12:49:41.000Z",
+ "lastUpdated": "2024-12-10T08:06:04.101Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se déplacer rapidement, en s'appuyant alternativement sur une jambe puis sur l'autre ou sur une patte puis sur l'autre",
+ "keyword": "courir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "road safety"
+ ],
+ "synsets": [
+ "01916152-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "road safety"
+ ],
+ "_id": 6466,
+ "created": "2008-12-01T12:50:10.000Z",
+ "lastUpdated": "2021-05-02T13:21:47.766Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "traverser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "library science",
+ "educational material"
+ ],
+ "synsets": [
+ "07235754-n"
+ ],
+ "tags": [
+ "library science",
+ "education",
+ "educational material"
+ ],
+ "_id": 6469,
+ "created": "2008-12-01T12:58:06.000Z",
+ "lastUpdated": "2021-05-02T13:20:01.691Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conte",
+ "hasLocution": true,
+ "plural": "contes"
+ },
+ {
+ "keyword": "histoire",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "histoires"
+ },
+ {
+ "keyword": "récit",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "récits"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "library science",
+ "educational material"
+ ],
+ "synsets": [
+ "07235754-n",
+ "06425102-n"
+ ],
+ "tags": [
+ "library science",
+ "education",
+ "educational material"
+ ],
+ "_id": 6470,
+ "created": "2008-12-01T12:58:43.000Z",
+ "lastUpdated": "2021-05-02T13:19:13.739Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conte",
+ "hasLocution": true,
+ "plural": "contes"
+ },
+ {
+ "keyword": "histoire",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "histoires"
+ },
+ {
+ "keyword": "récit",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "récits"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "library science",
+ "educational material"
+ ],
+ "synsets": [
+ "07235754-n"
+ ],
+ "tags": [
+ "library science",
+ "education",
+ "educational material"
+ ],
+ "_id": 6471,
+ "created": "2008-12-01T12:59:21.000Z",
+ "lastUpdated": "2021-05-02T13:18:30.305Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conte",
+ "hasLocution": true,
+ "plural": "contes"
+ },
+ {
+ "keyword": "conte de Pinocchio",
+ "hasLocution": false,
+ "plural": "contes de Pinocchio",
+ "type": 2
+ },
+ {
+ "keyword": "histoire",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "histoires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "literature",
+ "library science",
+ "educational material"
+ ],
+ "synsets": [
+ "07235754-n",
+ "06425102-n",
+ "06381452-n"
+ ],
+ "tags": [
+ "literature",
+ "library science",
+ "education",
+ "educational material"
+ ],
+ "_id": 6472,
+ "created": "2008-12-01T13:00:16.000Z",
+ "lastUpdated": "2021-05-09T16:16:21.988Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conte",
+ "hasLocution": true,
+ "plural": "contes"
+ },
+ {
+ "type": 2,
+ "keyword": "contes",
+ "hasLocution": true,
+ "plural": "contes"
+ },
+ {
+ "keyword": "livre d'histoires",
+ "hasLocution": false,
+ "plural": "livres d'histoires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "cold meat"
+ ],
+ "synsets": [
+ "10474538-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 6447,
+ "created": "2008-12-01T09:52:57.000Z",
+ "lastUpdated": "2021-04-16T19:38:32.853Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charcutier",
+ "hasLocution": true,
+ "plural": "charcutiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07939004-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 6448,
+ "created": "2008-12-01T09:58:45.000Z",
+ "lastUpdated": "2021-04-16T19:38:04.890Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chocolat",
+ "hasLocution": true,
+ "plural": "chocolats"
+ },
+ {
+ "keyword": "chocolat chaud",
+ "hasLocution": true,
+ "plural": "chocolats chauds",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sweets"
+ ],
+ "synsets": [
+ "01171984-v",
+ "01173263-v",
+ "01434809-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 6449,
+ "created": "2008-12-01T09:59:18.000Z",
+ "lastUpdated": "2021-04-16T19:37:11.332Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sucer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "lécher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05223633-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "core vocabulary"
+ ],
+ "_id": 6473,
+ "created": "2008-12-01T13:01:03.000Z",
+ "lastUpdated": "2021-05-02T13:16:46.571Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corps",
+ "hasLocution": true,
+ "plural": "corps"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "library science"
+ ],
+ "synsets": [
+ "02314987-v",
+ "01435792-v",
+ "00405549-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "library science"
+ ],
+ "_id": 6474,
+ "created": "2008-12-01T13:07:34.000Z",
+ "lastUpdated": "2022-03-07T09:39:17.676Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rendre un livre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "rendre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "renvoyer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "retourner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mineral origin material",
+ "jewelry"
+ ],
+ "synsets": [
+ "13393131-n",
+ "14858733-n",
+ "00282039-s",
+ "02772645-v"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "mineral origin material",
+ "object",
+ "fashion",
+ "jewelry"
+ ],
+ "_id": 6475,
+ "created": "2008-12-01T13:08:02.000Z",
+ "lastUpdated": "2021-05-02T13:16:11.069Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "brillant",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "diamant",
+ "hasLocution": true,
+ "plural": "diamants"
+ },
+ {
+ "type": 2,
+ "keyword": "brillant",
+ "hasLocution": true,
+ "plural": "brillants"
+ },
+ {
+ "type": 3,
+ "keyword": "briller",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15238570-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month",
+ "core vocabulary"
+ ],
+ "_id": 6476,
+ "created": "2008-12-01T13:08:40.000Z",
+ "lastUpdated": "2021-03-26T02:59:09.845Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Décembre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00775477-v",
+ "00815640-v",
+ "00777201-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 6477,
+ "created": "2008-12-01T13:09:16.000Z",
+ "lastUpdated": "2021-07-18T10:33:16.028Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se disputer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "se quereller",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 6481,
+ "created": "2008-12-01T13:12:16.000Z",
+ "lastUpdated": "2024-11-30T06:29:05.019Z",
+ "keywords": [
+ {
+ "keyword": "il",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "lui-même",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "lui",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "10069171-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 6482,
+ "created": "2008-12-01T13:12:57.000Z",
+ "lastUpdated": "2021-05-02T13:14:32.121Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "électricien",
+ "hasLocution": true,
+ "plural": "électriciens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "literacy genre",
+ "library science"
+ ],
+ "synsets": [
+ "00681308-v",
+ "00676526-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "literature",
+ "literacy genre",
+ "library science"
+ ],
+ "_id": 6483,
+ "created": "2008-12-01T13:15:12.000Z",
+ "lastUpdated": "2021-05-09T16:13:48.997Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "choisir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "adult",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00174481-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "person",
+ "adult",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 6484,
+ "created": "2008-12-01T13:15:42.000Z",
+ "lastUpdated": "2021-05-09T16:13:15.439Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "femme enceinte",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "enceinte",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01875972-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 6485,
+ "created": "2008-12-01T13:16:12.000Z",
+ "lastUpdated": "2021-05-09T16:12:43.793Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "pousser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déplacer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02765572-v",
+ "00589392-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6486,
+ "created": "2008-12-01T13:16:44.000Z",
+ "lastUpdated": "2021-05-09T16:11:47.658Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "allumer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "éclairer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basketball"
+ ],
+ "synsets": [
+ "01114241-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "basketball"
+ ],
+ "_id": 6487,
+ "created": "2008-12-01T13:18:19.000Z",
+ "lastUpdated": "2021-07-18T10:34:59.548Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "marquer un panier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "month",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15234841-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month",
+ "core vocabulary"
+ ],
+ "_id": 6488,
+ "created": "2008-12-01T13:18:59.000Z",
+ "lastUpdated": "2021-03-26T02:44:45.552Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Janvier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "01524545-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 6489,
+ "created": "2008-12-01T13:19:30.000Z",
+ "lastUpdated": "2021-05-09T16:11:35.011Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "enfiler le fil",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01362506-v",
+ "01362135-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 6490,
+ "created": "2008-12-01T13:20:08.000Z",
+ "lastUpdated": "2021-05-09T16:11:12.963Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "enfiler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "02020375-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 6491,
+ "created": "2008-12-01T13:20:42.000Z",
+ "lastUpdated": "2021-07-18T10:35:04.854Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Passer de l'extérieur à l'intérieur d'un lieu ; pénétrer",
+ "keyword": "entrer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "accéder",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media"
+ ],
+ "synsets": [
+ "00810517-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mass media"
+ ],
+ "_id": 6492,
+ "created": "2008-12-01T13:21:21.000Z",
+ "lastUpdated": "2021-05-09T16:10:26.150Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "interviewer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "interroger"
+ },
+ {
+ "keyword": "faire un interview",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02150244-v",
+ "00427911-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 6493,
+ "created": "2008-12-01T13:21:50.000Z",
+ "lastUpdated": "2021-03-25T21:58:25.051Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "disparaitre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "cacher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se cacher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "land transport",
+ "signaling system"
+ ],
+ "synsets": [
+ "04056210-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6494,
+ "created": "2008-12-01T13:24:41.000Z",
+ "lastUpdated": "2021-05-09T16:09:04.932Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gare",
+ "hasLocution": true,
+ "plural": "gares"
+ },
+ {
+ "keyword": "gare ferroviaire",
+ "hasLocution": false,
+ "plural": "gares ferroviaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "educational task",
+ "core vocabulary-communication",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "00608509-v",
+ "00601387-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "education",
+ "educational task",
+ "core vocabulary"
+ ],
+ "_id": 6495,
+ "created": "2008-12-01T13:25:53.000Z",
+ "lastUpdated": "2021-05-09T16:06:53.754Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étudier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "apprendre",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "réviser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire des études",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sanitary professional",
+ "health personnel",
+ "medicament"
+ ],
+ "synsets": [
+ "10441215-n",
+ "06064831-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "medicine",
+ "health",
+ "medicament"
+ ],
+ "_id": 6496,
+ "created": "2008-12-01T13:35:09.000Z",
+ "lastUpdated": "2021-05-09T16:05:54.729Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pharmacien",
+ "hasLocution": true,
+ "plural": "pharmaciens"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "medicament",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-knowledge",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "03254045-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "health",
+ "medicine",
+ "medicament",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 6497,
+ "created": "2008-12-01T13:57:51.000Z",
+ "lastUpdated": "2021-07-28T15:27:46.339Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pharmacie",
+ "hasLocution": true,
+ "plural": "pharmacies"
+ },
+ {
+ "keyword": "parapharmacie",
+ "hasLocution": false,
+ "plural": "parapharmacies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15235282-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month",
+ "core vocabulary"
+ ],
+ "_id": 6498,
+ "created": "2008-12-01T13:58:25.000Z",
+ "lastUpdated": "2021-03-26T02:45:53.496Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Février",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day"
+ ],
+ "synsets": [
+ "15188844-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "day"
+ ],
+ "_id": 6478,
+ "created": "2008-12-01T13:10:05.000Z",
+ "lastUpdated": "2021-08-21T10:56:04.479Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "dimanche",
+ "hasLocution": true,
+ "plural": "dimanches"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "basic needs",
+ "routine",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00014735-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "person",
+ "basic needs",
+ "routine",
+ "core vocabulary"
+ ],
+ "_id": 6479,
+ "created": "2008-12-01T13:10:54.000Z",
+ "lastUpdated": "2022-09-12T08:58:00.386Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Ãtre plongé dans le sommeil",
+ "keyword": "dormir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'endormir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 6480,
+ "created": "2008-12-01T13:11:53.000Z",
+ "lastUpdated": "2021-07-18T10:33:46.637Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "il",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "birthday"
+ ],
+ "synsets": [
+ "15274989-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 6499,
+ "created": "2008-12-01T13:59:03.000Z",
+ "lastUpdated": "2021-05-02T13:11:28.499Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "Joyeux Anniversaire !",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "Bon Anniversaire",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "work tool",
+ "signaling system"
+ ],
+ "synsets": [
+ "03499012-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tool",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6500,
+ "created": "2008-12-01T14:00:01.000Z",
+ "lastUpdated": "2021-07-18T10:35:21.143Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quincaillerie",
+ "hasLocution": true,
+ "plural": "quincailleries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recycling",
+ "street furniture"
+ ],
+ "synsets": [
+ "04072901-n"
+ ],
+ "tags": [
+ "environmental science",
+ "recycling",
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 6501,
+ "created": "2008-12-01T18:22:58.000Z",
+ "lastUpdated": "2021-07-18T10:35:40.655Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "conteneur",
+ "plural": "conteneurs"
+ },
+ {
+ "type": 2,
+ "keyword": "poubelle de recyclage pour le verre",
+ "hasLocution": true,
+ "plural": "poubelles de recyclage pour le verre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "fish"
+ ],
+ "synsets": [
+ "07791351-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 6502,
+ "created": "2008-12-02T09:33:43.000Z",
+ "lastUpdated": "2024-12-08T15:40:11.869Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poisson",
+ "hasLocution": true,
+ "plural": "poissons"
+ },
+ {
+ "type": 2,
+ "keyword": "poisson pané ",
+ "hasLocution": false,
+ "plural": "poissons panés "
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "flower",
+ "gardening"
+ ],
+ "synsets": [
+ "10117474-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "plant",
+ "flower",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 6503,
+ "created": "2008-12-02T09:34:17.000Z",
+ "lastUpdated": "2021-05-02T13:09:16.846Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fleuriste",
+ "hasLocution": true,
+ "plural": "fleuristes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cleaning product"
+ ],
+ "synsets": [
+ "00036773-v",
+ "01395993-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 6507,
+ "created": "2008-12-02T09:55:05.000Z",
+ "lastUpdated": "2021-07-18T10:35:59.100Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver",
+ "hasLocution": true
+ },
+ {
+ "keyword": "frotter",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "fruit"
+ ],
+ "synsets": [
+ "03462628-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 6508,
+ "created": "2008-12-02T09:55:49.000Z",
+ "lastUpdated": "2021-07-18T10:36:37.259Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de fruits",
+ "hasLocution": false,
+ "plural": "magasins de fruits"
+ },
+ {
+ "keyword": "primeurs",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "primeurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "fruit"
+ ],
+ "synsets": [
+ "10166079-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 6509,
+ "created": "2008-12-02T09:56:26.000Z",
+ "lastUpdated": "2021-07-18T10:36:54.862Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marchand de fruits",
+ "hasLocution": false,
+ "plural": "marchands de fruits"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07943752-n",
+ "07952788-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 6510,
+ "created": "2008-12-02T09:58:31.000Z",
+ "lastUpdated": "2021-07-18T10:37:21.169Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "limonade",
+ "hasLocution": true,
+ "plural": "limonades"
+ },
+ {
+ "keyword": "eau gazeuse",
+ "hasLocution": false,
+ "plural": "eaux gazeuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01889838-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "babycare"
+ ],
+ "_id": 6511,
+ "created": "2008-12-02T09:58:57.000Z",
+ "lastUpdated": "2022-12-18T05:38:04.199Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "marcher à quatre pattes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ramper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01889838-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "babycare"
+ ],
+ "_id": 6512,
+ "created": "2008-12-02T09:59:32.000Z",
+ "lastUpdated": "2022-12-18T05:38:11.068Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "marcher à quatre pattes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ramper",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "avancer à quatre pattes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport material"
+ ],
+ "synsets": [
+ "01402698-v",
+ "10720829-n",
+ "01411287-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 6513,
+ "created": "2008-12-02T10:01:25.000Z",
+ "lastUpdated": "2021-07-18T10:37:43.690Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frapper",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "joueur de tennis",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "frapper avec une raquette",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport material"
+ ],
+ "synsets": [
+ "01402698-v",
+ "10720829-n",
+ "01411287-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 6514,
+ "created": "2008-12-02T10:01:54.000Z",
+ "lastUpdated": "2021-07-18T10:37:57.663Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frapper",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "joueur de tennis",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "frapper avec une raquette",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "cattle farming"
+ ],
+ "synsets": [
+ "10098586-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "primary sector",
+ "cattle farming"
+ ],
+ "_id": 6515,
+ "created": "2008-12-02T10:02:30.000Z",
+ "lastUpdated": "2021-04-29T22:46:22.611Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fermier",
+ "hasLocution": true,
+ "plural": "fermiers"
+ },
+ {
+ "keyword": "agriculteur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "agriculteurs"
+ },
+ {
+ "keyword": "paysan",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paysans"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00965602-v",
+ "01040538-v",
+ "00966726-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response",
+ "core vocabulary"
+ ],
+ "_id": 6517,
+ "created": "2008-12-02T10:04:48.000Z",
+ "lastUpdated": "2021-07-18T10:38:02.163Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. ind. Discuter avec quelqu'un au sujet de quelque chose ou de quelqu'un, sur un thème",
+ "keyword": "parler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "discuter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "causer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "dialoguer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media device",
+ "mass media"
+ ],
+ "synsets": [
+ "00965602-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media"
+ ],
+ "_id": 6518,
+ "created": "2008-12-02T10:05:26.000Z",
+ "lastUpdated": "2021-07-18T10:38:06.618Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "parler au téléphone",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "forestry"
+ ],
+ "synsets": [
+ "02767049-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "primary sector",
+ "forestry"
+ ],
+ "_id": 6519,
+ "created": "2008-12-02T10:06:17.000Z",
+ "lastUpdated": "2021-04-29T22:45:17.714Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hache",
+ "hasLocution": true,
+ "plural": "haches"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "dessert"
+ ],
+ "synsets": [
+ "07630109-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert"
+ ],
+ "_id": 6520,
+ "created": "2008-12-02T10:06:54.000Z",
+ "lastUpdated": "2021-04-21T21:32:41.393Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de glaces",
+ "hasLocution": true,
+ "plural": "magasins de glaces"
+ },
+ {
+ "keyword": "glacier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "glaciers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "03544613-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 6521,
+ "created": "2008-12-02T10:07:39.000Z",
+ "lastUpdated": "2021-04-29T22:44:42.454Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fer à cheval",
+ "hasLocution": true,
+ "plural": "fers à cheval"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "polite set expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "06645018-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression",
+ "core vocabulary"
+ ],
+ "_id": 6522,
+ "created": "2008-12-02T10:08:06.000Z",
+ "lastUpdated": "2021-05-02T13:07:47.094Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "salut",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bonjour",
+ "hasLocution": true,
+ "type": 5
+ },
+ {
+ "keyword": "coucou",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "hello",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "08071169-n",
+ "03545775-n",
+ "03047259-n",
+ "08070828-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "core vocabulary"
+ ],
+ "_id": 6523,
+ "created": "2008-12-02T10:08:45.000Z",
+ "lastUpdated": "2022-02-03T09:44:43.919Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "hôpital",
+ "plural": "hôpitaux"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "plural": "cliniques",
+ "keyword": "clinique"
+ },
+ {
+ "keyword": "dispensaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dispensaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03448836-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 6524,
+ "created": "2008-12-02T10:12:15.000Z",
+ "lastUpdated": "2021-05-02T13:05:38.804Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lunettes de ski",
+ "hasLocution": true,
+ "plural": "lunettes de ski"
+ },
+ {
+ "keyword": "masque de ski",
+ "hasLocution": false,
+ "plural": "masques de ski",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07650764-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 6525,
+ "created": "2008-12-02T10:15:32.000Z",
+ "lastUpdated": "2021-05-02T13:04:32.530Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "biscuits",
+ "plural": "biscuits"
+ },
+ {
+ "type": 2,
+ "keyword": "biscuits au chocolat",
+ "hasLocution": false,
+ "plural": "biscuits au chocolat"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "flower",
+ "signaling system"
+ ],
+ "synsets": [
+ "03372256-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "plant",
+ "flower",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6504,
+ "created": "2008-12-02T09:35:04.000Z",
+ "lastUpdated": "2021-03-26T13:54:59.521Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de fleurs",
+ "hasLocution": true,
+ "plural": "magasins de fleurs"
+ },
+ {
+ "keyword": "fleuriste",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "fleuristes"
+ },
+ {
+ "keyword": "boutique de fleurs",
+ "hasLocution": false,
+ "plural": "boutiques de fleurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "construction",
+ "signaling system"
+ ],
+ "synsets": [
+ "00610937-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "secondary sector",
+ "construction",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6505,
+ "created": "2008-12-02T09:35:58.000Z",
+ "lastUpdated": "2021-05-02T13:09:04.557Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plomberie",
+ "hasLocution": true,
+ "plural": "plomberies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "10462606-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 6506,
+ "created": "2008-12-02T09:54:33.000Z",
+ "lastUpdated": "2021-05-02T13:08:32.942Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plombier",
+ "hasLocution": true,
+ "plural": "plombier"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "06657802-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 6526,
+ "created": "2008-12-02T10:19:55.000Z",
+ "lastUpdated": "2021-07-18T10:38:23.503Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trace",
+ "hasLocution": true,
+ "plural": "traces"
+ },
+ {
+ "keyword": "pas",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pas"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "senses"
+ ],
+ "synsets": [
+ "06811608-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 6527,
+ "created": "2008-12-02T10:20:26.000Z",
+ "lastUpdated": "2024-12-06T07:13:54.908Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trace",
+ "hasLocution": true,
+ "plural": "traces"
+ },
+ {
+ "keyword": "empreinte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "empreintes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "05277400-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 6528,
+ "created": "2008-12-02T10:20:57.000Z",
+ "lastUpdated": "2021-05-08T20:26:15.871Z",
+ "keywords": [
+ {
+ "keyword": "os",
+ "hasLocution": true,
+ "plural": "os",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pollution"
+ ],
+ "synsets": [
+ "13578096-n"
+ ],
+ "tags": [
+ "environmental science",
+ "pollution"
+ ],
+ "_id": 6529,
+ "created": "2008-12-02T10:22:19.000Z",
+ "lastUpdated": "2021-07-18T10:38:53.719Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fumée",
+ "hasLocution": true,
+ "plural": "fumées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious building",
+ "religious place",
+ "christianity",
+ "signaling system"
+ ],
+ "synsets": [
+ "03031762-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "religion",
+ "christianity",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6530,
+ "created": "2008-12-02T10:23:02.000Z",
+ "lastUpdated": "2021-07-18T10:39:06.537Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "église",
+ "hasLocution": true,
+ "plural": "églises"
+ },
+ {
+ "type": 2,
+ "keyword": "temple",
+ "hasLocution": true,
+ "plural": "temples"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "jewelry",
+ "signaling system"
+ ],
+ "synsets": [
+ "08080672-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "jewelry",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6534,
+ "created": "2008-12-02T10:31:55.000Z",
+ "lastUpdated": "2021-05-08T20:25:04.620Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bijouterie",
+ "hasLocution": true,
+ "plural": "bijouteries"
+ },
+ {
+ "keyword": "joaillerie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "joailleries"
+ },
+ {
+ "keyword": "magasin de bijoux",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "magasins de bijoux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "jewelry"
+ ],
+ "synsets": [
+ "10241447-n",
+ "10241626-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "object",
+ "fashion",
+ "jewelry"
+ ],
+ "_id": 6535,
+ "created": "2008-12-02T10:32:39.000Z",
+ "lastUpdated": "2021-05-08T20:22:54.479Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "bijoutier",
+ "plural": "bijoutiers"
+ },
+ {
+ "keyword": "joailler",
+ "hasLocution": false,
+ "plural": "joaillers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day"
+ ],
+ "synsets": [
+ "15189401-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "day"
+ ],
+ "_id": 6536,
+ "created": "2008-12-02T10:33:15.000Z",
+ "lastUpdated": "2021-08-21T10:49:16.343Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "jeudi",
+ "hasLocution": true,
+ "plural": "jeudis"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game",
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02423786-v",
+ "02423521-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 6537,
+ "created": "2008-12-02T10:35:20.000Z",
+ "lastUpdated": "2021-11-30T15:21:23.087Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. ind. Se divertir en pratiquant un jeu, s'amuser avec un jeu, un jouet",
+ "keyword": "jouer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15236963-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month",
+ "core vocabulary"
+ ],
+ "_id": 6538,
+ "created": "2008-12-02T10:35:59.000Z",
+ "lastUpdated": "2021-03-26T02:57:30.471Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Juillet",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15236602-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month",
+ "core vocabulary"
+ ],
+ "_id": 6539,
+ "created": "2008-12-02T10:36:50.000Z",
+ "lastUpdated": "2021-05-08T20:21:56.012Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Juin",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "condiment"
+ ],
+ "synsets": [
+ "07838173-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment"
+ ],
+ "_id": 6540,
+ "created": "2008-12-02T10:38:09.000Z",
+ "lastUpdated": "2021-05-08T20:21:44.309Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "ketchup",
+ "plural": "ketchups"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "plural": "sauces ketchup",
+ "keyword": "sauce ketchup"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "publication",
+ "mass media",
+ "signaling system",
+ "trade"
+ ],
+ "synsets": [
+ "03828196-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "publication",
+ "communication",
+ "mass media",
+ "signaling system",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 6541,
+ "created": "2008-12-02T10:39:34.000Z",
+ "lastUpdated": "2024-12-08T15:28:44.288Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kiosque à journaux",
+ "hasLocution": false,
+ "plural": "kiosques à journaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01511000-v",
+ "01516062-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 6542,
+ "created": "2008-12-02T10:40:05.000Z",
+ "lastUpdated": "2021-07-18T10:39:51.017Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Envoyer quelque chose à travers l'espace ou le lancer dans une direction pour qu'il retombe quelque part : Jeter son chapeau en l'air. Jeter des cailloux dans l'eau.",
+ "keyword": "jeter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "lancer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "physical exercise",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01511000-v",
+ "01516062-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "core vocabulary"
+ ],
+ "_id": 6543,
+ "created": "2008-12-02T10:40:53.000Z",
+ "lastUpdated": "2024-05-08T11:14:33.196Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Envoyer quelque chose à travers l'espace ou le lancer dans une direction pour qu'il retombe quelque part : Jeter son chapeau en l'air. Jeter des cailloux dans l'eau.",
+ "keyword": "jeter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "lancer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container"
+ ],
+ "synsets": [
+ "02950393-n"
+ ],
+ "tags": [
+ "object",
+ "container"
+ ],
+ "_id": 6544,
+ "created": "2008-12-02T10:41:29.000Z",
+ "lastUpdated": "2021-05-08T20:20:04.374Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "boîte de conserve",
+ "plural": "boîtes de conserve"
+ },
+ {
+ "hasLocution": true,
+ "keyword": "conserve",
+ "plural": "conserves",
+ "type": 2
+ },
+ {
+ "keyword": "boîte métallique",
+ "hasLocution": false,
+ "plural": "boîtes métalliques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "beverage"
+ ],
+ "synsets": [
+ "02950393-n",
+ "04262696-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 6545,
+ "created": "2008-12-02T10:51:37.000Z",
+ "lastUpdated": "2021-05-08T20:17:37.796Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canette",
+ "hasLocution": false,
+ "plural": "canettes"
+ },
+ {
+ "keyword": "canette de soda",
+ "hasLocution": false,
+ "plural": "canettes de soda",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00036355-v",
+ "00036925-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 6546,
+ "created": "2008-12-02T10:52:29.000Z",
+ "lastUpdated": "2021-07-18T10:40:14.471Z",
+ "keywords": [
+ {
+ "keyword": "se savonner le visage",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00036925-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 6547,
+ "created": "2008-12-02T10:53:03.000Z",
+ "lastUpdated": "2021-05-08T20:16:17.756Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "savon",
+ "hasLocution": true,
+ "plural": "savons"
+ },
+ {
+ "keyword": "mousse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mousses"
+ },
+ {
+ "keyword": "savon mousse",
+ "hasLocution": false,
+ "plural": "savons mousses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "furniture",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01978076-v",
+ "01986058-v",
+ "01371262-v",
+ "01987278-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "object",
+ "furniture",
+ "core vocabulary"
+ ],
+ "_id": 6548,
+ "created": "2008-12-02T10:53:33.000Z",
+ "lastUpdated": "2024-12-10T18:23:14.706Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "lever",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se lever",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "routine",
+ "furniture",
+ "core vocabulary-communication",
+ "day time",
+ "adverb of time"
+ ],
+ "synsets": [
+ "00018151-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "person",
+ "routine",
+ "object",
+ "furniture",
+ "core vocabulary",
+ "time",
+ "calendar",
+ "adverb",
+ "adverb of time"
+ ],
+ "_id": 6549,
+ "created": "2008-12-02T10:54:09.000Z",
+ "lastUpdated": "2024-12-13T18:12:05.162Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "lever",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se lever",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "literature",
+ "signaling system"
+ ],
+ "synsets": [
+ "02874886-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "literature",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6550,
+ "created": "2008-12-02T10:54:52.000Z",
+ "lastUpdated": "2021-05-08T20:14:03.331Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "librairie",
+ "hasLocution": true,
+ "plural": "librairies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07942490-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "core vocabulary"
+ ],
+ "_id": 6551,
+ "created": "2008-12-02T11:05:18.000Z",
+ "lastUpdated": "2021-05-08T20:13:21.214Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "limonade",
+ "hasLocution": true,
+ "plural": "limonades"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "01635953-v",
+ "00723361-v",
+ "01641524-v",
+ "00592510-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 6531,
+ "created": "2008-12-02T10:25:33.000Z",
+ "lastUpdated": "2021-07-18T10:39:13.303Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "avoir une idée",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "trouver",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "inventer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "découvrir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "healthy habit",
+ "mountain",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "01924925-v",
+ "00312635-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "lifestyle",
+ "healthy habit",
+ "leisure",
+ "outdoor activity",
+ "mountain",
+ "core vocabulary"
+ ],
+ "_id": 6532,
+ "created": "2008-12-02T10:26:18.000Z",
+ "lastUpdated": "2021-07-18T10:39:42.891Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "excursion",
+ "hasLocution": true,
+ "plural": "excursions"
+ },
+ {
+ "type": 3,
+ "keyword": "partir en excursion",
+ "hasLocution": true
+ },
+ {
+ "keyword": "randonnée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "randonnées"
+ },
+ {
+ "keyword": "randonner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "gardening"
+ ],
+ "synsets": [
+ "10140190-n",
+ "10140328-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 6533,
+ "created": "2008-12-02T10:26:57.000Z",
+ "lastUpdated": "2021-05-08T20:25:43.068Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jardinier",
+ "hasLocution": true,
+ "plural": "jardiniers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "disruptive behavior",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00915018-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "disruptive behavior",
+ "core vocabulary"
+ ],
+ "_id": 6552,
+ "created": "2008-12-02T11:05:49.000Z",
+ "lastUpdated": "2021-11-02T20:20:34.629Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "crier",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "appeler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "vociférer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02081903-v",
+ "02290237-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 6553,
+ "created": "2008-12-02T11:06:23.000Z",
+ "lastUpdated": "2021-07-18T10:40:51.514Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "porter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day"
+ ],
+ "synsets": [
+ "15189026-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "day"
+ ],
+ "_id": 6554,
+ "created": "2008-12-02T11:06:52.000Z",
+ "lastUpdated": "2021-08-21T10:40:48.128Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "lundi",
+ "hasLocution": true,
+ "plural": "lundis"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals"
+ ],
+ "synsets": [
+ "10713754-n",
+ "10579780-n",
+ "10500315-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work"
+ ],
+ "_id": 6555,
+ "created": "2008-12-02T11:09:08.000Z",
+ "lastUpdated": "2021-05-08T20:12:48.797Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "enseignante",
+ "plural": "enseignantes"
+ },
+ {
+ "type": 2,
+ "keyword": "professeure",
+ "hasLocution": false,
+ "plural": "professeures"
+ },
+ {
+ "keyword": "maîtresse",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "maîtresses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "core vocabulary-education",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "10713754-n",
+ "10579780-n",
+ "10500315-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "core vocabulary"
+ ],
+ "_id": 6556,
+ "created": "2008-12-02T11:09:45.000Z",
+ "lastUpdated": "2021-05-08T20:11:12.352Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "enseignant",
+ "plural": "enseignants"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "maître",
+ "plural": "maîtres"
+ },
+ {
+ "keyword": "professeur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "professeurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "land transport"
+ ],
+ "synsets": [
+ "09845152-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 6560,
+ "created": "2008-12-02T11:12:34.000Z",
+ "lastUpdated": "2021-05-08T20:09:53.068Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mécanicien",
+ "hasLocution": true,
+ "plural": "mécaniciens"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "10040615-n",
+ "02770888-a"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "core vocabulary"
+ ],
+ "_id": 6561,
+ "created": "2008-12-02T11:18:05.000Z",
+ "lastUpdated": "2022-06-28T16:08:50.630Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "médecin",
+ "hasLocution": true,
+ "plural": "médecins"
+ },
+ {
+ "type": 2,
+ "keyword": "docteur",
+ "hasLocution": true,
+ "plural": "docteurs"
+ },
+ {
+ "keyword": "médical",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "médicaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04386330-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 6562,
+ "created": "2008-12-02T11:18:36.000Z",
+ "lastUpdated": "2021-05-09T20:32:54.803Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "table",
+ "hasLocution": true,
+ "plural": "tables"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day"
+ ],
+ "synsets": [
+ "15189280-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "day"
+ ],
+ "_id": 6563,
+ "created": "2008-12-02T11:19:06.000Z",
+ "lastUpdated": "2021-08-21T10:46:24.889Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "mercredi",
+ "hasLocution": true,
+ "plural": "mercredis"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "senses",
+ "basic needs",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02133754-v",
+ "02134989-v",
+ "02134765-v",
+ "02173796-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses",
+ "person",
+ "basic needs",
+ "core vocabulary"
+ ],
+ "_id": 6564,
+ "created": "2008-12-02T11:19:47.000Z",
+ "lastUpdated": "2021-07-18T10:40:57.136Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Percevoir quelqu'un, quelque chose par les yeux, les organes de la vue",
+ "keyword": "voir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "regarder",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "observer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "condiment",
+ "feeding"
+ ],
+ "synsets": [
+ "07835456-n",
+ "07854881-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment"
+ ],
+ "_id": 6565,
+ "created": "2008-12-02T11:21:28.000Z",
+ "lastUpdated": "2024-12-11T16:09:49.442Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moutarde",
+ "hasLocution": true,
+ "plural": "moutardes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "signaling system"
+ ],
+ "synsets": [
+ "03806085-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6566,
+ "created": "2008-12-02T11:22:13.000Z",
+ "lastUpdated": "2021-05-09T20:29:35.761Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "musée",
+ "hasLocution": true,
+ "plural": "musées"
+ },
+ {
+ "keyword": "museum",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "museums"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical artist",
+ "professional artist",
+ "musical art"
+ ],
+ "synsets": [
+ "10360025-n",
+ "09922954-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "music",
+ "visual art"
+ ],
+ "_id": 6567,
+ "created": "2008-12-02T11:26:02.000Z",
+ "lastUpdated": "2021-05-09T20:27:30.343Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "musicien",
+ "hasLocution": true,
+ "plural": "musiciens"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "swimming",
+ "swimming pool",
+ "beach",
+ "core vocabulary-communication",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "01964770-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool",
+ "beach",
+ "core vocabulary"
+ ],
+ "_id": 6568,
+ "created": "2008-12-02T11:38:02.000Z",
+ "lastUpdated": "2021-07-18T10:41:02.019Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se déplacer à la surface de l'eau ou dans l'eau par des mouvements appropriés",
+ "keyword": "nager",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07942682-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "core vocabulary"
+ ],
+ "_id": 6569,
+ "created": "2008-12-02T11:38:37.000Z",
+ "lastUpdated": "2021-07-18T10:41:05.879Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "orangeade",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15238202-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month",
+ "core vocabulary"
+ ],
+ "_id": 6570,
+ "created": "2008-12-02T11:40:52.000Z",
+ "lastUpdated": "2021-03-26T02:59:38.043Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Novembre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15237911-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month",
+ "core vocabulary"
+ ],
+ "_id": 6571,
+ "created": "2008-12-02T11:41:21.000Z",
+ "lastUpdated": "2021-03-26T03:00:08.262Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Octobre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "senses",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02175483-v",
+ "02174146-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses",
+ "core vocabulary"
+ ],
+ "_id": 6572,
+ "created": "2008-12-02T11:41:59.000Z",
+ "lastUpdated": "2021-07-18T10:41:08.073Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Percevoir par l'ouïe les bruits, les sons produits par quelque chose ou quelqu'un, les paroles, la musique, le chant, produits par quelqu'un",
+ "keyword": "entendre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "écouter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "senses",
+ "visual system",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "05318579-n",
+ "05662207-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "senses",
+ "visual system",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 6573,
+ "created": "2008-12-02T11:42:35.000Z",
+ "lastUpdated": "2021-08-04T09:03:24.733Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oeil",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "vue",
+ "hasLocution": true
+ },
+ {
+ "keyword": "œil",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "yeux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses"
+ ],
+ "synsets": [
+ "02129213-v",
+ "02129497-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 6574,
+ "created": "2008-12-02T11:43:04.000Z",
+ "lastUpdated": "2021-07-18T10:41:15.023Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "flairer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "accessories",
+ "signaling system",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "10399699-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "accessories",
+ "communication",
+ "signaling system",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 6575,
+ "created": "2008-12-02T11:43:37.000Z",
+ "lastUpdated": "2021-07-18T10:41:28.611Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "opticien",
+ "hasLocution": true,
+ "plural": "opticiens"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "baking",
+ "core vocabulary-place",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "02779636-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "core vocabulary"
+ ],
+ "_id": 6576,
+ "created": "2008-12-02T11:44:12.000Z",
+ "lastUpdated": "2021-07-18T10:41:37.478Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boulangerie",
+ "hasLocution": true,
+ "plural": "boulangeries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "baking"
+ ],
+ "synsets": [
+ "09852896-n",
+ "09853011-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 6577,
+ "created": "2008-12-02T11:44:48.000Z",
+ "lastUpdated": "2021-07-18T10:41:46.592Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boulanger",
+ "hasLocution": true,
+ "plural": "boulangers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day"
+ ],
+ "synsets": [
+ "15189152-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "day"
+ ],
+ "_id": 6557,
+ "created": "2008-12-02T11:10:16.000Z",
+ "lastUpdated": "2021-08-21T10:44:01.605Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "mardi",
+ "hasLocution": true,
+ "plural": "mardis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15235666-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month",
+ "core vocabulary"
+ ],
+ "_id": 6558,
+ "created": "2008-12-02T11:10:49.000Z",
+ "lastUpdated": "2021-03-26T02:46:26.606Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Mars",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15236280-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month",
+ "core vocabulary"
+ ],
+ "_id": 6559,
+ "created": "2008-12-02T11:11:27.000Z",
+ "lastUpdated": "2021-03-26T02:49:38.780Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Mai",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "security and defense",
+ "signaling system"
+ ],
+ "synsets": [
+ "03352184-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6578,
+ "created": "2008-12-02T11:45:48.000Z",
+ "lastUpdated": "2021-07-18T10:41:57.830Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caserne de pompiers ",
+ "hasLocution": false,
+ "plural": "casernes de pompiers "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "02236255-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 6581,
+ "created": "2008-12-02T11:49:11.000Z",
+ "lastUpdated": "2021-07-18T10:42:17.521Z",
+ "keywords": [
+ {
+ "keyword": "passer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "faire la passe",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "baking"
+ ],
+ "synsets": [
+ "03906011-n",
+ "02779636-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 6583,
+ "created": "2008-12-02T12:30:53.000Z",
+ "lastUpdated": "2021-07-18T10:42:30.146Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pâtisserie",
+ "hasLocution": true,
+ "plural": "pâtisseries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "christmas"
+ ],
+ "synsets": [
+ "07663340-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 6585,
+ "created": "2008-12-02T12:32:43.000Z",
+ "lastUpdated": "2021-07-18T10:43:09.671Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dinde au four",
+ "hasLocution": true,
+ "plural": "dindes au four"
+ },
+ {
+ "keyword": "dinde rotie",
+ "hasLocution": false,
+ "plural": "dindes roties",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "baking"
+ ],
+ "synsets": [
+ "09852896-n",
+ "09853011-n",
+ "10425065-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 6584,
+ "created": "2008-12-02T12:31:35.000Z",
+ "lastUpdated": "2021-07-18T10:42:40.178Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pâtissier",
+ "hasLocution": true,
+ "plural": "pâtissiers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "gender violence"
+ ],
+ "synsets": [
+ "01402698-v",
+ "00017390-a",
+ "01122487-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "gender violence"
+ ],
+ "_id": 6586,
+ "created": "2008-12-02T12:33:19.000Z",
+ "lastUpdated": "2021-07-18T10:43:31.734Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "donner un coup",
+ "hasLocution": true
+ },
+ {
+ "keyword": "frapper",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "battre",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "attaquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "fish"
+ ],
+ "synsets": [
+ "04209460-n",
+ "10113587-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 6590,
+ "created": "2008-12-02T12:42:57.000Z",
+ "lastUpdated": "2021-05-05T06:24:53.550Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poissonnerie",
+ "hasLocution": true,
+ "plural": "poissonneries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "fish"
+ ],
+ "synsets": [
+ "10113587-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 6591,
+ "created": "2008-12-02T12:47:58.000Z",
+ "lastUpdated": "2021-07-18T10:43:48.000Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poissonnier",
+ "hasLocution": false,
+ "plural": "poissonniers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "hygiene product",
+ "signaling system"
+ ],
+ "synsets": [
+ "03922504-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6589,
+ "created": "2008-12-02T12:35:21.000Z",
+ "lastUpdated": "2021-05-05T06:24:26.936Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parfumerie",
+ "hasLocution": true,
+ "plural": "parfumeries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "outdoor activity",
+ "fishing"
+ ],
+ "synsets": [
+ "01143220-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 6592,
+ "created": "2008-12-02T12:48:31.000Z",
+ "lastUpdated": "2021-07-18T10:43:53.279Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "pêcher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "hairdresser",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-work",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00258095-n",
+ "02794293-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 6587,
+ "created": "2008-12-02T12:33:56.000Z",
+ "lastUpdated": "2021-05-04T15:32:05.078Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salon de coiffure",
+ "hasLocution": true,
+ "plural": "salons de coiffeur"
+ },
+ {
+ "keyword": "coiffeur",
+ "hasLocution": true,
+ "plural": "coiffeurs",
+ "type": 2
+ },
+ {
+ "keyword": "barbier",
+ "hasLocution": false,
+ "plural": "barbiers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "construction"
+ ],
+ "synsets": [
+ "01259737-v",
+ "01165936-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 6593,
+ "created": "2008-12-02T12:49:11.000Z",
+ "lastUpdated": "2021-07-18T10:44:02.230Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tailler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "casser",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "construction"
+ ],
+ "synsets": [
+ "01365439-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 6595,
+ "created": "2008-12-02T12:50:19.000Z",
+ "lastUpdated": "2021-03-25T21:47:31.397Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "peindre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "10413608-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 6596,
+ "created": "2008-12-02T12:51:06.000Z",
+ "lastUpdated": "2021-07-18T10:44:19.533Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peintre",
+ "hasLocution": true,
+ "plural": "peintres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "meat"
+ ],
+ "synsets": [
+ "04209460-n",
+ "02930545-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 6597,
+ "created": "2008-12-02T12:52:09.000Z",
+ "lastUpdated": "2021-07-18T10:44:39.866Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de volailles",
+ "hasLocution": true,
+ "plural": "magasin de volailles"
+ },
+ {
+ "keyword": "volailler",
+ "hasLocution": false,
+ "plural": "volaillers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mineral origin material"
+ ],
+ "synsets": [
+ "14720954-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "mineral origin material"
+ ],
+ "_id": 6594,
+ "created": "2008-12-02T12:49:47.000Z",
+ "lastUpdated": "2021-07-18T10:44:06.778Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pierre",
+ "hasLocution": true,
+ "plural": "pierres"
+ },
+ {
+ "type": 2,
+ "keyword": "roche",
+ "hasLocution": true,
+ "plural": "roches"
+ },
+ {
+ "keyword": "caillou",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cailloux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "meat"
+ ],
+ "synsets": [
+ "10480626-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 6598,
+ "created": "2008-12-02T12:52:41.000Z",
+ "lastUpdated": "2021-07-18T10:45:09.310Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marchand de poulets",
+ "hasLocution": true,
+ "plural": "marchands de poulets"
+ },
+ {
+ "keyword": "volailler",
+ "hasLocution": false,
+ "plural": "volaillers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "group",
+ "social movement"
+ ],
+ "synsets": [
+ "01130619-v",
+ "01132302-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "group",
+ "sociology",
+ "social movement"
+ ],
+ "_id": 6599,
+ "created": "2008-12-02T12:53:18.000Z",
+ "lastUpdated": "2024-12-05T17:50:58.996Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "défendre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "protéger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "publication",
+ "mass media"
+ ],
+ "synsets": [
+ "10375912-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "object",
+ "publication",
+ "communication",
+ "mass media"
+ ],
+ "_id": 6601,
+ "created": "2008-12-02T12:54:29.000Z",
+ "lastUpdated": "2021-07-18T10:45:34.808Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marchand de journaux",
+ "hasLocution": true,
+ "plural": "marchands de journaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication",
+ "person according to their age"
+ ],
+ "synsets": [
+ "01779456-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary",
+ "person"
+ ],
+ "_id": 6600,
+ "created": "2008-12-02T12:53:55.000Z",
+ "lastUpdated": "2025-01-11T07:54:00.046Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aimer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "respiratory system"
+ ],
+ "synsets": [
+ "00005041-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "respiratory system"
+ ],
+ "_id": 6602,
+ "created": "2008-12-02T12:55:03.000Z",
+ "lastUpdated": "2021-07-18T10:45:56.482Z",
+ "keywords": [
+ {
+ "keyword": "inspirer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "respirer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "inhaler",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01891013-v",
+ "01870596-v",
+ "02100445-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6603,
+ "created": "2008-12-02T12:57:03.000Z",
+ "lastUpdated": "2021-07-18T10:46:00.330Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rouler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00335806-v",
+ "02473085-v",
+ "01576346-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 6604,
+ "created": "2008-12-02T12:57:43.000Z",
+ "lastUpdated": "2021-07-18T10:46:26.518Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mettre quelque chose en morceaux par choc, par pression, le briser",
+ "keyword": "casser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "briser",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "rompre",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day"
+ ],
+ "synsets": [
+ "15189617-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "day"
+ ],
+ "_id": 6605,
+ "created": "2008-12-02T12:58:14.000Z",
+ "lastUpdated": "2021-08-21T10:54:13.771Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "samedi",
+ "hasLocution": true,
+ "plural": "samedis"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hairdresser",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "10175409-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "personal services",
+ "hairdresser",
+ "core vocabulary"
+ ],
+ "_id": 6588,
+ "created": "2008-12-02T12:34:31.000Z",
+ "lastUpdated": "2021-07-18T10:43:42.201Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coiffeur",
+ "hasLocution": true,
+ "plural": "coiffeurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "02019450-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 6606,
+ "created": "2008-12-02T12:59:50.000Z",
+ "lastUpdated": "2021-07-18T10:46:41.175Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Quitter le lieu où l'on se trouve pour aller dehors ou passer dans un autre lieu",
+ "keyword": "sortir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "quitter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "toy",
+ "sport material",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01970868-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "toy",
+ "sport material",
+ "physical exercise"
+ ],
+ "_id": 6608,
+ "created": "2008-12-02T13:00:46.000Z",
+ "lastUpdated": "2021-07-18T10:46:56.748Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sauter à la corde",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response",
+ "polite set expression"
+ ],
+ "synsets": [
+ "06644604-n",
+ "06642524-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 6609,
+ "created": "2008-12-02T13:01:15.000Z",
+ "lastUpdated": "2021-07-18T10:47:09.837Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "serrer la main",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "saluer",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "poignée de main",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response",
+ "polite set expression"
+ ],
+ "synsets": [
+ "00899782-v",
+ "00898754-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 6610,
+ "created": "2008-12-02T13:01:42.000Z",
+ "lastUpdated": "2021-07-18T10:47:19.124Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "serrer la main",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "saluer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "usual verbs",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "01988916-v",
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "object",
+ "furniture",
+ "core vocabulary",
+ "work"
+ ],
+ "_id": 6611,
+ "created": "2008-12-02T13:02:55.000Z",
+ "lastUpdated": "2024-11-12T05:49:38.764Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mettre quelqu'un sur son séant en le plaçant sur un siège ou sur une autre chose : Asseoir un jeune enfant sur sa chaise.",
+ "keyword": "assoir",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "asseoir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise",
+ "usual verbs",
+ "core vocabulary-communication",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "01967949-v",
+ "01970868-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 6607,
+ "created": "2008-12-02T13:00:19.000Z",
+ "lastUpdated": "2021-07-18T10:46:51.405Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Quitter le contact avec un sol ou une surface : Sauter à pieds joints, à cloche-pied.",
+ "keyword": "sauter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bondir",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00925764-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 6612,
+ "created": "2008-12-02T13:03:22.000Z",
+ "lastUpdated": "2021-07-18T10:47:48.773Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "indiquer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "signaler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "montrer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage"
+ ],
+ "synsets": [
+ "01172967-v",
+ "01541851-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 6616,
+ "created": "2008-12-02T13:06:04.000Z",
+ "lastUpdated": "2021-07-18T10:48:32.530Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "absorber",
+ "hasLocution": true
+ },
+ {
+ "keyword": "siroter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "boire à la paille",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01973223-v",
+ "01925957-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 6617,
+ "created": "2008-12-02T13:06:34.000Z",
+ "lastUpdated": "2021-07-18T10:48:42.602Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Aller de bas en haut, aller en un lieu plus élevé",
+ "keyword": "remonter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "monter",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "00007012-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 6615,
+ "created": "2008-12-02T13:05:32.000Z",
+ "lastUpdated": "2021-07-18T10:48:13.184Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "souffler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "trade"
+ ],
+ "synsets": [
+ "04365794-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 6618,
+ "created": "2008-12-02T13:07:27.000Z",
+ "lastUpdated": "2021-07-18T10:48:52.831Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "supermarché",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "intimate hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "04395249-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "human body",
+ "intimate hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 6619,
+ "created": "2008-12-02T13:08:50.000Z",
+ "lastUpdated": "2021-07-18T10:49:03.075Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tampon",
+ "hasLocution": true,
+ "plural": "tampons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes"
+ ],
+ "synsets": [
+ "00283850-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 6620,
+ "created": "2008-12-02T13:09:22.000Z",
+ "lastUpdated": "2021-03-25T22:00:40.172Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "teindre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "sweets"
+ ],
+ "synsets": [
+ "03094080-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 6621,
+ "created": "2008-12-02T13:09:55.000Z",
+ "lastUpdated": "2021-07-18T10:49:24.857Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de bonbons",
+ "hasLocution": true,
+ "plural": "magasins de bonbons"
+ },
+ {
+ "keyword": "confiserie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "confiseries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "month",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15237535-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month",
+ "core vocabulary"
+ ],
+ "_id": 6613,
+ "created": "2008-12-02T13:03:58.000Z",
+ "lastUpdated": "2021-03-26T02:58:37.483Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Septembre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "03005231-n",
+ "04169042-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 6614,
+ "created": "2008-12-02T13:04:30.000Z",
+ "lastUpdated": "2021-07-18T10:48:10.447Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaise",
+ "hasLocution": true,
+ "plural": "chaise"
+ },
+ {
+ "keyword": "siège",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "sièges"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun",
+ "core vocabulary"
+ ],
+ "_id": 6625,
+ "created": "2008-12-02T13:12:36.000Z",
+ "lastUpdated": "2024-10-20T05:29:19.459Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "tu",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "toi",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "vous",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "02155378-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 6626,
+ "created": "2008-12-02T13:14:51.000Z",
+ "lastUpdated": "2021-07-18T10:50:18.592Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "regarder la télévision",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "professional",
+ "educational task",
+ "core vocabulary-communication",
+ "core vocabulary-work",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "02418610-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "work",
+ "professional",
+ "education",
+ "educational task",
+ "core vocabulary"
+ ],
+ "_id": 6624,
+ "created": "2008-12-02T13:12:06.000Z",
+ "lastUpdated": "2021-07-18T10:50:00.365Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Avoir une profession, exercer un métier",
+ "keyword": "travailler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "basic needs",
+ "routine",
+ "core vocabulary-communication",
+ "core vocabulary-object",
+ "core vocabulary-living being",
+ "fashion",
+ "clothes",
+ "accessories"
+ ],
+ "synsets": [
+ "00047662-v",
+ "00046251-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "basic needs",
+ "routine",
+ "core vocabulary",
+ "accessories"
+ ],
+ "_id": 6627,
+ "created": "2008-12-02T13:15:25.000Z",
+ "lastUpdated": "2024-12-08T07:30:08.574Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'habiller",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tourism",
+ "land transport"
+ ],
+ "synsets": [
+ "09652940-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "tourism",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 6628,
+ "created": "2008-12-02T13:16:16.000Z",
+ "lastUpdated": "2021-07-18T10:50:39.660Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voyageur",
+ "hasLocution": true,
+ "plural": "voyageurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day"
+ ],
+ "synsets": [
+ "15189510-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "day"
+ ],
+ "_id": 6629,
+ "created": "2008-12-02T13:16:42.000Z",
+ "lastUpdated": "2021-08-21T10:51:35.091Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "vendredi",
+ "hasLocution": true,
+ "plural": "vendredis"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02008888-v",
+ "01911251-v",
+ "01882942-v",
+ "00347358-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 6630,
+ "created": "2008-12-02T13:17:07.000Z",
+ "lastUpdated": "2021-07-18T10:51:10.410Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "revenir",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "tour",
+ "hasLocution": true,
+ "plural": "tours"
+ },
+ {
+ "keyword": "demi-tour",
+ "hasLocution": false,
+ "plural": "demi-tours",
+ "type": 2
+ },
+ {
+ "keyword": "retourner",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "election"
+ ],
+ "synsets": [
+ "02466737-v",
+ "02468003-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 6631,
+ "created": "2008-12-02T13:17:42.000Z",
+ "lastUpdated": "2021-07-18T10:51:21.608Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "footwear",
+ "signaling system"
+ ],
+ "synsets": [
+ "04207843-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "footwear",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6633,
+ "created": "2008-12-02T13:18:56.000Z",
+ "lastUpdated": "2021-07-18T10:51:42.635Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de chaussures",
+ "hasLocution": true,
+ "plural": "magasins de chaussures"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "footwear"
+ ],
+ "synsets": [
+ "09952556-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 6634,
+ "created": "2008-12-02T13:19:30.000Z",
+ "lastUpdated": "2021-07-18T10:51:51.382Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cordonnier",
+ "hasLocution": true,
+ "plural": "cordonniers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun",
+ "core vocabulary-communication"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun",
+ "core vocabulary"
+ ],
+ "_id": 6632,
+ "created": "2008-12-02T13:18:12.000Z",
+ "lastUpdated": "2024-10-20T05:31:11.395Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "je",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "me",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "moi",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool"
+ ],
+ "synsets": [
+ "01355231-v",
+ "01355383-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool"
+ ],
+ "_id": 6635,
+ "created": "2008-12-02T13:21:13.000Z",
+ "lastUpdated": "2021-07-18T10:51:56.713Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "dévisser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "verb"
+ ],
+ "synsets": [
+ "00089076-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6636,
+ "created": "2008-12-02T13:22:15.000Z",
+ "lastUpdated": "2024-12-11T12:17:10.142Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "désinfecter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14085287-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 6637,
+ "created": "2008-12-02T13:23:06.000Z",
+ "lastUpdated": "2021-07-18T10:52:08.918Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maladie",
+ "hasLocution": true,
+ "plural": "maladies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothes"
+ ],
+ "synsets": [
+ "02882551-n",
+ "03056449-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 6623,
+ "created": "2008-12-02T13:11:16.000Z",
+ "lastUpdated": "2021-07-18T10:49:53.901Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de vêtements",
+ "hasLocution": true,
+ "plural": "magasins de vêtements"
+ },
+ {
+ "type": 2,
+ "keyword": "boutique",
+ "hasLocution": false,
+ "plural": "boutique"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "furniture",
+ "signaling system"
+ ],
+ "synsets": [
+ "08019967-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "furniture",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6622,
+ "created": "2008-12-02T13:10:33.000Z",
+ "lastUpdated": "2021-07-18T10:49:35.526Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de meubles",
+ "hasLocution": true,
+ "plural": "magasins de meubles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cycling"
+ ],
+ "synsets": [
+ "04028192-n",
+ "03574674-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "cycling"
+ ],
+ "_id": 6638,
+ "created": "2008-12-02T13:23:45.000Z",
+ "lastUpdated": "2021-07-18T10:52:42.155Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "pompe",
+ "plural": "pompes"
+ },
+ {
+ "keyword": "gonfleur",
+ "hasLocution": true,
+ "plural": "gonfleurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "library science"
+ ],
+ "synsets": [
+ "06422547-n",
+ "07107220-n",
+ "06163352-n"
+ ],
+ "tags": [
+ "library science"
+ ],
+ "_id": 6642,
+ "created": "2008-12-02T13:26:29.000Z",
+ "lastUpdated": "2021-07-18T10:53:01.707Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "livres de poésie et art ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "library science"
+ ],
+ "synsets": [
+ "06008975-n",
+ "06422547-n"
+ ],
+ "tags": [
+ "library science"
+ ],
+ "_id": 6639,
+ "created": "2008-12-02T13:24:27.000Z",
+ "lastUpdated": "2021-07-18T10:52:48.529Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "livres de sciences naturelles ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "01961388-v",
+ "01927367-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 6643,
+ "created": "2008-12-02T13:27:22.000Z",
+ "lastUpdated": "2021-07-18T10:53:19.166Z",
+ "keywords": [
+ {
+ "keyword": "monter",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire du cheval",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dessert"
+ ],
+ "synsets": [
+ "07634613-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert"
+ ],
+ "_id": 6644,
+ "created": "2008-12-02T13:28:02.000Z",
+ "lastUpdated": "2021-05-10T21:19:43.220Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crème anglaise",
+ "hasLocution": false,
+ "plural": "crèmes anglaises"
+ },
+ {
+ "type": 2,
+ "keyword": "crème renversée",
+ "hasLocution": true,
+ "plural": "crèmes renversées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "library science"
+ ],
+ "synsets": [
+ "04065208-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "library science"
+ ],
+ "_id": 6645,
+ "created": "2008-12-02T13:28:39.000Z",
+ "lastUpdated": "2021-07-18T10:53:33.702Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coin de lecture",
+ "hasLocution": true,
+ "plural": "coins de lecture"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "library science"
+ ],
+ "synsets": [
+ "06152605-n",
+ "06422547-n"
+ ],
+ "tags": [
+ "library science"
+ ],
+ "_id": 6640,
+ "created": "2008-12-02T13:25:07.000Z",
+ "lastUpdated": "2021-07-18T12:12:57.754Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "livres de sciences sociales ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "library science"
+ ],
+ "synsets": [
+ "06422547-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "library science"
+ ],
+ "_id": 6641,
+ "created": "2008-12-02T13:25:43.000Z",
+ "lastUpdated": "2021-07-18T10:52:55.305Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "livres",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "livres de jeux, sport et loisir ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "14008429-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 6649,
+ "created": "2008-12-02T13:31:25.000Z",
+ "lastUpdated": "2021-05-04T19:49:51.546Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ombre",
+ "hasLocution": true,
+ "plural": "ombres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "election"
+ ],
+ "synsets": [
+ "02785704-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 6650,
+ "created": "2008-12-02T13:32:04.000Z",
+ "lastUpdated": "2021-05-04T19:49:18.835Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "urne",
+ "hasLocution": true,
+ "plural": "urnes"
+ },
+ {
+ "keyword": "urne électorale",
+ "hasLocution": false,
+ "plural": "urnes électorales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element"
+ ],
+ "synsets": [
+ "03332179-n",
+ "03936551-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element"
+ ],
+ "_id": 6651,
+ "created": "2008-12-02T13:32:35.000Z",
+ "lastUpdated": "2021-05-04T19:48:11.753Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clôture",
+ "hasLocution": true,
+ "plural": "clôtures"
+ },
+ {
+ "keyword": "barrière",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "barrières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07896433-n",
+ "07681921-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 6648,
+ "created": "2008-12-02T13:30:47.000Z",
+ "lastUpdated": "2021-05-04T19:50:26.703Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "cordon bleu",
+ "plural": "cordons bleus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade",
+ "verb",
+ "usual verbs",
+ "core vocabulary-work",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02247246-v",
+ "02249738-v",
+ "01092370-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "trade",
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 6652,
+ "created": "2008-12-02T13:33:43.000Z",
+ "lastUpdated": "2021-07-18T10:54:00.248Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "vendre",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "commerce",
+ "hasLocution": true,
+ "plural": "commerces"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "04155119-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 6664,
+ "created": "2008-12-04T16:51:12.000Z",
+ "lastUpdated": "2021-05-10T21:14:12.926Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ciseaux",
+ "hasLocution": true,
+ "plural": "ciseaux"
+ },
+ {
+ "type": 2,
+ "keyword": "ciseaux à bouts ronds",
+ "hasLocution": false,
+ "plural": "ciseaux à bouts ronds"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02236255-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 6829,
+ "created": "2009-01-08T10:34:12.000Z",
+ "lastUpdated": "2021-07-18T10:54:22.364Z",
+ "keywords": [
+ {
+ "keyword": "passer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "faire une passe",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03324991-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 6871,
+ "created": "2009-01-08T13:04:16.000Z",
+ "lastUpdated": "2021-05-10T21:12:07.832Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éventail",
+ "hasLocution": true,
+ "plural": "éventails"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07657970-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 6653,
+ "created": "2008-12-02T13:36:46.000Z",
+ "lastUpdated": "2021-05-10T21:18:39.476Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "poisson pané",
+ "plural": "poissons panés"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "bâtonnet de poisson",
+ "plural": "bâtonnets de poisson"
+ },
+ {
+ "type": 2,
+ "keyword": "bâton de colin",
+ "hasLocution": false,
+ "plural": "bâtons de colin"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "14883495-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 6872,
+ "created": "2009-01-08T13:16:45.000Z",
+ "lastUpdated": "2021-05-10T21:10:36.415Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "engrais",
+ "hasLocution": true,
+ "plural": "engrais"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "01348155-s",
+ "01825834-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 6873,
+ "created": "2009-01-08T13:37:07.000Z",
+ "lastUpdated": "2021-07-18T10:54:37.756Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'ennuyer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "être fatigué",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01349486-v",
+ "01348685-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 6875,
+ "created": "2009-01-08T13:41:10.000Z",
+ "lastUpdated": "2021-07-18T10:54:46.297Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "elderly",
+ "family"
+ ],
+ "synsets": [
+ "10162692-n"
+ ],
+ "tags": [
+ "person",
+ "elderly",
+ "family"
+ ],
+ "_id": 6876,
+ "created": "2009-01-08T13:43:11.000Z",
+ "lastUpdated": "2021-07-18T10:54:48.184Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grands-parents",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "literature",
+ "library science"
+ ],
+ "synsets": [
+ "01348685-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "literature",
+ "library science"
+ ],
+ "_id": 6874,
+ "created": "2009-01-08T13:39:20.000Z",
+ "lastUpdated": "2021-07-18T10:54:42.521Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07691372-n",
+ "07692347-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "core vocabulary"
+ ],
+ "_id": 6647,
+ "created": "2008-12-02T13:30:03.000Z",
+ "lastUpdated": "2021-05-04T19:51:35.248Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saucisse",
+ "hasLocution": true,
+ "plural": "saucisse"
+ },
+ {
+ "type": 2,
+ "keyword": "saucisse de Francfort ",
+ "hasLocution": false,
+ "plural": "saucisses de Francfort"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery",
+ "container"
+ ],
+ "synsets": [
+ "03145082-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery",
+ "container"
+ ],
+ "_id": 6877,
+ "created": "2009-01-08T13:44:47.000Z",
+ "lastUpdated": "2021-05-12T23:30:06.477Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "huilier",
+ "hasLocution": true,
+ "plural": "huiliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02722642-v",
+ "02258643-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 6880,
+ "created": "2009-01-08T14:04:13.000Z",
+ "lastUpdated": "2021-07-18T10:55:46.175Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "accompagner",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "compagnie",
+ "hasLocution": true,
+ "plural": "compagnies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "15015886-n",
+ "04566090-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 6881,
+ "created": "2009-01-09T10:13:44.000Z",
+ "lastUpdated": "2021-07-18T11:20:06.385Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aquarelle",
+ "hasLocution": false,
+ "plural": "aquarelles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic concepts"
+ ],
+ "synsets": [
+ "02057865-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 6879,
+ "created": "2009-01-08T14:00:03.000Z",
+ "lastUpdated": "2021-07-18T10:55:25.119Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rapprocher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "approcher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01880021-v",
+ "01879288-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "babycare"
+ ],
+ "_id": 6883,
+ "created": "2009-01-09T10:18:13.000Z",
+ "lastUpdated": "2022-12-18T05:38:17.683Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bercer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing",
+ "pet"
+ ],
+ "synsets": [
+ "02735077-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing",
+ "pet"
+ ],
+ "_id": 6882,
+ "created": "2009-01-09T10:16:02.000Z",
+ "lastUpdated": "2021-07-18T10:56:28.227Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aquarium",
+ "hasLocution": true,
+ "plural": "aquariums"
+ },
+ {
+ "keyword": "bassin à poisson",
+ "hasLocution": false,
+ "plural": "bassins à poisson",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "dietetics"
+ ],
+ "synsets": [
+ "00045548-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "dietetics"
+ ],
+ "_id": 6884,
+ "created": "2009-01-09T10:21:32.000Z",
+ "lastUpdated": "2021-07-18T10:56:48.686Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "maigrir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "perdre du poids",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "adult",
+ "person according to their age"
+ ],
+ "synsets": [
+ "01491979-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "person",
+ "adult"
+ ],
+ "_id": 6886,
+ "created": "2009-01-09T10:35:35.000Z",
+ "lastUpdated": "2025-01-10T15:33:58.615Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "adulte",
+ "hasLocution": true,
+ "plural": "adultes"
+ },
+ {
+ "keyword": "grande personne",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "grandes personnes"
+ },
+ {
+ "keyword": "majeur",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "majeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "01491979-s"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 6887,
+ "created": "2009-01-09T10:37:04.000Z",
+ "lastUpdated": "2021-05-12T23:25:53.743Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "adultes",
+ "hasLocution": true,
+ "plural": "adultes"
+ },
+ {
+ "keyword": "grandes personnes",
+ "hasLocution": false,
+ "plural": "grandes personnes",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01577123-v",
+ "01226565-v",
+ "01219234-v",
+ "01218568-v",
+ "01216829-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response",
+ "core vocabulary"
+ ],
+ "_id": 6888,
+ "created": "2009-01-09T10:40:08.000Z",
+ "lastUpdated": "2021-07-18T10:57:02.269Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Saisir, attraper",
+ "keyword": "prendre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "tenir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "saisir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas"
+ ],
+ "synsets": [
+ "04613372-n",
+ "03174056-n",
+ "15221372-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 6885,
+ "created": "2009-01-09T10:28:57.000Z",
+ "lastUpdated": "2021-05-13T20:45:46.930Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "décoration de Noël",
+ "hasLocution": true,
+ "plural": "décorations de Noël"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mineral rich food",
+ "beverage"
+ ],
+ "synsets": [
+ "07951744-n",
+ "14869913-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "mineral rich food",
+ "beverage"
+ ],
+ "_id": 6889,
+ "created": "2009-01-09T10:42:12.000Z",
+ "lastUpdated": "2021-05-12T23:24:48.383Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "eau",
+ "hasLocution": true,
+ "plural": "eaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02057865-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6878,
+ "created": "2009-01-08T13:49:54.000Z",
+ "lastUpdated": "2021-07-18T10:55:15.442Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "approcher",
+ "hasLocution": false
+ },
+ {
+ "keyword": "se rapprocher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "02154277-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 6890,
+ "created": "2009-01-09T10:43:36.000Z",
+ "lastUpdated": "2021-05-12T23:24:18.408Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aile",
+ "hasLocution": true,
+ "plural": "ailes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "02497032-v",
+ "01817851-v",
+ "01817466-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 6892,
+ "created": "2009-01-09T10:48:05.000Z",
+ "lastUpdated": "2021-07-18T10:57:20.040Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réjouir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "être content",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "security and defense",
+ "object",
+ "appliance"
+ ],
+ "synsets": [
+ "04231457-n",
+ "07280494-n",
+ "02697285-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "object",
+ "appliance"
+ ],
+ "_id": 6891,
+ "created": "2009-01-09T10:46:30.000Z",
+ "lastUpdated": "2024-12-07T13:37:49.594Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sirène",
+ "hasLocution": true,
+ "plural": "sirènes"
+ },
+ {
+ "type": 2,
+ "keyword": "alarme",
+ "hasLocution": true,
+ "plural": "alarmes"
+ },
+ {
+ "keyword": "alerte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "alertes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02014079-v",
+ "02436167-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6893,
+ "created": "2009-01-09T10:50:44.000Z",
+ "lastUpdated": "2021-07-18T10:57:25.918Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éloigner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'éloigner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "séparer ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "fish"
+ ],
+ "synsets": [
+ "07808003-n",
+ "02527290-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 6646,
+ "created": "2008-12-02T13:29:20.000Z",
+ "lastUpdated": "2024-12-08T15:40:36.533Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poisson",
+ "hasLocution": true,
+ "plural": "poissons"
+ },
+ {
+ "type": 2,
+ "keyword": "tranche de merlu",
+ "hasLocution": false,
+ "plural": "tranches de merlu"
+ },
+ {
+ "type": 2,
+ "keyword": "merlu",
+ "hasLocution": true,
+ "plural": "merlus"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "tranche de colin",
+ "plural": "tranches de colin"
+ },
+ {
+ "type": 2,
+ "keyword": "poisson en sauce verte",
+ "hasLocution": false,
+ "plural": "poissons en sauce verte"
+ },
+ {
+ "keyword": "colin",
+ "hasLocution": false,
+ "plural": "colins",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "11921038-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "hervaceouos plant"
+ ],
+ "_id": 6897,
+ "created": "2009-01-09T10:59:12.000Z",
+ "lastUpdated": "2021-05-12T23:21:05.151Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coquelicot",
+ "hasLocution": true,
+ "plural": "coquelicots"
+ },
+ {
+ "keyword": "pavot",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pavots"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01779456-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response",
+ "core vocabulary"
+ ],
+ "_id": 6898,
+ "created": "2009-01-09T11:00:59.000Z",
+ "lastUpdated": "2021-07-18T10:57:51.629Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aimer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "hospital room",
+ "educational space",
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04558341-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "health",
+ "medicine",
+ "medical center",
+ "education",
+ "educational space",
+ "home",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 6896,
+ "created": "2009-01-09T10:57:38.000Z",
+ "lastUpdated": "2021-07-18T10:57:47.623Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entrepôt",
+ "hasLocution": true,
+ "plural": "entrepôts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy",
+ "fish-animal"
+ ],
+ "synsets": [
+ "02468763-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy",
+ "vertebrate",
+ "fish"
+ ],
+ "_id": 6895,
+ "created": "2009-01-09T10:55:08.000Z",
+ "lastUpdated": "2024-12-09T06:28:33.638Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nageoire",
+ "hasLocution": true,
+ "plural": "nageoires"
+ },
+ {
+ "keyword": "aileron",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ailerons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "02703861-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "core vocabulary"
+ ],
+ "_id": 6899,
+ "created": "2009-01-09T11:02:37.000Z",
+ "lastUpdated": "2021-05-03T21:23:32.315Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ambulance",
+ "hasLocution": true,
+ "plural": "ambulances"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "jewelry",
+ "accessories",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04099721-n",
+ "04266474-n",
+ "03292538-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "jewelry",
+ "accessories",
+ "core vocabulary"
+ ],
+ "_id": 6900,
+ "created": "2009-01-09T11:06:08.000Z",
+ "lastUpdated": "2021-05-13T20:44:05.113Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bague",
+ "hasLocution": true,
+ "plural": "bagues"
+ },
+ {
+ "keyword": "bague de fiançailles",
+ "hasLocution": false,
+ "plural": "bagues de fiançailles",
+ "type": 2
+ },
+ {
+ "keyword": "bague solitaire",
+ "hasLocution": false,
+ "plural": "bagues solitaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal",
+ "categorization",
+ "core vocabulary-living being",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "00015568-n"
+ ],
+ "tags": [
+ "animal",
+ "categorization",
+ "core vocabulary"
+ ],
+ "_id": 6901,
+ "created": "2009-01-09T11:08:39.000Z",
+ "lastUpdated": "2021-05-03T21:22:55.710Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "animaux",
+ "hasLocution": true,
+ "plural": "animaux"
+ },
+ {
+ "type": 2,
+ "keyword": "animal",
+ "hasLocution": true,
+ "plural": "animaux"
+ },
+ {
+ "keyword": "faune",
+ "hasLocution": false,
+ "plural": "faunes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01080481-a",
+ "09654651-n",
+ "01806732-a",
+ "01821097-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 6902,
+ "created": "2009-01-09T11:14:56.000Z",
+ "lastUpdated": "2021-07-18T10:57:56.465Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "antipathique",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "désagréable",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "déplaire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic concepts"
+ ],
+ "synsets": [
+ "02014079-v",
+ "02436167-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mathematics",
+ "basic concepts",
+ "character",
+ "book character",
+ "literature"
+ ],
+ "_id": 6894,
+ "created": "2009-01-09T10:51:58.000Z",
+ "lastUpdated": "2025-01-12T16:26:24.566Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éloigner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'éloigner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "séparer ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "unit of time",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15228587-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "core vocabulary"
+ ],
+ "_id": 6903,
+ "created": "2009-01-09T11:18:02.000Z",
+ "lastUpdated": "2021-05-03T21:22:00.642Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "année",
+ "hasLocution": true,
+ "plural": "années"
+ },
+ {
+ "keyword": "an",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ans"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "demonstrative adjective",
+ "demonstrative pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "demonstrative adjective",
+ "pronoun",
+ "demonstrative pronoun"
+ ],
+ "_id": 6907,
+ "created": "2009-01-09T11:25:10.000Z",
+ "lastUpdated": "2024-10-12T15:15:50.135Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ceux-là",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "celles-là",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "document",
+ "furniture"
+ ],
+ "synsets": [
+ "01003688-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "document",
+ "object",
+ "furniture"
+ ],
+ "_id": 6908,
+ "created": "2009-01-09T11:26:32.000Z",
+ "lastUpdated": "2024-12-10T15:47:27.663Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "classer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ranger",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "demonstrative adjective",
+ "demonstrative pronoun",
+ "feeding"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "demonstrative adjective",
+ "pronoun",
+ "demonstrative pronoun",
+ "feeding"
+ ],
+ "_id": 6906,
+ "created": "2009-01-09T11:23:48.000Z",
+ "lastUpdated": "2024-10-12T15:16:27.557Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "celui-là",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "celle-là",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "cela",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04557470-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 6909,
+ "created": "2009-01-09T11:32:31.000Z",
+ "lastUpdated": "2021-07-18T10:58:30.431Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "armoire",
+ "hasLocution": true,
+ "plural": "armoire"
+ },
+ {
+ "keyword": "placard",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "placards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cereal",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "12146407-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "cereal",
+ "plant",
+ "hervaceouos plant"
+ ],
+ "_id": 6911,
+ "created": "2009-01-09T11:37:39.000Z",
+ "lastUpdated": "2021-05-03T21:21:14.545Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "riz",
+ "hasLocution": true,
+ "plural": "riz"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00261534-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6910,
+ "created": "2009-01-09T11:35:36.000Z",
+ "lastUpdated": "2021-07-18T10:58:51.765Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réparer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "core vocabulary-object",
+ "object",
+ "corporal hygiene"
+ ],
+ "synsets": [
+ "04454577-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "core vocabulary",
+ "human body"
+ ],
+ "_id": 6912,
+ "created": "2009-01-09T11:40:54.000Z",
+ "lastUpdated": "2024-12-09T06:41:43.698Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "articles de toilette",
+ "plural": "articles de toilette"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "02042202-v",
+ "02156396-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 6913,
+ "created": "2009-01-09T12:24:34.000Z",
+ "lastUpdated": "2021-05-13T20:39:34.467Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se pencher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01506930-v",
+ "01506036-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6904,
+ "created": "2009-01-09T11:21:02.000Z",
+ "lastUpdated": "2021-05-13T20:40:42.696Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "empiler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "entasser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "01783082-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 6916,
+ "created": "2009-01-09T12:30:35.000Z",
+ "lastUpdated": "2021-07-18T10:59:15.928Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire peur",
+ "hasLocution": true
+ },
+ {
+ "keyword": "effrayer",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "terrifier",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "01985050-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 6917,
+ "created": "2009-01-09T12:32:50.000Z",
+ "lastUpdated": "2021-05-12T23:08:20.422Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "atterrir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "07796603-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 6918,
+ "created": "2009-01-09T12:39:01.000Z",
+ "lastUpdated": "2021-05-03T21:19:57.515Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "thon",
+ "hasLocution": true,
+ "plural": "thon"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gardening"
+ ],
+ "synsets": [
+ "04296165-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 6915,
+ "created": "2009-01-09T12:28:55.000Z",
+ "lastUpdated": "2021-05-12T23:18:31.790Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aspergeur",
+ "hasLocution": false,
+ "plural": "aspergeurs"
+ },
+ {
+ "keyword": "gicleur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gicleurs"
+ },
+ {
+ "keyword": "arroseur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "arroseurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01049253-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 6919,
+ "created": "2009-01-09T12:46:25.000Z",
+ "lastUpdated": "2021-05-12T23:07:25.110Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "hurler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01506930-v",
+ "01506036-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 6905,
+ "created": "2009-01-09T11:22:03.000Z",
+ "lastUpdated": "2021-05-13T20:40:54.839Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "empiler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "entasser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00241179-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6920,
+ "created": "2009-01-09T12:47:46.000Z",
+ "lastUpdated": "2021-07-18T10:59:26.958Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "augmenter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "agrandir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbaceous plant",
+ "cereal"
+ ],
+ "synsets": [
+ "12130344-n",
+ "07820128-n"
+ ],
+ "tags": [
+ "plant",
+ "hervaceouos plant",
+ "feeding",
+ "food",
+ "plant-based food",
+ "cereal"
+ ],
+ "_id": 6921,
+ "created": "2009-01-09T13:11:53.000Z",
+ "lastUpdated": "2022-07-26T14:22:33.854Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "avoine",
+ "hasLocution": true,
+ "plural": "avoines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bird",
+ "categorization"
+ ],
+ "synsets": [
+ "01505702-n"
+ ],
+ "tags": [
+ "animal",
+ "vertebrate",
+ "bird",
+ "categorization"
+ ],
+ "_id": 6923,
+ "created": "2009-01-09T13:23:00.000Z",
+ "lastUpdated": "2021-05-03T21:18:44.315Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oiseaux",
+ "hasLocution": true,
+ "plural": "oiseaux"
+ },
+ {
+ "type": 2,
+ "keyword": "oiseau",
+ "hasLocution": true,
+ "plural": "oiseaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00155165-a",
+ "00533833-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 6922,
+ "created": "2009-01-09T13:20:30.000Z",
+ "lastUpdated": "2021-07-18T10:59:30.629Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "honteux",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "embarrassé",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "02042202-v",
+ "02156396-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 6914,
+ "created": "2009-01-09T12:25:43.000Z",
+ "lastUpdated": "2021-05-13T20:39:26.524Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se pencher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport"
+ ],
+ "synsets": [
+ "02694015-n",
+ "02689427-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 6924,
+ "created": "2009-01-09T13:24:41.000Z",
+ "lastUpdated": "2021-05-13T20:38:08.358Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "avion",
+ "hasLocution": true,
+ "plural": "avions"
+ },
+ {
+ "keyword": "appareil",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "appareils"
+ },
+ {
+ "hasLocution": true,
+ "keyword": "aéroplane",
+ "type": 2,
+ "plural": "aéroplanes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02214714-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 6925,
+ "created": "2009-01-09T13:26:32.000Z",
+ "lastUpdated": "2021-05-03T21:18:20.974Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guêpe",
+ "hasLocution": true,
+ "plural": "guêpes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of time",
+ "basic concepts",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "15181147-n",
+ "15287949-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 6926,
+ "created": "2009-01-09T13:29:25.000Z",
+ "lastUpdated": "2022-03-30T11:02:22.878Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "hier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04483494-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 6928,
+ "created": "2009-01-09T13:36:17.000Z",
+ "lastUpdated": "2021-05-03T21:17:17.570Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plateau",
+ "hasLocution": true,
+ "plural": "plateaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01050202-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 6927,
+ "created": "2009-01-09T13:33:53.000Z",
+ "lastUpdated": "2021-05-12T23:11:18.710Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bêler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room"
+ ],
+ "synsets": [
+ "02810916-n",
+ "04453410-n",
+ "04565764-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room"
+ ],
+ "_id": 6930,
+ "created": "2009-01-09T13:38:53.000Z",
+ "lastUpdated": "2021-03-12T13:58:15.894Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de bain",
+ "hasLocution": true,
+ "plural": "salles de bain"
+ },
+ {
+ "type": 2,
+ "keyword": "baignoire",
+ "hasLocution": true,
+ "plural": "baignoires"
+ },
+ {
+ "keyword": "toilettes",
+ "hasLocution": true,
+ "plural": "toilettes",
+ "type": 2
+ },
+ {
+ "keyword": "WC",
+ "hasLocution": true,
+ "plural": "WC",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "04165868-n",
+ "02861626-n",
+ "03678353-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "core vocabulary"
+ ],
+ "_id": 6932,
+ "created": "2009-01-09T13:42:39.000Z",
+ "lastUpdated": "2021-05-13T20:36:01.218Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bateau",
+ "hasLocution": true,
+ "plural": "bateaux"
+ },
+ {
+ "keyword": "paquebot",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paquebots"
+ },
+ {
+ "keyword": "paquebot de croisière",
+ "hasLocution": false,
+ "plural": "paquebots de croisière",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "02761495-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 6933,
+ "created": "2009-01-09T13:43:52.000Z",
+ "lastUpdated": "2021-05-03T21:15:43.653Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "vrille",
+ "plural": "vrilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "beverage"
+ ],
+ "synsets": [
+ "02798192-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 6934,
+ "created": "2009-01-09T13:45:32.000Z",
+ "lastUpdated": "2021-05-03T21:15:00.611Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "tonneau",
+ "plural": "tonneaux"
+ },
+ {
+ "keyword": "barril",
+ "hasLocution": false,
+ "plural": "barrils",
+ "type": 2
+ },
+ {
+ "keyword": "fût",
+ "hasLocution": true,
+ "plural": "fûts",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "06643829-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 6936,
+ "created": "2009-01-09T13:50:15.000Z",
+ "lastUpdated": "2021-05-03T21:13:51.554Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "bienvenue",
+ "hasLocution": false
+ },
+ {
+ "keyword": "bonjour",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "03978882-n"
+ ],
+ "tags": [],
+ "_id": 6937,
+ "created": "2009-01-09T13:52:22.000Z",
+ "lastUpdated": "2021-05-13T20:34:44.085Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poche",
+ "hasLocution": true,
+ "plural": "poches"
+ },
+ {
+ "keyword": "pochette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pochettes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "cycling",
+ "road safety",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "02837983-n",
+ "04133167-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "leisure",
+ "sport",
+ "cycling",
+ "road safety",
+ "core vocabulary"
+ ],
+ "_id": 6935,
+ "created": "2009-01-09T13:47:17.000Z",
+ "lastUpdated": "2023-09-07T10:10:38.262Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bicyclette",
+ "hasLocution": true,
+ "plural": "bicyclettes"
+ },
+ {
+ "type": 2,
+ "keyword": "vélo",
+ "hasLocution": true,
+ "plural": "vélos"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "bécane",
+ "plural": "bécanes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "02800154-n",
+ "02792510-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 6931,
+ "created": "2009-01-09T13:40:43.000Z",
+ "lastUpdated": "2021-05-03T21:16:48.636Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bar",
+ "hasLocution": true,
+ "plural": "bar"
+ },
+ {
+ "keyword": "café",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "café"
+ },
+ {
+ "keyword": "bistrot",
+ "hasLocution": false,
+ "plural": "bistrots",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room"
+ ],
+ "synsets": [
+ "04453410-n",
+ "03751977-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room"
+ ],
+ "_id": 6929,
+ "created": "2009-01-09T13:37:45.000Z",
+ "lastUpdated": "2021-07-18T11:00:04.296Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de bain",
+ "hasLocution": true,
+ "plural": "salle de bain"
+ },
+ {
+ "keyword": "toilettes",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "WC",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "02513400-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 6941,
+ "created": "2009-01-12T09:39:45.000Z",
+ "lastUpdated": "2021-05-03T21:11:35.704Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "branchie",
+ "hasLocution": false,
+ "plural": "branchies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "polite set expression"
+ ],
+ "synsets": [
+ "06645454-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 6942,
+ "created": "2009-01-12T09:41:14.000Z",
+ "lastUpdated": "2021-05-12T23:04:44.704Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "bonne nuit",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "beverage"
+ ],
+ "synsets": [
+ "03246199-n",
+ "03608935-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 6940,
+ "created": "2009-01-09T14:00:10.000Z",
+ "lastUpdated": "2021-05-03T21:12:41.759Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cruche",
+ "hasLocution": true,
+ "plural": "cruches"
+ },
+ {
+ "keyword": "gargoulette",
+ "hasLocution": false,
+ "plural": "gargoulette",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "polite set expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "06645314-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression",
+ "core vocabulary"
+ ],
+ "_id": 6943,
+ "created": "2009-01-12T09:42:47.000Z",
+ "lastUpdated": "2021-05-12T23:04:38.076Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "bon après-midi",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "polite set expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "06645178-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression",
+ "core vocabulary"
+ ],
+ "_id": 6944,
+ "created": "2009-01-12T09:43:44.000Z",
+ "lastUpdated": "2021-05-12T23:04:28.187Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "bonjour",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "09252616-n"
+ ],
+ "tags": [
+ "core vocabulary"
+ ],
+ "_id": 6945,
+ "created": "2009-01-12T09:47:56.000Z",
+ "lastUpdated": "2021-05-03T21:10:54.449Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bulles",
+ "hasLocution": true,
+ "plural": "bulles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02158139-v",
+ "01318273-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6946,
+ "created": "2009-01-12T09:49:37.000Z",
+ "lastUpdated": "2021-07-18T11:00:16.868Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chercher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02158139-v",
+ "01318273-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 6947,
+ "created": "2009-01-12T09:50:38.000Z",
+ "lastUpdated": "2021-07-18T11:00:21.715Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chercher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01056721-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 6949,
+ "created": "2009-01-12T09:53:40.000Z",
+ "lastUpdated": "2021-05-13T20:32:27.245Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "glousser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon"
+ ],
+ "synsets": [
+ "02869918-n"
+ ],
+ "tags": [
+ "object",
+ "weapon"
+ ],
+ "_id": 6938,
+ "created": "2009-01-09T13:53:24.000Z",
+ "lastUpdated": "2021-05-03T21:13:25.483Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bombe",
+ "hasLocution": true,
+ "plural": "bombes"
+ },
+ {
+ "keyword": "obus",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "obus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01058241-v",
+ "01056721-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 6950,
+ "created": "2009-01-12T09:54:35.000Z",
+ "lastUpdated": "2021-05-13T20:31:33.409Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "glousser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "halloween"
+ ],
+ "synsets": [
+ "15216068-n",
+ "07751486-n",
+ "15219894-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 6951,
+ "created": "2009-01-12T09:59:08.000Z",
+ "lastUpdated": "2021-05-12T23:03:54.247Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "citrouille",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "citrouille d'halloween",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Halloween",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Toussaint",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Jour de la Toussaint",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body sensation",
+ "summer",
+ "core vocabulary-communication",
+ "core vocabulary-living being",
+ "core vocabulary-miscellaneous",
+ "beach"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "body sensation",
+ "summer",
+ "core vocabulary",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 6952,
+ "created": "2009-01-12T10:00:16.000Z",
+ "lastUpdated": "2022-07-04T06:42:21.256Z",
+ "keywords": [
+ {
+ "keyword": "avoir cha",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "02821967-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 6954,
+ "created": "2009-01-12T10:06:33.000Z",
+ "lastUpdated": "2021-05-03T21:09:00.114Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lit",
+ "hasLocution": true,
+ "plural": "lits"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 6953,
+ "created": "2009-01-12T10:04:48.000Z",
+ "lastUpdated": "2021-05-13T20:28:52.436Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussé",
+ "hasLocution": true,
+ "plural": "chaussés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "03695799-n",
+ "03260869-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "core vocabulary"
+ ],
+ "_id": 6956,
+ "created": "2009-01-12T10:10:41.000Z",
+ "lastUpdated": "2021-05-13T20:25:44.627Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "camion",
+ "hasLocution": true,
+ "plural": "camions"
+ },
+ {
+ "keyword": "poids lourd",
+ "hasLocution": false,
+ "plural": "poids lourds",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "03880277-n"
+ ],
+ "tags": [],
+ "_id": 6957,
+ "created": "2009-01-12T10:15:08.000Z",
+ "lastUpdated": "2021-05-03T21:08:29.018Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cadenas",
+ "hasLocution": true,
+ "plural": "cadenas"
+ },
+ {
+ "keyword": "verrou",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "verrous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "halloween"
+ ],
+ "synsets": [
+ "02951993-n",
+ "02951254-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 6958,
+ "created": "2009-01-12T10:20:14.000Z",
+ "lastUpdated": "2021-05-13T20:24:52.900Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "candélabre",
+ "hasLocution": true,
+ "plural": "candélabres"
+ },
+ {
+ "keyword": "chandelier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chandeliers"
+ },
+ {
+ "keyword": "bougeoir",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bougeoirs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling",
+ "body sensation",
+ "symptom"
+ ],
+ "synsets": [
+ "00074774-v",
+ "00075174-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion",
+ "human body",
+ "body sensation",
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 6959,
+ "created": "2009-01-12T10:21:45.000Z",
+ "lastUpdated": "2021-07-18T11:01:05.893Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fatiguer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "être fatigué",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "épuiser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01551500-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 6939,
+ "created": "2009-01-09T13:55:04.000Z",
+ "lastUpdated": "2021-05-13T20:33:36.764Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "effacer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical art",
+ "usual verbs",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01733312-v"
+ ],
+ "tags": [
+ "music",
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 6960,
+ "created": "2009-01-12T10:23:08.000Z",
+ "lastUpdated": "2024-10-10T08:07:14.398Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Faire entendre un chant ; produire par la voix des sons mélodieux, une Åuvre musicale",
+ "keyword": "chanter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "meat",
+ "categorization"
+ ],
+ "synsets": [
+ "07665463-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat",
+ "categorization"
+ ],
+ "_id": 6961,
+ "created": "2009-01-12T10:27:20.000Z",
+ "lastUpdated": "2024-12-04T11:00:20.127Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "viande",
+ "hasLocution": true,
+ "plural": "viandes"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "viandes",
+ "plural": "viandes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media",
+ "christmas"
+ ],
+ "synsets": [
+ "06636668-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 6963,
+ "created": "2009-01-12T10:35:45.000Z",
+ "lastUpdated": "2021-05-03T21:05:14.087Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lettre",
+ "hasLocution": true,
+ "plural": "lettres"
+ },
+ {
+ "keyword": "courrier",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "courriers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "core vocabulary-place",
+ "document"
+ ],
+ "synsets": [
+ "03549540-n",
+ "08094856-n",
+ "08576692-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "core vocabulary",
+ "document"
+ ],
+ "_id": 6964,
+ "created": "2009-01-12T10:39:22.000Z",
+ "lastUpdated": "2021-09-07T18:20:36.902Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maison",
+ "hasLocution": true,
+ "plural": "maisons"
+ },
+ {
+ "keyword": "domicile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "domiciles"
+ },
+ {
+ "keyword": "logement",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "logements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "trade"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "container",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 6962,
+ "created": "2009-01-12T10:32:14.000Z",
+ "lastUpdated": "2021-07-18T11:01:26.513Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charriot",
+ "hasLocution": true,
+ "plural": "charriots"
+ },
+ {
+ "type": 2,
+ "keyword": "caddie de supermarché",
+ "hasLocution": true,
+ "plural": "caddies de supermarché"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "wedding"
+ ],
+ "synsets": [
+ "02495105-v",
+ "02494483-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "wedding"
+ ],
+ "_id": 6965,
+ "created": "2009-01-12T10:42:32.000Z",
+ "lastUpdated": "2021-07-18T11:01:44.064Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "unir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "marier",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se marier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "egg product"
+ ],
+ "synsets": [
+ "09455334-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "egg product"
+ ],
+ "_id": 6966,
+ "created": "2009-01-12T10:44:14.000Z",
+ "lastUpdated": "2021-03-26T13:42:20.487Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coquille d'oeuf",
+ "hasLocution": false,
+ "plural": "coquilles d'oeuf"
+ },
+ {
+ "type": 2,
+ "keyword": "coquille",
+ "hasLocution": true,
+ "plural": "coquilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "02937552-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 6948,
+ "created": "2009-01-12T09:52:14.000Z",
+ "lastUpdated": "2021-05-03T21:10:05.406Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "câble",
+ "hasLocution": true,
+ "plural": "câbles"
+ },
+ {
+ "keyword": "fil",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "fils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "rural area"
+ ],
+ "synsets": [
+ "03905230-n",
+ "04470745-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "land transport",
+ "rural area"
+ ],
+ "_id": 6955,
+ "created": "2009-01-12T10:08:59.000Z",
+ "lastUpdated": "2024-12-13T07:24:48.787Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "sentier",
+ "plural": "sentiers"
+ },
+ {
+ "type": 2,
+ "keyword": "chemin",
+ "hasLocution": true,
+ "plural": "chemins"
+ },
+ {
+ "keyword": "voie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "voies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cereal",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "07819069-n",
+ "12143761-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "cereal",
+ "plant",
+ "hervaceouos plant"
+ ],
+ "_id": 6967,
+ "created": "2009-01-12T10:46:23.000Z",
+ "lastUpdated": "2021-05-03T21:04:11.254Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "orge",
+ "hasLocution": true,
+ "plural": "orges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "00436056-v"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 6968,
+ "created": "2009-01-12T10:48:02.000Z",
+ "lastUpdated": "2021-07-18T11:02:23.781Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Cédez le Passage",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday",
+ "christmas"
+ ],
+ "synsets": [
+ "02496526-v",
+ "00428985-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 6969,
+ "created": "2009-01-12T10:49:56.000Z",
+ "lastUpdated": "2021-07-18T11:02:37.815Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fêter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "célébrer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01170315-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 6970,
+ "created": "2009-01-12T10:51:54.000Z",
+ "lastUpdated": "2021-07-18T11:03:02.080Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "diner",
+ "hasLocution": false,
+ "plural": "diners"
+ },
+ {
+ "keyword": "souper",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "soupers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "01246546-v",
+ "01535377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 6971,
+ "created": "2009-01-12T10:53:40.000Z",
+ "lastUpdated": "2021-07-18T11:03:16.955Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se brosser les dents",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se laver les dents",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13764498-n",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 6972,
+ "created": "2009-01-12T10:56:05.000Z",
+ "lastUpdated": "2024-10-20T09:28:56.268Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "0",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "zéro",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "literature",
+ "library science"
+ ],
+ "synsets": [
+ "01347791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "literature",
+ "library science"
+ ],
+ "_id": 6973,
+ "created": "2009-01-12T10:58:42.000Z",
+ "lastUpdated": "2021-07-18T11:03:26.482Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fermer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "child"
+ ],
+ "synsets": [
+ "10104064-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "child"
+ ],
+ "_id": 6974,
+ "created": "2009-01-12T11:00:44.000Z",
+ "lastUpdated": "2021-07-18T11:03:33.182Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "filles",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "petites filles",
+ "hasLocution": true
+ },
+ {
+ "keyword": "filettes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "08538450-n",
+ "09459612-n",
+ "09467004-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 6978,
+ "created": "2009-01-12T11:11:09.000Z",
+ "lastUpdated": "2021-05-03T21:02:37.286Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étoiles",
+ "hasLocution": true,
+ "plural": "étoiles"
+ },
+ {
+ "type": 2,
+ "keyword": "ciel",
+ "hasLocution": true,
+ "plural": "ciels"
+ },
+ {
+ "type": 2,
+ "keyword": "firmament ",
+ "hasLocution": false,
+ "plural": "firmaments"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194389-s",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 6979,
+ "created": "2009-01-12T11:12:32.000Z",
+ "lastUpdated": "2024-10-20T09:29:00.468Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "5",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "cinq",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "egg product"
+ ],
+ "synsets": [
+ "07857013-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "egg product"
+ ],
+ "_id": 6980,
+ "created": "2009-01-12T11:14:10.000Z",
+ "lastUpdated": "2021-03-26T13:42:10.572Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blanc",
+ "hasLocution": true,
+ "plural": "blancs"
+ },
+ {
+ "keyword": "blanc d'oeuf",
+ "hasLocution": false,
+ "plural": "blancs d'oeufs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "02961779-n",
+ "04531608-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 6981,
+ "created": "2009-01-12T11:15:49.000Z",
+ "lastUpdated": "2021-07-18T11:04:33.489Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voiture",
+ "hasLocution": true,
+ "plural": "voitures"
+ },
+ {
+ "keyword": "automobile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "automobiles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "security and defense"
+ ],
+ "synsets": [
+ "03350333-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 6982,
+ "created": "2009-01-12T11:17:27.000Z",
+ "lastUpdated": "2021-07-18T11:04:44.760Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "camion de pompiers ",
+ "hasLocution": false,
+ "plural": "camions de pompiers "
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "03145716-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 6983,
+ "created": "2009-01-12T11:18:39.000Z",
+ "lastUpdated": "2021-05-03T21:00:45.284Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voiture de police",
+ "hasLocution": true,
+ "plural": "voitures de police"
+ },
+ {
+ "keyword": "véhicule de police",
+ "hasLocution": false,
+ "plural": "véhicules de police",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "01668067-v",
+ "01669533-v",
+ "00324657-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 6984,
+ "created": "2009-01-12T11:19:57.000Z",
+ "lastUpdated": "2021-07-18T11:05:06.811Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "cuisiner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "mijoter",
+ "hasLocution": false
+ },
+ {
+ "keyword": "cuire",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "cookery"
+ ],
+ "synsets": [
+ "09983053-n",
+ "09982799-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 6985,
+ "created": "2009-01-12T11:20:55.000Z",
+ "lastUpdated": "2021-07-18T11:05:25.913Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuisinier",
+ "hasLocution": true,
+ "plural": "cuisiniers"
+ },
+ {
+ "keyword": "chef",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chefs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "furniture"
+ ],
+ "synsets": [
+ "01483990-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "furniture"
+ ],
+ "_id": 6986,
+ "created": "2009-01-12T11:22:44.000Z",
+ "lastUpdated": "2021-07-18T11:05:32.364Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "accrocher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pet",
+ "animal"
+ ],
+ "synsets": [
+ "03072490-n"
+ ],
+ "tags": [
+ "animal",
+ "pet"
+ ],
+ "_id": 6987,
+ "created": "2009-01-12T11:24:18.000Z",
+ "lastUpdated": "2024-12-12T08:53:45.013Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "collier",
+ "hasLocution": true,
+ "plural": "colliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "jewelry",
+ "accessories"
+ ],
+ "synsets": [
+ "03820446-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "jewelry",
+ "accessories"
+ ],
+ "_id": 6988,
+ "created": "2009-01-12T11:25:13.000Z",
+ "lastUpdated": "2021-05-03T20:57:52.378Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "collier",
+ "hasLocution": true,
+ "plural": "colliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication",
+ "object"
+ ],
+ "synsets": [
+ "01496967-v",
+ "01496398-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 6989,
+ "created": "2009-01-12T11:26:22.000Z",
+ "lastUpdated": "2024-12-08T07:30:24.723Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Faire passer quelque chose d'un endroit en un autre : Mettre la voiture au garage, une nappe sur la table, de l'argent à la banque.",
+ "keyword": "mettre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "placer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "situer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01187837-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 6990,
+ "created": "2009-01-12T11:27:53.000Z",
+ "lastUpdated": "2021-07-18T11:05:52.162Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "manger",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déjeuner",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "augmentative communication"
+ ],
+ "synsets": [
+ "00033319-n",
+ "01343575-s",
+ "03082291-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication"
+ ],
+ "_id": 6991,
+ "created": "2009-01-12T11:36:10.000Z",
+ "lastUpdated": "2021-07-18T11:06:01.955Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "communication augmentative ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "00623406-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 6992,
+ "created": "2009-01-12T11:37:48.000Z",
+ "lastUpdated": "2021-07-18T11:06:38.240Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "confondre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se tromper",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "embrouiller",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00595732-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 6993,
+ "created": "2009-01-12T11:39:34.000Z",
+ "lastUpdated": "2021-07-18T11:06:46.643Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "connaître",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "personal services",
+ "residential building"
+ ],
+ "synsets": [
+ "10530662-n",
+ "09971432-n",
+ "10046278-n",
+ "10695160-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "personal services",
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 6995,
+ "created": "2009-01-12T11:41:31.000Z",
+ "lastUpdated": "2021-07-18T11:07:10.697Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "concierge",
+ "hasLocution": true,
+ "plural": "concierges"
+ },
+ {
+ "keyword": "intendante",
+ "hasLocution": false,
+ "plural": "intendantes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05575237-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 6996,
+ "created": "2009-01-12T11:44:11.000Z",
+ "lastUpdated": "2021-05-03T20:55:44.943Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "majeur",
+ "hasLocution": true,
+ "plural": "majeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "child"
+ ],
+ "synsets": [
+ "10305010-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "child"
+ ],
+ "_id": 6975,
+ "created": "2009-01-12T11:01:15.000Z",
+ "lastUpdated": "2021-07-18T11:03:42.293Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enfants",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "garçons",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "meat"
+ ],
+ "synsets": [
+ "07672350-n",
+ "07669591-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 6976,
+ "created": "2009-01-12T11:03:22.000Z",
+ "lastUpdated": "2021-07-18T11:03:53.501Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "côtelette",
+ "hasLocution": true,
+ "plural": "côtelettes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "football"
+ ],
+ "synsets": [
+ "01086877-v",
+ "01407698-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "football"
+ ],
+ "_id": 6977,
+ "created": "2009-01-12T11:05:26.000Z",
+ "lastUpdated": "2021-07-18T11:04:05.311Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "donner un coup",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "shooter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tirer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "document"
+ ],
+ "synsets": [
+ "02919884-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "document"
+ ],
+ "_id": 6997,
+ "created": "2009-01-12T11:45:22.000Z",
+ "lastUpdated": "2024-12-11T17:26:16.041Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tableau en liège",
+ "hasLocution": true,
+ "plural": "tableaux en liège"
+ },
+ {
+ "type": 2,
+ "keyword": "tableau",
+ "hasLocution": true,
+ "plural": "tableaux"
+ },
+ {
+ "type": 2,
+ "keyword": "tableau d'affichage",
+ "hasLocution": true,
+ "plural": "tableauxd'affichage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00200023-v",
+ "07208256-n",
+ "00998147-v",
+ "00645746-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 6998,
+ "created": "2009-01-12T11:46:58.000Z",
+ "lastUpdated": "2021-07-18T11:08:01.089Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "corriger",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "réviser",
+ "hasLocution": false
+ },
+ {
+ "keyword": "questionnaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "questionnaires"
+ },
+ {
+ "keyword": "sondage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sondages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "meat"
+ ],
+ "synsets": [
+ "07672350-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 7000,
+ "created": "2009-01-12T12:44:36.000Z",
+ "lastUpdated": "2021-07-18T11:08:12.109Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "côte",
+ "hasLocution": true,
+ "plural": "côtes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "meat"
+ ],
+ "synsets": [
+ "07672350-n",
+ "07683719-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 7001,
+ "created": "2009-01-12T12:46:04.000Z",
+ "lastUpdated": "2021-07-18T11:08:21.147Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "côte",
+ "hasLocution": true,
+ "plural": "côtes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physiology"
+ ],
+ "synsets": [
+ "00251067-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology"
+ ],
+ "_id": 7002,
+ "created": "2009-01-12T12:53:50.000Z",
+ "lastUpdated": "2021-07-18T11:08:24.875Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "grandir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mountain"
+ ],
+ "synsets": [
+ "04115362-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 7006,
+ "created": "2009-01-12T13:09:17.000Z",
+ "lastUpdated": "2021-05-03T20:52:58.912Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corde",
+ "hasLocution": true,
+ "plural": "cordes"
+ },
+ {
+ "keyword": "cordage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cordage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday",
+ "christmas"
+ ],
+ "synsets": [
+ "01679858-v",
+ "00263092-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 7008,
+ "created": "2009-01-12T13:12:33.000Z",
+ "lastUpdated": "2021-07-18T11:08:53.783Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "décorer",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "décoration",
+ "hasLocution": true,
+ "plural": "décorations"
+ },
+ {
+ "type": 3,
+ "keyword": "orner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00037507-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 7009,
+ "created": "2009-01-12T13:15:00.000Z",
+ "lastUpdated": "2021-07-18T11:09:00.840Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "épiler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "00434156-n",
+ "00524569-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport"
+ ],
+ "_id": 7010,
+ "created": "2009-01-12T13:20:20.000Z",
+ "lastUpdated": "2021-05-03T20:51:27.592Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sport",
+ "hasLocution": true,
+ "plural": "sports"
+ },
+ {
+ "keyword": "sports",
+ "hasLocution": true,
+ "plural": "sports",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "dessert"
+ ],
+ "synsets": [
+ "00376777-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert"
+ ],
+ "_id": 7011,
+ "created": "2009-01-12T13:24:54.000Z",
+ "lastUpdated": "2021-07-18T11:09:02.889Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fondre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01188273-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 7012,
+ "created": "2009-01-12T13:28:15.000Z",
+ "lastUpdated": "2021-07-18T11:09:21.587Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prendre le petit déjeuner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déjeuner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "01353852-v",
+ "00195686-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 7013,
+ "created": "2009-01-12T13:34:59.000Z",
+ "lastUpdated": "2021-07-18T11:09:42.741Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "défricher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "arracher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "désherber",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00279508-r",
+ "02164101-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 7014,
+ "created": "2009-01-12T13:41:29.000Z",
+ "lastUpdated": "2021-07-18T11:10:28.293Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "déchaussé",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pieds-nus",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes"
+ ],
+ "synsets": [
+ "01977139-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 7015,
+ "created": "2009-01-12T13:44:16.000Z",
+ "lastUpdated": "2021-07-18T11:10:35.005Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "décrocher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01974840-v",
+ "01890481-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 7016,
+ "created": "2009-01-12T13:48:34.000Z",
+ "lastUpdated": "2021-07-18T11:10:38.409Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "glisser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "00398311-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 7017,
+ "created": "2009-01-12T13:51:07.000Z",
+ "lastUpdated": "2021-07-18T11:10:42.427Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "émietter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "02018405-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 7018,
+ "created": "2009-01-12T13:52:43.000Z",
+ "lastUpdated": "2021-07-18T11:10:48.533Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "décoller",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery",
+ "container"
+ ],
+ "synsets": [
+ "01348685-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery",
+ "container"
+ ],
+ "_id": 7020,
+ "created": "2009-01-13T10:54:24.000Z",
+ "lastUpdated": "2021-07-18T11:11:14.096Z",
+ "keywords": [
+ {
+ "keyword": "ouvrir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "déboucher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "03653841-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 7021,
+ "created": "2009-01-13T10:59:33.000Z",
+ "lastUpdated": "2021-07-18T11:11:31.971Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "détergent",
+ "hasLocution": true,
+ "plural": "détergents"
+ },
+ {
+ "type": 2,
+ "keyword": "lessive",
+ "hasLocution": true,
+ "plural": "lessives"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day time"
+ ],
+ "synsets": [
+ "15190004-n"
+ ],
+ "tags": [
+ "time",
+ "calendar"
+ ],
+ "_id": 7022,
+ "created": "2009-01-13T11:01:02.000Z",
+ "lastUpdated": "2021-07-18T11:11:50.927Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jour",
+ "hasLocution": true,
+ "plural": "jours"
+ },
+ {
+ "keyword": "journée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "journées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14395318-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 7023,
+ "created": "2009-01-13T11:04:29.000Z",
+ "lastUpdated": "2021-07-18T11:12:03.330Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "diarrhée",
+ "hasLocution": true,
+ "plural": "diarrhées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "06430544-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 7024,
+ "created": "2009-01-13T11:05:52.000Z",
+ "lastUpdated": "2021-05-03T20:49:38.058Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dictionnaire",
+ "hasLocution": true,
+ "plural": "dictionnaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13768652-n",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 7025,
+ "created": "2009-01-13T11:07:12.000Z",
+ "lastUpdated": "2024-10-20T09:29:09.455Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "10",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "dix",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01066423-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 7003,
+ "created": "2009-01-12T12:59:57.000Z",
+ "lastUpdated": "2021-05-03T20:54:47.788Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "coasser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid"
+ ],
+ "synsets": [
+ "03082291-n",
+ "03838213-n",
+ "00033319-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 7004,
+ "created": "2009-01-12T13:02:43.000Z",
+ "lastUpdated": "2021-07-18T11:08:41.158Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cahier de communication ",
+ "hasLocution": false,
+ "plural": "cahiers de communication"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194304-s",
+ "13766444-n",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 7005,
+ "created": "2009-01-12T13:07:38.000Z",
+ "lastUpdated": "2024-10-20T09:29:04.861Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "4",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "quatre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "cattle farming",
+ "domestic animal",
+ "categorization"
+ ],
+ "synsets": [
+ "02397489-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "animal",
+ "domestic",
+ "categorization"
+ ],
+ "_id": 7026,
+ "created": "2009-01-13T11:09:28.000Z",
+ "lastUpdated": "2021-05-03T20:49:06.265Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "domestique",
+ "hasLocution": true,
+ "plural": "domestiques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13765409-n",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 7027,
+ "created": "2009-01-13T11:11:21.000Z",
+ "lastUpdated": "2024-10-20T09:29:13.837Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "2",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "deux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7028,
+ "created": "2009-01-13T11:19:03.000Z",
+ "lastUpdated": "2021-05-03T20:48:24.644Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "elle",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7029,
+ "created": "2009-01-13T11:20:08.000Z",
+ "lastUpdated": "2024-10-18T04:44:57.252Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "elle",
+ "hasLocution": true
+ },
+ {
+ "keyword": "la",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "elle-même",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7030,
+ "created": "2009-01-13T11:21:48.000Z",
+ "lastUpdated": "2021-05-03T20:46:37.872Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "elles",
+ "hasLocution": true,
+ "plural": "elles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "preposition"
+ ],
+ "_id": 7034,
+ "created": "2009-01-13T11:26:59.000Z",
+ "lastUpdated": "2021-07-18T11:12:08.151Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "dans",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "building facility",
+ "appliance"
+ ],
+ "synsets": [
+ "00188343-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "building facility",
+ "object",
+ "appliance"
+ ],
+ "_id": 7035,
+ "created": "2009-01-13T11:28:41.000Z",
+ "lastUpdated": "2021-07-18T11:12:12.543Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "brancher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "01334887-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 7036,
+ "created": "2009-01-13T11:29:42.000Z",
+ "lastUpdated": "2021-07-18T11:12:17.731Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "coller",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "02004900-v",
+ "02005890-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 7037,
+ "created": "2009-01-13T11:31:58.000Z",
+ "lastUpdated": "2021-07-18T11:12:23.028Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "poursuivre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "suivre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "02004900-v",
+ "02005890-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 7038,
+ "created": "2009-01-13T11:33:36.000Z",
+ "lastUpdated": "2021-07-18T11:12:27.980Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "poursuivre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "suivre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "01790725-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 7039,
+ "created": "2009-01-13T11:35:29.000Z",
+ "lastUpdated": "2021-07-18T11:12:44.321Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se facher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "être en colère",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disease",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00087206-v",
+ "02199637-v",
+ "02552072-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "disease",
+ "core vocabulary"
+ ],
+ "_id": 7040,
+ "created": "2009-01-13T11:37:12.000Z",
+ "lastUpdated": "2022-06-28T15:23:13.424Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tomber malade",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "preposition"
+ ],
+ "_id": 7041,
+ "created": "2009-01-14T09:52:29.000Z",
+ "lastUpdated": "2021-07-18T11:13:05.812Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "à",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04601545-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 7042,
+ "created": "2009-01-14T09:55:34.000Z",
+ "lastUpdated": "2021-07-18T11:13:24.936Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bobine de câble",
+ "hasLocution": false,
+ "plural": "bobines de câble"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "câble",
+ "plural": "câbles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "amphibian",
+ "categorization"
+ ],
+ "synsets": [
+ "01630065-n",
+ "02842864-a"
+ ],
+ "tags": [
+ "animal",
+ "vertebrate",
+ "amphibian",
+ "categorization"
+ ],
+ "_id": 7043,
+ "created": "2009-01-14T09:58:45.000Z",
+ "lastUpdated": "2021-05-03T20:36:58.850Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amphibiens",
+ "hasLocution": false,
+ "plural": "amphibiens"
+ },
+ {
+ "type": 2,
+ "keyword": "amphibien",
+ "hasLocution": false,
+ "plural": "amphibiens"
+ },
+ {
+ "keyword": "amphibien",
+ "hasLocution": false,
+ "plural": "amphibiens",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition",
+ "core vocabulary-communication"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "preposition",
+ "core vocabulary"
+ ],
+ "_id": 7044,
+ "created": "2009-01-14T10:01:04.000Z",
+ "lastUpdated": "2021-07-18T11:13:28.429Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "devant",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "human body"
+ ],
+ "synsets": [
+ "05575122-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 7045,
+ "created": "2009-01-14T10:01:51.000Z",
+ "lastUpdated": "2024-12-09T06:34:03.638Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "annulaire",
+ "hasLocution": false,
+ "plural": "annulaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "03525144-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 7046,
+ "created": "2009-01-14T10:02:54.000Z",
+ "lastUpdated": "2021-07-18T11:13:38.476Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "autoroute",
+ "hasLocution": true,
+ "plural": "autoroutes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition",
+ "core vocabulary-communication"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "preposition",
+ "core vocabulary"
+ ],
+ "_id": 7047,
+ "created": "2009-01-14T10:03:47.000Z",
+ "lastUpdated": "2021-07-18T11:13:41.430Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "sous",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity",
+ "christmas"
+ ],
+ "synsets": [
+ "10852504-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 7048,
+ "created": "2009-01-14T10:06:35.000Z",
+ "lastUpdated": "2021-03-26T03:11:29.878Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Balthazar",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "odontology"
+ ],
+ "synsets": [
+ "02102203-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "odontology"
+ ],
+ "_id": 7049,
+ "created": "2009-01-14T10:08:16.000Z",
+ "lastUpdated": "2021-07-18T11:13:53.089Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tomber",
+ "hasLocution": true
+ },
+ {
+ "keyword": "perdre",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03536461-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 7050,
+ "created": "2009-01-14T10:11:08.000Z",
+ "lastUpdated": "2021-05-03T20:33:14.215Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "capuche",
+ "hasLocution": true,
+ "plural": "capuches"
+ },
+ {
+ "type": 2,
+ "keyword": "capuchon",
+ "hasLocution": true,
+ "plural": "capuchons"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "chaperon",
+ "plural": "chaperons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "03645974-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 7051,
+ "created": "2009-01-14T10:12:21.000Z",
+ "lastUpdated": "2021-07-18T11:20:10.681Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voie cyclable",
+ "hasLocution": true,
+ "plural": "voies cyclables"
+ },
+ {
+ "keyword": "piste cyclable",
+ "hasLocution": false,
+ "plural": "pistes cyclables",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7031,
+ "created": "2009-01-13T11:22:49.000Z",
+ "lastUpdated": "2024-10-20T05:26:15.403Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "elles",
+ "hasLocution": true,
+ "plural": "elles"
+ },
+ {
+ "type": 1,
+ "keyword": "leur",
+ "hasLocution": true,
+ "plural": "leur"
+ },
+ {
+ "type": 1,
+ "keyword": "les",
+ "hasLocution": true,
+ "plural": "les"
+ },
+ {
+ "keyword": "elles-mêmes",
+ "hasLocution": false,
+ "type": 1,
+ "plural": "elles-mêmes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7032,
+ "created": "2009-01-13T11:24:00.000Z",
+ "lastUpdated": "2021-05-03T20:43:39.196Z",
+ "keywords": [
+ {
+ "type": 1,
+ "hasLocution": false,
+ "keyword": "ils",
+ "plural": "ils"
+ },
+ {
+ "keyword": "eux",
+ "type": 1,
+ "hasLocution": true,
+ "plural": "eux"
+ },
+ {
+ "keyword": "les",
+ "hasLocution": true,
+ "plural": "les",
+ "type": 1
+ },
+ {
+ "keyword": "eux-mêmes",
+ "hasLocution": false,
+ "plural": "eux-mêmes",
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7033,
+ "created": "2009-01-13T11:24:59.000Z",
+ "lastUpdated": "2024-10-20T05:27:05.560Z",
+ "keywords": [
+ {
+ "type": 1,
+ "hasLocution": false,
+ "keyword": "ils",
+ "plural": "ils"
+ },
+ {
+ "type": 1,
+ "hasLocution": true,
+ "keyword": "elles",
+ "plural": "elles"
+ },
+ {
+ "type": 1,
+ "keyword": "les",
+ "hasLocution": true,
+ "plural": "les"
+ },
+ {
+ "keyword": "eux",
+ "type": 1,
+ "hasLocution": true,
+ "plural": "eux"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "eux-mêmes",
+ "type": 2,
+ "plural": "eux-mêmes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04386330-n",
+ "03067971-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 7052,
+ "created": "2009-01-14T10:13:38.000Z",
+ "lastUpdated": "2021-05-03T20:31:18.774Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "table roulante",
+ "hasLocution": true,
+ "plural": "tables roulantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "professional"
+ ],
+ "synsets": [
+ "02903988-n",
+ "03992713-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "work",
+ "professional"
+ ],
+ "_id": 7053,
+ "created": "2009-01-14T10:16:13.000Z",
+ "lastUpdated": "2024-12-06T06:22:33.056Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "attaché-case",
+ "hasLocution": true,
+ "plural": "attaché-cases"
+ },
+ {
+ "type": 2,
+ "keyword": "porte-documents",
+ "hasLocution": true,
+ "plural": "porte-documents"
+ },
+ {
+ "keyword": "serviette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "serviettes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "derived material",
+ "core vocabulary-object",
+ "container"
+ ],
+ "synsets": [
+ "02886585-n",
+ "14823771-n"
+ ],
+ "tags": [
+ "material",
+ "derived material",
+ "object",
+ "core vocabulary",
+ "container"
+ ],
+ "_id": 7054,
+ "created": "2009-01-14T10:19:10.000Z",
+ "lastUpdated": "2021-12-02T08:56:24.417Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carton",
+ "hasLocution": true,
+ "plural": "cartons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "river animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02365657-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "wild"
+ ],
+ "_id": 7055,
+ "created": "2009-01-14T10:20:29.000Z",
+ "lastUpdated": "2021-05-03T20:30:14.907Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "castor",
+ "hasLocution": true,
+ "plural": "castors"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01349660-v",
+ "01347791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 7056,
+ "created": "2009-01-14T10:22:04.000Z",
+ "lastUpdated": "2021-07-18T11:15:14.457Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fermer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pet"
+ ],
+ "synsets": [
+ "07816067-n"
+ ],
+ "tags": [
+ "animal",
+ "pet"
+ ],
+ "_id": 7060,
+ "created": "2009-01-14T10:25:27.000Z",
+ "lastUpdated": "2021-07-18T11:15:24.327Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nourriture",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "nourriture pour poissons ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "06348677-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary"
+ ],
+ "_id": 7061,
+ "created": "2009-01-14T10:27:02.000Z",
+ "lastUpdated": "2021-07-18T11:15:36.403Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "comment t'appelles-tu ?",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "prénom",
+ "hasLocution": true,
+ "plural": "prénoms"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "students"
+ ],
+ "synsets": [
+ "10579534-n"
+ ],
+ "tags": [
+ "education",
+ "students"
+ ],
+ "_id": 7062,
+ "created": "2009-01-14T10:30:12.000Z",
+ "lastUpdated": "2021-07-18T11:15:55.139Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "compagnons",
+ "hasLocution": true
+ },
+ {
+ "keyword": "camarades",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "students"
+ ],
+ "synsets": [
+ "10579534-n"
+ ],
+ "tags": [
+ "education",
+ "students"
+ ],
+ "_id": 7063,
+ "created": "2009-01-14T10:30:48.000Z",
+ "lastUpdated": "2021-07-18T11:20:14.276Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "compagnons",
+ "hasLocution": true
+ },
+ {
+ "keyword": "camarades",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition",
+ "core vocabulary-communication"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "preposition",
+ "core vocabulary"
+ ],
+ "_id": 7064,
+ "created": "2009-01-14T10:32:41.000Z",
+ "lastUpdated": "2021-07-18T11:16:11.143Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "avec",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pollution"
+ ],
+ "synsets": [
+ "00277831-n",
+ "14540345-n",
+ "00493642-v"
+ ],
+ "tags": [
+ "environmental science",
+ "pollution"
+ ],
+ "_id": 7065,
+ "created": "2009-01-14T10:34:23.000Z",
+ "lastUpdated": "2021-07-18T11:16:39.268Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pollution",
+ "hasLocution": true,
+ "plural": "pollutions"
+ },
+ {
+ "type": 3,
+ "keyword": "contaminer ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "polluer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "contamination",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "contaminations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pollution"
+ ],
+ "synsets": [
+ "00277831-n",
+ "14540345-n",
+ "00493642-v"
+ ],
+ "tags": [
+ "environmental science",
+ "pollution"
+ ],
+ "_id": 7066,
+ "created": "2009-01-14T10:35:32.000Z",
+ "lastUpdated": "2021-07-18T11:17:12.204Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pollution",
+ "hasLocution": true,
+ "plural": "pollutions"
+ },
+ {
+ "type": 3,
+ "keyword": "contaminer ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "contamination",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "contaminations"
+ },
+ {
+ "keyword": "polluer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "preposition"
+ ],
+ "_id": 7067,
+ "created": "2009-01-14T10:36:18.000Z",
+ "lastUpdated": "2021-07-18T11:17:15.594Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "contre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "01331921-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 7068,
+ "created": "2009-01-14T10:37:46.000Z",
+ "lastUpdated": "2021-07-18T11:17:26.095Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "coudre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "coudre à la machine",
+ "hasLocution": true
+ },
+ {
+ "keyword": "piquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "01794896-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 7069,
+ "created": "2009-01-14T10:40:18.000Z",
+ "lastUpdated": "2021-07-18T11:17:35.548Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crête",
+ "hasLocution": true,
+ "plural": "crêtes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "pattern",
+ "core vocabulary-communication",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "02051149-s",
+ "03183448-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "pattern",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 7070,
+ "created": "2009-01-14T10:41:38.000Z",
+ "lastUpdated": "2021-07-18T11:17:39.579Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "quadrillé",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "trade",
+ "money",
+ "core vocabulary-communication",
+ "core vocabulary-work",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "05148930-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "work",
+ "tertiary sector",
+ "trade",
+ "economy",
+ "money",
+ "core vocabulary"
+ ],
+ "_id": 7071,
+ "created": "2009-01-14T10:43:05.000Z",
+ "lastUpdated": "2021-07-18T11:17:50.984Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "combien ça coute ?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "15170131-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 7072,
+ "created": "2009-01-14T10:44:58.000Z",
+ "lastUpdated": "2021-07-18T11:18:10.359Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "âge",
+ "hasLocution": true,
+ "plural": "âges"
+ },
+ {
+ "type": 2,
+ "keyword": "âge",
+ "hasLocution": true,
+ "plural": "âges"
+ },
+ {
+ "type": 5,
+ "keyword": "quel âge as-tu ?",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "mathematics"
+ ],
+ "synsets": [
+ "00033914-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "mathematics"
+ ],
+ "_id": 7073,
+ "created": "2009-01-14T10:45:55.000Z",
+ "lastUpdated": "2021-07-18T11:18:31.813Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "combien y en a-t-il ?",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "quantité",
+ "hasLocution": true,
+ "plural": "quantités"
+ },
+ {
+ "type": 6,
+ "keyword": "combien",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "preposition"
+ ],
+ "_id": 7074,
+ "created": "2009-01-14T10:47:26.000Z",
+ "lastUpdated": "2021-07-18T11:18:43.333Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "de",
+ "hasLocution": true
+ },
+ {
+ "keyword": "par",
+ "type": 6,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04963771-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "color",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 7075,
+ "created": "2009-01-14T10:48:30.000Z",
+ "lastUpdated": "2021-07-18T11:18:52.788Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couleur",
+ "hasLocution": true,
+ "plural": "couleurs"
+ },
+ {
+ "type": 5,
+ "keyword": "de quelle couleur est-il ?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "00136799-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 7076,
+ "created": "2009-01-14T10:49:48.000Z",
+ "lastUpdated": "2021-07-18T11:20:20.358Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "laisse-moi seul",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "laisse-moi tranquille",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "preposition"
+ ],
+ "_id": 7077,
+ "created": "2009-01-14T10:50:45.000Z",
+ "lastUpdated": "2021-07-18T11:20:26.067Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "depuis",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pet"
+ ],
+ "synsets": [
+ "07821942-n"
+ ],
+ "tags": [
+ "animal",
+ "pet"
+ ],
+ "_id": 7057,
+ "created": "2009-01-14T10:22:58.000Z",
+ "lastUpdated": "2021-05-03T20:29:45.831Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nourriture pour chiens",
+ "hasLocution": true,
+ "plural": "nourritures pour chiens"
+ },
+ {
+ "keyword": "aliments pour chiens",
+ "hasLocution": false,
+ "plural": "aliments pour chiens",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pet"
+ ],
+ "synsets": [
+ "07822019-n"
+ ],
+ "tags": [
+ "animal",
+ "pet"
+ ],
+ "_id": 7058,
+ "created": "2009-01-14T10:24:07.000Z",
+ "lastUpdated": "2021-05-03T20:27:18.025Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nourriture pour chats",
+ "hasLocution": true,
+ "plural": "nourritures pour chats"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pet"
+ ],
+ "synsets": [
+ "07821570-n"
+ ],
+ "tags": [
+ "animal",
+ "pet"
+ ],
+ "_id": 7059,
+ "created": "2009-01-14T10:24:45.000Z",
+ "lastUpdated": "2021-07-18T11:15:16.202Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nourriture",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "nourriture pour oiseaux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal",
+ "traffic"
+ ],
+ "synsets": [
+ "06807231-n",
+ "08697710-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 7078,
+ "created": "2009-01-14T10:52:08.000Z",
+ "lastUpdated": "2024-12-09T18:25:38.126Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "direction",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "08697710-n",
+ "07211342-n",
+ "01839438-v",
+ "01935739-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 7079,
+ "created": "2009-01-14T10:57:32.000Z",
+ "lastUpdated": "2021-07-18T11:21:45.543Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "où allons-nous ?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "où va-t-il ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "où va-t-elle ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "où allez vous ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "où vont-ils ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02439943-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic"
+ ],
+ "_id": 7080,
+ "created": "2009-01-14T10:58:27.000Z",
+ "lastUpdated": "2021-07-18T11:21:57.490Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dromadaire",
+ "hasLocution": true,
+ "plural": "dromadaires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition"
+ ],
+ "synsets": [
+ "15271164-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "preposition"
+ ],
+ "_id": 7081,
+ "created": "2009-01-14T10:59:43.000Z",
+ "lastUpdated": "2021-07-18T11:22:19.388Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "pendant",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "entretemps",
+ "hasLocution": true
+ },
+ {
+ "keyword": "aussi longtemps que",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "unhealthy habit",
+ "dietetics"
+ ],
+ "synsets": [
+ "00045868-v",
+ "00046099-v",
+ "01197471-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "dietetics"
+ ],
+ "_id": 7082,
+ "created": "2009-01-14T11:13:54.000Z",
+ "lastUpdated": "2021-07-18T11:22:36.957Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "grossir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prendre du poids",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "01365271-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 7086,
+ "created": "2009-01-14T11:19:35.000Z",
+ "lastUpdated": "2021-07-18T11:22:59.909Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "plâtrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon",
+ "hunting"
+ ],
+ "synsets": [
+ "04213423-n",
+ "04097375-n"
+ ],
+ "tags": [
+ "object",
+ "weapon",
+ "work",
+ "primary sector",
+ "hunting"
+ ],
+ "_id": 7087,
+ "created": "2009-01-14T11:22:18.000Z",
+ "lastUpdated": "2021-07-18T11:23:27.191Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fusil",
+ "hasLocution": true,
+ "plural": "fusils"
+ },
+ {
+ "type": 2,
+ "keyword": "carabine",
+ "hasLocution": true,
+ "plural": "carabines"
+ },
+ {
+ "type": 2,
+ "keyword": "arme",
+ "hasLocution": true,
+ "plural": "armes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "04298380-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 7088,
+ "created": "2009-01-14T11:23:20.000Z",
+ "lastUpdated": "2021-07-18T12:13:03.827Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "équerre",
+ "hasLocution": true,
+ "plural": "équerres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon",
+ "middle ages",
+ "war"
+ ],
+ "synsets": [
+ "04199741-n"
+ ],
+ "tags": [
+ "object",
+ "weapon",
+ "history",
+ "middle ages",
+ "event",
+ "war"
+ ],
+ "_id": 7089,
+ "created": "2009-01-14T11:27:08.000Z",
+ "lastUpdated": "2021-07-18T11:23:59.180Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouclier",
+ "hasLocution": true,
+ "plural": "boucliers"
+ },
+ {
+ "keyword": "écu",
+ "hasLocution": false,
+ "plural": "écus",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00101710-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 7090,
+ "created": "2009-01-14T11:28:01.000Z",
+ "lastUpdated": "2021-07-18T11:24:02.873Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "cracher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "demonstrative adjective",
+ "demonstrative pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "demonstrative adjective",
+ "pronoun",
+ "demonstrative pronoun"
+ ],
+ "_id": 7091,
+ "created": "2009-01-14T11:29:07.000Z",
+ "lastUpdated": "2024-10-12T15:16:39.081Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "cela",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "celui-ci",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "celle-là",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "demonstrative adjective",
+ "demonstrative pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "demonstrative adjective",
+ "pronoun",
+ "demonstrative pronoun"
+ ],
+ "_id": 7092,
+ "created": "2009-01-14T11:30:23.000Z",
+ "lastUpdated": "2024-10-12T15:16:51.040Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "ces",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "celles-là",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon"
+ ],
+ "synsets": [
+ "04380981-n"
+ ],
+ "tags": [
+ "object",
+ "weapon"
+ ],
+ "_id": 7093,
+ "created": "2009-01-14T11:32:21.000Z",
+ "lastUpdated": "2021-07-18T11:24:17.019Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "épée",
+ "hasLocution": true,
+ "plural": "épées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "construction"
+ ],
+ "synsets": [
+ "04277054-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 7094,
+ "created": "2009-01-14T11:33:40.000Z",
+ "lastUpdated": "2021-07-18T12:13:07.026Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "spatule",
+ "hasLocution": true,
+ "plural": "spatules"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "demonstrative adjective",
+ "demonstrative pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "demonstrative adjective",
+ "pronoun",
+ "demonstrative pronoun"
+ ],
+ "_id": 7095,
+ "created": "2009-01-14T13:25:04.000Z",
+ "lastUpdated": "2024-10-12T15:17:21.476Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "celui-ci",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "celle-ci",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "ceci",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "demonstrative adjective",
+ "demonstrative pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "demonstrative adjective",
+ "pronoun",
+ "demonstrative pronoun"
+ ],
+ "_id": 7096,
+ "created": "2009-01-14T13:25:49.000Z",
+ "lastUpdated": "2024-10-12T15:17:07.782Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ceux-ci",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "celles-ci",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14394566-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 7097,
+ "created": "2009-01-14T13:27:34.000Z",
+ "lastUpdated": "2021-07-18T12:13:45.305Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "constipation",
+ "hasLocution": true,
+ "plural": "constipations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product",
+ "household"
+ ],
+ "synsets": [
+ "04157218-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product",
+ "household",
+ "home"
+ ],
+ "_id": 7098,
+ "created": "2009-01-14T13:28:45.000Z",
+ "lastUpdated": "2024-12-06T06:53:23.307Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éponge",
+ "hasLocution": true,
+ "plural": "éponges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "birthday",
+ "christmas",
+ "popular event",
+ "social event"
+ ],
+ "synsets": [
+ "07462241-n",
+ "00428985-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "birthday",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 7099,
+ "created": "2009-01-14T13:48:02.000Z",
+ "lastUpdated": "2024-12-11T06:51:54.065Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fête",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "célébration ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "work tool"
+ ],
+ "synsets": [
+ "03499012-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tool"
+ ],
+ "_id": 7100,
+ "created": "2009-01-14T13:52:14.000Z",
+ "lastUpdated": "2021-07-18T11:25:12.668Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quincaillerie",
+ "hasLocution": true,
+ "plural": "quincailleries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "work tool",
+ "signaling system"
+ ],
+ "synsets": [
+ "03499012-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tool",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 7101,
+ "created": "2009-01-14T13:56:42.000Z",
+ "lastUpdated": "2021-07-18T11:25:21.236Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quincaillerie",
+ "hasLocution": true,
+ "plural": "quincailleries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "basic concepts"
+ ],
+ "synsets": [
+ "08447160-n"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 7102,
+ "created": "2009-01-14T13:58:29.000Z",
+ "lastUpdated": "2021-07-18T11:25:44.524Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rangée",
+ "hasLocution": true,
+ "plural": "rangées"
+ },
+ {
+ "keyword": "rang",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "rangs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "light fixture"
+ ],
+ "synsets": [
+ "03641940-n",
+ "03641539-n",
+ "04065093-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 7103,
+ "created": "2009-01-14T13:59:34.000Z",
+ "lastUpdated": "2021-07-18T11:26:13.006Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lampe d'architecte",
+ "hasLocution": true,
+ "plural": "lampes d'architecte"
+ },
+ {
+ "keyword": "lampe de bureau",
+ "hasLocution": false,
+ "plural": "lampes de bureau"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media"
+ ],
+ "synsets": [
+ "00810517-v",
+ "07210735-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mass media"
+ ],
+ "_id": 7083,
+ "created": "2009-01-14T11:16:00.000Z",
+ "lastUpdated": "2021-07-18T12:13:00.901Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "interviewer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01285811-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 7084,
+ "created": "2009-01-14T11:17:02.000Z",
+ "lastUpdated": "2021-07-18T11:22:52.914Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "emballer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "01905518-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 7085,
+ "created": "2009-01-14T11:18:07.000Z",
+ "lastUpdated": "2021-07-18T11:22:56.425Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écailles",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "plant anatomy",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "11689786-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "plant anatomy",
+ "anatomy",
+ "core vocabulary"
+ ],
+ "_id": 7104,
+ "created": "2009-01-14T14:00:45.000Z",
+ "lastUpdated": "2021-07-18T11:26:19.763Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fleur",
+ "hasLocution": true,
+ "plural": "fleurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "spring"
+ ],
+ "synsets": [
+ "11689786-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "spring"
+ ],
+ "_id": 7105,
+ "created": "2009-01-14T14:01:32.000Z",
+ "lastUpdated": "2021-03-26T02:55:31.033Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fleurs",
+ "hasLocution": true,
+ "plural": "fleurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "light fixture"
+ ],
+ "synsets": [
+ "03375233-n",
+ "04346957-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 7106,
+ "created": "2009-01-14T14:02:49.000Z",
+ "lastUpdated": "2021-07-18T11:26:34.780Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "néon",
+ "hasLocution": false,
+ "plural": "néons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "photography",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "03931348-n"
+ ],
+ "tags": [
+ "visual art",
+ "photography",
+ "core vocabulary"
+ ],
+ "_id": 7107,
+ "created": "2009-01-14T14:05:13.000Z",
+ "lastUpdated": "2021-07-18T11:26:50.418Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "photo",
+ "hasLocution": true,
+ "plural": "photos"
+ },
+ {
+ "type": 2,
+ "keyword": "photographie",
+ "hasLocution": true,
+ "plural": "photographies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "photography",
+ "verb"
+ ],
+ "synsets": [
+ "01005294-v",
+ "02740528-v"
+ ],
+ "tags": [
+ "visual art",
+ "photography",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 7108,
+ "created": "2009-01-15T10:11:51.000Z",
+ "lastUpdated": "2021-07-18T11:26:54.287Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "photographier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "02131565-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 7113,
+ "created": "2009-01-15T10:46:04.000Z",
+ "lastUpdated": "2021-07-18T11:27:34.414Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "traiter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "pet",
+ "domestic animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02124272-n",
+ "02124950-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "pet",
+ "domestic",
+ "core vocabulary"
+ ],
+ "_id": 7114,
+ "created": "2009-01-15T10:48:30.000Z",
+ "lastUpdated": "2021-07-18T11:27:49.413Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chat",
+ "hasLocution": true,
+ "plural": "chats"
+ },
+ {
+ "type": 2,
+ "keyword": "minet",
+ "hasLocution": true,
+ "plural": "minets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "child"
+ ],
+ "synsets": [
+ "10754051-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "child"
+ ],
+ "_id": 7115,
+ "created": "2009-01-15T10:52:05.000Z",
+ "lastUpdated": "2021-07-18T11:27:53.339Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "jumeaux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "00031563-n",
+ "08456947-n",
+ "07958392-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 7116,
+ "created": "2009-01-15T10:53:33.000Z",
+ "lastUpdated": "2021-07-18T11:28:04.842Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gens",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "personnes",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "groupe",
+ "hasLocution": true,
+ "plural": "groupes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "00031563-n",
+ "08456947-n",
+ "07958392-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 7117,
+ "created": "2009-01-15T10:54:14.000Z",
+ "lastUpdated": "2021-07-18T11:28:09.789Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gens",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "personnes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sweets"
+ ],
+ "synsets": [
+ "07622278-n",
+ "07621553-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 7118,
+ "created": "2009-01-15T10:55:20.000Z",
+ "lastUpdated": "2021-07-18T11:28:21.348Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bonbons",
+ "hasLocution": true
+ },
+ {
+ "keyword": "gommes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01054970-v",
+ "01055211-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 7119,
+ "created": "2009-01-15T10:56:22.000Z",
+ "lastUpdated": "2021-07-18T11:28:27.748Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "croasser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00915018-v",
+ "01050811-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 7120,
+ "created": "2009-01-15T10:59:37.000Z",
+ "lastUpdated": "2021-07-18T11:28:37.549Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "crier",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "vociférer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "hurler",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01047591-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 7121,
+ "created": "2009-01-15T11:00:41.000Z",
+ "lastUpdated": "2021-07-18T11:28:43.556Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "grogner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "workwear"
+ ],
+ "synsets": [
+ "03446036-n"
+ ],
+ "tags": [
+ "work",
+ "clothes",
+ "workwear"
+ ],
+ "_id": 7122,
+ "created": "2009-01-15T11:02:06.000Z",
+ "lastUpdated": "2021-07-18T11:28:47.153Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gants",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03446036-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 7123,
+ "created": "2009-01-15T11:03:15.000Z",
+ "lastUpdated": "2021-07-18T12:13:52.579Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gants",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "senses",
+ "food",
+ "core vocabulary-communication",
+ "feeding"
+ ],
+ "synsets": [
+ "02195992-v",
+ "01781131-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses",
+ "feeding",
+ "food",
+ "core vocabulary"
+ ],
+ "_id": 7124,
+ "created": "2009-01-15T11:04:44.000Z",
+ "lastUpdated": "2025-01-09T11:22:02.329Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aimer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "preposition"
+ ],
+ "_id": 7125,
+ "created": "2009-01-15T11:06:00.000Z",
+ "lastUpdated": "2021-07-18T11:29:02.554Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "vers",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "03517291-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport",
+ "core vocabulary"
+ ],
+ "_id": 7126,
+ "created": "2009-01-15T11:07:46.000Z",
+ "lastUpdated": "2021-07-18T11:29:14.940Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hélicoptère",
+ "hasLocution": true,
+ "plural": "hélicoptères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "categorization"
+ ],
+ "synsets": [
+ "04459089-n",
+ "03569147-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "categorization"
+ ],
+ "_id": 7127,
+ "created": "2009-01-15T11:09:00.000Z",
+ "lastUpdated": "2021-07-18T11:29:41.968Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "outil",
+ "hasLocution": true,
+ "plural": "outils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "derived material"
+ ],
+ "synsets": [
+ "03562321-n"
+ ],
+ "tags": [
+ "material",
+ "derived material"
+ ],
+ "_id": 7128,
+ "created": "2009-01-15T11:10:53.000Z",
+ "lastUpdated": "2021-07-18T11:29:52.374Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "glace",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "glaçon",
+ "hasLocution": true,
+ "plural": "glaçons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "unit of time",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15252642-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "core vocabulary"
+ ],
+ "_id": 7129,
+ "created": "2009-01-15T11:13:26.000Z",
+ "lastUpdated": "2021-08-02T21:58:11.967Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "heure",
+ "hasLocution": true,
+ "plural": "heures"
+ },
+ {
+ "keyword": "60 minutes",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "h",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "60 mn",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07723196-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 7130,
+ "created": "2009-01-15T11:14:42.000Z",
+ "lastUpdated": "2021-07-18T12:13:55.446Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "légume",
+ "hasLocution": true,
+ "plural": "légumes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body sensation"
+ ],
+ "synsets": [
+ "00014194-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 7109,
+ "created": "2009-01-15T10:13:00.000Z",
+ "lastUpdated": "2021-07-18T11:27:14.750Z",
+ "keywords": [
+ {
+ "keyword": "trembler",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "frissonner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "smoking"
+ ],
+ "synsets": [
+ "01200739-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "smoking"
+ ],
+ "_id": 7111,
+ "created": "2009-01-15T10:43:27.000Z",
+ "lastUpdated": "2021-07-18T11:27:21.793Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fumer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "smoking"
+ ],
+ "synsets": [
+ "01200739-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "smoking"
+ ],
+ "_id": 7112,
+ "created": "2009-01-15T10:44:21.000Z",
+ "lastUpdated": "2021-07-18T12:13:49.127Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fumer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb",
+ "adverb of time",
+ "basic concepts",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "00208693-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary",
+ "education"
+ ],
+ "_id": 7131,
+ "created": "2009-01-15T11:16:04.000Z",
+ "lastUpdated": "2024-10-13T05:38:39.394Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "aujourd'hui",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07857471-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 7132,
+ "created": "2009-01-15T11:19:47.000Z",
+ "lastUpdated": "2021-03-26T14:57:42.506Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oeuf dur",
+ "hasLocution": false,
+ "plural": "oeuf durs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "water transport",
+ "traffic accident"
+ ],
+ "synsets": [
+ "01993887-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "traffic accident"
+ ],
+ "_id": 7133,
+ "created": "2009-01-15T11:25:39.000Z",
+ "lastUpdated": "2021-07-18T11:30:51.158Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire naufrage ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "insect",
+ "categorization"
+ ],
+ "synsets": [
+ "02162607-n"
+ ],
+ "tags": [
+ "animal",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "categorization"
+ ],
+ "_id": 7134,
+ "created": "2009-01-15T11:30:23.000Z",
+ "lastUpdated": "2021-07-18T12:13:58.454Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "insecte",
+ "hasLocution": true,
+ "plural": "insectes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "03462844-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 7135,
+ "created": "2009-01-15T11:32:19.000Z",
+ "lastUpdated": "2021-07-18T11:31:19.943Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "serre",
+ "hasLocution": true,
+ "plural": "serres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01049617-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 7139,
+ "created": "2009-01-15T12:31:49.000Z",
+ "lastUpdated": "2021-07-18T11:31:58.796Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aboyer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas"
+ ],
+ "synsets": [
+ "10788856-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 7140,
+ "created": "2009-01-15T12:33:24.000Z",
+ "lastUpdated": "2021-07-18T11:32:10.465Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blanchisseuse",
+ "hasLocution": true,
+ "plural": "blanchisseuses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "educational task",
+ "literature",
+ "core vocabulary-communication",
+ "core vocabulary-education",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00628065-v",
+ "00626756-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "education",
+ "educational task",
+ "literature",
+ "core vocabulary"
+ ],
+ "_id": 7141,
+ "created": "2009-01-15T12:34:22.000Z",
+ "lastUpdated": "2021-07-18T11:32:19.069Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Reconnaître les signes graphiques d'une langue, former mentalement ou à voix haute les sons que ces signes ou leurs combinaisons représentent et leur associer un sens",
+ "keyword": "lire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "06427062-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 7142,
+ "created": "2009-01-15T12:35:22.000Z",
+ "lastUpdated": "2021-07-18T11:32:30.241Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carnet",
+ "hasLocution": false,
+ "plural": "carnets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product",
+ "crockery",
+ "cutlery"
+ ],
+ "synsets": [
+ "03212783-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product",
+ "household",
+ "crockery",
+ "home",
+ "cutlery"
+ ],
+ "_id": 7143,
+ "created": "2009-01-15T12:37:01.000Z",
+ "lastUpdated": "2024-12-12T15:32:36.474Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lave-vaisselle",
+ "hasLocution": true
+ },
+ {
+ "keyword": "liquide vaisselle",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cookery",
+ "document",
+ "food"
+ ],
+ "synsets": [
+ "06507507-n",
+ "06503362-n"
+ ],
+ "tags": [
+ "feeding",
+ "cookery",
+ "document",
+ "food"
+ ],
+ "_id": 7144,
+ "created": "2009-01-15T12:40:11.000Z",
+ "lastUpdated": "2024-12-12T15:36:07.917Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "liste",
+ "hasLocution": true,
+ "plural": "listes"
+ },
+ {
+ "type": 2,
+ "keyword": "liste des courses",
+ "hasLocution": true,
+ "plural": "listes des courses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "measurement unit"
+ ],
+ "synsets": [
+ "13645547-n"
+ ],
+ "tags": [
+ "mathematics",
+ "measurement unit"
+ ],
+ "_id": 7145,
+ "created": "2009-01-15T12:42:50.000Z",
+ "lastUpdated": "2021-07-18T12:14:02.424Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "litre",
+ "hasLocution": true,
+ "plural": "litres"
+ },
+ {
+ "keyword": "l",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage"
+ ],
+ "synsets": [
+ "00453467-v",
+ "02655144-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 7146,
+ "created": "2009-01-15T12:44:14.000Z",
+ "lastUpdated": "2021-07-18T11:33:30.419Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "remplir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00065962-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response",
+ "core vocabulary"
+ ],
+ "_id": 7147,
+ "created": "2009-01-15T12:45:01.000Z",
+ "lastUpdated": "2021-07-18T11:33:35.794Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Laisser des larmes s'échapper, en parlant des yeux ; avoir des larmes qui s'échappent des yeux",
+ "keyword": "pleurer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "atmospheric phenomena",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02762516-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "meteorology",
+ "atmospheric phenomena",
+ "core vocabulary"
+ ],
+ "_id": 7148,
+ "created": "2009-01-15T12:45:53.000Z",
+ "lastUpdated": "2021-07-18T11:33:39.514Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": " intr. impers. Tomber en abondance, s'abattre : Il pleut de grosses gouttes. Les coups pleuvaient.",
+ "keyword": "pleuvoir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "09497895-n",
+ "08608955-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 7149,
+ "created": "2009-01-15T12:51:11.000Z",
+ "lastUpdated": "2021-04-27T09:08:31.401Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tanière",
+ "hasLocution": true,
+ "plural": "Tanières"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "Terrier",
+ "plural": "Terriers"
+ },
+ {
+ "keyword": "Repaire",
+ "type": 2,
+ "plural": "Repaires",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable",
+ "agriculture",
+ "cereal"
+ ],
+ "synsets": [
+ "12164193-n",
+ "08561700-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable",
+ "work",
+ "primary sector",
+ "agriculture",
+ "cereal"
+ ],
+ "_id": 7150,
+ "created": "2009-01-15T12:52:36.000Z",
+ "lastUpdated": "2024-12-11T06:42:30.390Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "épi de maïs",
+ "hasLocution": true,
+ "plural": "épis de maïs"
+ },
+ {
+ "type": 2,
+ "keyword": "épi",
+ "hasLocution": true,
+ "plural": "épis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "football"
+ ],
+ "synsets": [
+ "00479273-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "football"
+ ],
+ "_id": 7137,
+ "created": "2009-01-15T11:35:09.000Z",
+ "lastUpdated": "2021-07-18T11:31:31.422Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "football",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of time",
+ "basic concepts",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00481406-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 7152,
+ "created": "2009-01-15T12:58:23.000Z",
+ "lastUpdated": "2022-03-30T11:17:33.914Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "demain",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "plant physiology"
+ ],
+ "synsets": [
+ "00242575-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "plant",
+ "plant physiology"
+ ],
+ "_id": 7153,
+ "created": "2009-01-15T13:01:03.000Z",
+ "lastUpdated": "2021-07-18T11:34:24.835Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sécher",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "movie character",
+ "tale character"
+ ],
+ "synsets": [
+ "09512920-n",
+ "09507595-n"
+ ],
+ "tags": [
+ "character",
+ "movie character",
+ "cinema",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 7154,
+ "created": "2009-01-15T13:04:11.000Z",
+ "lastUpdated": "2021-07-18T11:34:38.517Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "martien",
+ "hasLocution": true,
+ "plural": "martiens"
+ },
+ {
+ "type": 2,
+ "keyword": "extraterrestre",
+ "hasLocution": true,
+ "plural": "extraterrestres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "measurement unit"
+ ],
+ "synsets": [
+ "13746692-n"
+ ],
+ "tags": [
+ "mathematics",
+ "measurement unit"
+ ],
+ "_id": 7138,
+ "created": "2009-01-15T12:30:45.000Z",
+ "lastUpdated": "2021-07-18T11:31:53.037Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kilogramme",
+ "hasLocution": true,
+ "plural": "kilogrammes"
+ },
+ {
+ "keyword": "kg",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "02940098-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 7136,
+ "created": "2009-01-15T11:33:45.000Z",
+ "lastUpdated": "2021-07-18T11:31:27.585Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cage",
+ "hasLocution": true,
+ "plural": "cages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "04702524-n",
+ "14521680-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 7151,
+ "created": "2009-01-15T12:54:38.000Z",
+ "lastUpdated": "2021-07-18T11:34:11.613Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tache",
+ "hasLocution": false,
+ "plural": "taches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "00943751-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 7156,
+ "created": "2009-01-15T13:06:11.000Z",
+ "lastUpdated": "2021-07-18T12:11:31.076Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "miauler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features"
+ ],
+ "synsets": [
+ "02437422-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features"
+ ],
+ "_id": 7159,
+ "created": "2009-01-15T13:11:13.000Z",
+ "lastUpdated": "2021-07-18T11:36:17.658Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "chevelu",
+ "hasLocution": true
+ },
+ {
+ "keyword": "poilu",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "hirsute",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01159300-v",
+ "01175702-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 7160,
+ "created": "2009-01-15T13:14:40.000Z",
+ "lastUpdated": "2021-07-18T11:36:37.292Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "gouter",
+ "hasLocution": false,
+ "plural": "gouters"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month"
+ ],
+ "synsets": [
+ "15234209-n",
+ "15231092-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month"
+ ],
+ "_id": 7161,
+ "created": "2009-01-15T13:16:22.000Z",
+ "lastUpdated": "2021-08-21T10:36:41.614Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mois",
+ "hasLocution": true,
+ "plural": "mois"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "00395719-v",
+ "01421321-v",
+ "01898313-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 7162,
+ "created": "2009-01-15T13:17:52.000Z",
+ "lastUpdated": "2021-07-18T11:36:51.045Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mélanger",
+ "hasLocution": true
+ },
+ {
+ "keyword": "remuer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom",
+ "body sensation"
+ ],
+ "synsets": [
+ "00533408-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 7155,
+ "created": "2009-01-15T13:05:21.000Z",
+ "lastUpdated": "2021-07-18T11:34:51.875Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire tourner la tête",
+ "hasLocution": true
+ },
+ {
+ "keyword": "étourdir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "body sensation"
+ ],
+ "synsets": [
+ "01926330-a",
+ "00090253-s",
+ "00521099-v",
+ "01791774-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 7157,
+ "created": "2009-01-15T13:07:52.000Z",
+ "lastUpdated": "2021-07-18T11:35:36.072Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "bruyant",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "le bruit me dérange",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "déranger",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "dérangeant",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nuisance sonore",
+ "hasLocution": false,
+ "plural": "nuisances sonores",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01448551-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 7165,
+ "created": "2009-01-15T13:22:22.000Z",
+ "lastUpdated": "2021-07-18T11:37:23.477Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mordre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "road safety",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "03796045-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety",
+ "core vocabulary"
+ ],
+ "_id": 7166,
+ "created": "2009-01-15T13:23:43.000Z",
+ "lastUpdated": "2022-04-22T07:11:17.134Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "motocyclette",
+ "hasLocution": true,
+ "plural": "motocyclettes"
+ },
+ {
+ "type": 2,
+ "keyword": "moto",
+ "hasLocution": true,
+ "plural": "motos"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare",
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "03079772-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare",
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 7164,
+ "created": "2009-01-15T13:21:00.000Z",
+ "lastUpdated": "2021-09-14T10:38:51.043Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "anneau dentaire",
+ "hasLocution": true,
+ "plural": "anneaux dentaire"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01835473-v",
+ "01854282-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 7167,
+ "created": "2009-01-15T13:24:42.000Z",
+ "lastUpdated": "2021-07-18T11:37:48.443Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "déplacer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01056890-v",
+ "01050590-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 7169,
+ "created": "2009-01-15T13:35:04.000Z",
+ "lastUpdated": "2021-07-18T11:38:02.006Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mugir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "traditional game",
+ "card game",
+ "board game"
+ ],
+ "synsets": [
+ "00458406-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "leisure",
+ "sport",
+ "traditional game",
+ "game",
+ "card game",
+ "board game"
+ ],
+ "_id": 7158,
+ "created": "2009-01-15T13:08:59.000Z",
+ "lastUpdated": "2021-07-18T11:35:46.532Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "mon tour",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "c'est mon tour",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "tour",
+ "hasLocution": true,
+ "plural": "tours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "water transport"
+ ],
+ "synsets": [
+ "01949375-v",
+ "01850262-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 7170,
+ "created": "2009-01-15T13:41:00.000Z",
+ "lastUpdated": "2021-07-18T12:11:37.677Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "naviguer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02553283-v",
+ "00081834-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary"
+ ],
+ "_id": 7171,
+ "created": "2009-01-15T13:48:32.000Z",
+ "lastUpdated": "2021-07-11T09:26:59.970Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "j'ai besoin d'aide",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "09915013-n",
+ "09835195-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 7163,
+ "created": "2009-01-15T13:19:10.000Z",
+ "lastUpdated": "2024-03-01T10:11:23.591Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moniteur",
+ "hasLocution": true,
+ "plural": "moniteurs"
+ },
+ {
+ "type": 2,
+ "keyword": "soigneur",
+ "hasLocution": true,
+ "plural": "soigneur"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "atmospheric phenomena",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02764935-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "meteorology",
+ "atmospheric phenomena",
+ "core vocabulary"
+ ],
+ "_id": 7172,
+ "created": "2009-01-16T10:06:02.000Z",
+ "lastUpdated": "2022-02-03T15:22:43.074Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "neiger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "09392066-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 7173,
+ "created": "2009-01-16T10:07:08.000Z",
+ "lastUpdated": "2021-03-28T03:07:11.547Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nid",
+ "hasLocution": true,
+ "plural": "nids"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "02162161-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 7174,
+ "created": "2009-01-16T10:08:08.000Z",
+ "lastUpdated": "2021-07-26T14:08:50.906Z",
+ "keywords": [
+ {
+ "keyword": "devenir brumeux",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "keyword": "être couvert de brume",
+ "type": 3
+ },
+ {
+ "keyword": "être dans le brouillard",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity",
+ "christmas"
+ ],
+ "synsets": [
+ "11103646-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 7177,
+ "created": "2009-01-16T10:12:35.000Z",
+ "lastUpdated": "2021-03-26T03:05:15.093Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Petit Jésus",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Jésus",
+ "hasLocution": true,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "10305010-n"
+ ],
+ "tags": [
+ "person",
+ "child",
+ "core vocabulary"
+ ],
+ "_id": 7176,
+ "created": "2009-01-16T10:10:33.000Z",
+ "lastUpdated": "2021-07-18T11:38:33.575Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enfant",
+ "hasLocution": true,
+ "plural": "enfants"
+ },
+ {
+ "type": 2,
+ "keyword": "garçon",
+ "hasLocution": true,
+ "plural": "garçons"
+ },
+ {
+ "type": 2,
+ "keyword": "petit garçon",
+ "hasLocution": true,
+ "plural": "petits garçons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "child",
+ "person according to their age"
+ ],
+ "synsets": [
+ "09938012-n",
+ "09937051-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "child"
+ ],
+ "_id": 7178,
+ "created": "2009-01-16T10:14:24.000Z",
+ "lastUpdated": "2024-12-13T06:38:24.707Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enfants",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "senses",
+ "core vocabulary-communication",
+ "core vocabulary-living being",
+ "food",
+ "taste",
+ "feeding"
+ ],
+ "synsets": [
+ "07516784-n",
+ "01780648-v",
+ "01821097-v",
+ "01806732-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses",
+ "core vocabulary",
+ "feeding",
+ "food",
+ "taste"
+ ],
+ "_id": 7179,
+ "created": "2009-01-16T10:18:12.000Z",
+ "lastUpdated": "2025-01-09T11:22:17.082Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ne pas aimer",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "je n'aime pas cela",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "désagréable",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "déplaire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "dégoutant",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00536071-a",
+ "05997628-n",
+ "00621541-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary"
+ ],
+ "_id": 7180,
+ "created": "2009-01-16T10:25:34.000Z",
+ "lastUpdated": "2021-07-18T11:39:29.582Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "je ne sais pas",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "je ne te comprends pas",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "je ne sais pas ",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "incompréhensible",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ne pas comprendre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of degree",
+ "basic concepts",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01555990-a",
+ "00059709-r",
+ "01556776-s",
+ "02276025-s",
+ "01557986-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of degree",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 7168,
+ "created": "2009-01-15T13:31:49.000Z",
+ "lastUpdated": "2021-07-18T11:37:56.104Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "nombreux",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "beaucoup",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "divers",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "diverses",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7183,
+ "created": "2009-01-19T11:19:16.000Z",
+ "lastUpdated": "2021-07-18T11:39:53.567Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "nous",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nous -mêmes",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "12580787-n",
+ "07741352-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "core vocabulary"
+ ],
+ "_id": 7182,
+ "created": "2009-01-16T22:35:17.000Z",
+ "lastUpdated": "2021-07-18T11:39:39.332Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "petits pois",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7184,
+ "created": "2009-01-19T11:20:06.000Z",
+ "lastUpdated": "2021-07-18T11:40:23.296Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "nous",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nous-mêmes",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7185,
+ "created": "2009-01-19T11:20:58.000Z",
+ "lastUpdated": "2021-07-18T11:40:20.077Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "nous",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nous-mêmes",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7186,
+ "created": "2009-01-19T11:21:38.000Z",
+ "lastUpdated": "2024-11-29T07:21:31.790Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "nous",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nous-mêmes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day time",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15180707-n",
+ "15192074-n",
+ "15192396-n",
+ "15194806-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "core vocabulary"
+ ],
+ "_id": 7181,
+ "created": "2009-01-16T10:27:25.000Z",
+ "lastUpdated": "2021-07-18T11:39:33.494Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nuit",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194800-s",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 7188,
+ "created": "2009-01-19T11:25:40.000Z",
+ "lastUpdated": "2024-10-20T09:29:25.832Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "9",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "neuf",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194712-s",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 7189,
+ "created": "2009-01-19T11:26:39.000Z",
+ "lastUpdated": "2024-10-20T09:29:18.172Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "8",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "huit",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport"
+ ],
+ "synsets": [
+ "05906432-n",
+ "04311353-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 7191,
+ "created": "2009-01-19T11:30:41.000Z",
+ "lastUpdated": "2021-07-18T11:41:59.907Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "objet volant non identifié",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "OVNI",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "vaisseau spatial",
+ "hasLocution": true,
+ "plural": "vaisseaux spatiaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "hardware",
+ "core vocabulary-object",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "03086983-n",
+ "03924602-n",
+ "03184677-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "computing",
+ "hardware",
+ "core vocabulary"
+ ],
+ "_id": 7190,
+ "created": "2009-01-19T11:28:01.000Z",
+ "lastUpdated": "2021-07-18T11:41:12.551Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ordinateur",
+ "hasLocution": true,
+ "plural": "ordinateurs"
+ },
+ {
+ "keyword": "PC",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "apiculture"
+ ],
+ "synsets": [
+ "09241222-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "apiculture"
+ ],
+ "_id": 7192,
+ "created": "2009-01-19T11:31:57.000Z",
+ "lastUpdated": "2021-07-18T11:42:44.909Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rayon",
+ "hasLocution": true,
+ "plural": "rayons"
+ },
+ {
+ "type": 2,
+ "keyword": "nid d'abeilles",
+ "hasLocution": false,
+ "plural": "nids d'abeille"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "04496264-n",
+ "03693931-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 7193,
+ "created": "2009-01-19T11:33:12.000Z",
+ "lastUpdated": "2021-07-18T11:42:53.601Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pantalon",
+ "hasLocution": true,
+ "plural": "pantalons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "preposition"
+ ],
+ "_id": 7194,
+ "created": "2009-01-19T11:35:42.000Z",
+ "lastUpdated": "2021-07-18T11:42:56.782Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "pour",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "vers",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "road safety"
+ ],
+ "synsets": [
+ "01863207-v",
+ "01442997-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "road safety"
+ ],
+ "_id": 7195,
+ "created": "2009-01-19T11:37:00.000Z",
+ "lastUpdated": "2021-07-18T11:43:06.688Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "arrêter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "stopper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00449625-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 7198,
+ "created": "2009-01-19T13:15:54.000Z",
+ "lastUpdated": "2021-07-18T11:44:28.851Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "patin artistique"
+ },
+ {
+ "keyword": "patin sur glace",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish-animal",
+ "categorization"
+ ],
+ "synsets": [
+ "02514684-n"
+ ],
+ "tags": [
+ "animal",
+ "vertebrate",
+ "fish",
+ "categorization"
+ ],
+ "_id": 7199,
+ "created": "2009-01-19T13:19:16.000Z",
+ "lastUpdated": "2021-07-18T11:44:40.062Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poissons",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "road safety",
+ "core vocabulary-communication",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01863207-v",
+ "01442997-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "movement",
+ "traffic",
+ "road safety",
+ "core vocabulary",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 7196,
+ "created": "2009-01-19T11:37:52.000Z",
+ "lastUpdated": "2023-10-02T08:42:03.650Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "arrêter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "stopper",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chemistry",
+ "signaling system"
+ ],
+ "synsets": [
+ "02458503-a"
+ ],
+ "tags": [
+ "chemistry",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 7200,
+ "created": "2009-01-19T13:21:01.000Z",
+ "lastUpdated": "2021-07-18T11:44:43.211Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "toxique",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07692347-n",
+ "07713282-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 7201,
+ "created": "2009-01-19T13:22:22.000Z",
+ "lastUpdated": "2021-07-18T11:44:48.623Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hot-dog",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "pet",
+ "domestic animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02086723-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "pet",
+ "domestic",
+ "core vocabulary"
+ ],
+ "_id": 7202,
+ "created": "2009-01-19T13:23:19.000Z",
+ "lastUpdated": "2021-07-18T11:44:55.073Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chien",
+ "hasLocution": true,
+ "plural": "chiens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "07958392-n",
+ "00031563-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 7203,
+ "created": "2009-01-19T13:24:46.000Z",
+ "lastUpdated": "2021-07-18T12:11:57.587Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gens",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "personnes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "03910302-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 7197,
+ "created": "2009-01-19T11:41:14.000Z",
+ "lastUpdated": "2021-07-18T11:43:39.608Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "passage piétons",
+ "hasLocution": true,
+ "plural": "passages piétons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal material",
+ "animal"
+ ],
+ "synsets": [
+ "14788240-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "animal material",
+ "animal"
+ ],
+ "_id": 7205,
+ "created": "2009-01-21T09:53:25.000Z",
+ "lastUpdated": "2024-12-08T15:36:58.750Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuir",
+ "hasLocution": true,
+ "plural": "cuirs"
+ },
+ {
+ "keyword": "peau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "peaux"
+ },
+ {
+ "keyword": "fourrure",
+ "hasLocution": false,
+ "plural": "fourrures",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01277535-v",
+ "00404705-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 7206,
+ "created": "2009-01-21T09:56:06.000Z",
+ "lastUpdated": "2021-07-18T11:45:56.962Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "piquer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "éclater",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "percer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "craftsmanship"
+ ],
+ "synsets": [
+ "01688794-v",
+ "01688558-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "work",
+ "secondary sector",
+ "craftsmanship"
+ ],
+ "_id": 7207,
+ "created": "2009-01-21T09:57:31.000Z",
+ "lastUpdated": "2024-12-07T08:08:17.710Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Représenter quelque chose à l'aide de peinture sur un support",
+ "keyword": "peindre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "01898672-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 7208,
+ "created": "2009-01-21T10:01:53.000Z",
+ "lastUpdated": "2021-07-18T11:46:04.040Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plume",
+ "hasLocution": true,
+ "plural": "plumes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of degree",
+ "basic concepts",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01557242-a",
+ "13784857-n",
+ "01394303-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of degree",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 7209,
+ "created": "2009-01-21T10:04:15.000Z",
+ "lastUpdated": "2024-10-22T17:24:47.965Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "peu nombreux",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "peu",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "un petit peu de",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "01323662-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 7210,
+ "created": "2009-01-21T10:05:47.000Z",
+ "lastUpdated": "2021-07-18T11:46:15.483Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tailler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology",
+ "verb"
+ ],
+ "synsets": [
+ "01547861-v"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 7211,
+ "created": "2009-01-21T10:07:08.000Z",
+ "lastUpdated": "2021-07-18T11:46:41.155Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "pondre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery"
+ ],
+ "synsets": [
+ "04599016-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home"
+ ],
+ "_id": 7213,
+ "created": "2009-01-21T10:10:52.000Z",
+ "lastUpdated": "2021-07-20T16:36:42.016Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carafe",
+ "hasLocution": true,
+ "plural": "carafes"
+ },
+ {
+ "keyword": "pichet à vin",
+ "hasLocution": false,
+ "plural": "pichets à vin"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "06640445-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "core vocabulary"
+ ],
+ "_id": 7215,
+ "created": "2009-01-21T10:22:21.000Z",
+ "lastUpdated": "2021-07-18T11:48:17.443Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carte postale",
+ "hasLocution": true,
+ "plural": "cartes postales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "hardware"
+ ],
+ "synsets": [
+ "03648120-n",
+ "03991590-n",
+ "03086983-n",
+ "03838213-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "computing",
+ "hardware"
+ ],
+ "_id": 7214,
+ "created": "2009-01-21T10:11:59.000Z",
+ "lastUpdated": "2021-07-18T11:48:03.697Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ordinateur",
+ "hasLocution": true,
+ "plural": "ordinateurs"
+ },
+ {
+ "type": 2,
+ "keyword": "ordinateur portable",
+ "hasLocution": true,
+ "plural": "ordinateurs portables"
+ },
+ {
+ "type": 2,
+ "keyword": "portable",
+ "hasLocution": true,
+ "plural": "portables"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dessert",
+ "categorization",
+ "core vocabulary-feeding",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "07625449-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "categorization",
+ "core vocabulary"
+ ],
+ "_id": 7216,
+ "created": "2009-01-21T10:23:45.000Z",
+ "lastUpdated": "2021-07-18T11:48:25.941Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dessert",
+ "hasLocution": true,
+ "plural": "desserts"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "07211342-n",
+ "07208256-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 7217,
+ "created": "2009-01-21T10:26:38.000Z",
+ "lastUpdated": "2021-07-18T11:48:45.161Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "question",
+ "hasLocution": true,
+ "plural": "questions"
+ },
+ {
+ "keyword": "demande",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "demandes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "preposition"
+ ],
+ "_id": 7212,
+ "created": "2009-01-21T10:09:19.000Z",
+ "lastUpdated": "2021-07-18T11:47:07.120Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "par",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "environ",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "aux alentours de",
+ "hasLocution": true
+ },
+ {
+ "keyword": "à cause de",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport event",
+ "core vocabulary-communication",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "01102556-v",
+ "02266695-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "core vocabulary"
+ ],
+ "_id": 7218,
+ "created": "2009-01-21T10:28:07.000Z",
+ "lastUpdated": "2021-07-18T11:48:56.968Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "gagner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "récompenser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07596911-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 7219,
+ "created": "2009-01-21T10:30:21.000Z",
+ "lastUpdated": "2021-07-18T11:49:14.177Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entrée",
+ "hasLocution": true,
+ "plural": "entrées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "00202772-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 7220,
+ "created": "2009-01-21T10:35:42.000Z",
+ "lastUpdated": "2021-07-18T11:49:36.184Z",
+ "keywords": [
+ {
+ "keyword": "passage interdit",
+ "hasLocution": false,
+ "plural": "passages interdits",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "traditional game"
+ ],
+ "synsets": [
+ "02423786-v",
+ "02423521-v",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 7221,
+ "created": "2009-01-21T10:37:26.000Z",
+ "lastUpdated": "2021-07-18T11:49:44.318Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "je peux...?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "puis-je jouer?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy"
+ ],
+ "synsets": [
+ "13184148-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy"
+ ],
+ "_id": 7224,
+ "created": "2009-01-21T10:49:28.000Z",
+ "lastUpdated": "2021-07-18T11:50:05.365Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "branche",
+ "hasLocution": true,
+ "plural": "branches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "pattern",
+ "core vocabulary-communication",
+ "core vocabulary-object",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "synsets": [
+ "01420811-a",
+ "01794382-s",
+ "01795316-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "pattern",
+ "core vocabulary",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 7225,
+ "created": "2009-01-21T10:53:25.000Z",
+ "lastUpdated": "2024-12-16T06:40:15.490Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "rayé",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "agriculture"
+ ],
+ "synsets": [
+ "01322669-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 7227,
+ "created": "2009-01-21T12:47:18.000Z",
+ "lastUpdated": "2021-07-18T11:50:30.044Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ramasser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "récolter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01061615-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 7228,
+ "created": "2009-01-21T12:48:19.000Z",
+ "lastUpdated": "2021-07-18T11:50:35.944Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "hennir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "communication aid"
+ ],
+ "synsets": [
+ "01449876-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 7222,
+ "created": "2009-01-21T10:39:46.000Z",
+ "lastUpdated": "2021-07-18T11:49:48.634Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "appuyer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chronological device",
+ "chronological instrument"
+ ],
+ "synsets": [
+ "03050242-n",
+ "02710952-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "time",
+ "chronological device"
+ ],
+ "_id": 7229,
+ "created": "2009-01-21T12:51:32.000Z",
+ "lastUpdated": "2021-07-18T11:51:43.823Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pendule",
+ "hasLocution": false,
+ "plural": "pendules"
+ },
+ {
+ "keyword": "pendule analogique",
+ "plural": "pendules analogiques",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chronological device",
+ "chronological instrument"
+ ],
+ "synsets": [
+ "03050242-n",
+ "02710952-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "time",
+ "chronological device"
+ ],
+ "_id": 7230,
+ "created": "2009-01-21T12:54:35.000Z",
+ "lastUpdated": "2021-07-18T11:51:33.379Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pendule",
+ "hasLocution": false,
+ "plural": "pendules"
+ },
+ {
+ "keyword": "pendule analogique",
+ "hasLocution": false,
+ "plural": "pendules analogiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "10557379-n",
+ "01468558-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 7232,
+ "created": "2009-01-21T12:59:10.000Z",
+ "lastUpdated": "2021-07-18T11:52:29.524Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "romantique",
+ "hasLocution": true
+ },
+ {
+ "keyword": "amoureux",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "categorization",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "02731365-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "categorization",
+ "core vocabulary"
+ ],
+ "_id": 7233,
+ "created": "2009-01-21T13:06:43.000Z",
+ "lastUpdated": "2022-02-28T15:30:04.416Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vêtements",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "atmospheric phenomena",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge",
+ "categorization"
+ ],
+ "synsets": [
+ "14542968-n",
+ "11545095-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "meteorology",
+ "atmospheric phenomena",
+ "core vocabulary",
+ "categorization"
+ ],
+ "_id": 7223,
+ "created": "2009-01-21T10:46:14.000Z",
+ "lastUpdated": "2024-12-13T07:16:47.773Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "quel temps fait-il ?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "respiratory system"
+ ],
+ "synsets": [
+ "00005041-v",
+ "00001740-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "respiratory system"
+ ],
+ "_id": 7231,
+ "created": "2009-01-21T12:57:24.000Z",
+ "lastUpdated": "2021-07-18T11:52:13.112Z",
+ "keywords": [
+ {
+ "keyword": "inspirer",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "inhaler",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "respirer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "04473168-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 7234,
+ "created": "2009-01-21T13:09:14.000Z",
+ "lastUpdated": "2021-07-18T11:52:46.876Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rond-point",
+ "hasLocution": true,
+ "plural": "rond-points"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01050590-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 7235,
+ "created": "2009-01-21T13:13:19.000Z",
+ "lastUpdated": "2021-07-18T11:52:54.309Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rugir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "amphibian",
+ "oviparous",
+ "river animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01631917-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "amphibian",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "wild"
+ ],
+ "_id": 7236,
+ "created": "2009-01-21T13:15:24.000Z",
+ "lastUpdated": "2021-07-18T11:53:01.352Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salamandre",
+ "hasLocution": true,
+ "plural": "salamandres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "natural habitat",
+ "wild animal"
+ ],
+ "synsets": [
+ "02397788-a",
+ "00176356-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "geography",
+ "physical geography",
+ "natural habitat",
+ "animal",
+ "wild"
+ ],
+ "_id": 7237,
+ "created": "2009-01-21T13:16:52.000Z",
+ "lastUpdated": "2021-07-18T11:53:04.588Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sauvage",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious character"
+ ],
+ "synsets": [
+ "11111696-n"
+ ],
+ "tags": [
+ "religion",
+ "character"
+ ],
+ "_id": 7238,
+ "created": "2009-01-21T13:18:16.000Z",
+ "lastUpdated": "2021-03-26T16:26:10.710Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saint-Joseph",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Joseph",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hairdresser",
+ "routine"
+ ],
+ "synsets": [
+ "00218901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser",
+ "person",
+ "routine"
+ ],
+ "_id": 7239,
+ "created": "2009-01-21T13:25:09.000Z",
+ "lastUpdated": "2021-07-18T12:14:17.325Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "sécher les cheveux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194472-s",
+ "06820056-n",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 7241,
+ "created": "2009-01-21T13:32:09.000Z",
+ "lastUpdated": "2024-10-20T09:29:31.136Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "6",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "six",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media"
+ ],
+ "synsets": [
+ "01276378-v",
+ "01359285-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mass media"
+ ],
+ "_id": 7242,
+ "created": "2009-01-21T13:34:56.000Z",
+ "lastUpdated": "2021-07-18T11:53:17.620Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "timbrer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "official document"
+ ],
+ "synsets": [
+ "01359285-v",
+ "01276378-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "document",
+ "public administration"
+ ],
+ "_id": 7243,
+ "created": "2009-01-21T13:36:22.000Z",
+ "lastUpdated": "2021-07-18T11:53:33.623Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "estampiller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tamponner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day"
+ ],
+ "synsets": [
+ "15161099-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "day"
+ ],
+ "_id": 7244,
+ "created": "2009-01-21T13:37:55.000Z",
+ "lastUpdated": "2021-03-25T21:50:03.473Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "semaine",
+ "hasLocution": true,
+ "plural": "semaines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "01503512-v",
+ "01503986-v",
+ "01570056-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 7245,
+ "created": "2009-01-21T13:41:32.000Z",
+ "lastUpdated": "2021-07-18T11:54:13.856Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ensemencer",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "ensemencement",
+ "hasLocution": true,
+ "plural": "ensemencements"
+ },
+ {
+ "keyword": "semer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "semis",
+ "hasLocution": false,
+ "plural": "semis",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "04174183-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 7246,
+ "created": "2009-01-21T13:45:19.000Z",
+ "lastUpdated": "2021-05-04T20:26:29.147Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "semis",
+ "plural": "semis"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07595140-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 7240,
+ "created": "2009-01-21T13:30:31.000Z",
+ "lastUpdated": "2021-05-04T20:29:28.793Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plat principal",
+ "hasLocution": false,
+ "plural": "plats principaux"
+ },
+ {
+ "keyword": "plat de résistance",
+ "hasLocution": true,
+ "plural": "plats de résistance",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage"
+ ],
+ "synsets": [
+ "01182648-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 7247,
+ "created": "2009-01-21T13:50:51.000Z",
+ "lastUpdated": "2021-07-18T11:54:32.838Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "servir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01045313-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 7249,
+ "created": "2009-01-21T14:00:48.000Z",
+ "lastUpdated": "2021-07-18T11:54:38.220Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "siffler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport rules"
+ ],
+ "synsets": [
+ "01045484-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport rules"
+ ],
+ "_id": 7250,
+ "created": "2009-01-22T09:57:22.000Z",
+ "lastUpdated": "2021-07-18T11:54:49.736Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coup de sifflet",
+ "hasLocution": true,
+ "plural": "coups de sifflets"
+ },
+ {
+ "type": 3,
+ "keyword": "siffler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194609-s",
+ "13767056-n",
+ "06820056-n",
+ "13603216-n",
+ "00916568-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 7248,
+ "created": "2009-01-21T13:53:07.000Z",
+ "lastUpdated": "2024-10-20T09:29:35.995Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "7",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "sept",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01591274-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 7251,
+ "created": "2009-01-22T10:00:25.000Z",
+ "lastUpdated": "2021-07-18T11:54:53.899Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sympathique",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "agréable",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy",
+ "atmospheric phenomena",
+ "core vocabulary-knowledge",
+ "beach"
+ ],
+ "synsets": [
+ "11505767-n",
+ "09473312-n"
+ ],
+ "tags": [
+ "astronomy",
+ "meteorology",
+ "atmospheric phenomena",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 7252,
+ "created": "2009-01-22T10:07:18.000Z",
+ "lastUpdated": "2022-07-04T06:41:51.001Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "soleil",
+ "hasLocution": true,
+ "plural": "soleils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02258956-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 7253,
+ "created": "2009-01-22T10:08:29.000Z",
+ "lastUpdated": "2021-07-18T11:55:11.658Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "solitaire",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "seul",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "04063401-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 7254,
+ "created": "2009-01-22T10:12:19.000Z",
+ "lastUpdated": "2021-05-04T20:25:22.906Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hochet",
+ "hasLocution": true,
+ "plural": "hochets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "chronological device"
+ ],
+ "synsets": [
+ "02184975-v",
+ "02183962-v",
+ "02185344-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "time",
+ "chronological device"
+ ],
+ "_id": 7255,
+ "created": "2009-01-22T10:14:25.000Z",
+ "lastUpdated": "2021-07-18T11:55:35.423Z",
+ "keywords": [
+ {
+ "keyword": "sonner",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00007012-v",
+ "02105324-v",
+ "00004227-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 7258,
+ "created": "2009-01-22T10:18:09.000Z",
+ "lastUpdated": "2021-07-18T11:55:56.957Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "souffler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "expirer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00034941-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 7256,
+ "created": "2009-01-22T10:15:49.000Z",
+ "lastUpdated": "2021-07-18T11:55:47.016Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "moucher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se moucher le nez",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "02366035-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 7260,
+ "created": "2009-01-22T10:21:58.000Z",
+ "lastUpdated": "2021-07-18T11:56:27.952Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "surprendre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "être étonné",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena",
+ "autumn"
+ ],
+ "synsets": [
+ "11546388-n"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena",
+ "autumn"
+ ],
+ "_id": 7259,
+ "created": "2009-01-22T10:20:23.000Z",
+ "lastUpdated": "2021-05-04T20:24:20.633Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vent",
+ "hasLocution": true,
+ "plural": "vents"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "worksite",
+ "workplace",
+ "land transport",
+ "signaling system"
+ ],
+ "synsets": [
+ "03421550-n"
+ ],
+ "tags": [
+ "work",
+ "workplace",
+ "place",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 7263,
+ "created": "2009-01-22T10:28:04.000Z",
+ "lastUpdated": "2021-05-04T20:20:59.357Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "garage",
+ "hasLocution": true,
+ "plural": "garages"
+ },
+ {
+ "keyword": "atelier de réparation de voiture",
+ "hasLocution": false,
+ "plural": "ateliers de réparation de voiture",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery",
+ "container"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery",
+ "container"
+ ],
+ "_id": 7264,
+ "created": "2009-01-22T10:29:16.000Z",
+ "lastUpdated": "2021-07-18T11:56:45.869Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couvrir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "fermer",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "boucher",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01285811-v",
+ "01335412-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 7265,
+ "created": "2009-01-22T10:30:18.000Z",
+ "lastUpdated": "2021-07-18T11:56:49.799Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couvrir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "envelopper",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02122725-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 7257,
+ "created": "2009-01-22T10:16:52.000Z",
+ "lastUpdated": "2021-05-04T20:24:46.559Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rêver",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "15080503-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 7262,
+ "created": "2009-01-22T10:25:52.000Z",
+ "lastUpdated": "2021-05-04T20:23:33.626Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "adoucissant",
+ "hasLocution": true,
+ "plural": "adoucissants"
+ },
+ {
+ "keyword": "assouplissant",
+ "hasLocution": false,
+ "plural": "assouplissants",
+ "type": 2
+ },
+ {
+ "keyword": "adoucisseur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "adoucisseurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day time",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15191238-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "core vocabulary"
+ ],
+ "_id": 7268,
+ "created": "2009-01-22T10:34:33.000Z",
+ "lastUpdated": "2021-05-04T20:16:33.241Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "après-midi",
+ "hasLocution": true,
+ "plural": "après-midis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "mass media",
+ "christmas"
+ ],
+ "synsets": [
+ "06640130-n",
+ "06639957-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 7269,
+ "created": "2009-01-22T10:37:38.000Z",
+ "lastUpdated": "2021-05-04T20:16:05.008Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carte de Noël",
+ "hasLocution": true,
+ "plural": "cartes de Noël"
+ },
+ {
+ "type": 2,
+ "keyword": "carte de voeux",
+ "hasLocution": true,
+ "plural": "cartes de voeux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document"
+ ],
+ "synsets": [
+ "06775984-n",
+ "06516453-n"
+ ],
+ "tags": [
+ "document",
+ "information document"
+ ],
+ "_id": 7187,
+ "created": "2009-01-19T11:23:38.000Z",
+ "lastUpdated": "2021-07-18T12:11:50.848Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "note",
+ "hasLocution": true,
+ "plural": "notes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "keyboard instrument",
+ "string instrument"
+ ],
+ "synsets": [
+ "03935052-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "keyboard instrument",
+ "string instrument"
+ ],
+ "_id": 7270,
+ "created": "2009-01-22T10:39:15.000Z",
+ "lastUpdated": "2021-05-04T20:15:18.255Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clavier de piano",
+ "hasLocution": false,
+ "plural": "claviers de piano"
+ },
+ {
+ "type": 2,
+ "keyword": "touches de piano",
+ "hasLocution": false,
+ "plural": "touches de piano"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "body sensation"
+ ],
+ "synsets": [
+ "02126423-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 7272,
+ "created": "2009-01-22T10:41:40.000Z",
+ "lastUpdated": "2021-07-18T11:57:10.849Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "avoir faim",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02209474-v",
+ "02208144-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 7271,
+ "created": "2009-01-22T10:40:24.000Z",
+ "lastUpdated": "2021-07-18T11:57:04.967Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. En parlant de quelqu'un, posséder quelque chose, en disposer, subir, atteindre, obtenir quelque chose, éprouver tel sentiment, présenter telle caractéristique : Avoir beaucoup d'argent. Avoir une profession intéressante. J'ai de la sympathie pour lui. On a le temps. Il a la main leste.",
+ "keyword": "avoir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "tenir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "posséder",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02152799-v",
+ "01335412-v",
+ "00462448-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 7266,
+ "created": "2009-01-22T10:31:14.000Z",
+ "lastUpdated": "2021-07-18T11:57:01.509Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couvrir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "taire",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "body sensation"
+ ],
+ "synsets": [
+ "01273114-a",
+ "14064142-n",
+ "02126525-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 7273,
+ "created": "2009-01-22T10:42:29.000Z",
+ "lastUpdated": "2021-07-18T11:57:19.566Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "assoiffé",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "avoir soif",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "soif",
+ "hasLocution": true,
+ "plural": "soifs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04405179-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 7276,
+ "created": "2009-01-22T10:47:46.000Z",
+ "lastUpdated": "2021-05-04T20:09:56.563Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "théière",
+ "hasLocution": true,
+ "plural": "théières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "water transport"
+ ],
+ "synsets": [
+ "04583009-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "water transport"
+ ],
+ "_id": 7277,
+ "created": "2009-01-22T10:49:16.000Z",
+ "lastUpdated": "2021-05-04T20:09:26.944Z",
+ "keywords": [
+ {
+ "keyword": "roue",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "roues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03113504-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 7267,
+ "created": "2009-01-22T10:32:39.000Z",
+ "lastUpdated": "2021-05-04T20:18:32.768Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouchon",
+ "hasLocution": true,
+ "plural": "bouchons"
+ },
+ {
+ "keyword": "bouchon de bouteille",
+ "hasLocution": false,
+ "plural": "bouchons de bouteille",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02081903-v",
+ "02242564-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 7279,
+ "created": "2009-01-22T10:52:52.000Z",
+ "lastUpdated": "2021-07-18T11:57:29.919Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "apporter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "container"
+ ],
+ "synsets": [
+ "01516062-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "container"
+ ],
+ "_id": 7278,
+ "created": "2009-01-22T10:50:52.000Z",
+ "lastUpdated": "2021-07-18T11:57:25.788Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Envoyer quelque chose à travers l'espace ou le lancer dans une direction pour qu'il retombe quelque part : Jeter son chapeau en l'air. Jeter des cailloux dans l'eau.",
+ "keyword": "jeter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02081903-v",
+ "02242564-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 7280,
+ "created": "2009-01-22T10:53:39.000Z",
+ "lastUpdated": "2021-07-18T11:57:34.467Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "apporter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04429862-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 7274,
+ "created": "2009-01-22T10:43:31.000Z",
+ "lastUpdated": "2021-05-04T20:13:40.484Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "thermos",
+ "hasLocution": false,
+ "plural": "thermos"
+ },
+ {
+ "keyword": "bouteille isotherme",
+ "hasLocution": false,
+ "plural": "bouteilles isothermes",
+ "type": 2
+ },
+ {
+ "keyword": "bouteille thermos",
+ "hasLocution": false,
+ "plural": "bouteilles thermos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05562038-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 7275,
+ "created": "2009-01-22T10:46:30.000Z",
+ "lastUpdated": "2021-05-04T20:12:03.812Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "seins",
+ "hasLocution": true,
+ "plural": "seins"
+ },
+ {
+ "keyword": "nichons",
+ "hasLocution": false,
+ "plural": "nichons",
+ "type": 2
+ },
+ {
+ "keyword": "poitrine",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "poitrines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "11773047-n"
+ ],
+ "tags": [
+ "plant",
+ "hervaceouos plant"
+ ],
+ "_id": 7281,
+ "created": "2009-01-22T10:55:19.000Z",
+ "lastUpdated": "2021-05-04T20:07:55.256Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trèfle",
+ "hasLocution": true,
+ "plural": "trèfles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cereal",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "12162012-n",
+ "12162602-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "cereal",
+ "plant",
+ "hervaceouos plant"
+ ],
+ "_id": 7285,
+ "created": "2009-01-22T10:59:11.000Z",
+ "lastUpdated": "2021-05-04T20:04:36.357Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blé",
+ "hasLocution": true,
+ "plural": "blés"
+ },
+ {
+ "keyword": "froment",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "froment"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "01817020-v",
+ "01817360-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 7286,
+ "created": "2009-01-22T11:00:18.000Z",
+ "lastUpdated": "2021-07-18T12:14:20.311Z",
+ "keywords": [
+ {
+ "keyword": "attrister",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "02455598-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 7287,
+ "created": "2009-01-22T11:01:26.000Z",
+ "lastUpdated": "2021-05-04T20:03:54.364Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trompe",
+ "hasLocution": true,
+ "plural": "trompes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13766184-n",
+ "02194219-s",
+ "13603216-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 7283,
+ "created": "2009-01-22T10:56:56.000Z",
+ "lastUpdated": "2024-10-20T09:29:40.366Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "3",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "trois",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "04475240-n",
+ "03901930-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 7282,
+ "created": "2009-01-22T10:56:12.000Z",
+ "lastUpdated": "2021-07-18T11:57:57.131Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "train",
+ "hasLocution": true,
+ "plural": "trains"
+ },
+ {
+ "keyword": "train de voyageurs",
+ "hasLocution": false,
+ "plural": "trains de voyageurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena",
+ "verb",
+ "core vocabulary-knowledge",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00425822-v"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena",
+ "communication",
+ "language",
+ "verb",
+ "core vocabulary"
+ ],
+ "_id": 7288,
+ "created": "2009-01-22T11:02:30.000Z",
+ "lastUpdated": "2021-05-04T20:03:19.731Z",
+ "keywords": [
+ {
+ "keyword": "éclair",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "éclairs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7289,
+ "created": "2009-01-22T11:07:25.000Z",
+ "lastUpdated": "2024-10-20T05:30:07.714Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "tu",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "vous",
+ "hasLocution": true
+ },
+ {
+ "keyword": "toi",
+ "hasLocution": true,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun",
+ "core vocabulary-communication"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun",
+ "core vocabulary"
+ ],
+ "_id": 7290,
+ "created": "2009-01-22T11:08:29.000Z",
+ "lastUpdated": "2024-10-20T05:29:47.451Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "tu",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "toi",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "vous",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "board game",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "00507218-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "board game"
+ ],
+ "_id": 7284,
+ "created": "2009-01-22T10:57:46.000Z",
+ "lastUpdated": "2021-05-04T20:06:55.448Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jeu du morpion",
+ "hasLocution": true,
+ "plural": "jeux du morpion"
+ },
+ {
+ "keyword": "tic-tac-toe",
+ "hasLocution": false,
+ "plural": "tic-tac-toe",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "oxo",
+ "plural": "oxos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "water transport"
+ ],
+ "synsets": [
+ "04135005-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "water transport"
+ ],
+ "_id": 7294,
+ "created": "2009-01-22T11:21:11.000Z",
+ "lastUpdated": "2021-07-18T11:58:40.917Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voile",
+ "hasLocution": true,
+ "plural": "voiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cutlery",
+ "cookery"
+ ],
+ "synsets": [
+ "01614805-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "cutlery",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 7292,
+ "created": "2009-01-22T11:16:52.000Z",
+ "lastUpdated": "2022-01-04T16:34:52.071Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tartiner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "01306207-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 7295,
+ "created": "2009-01-22T11:22:33.000Z",
+ "lastUpdated": "2021-07-18T11:58:44.161Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bander",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "02155378-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 7296,
+ "created": "2009-01-22T11:23:30.000Z",
+ "lastUpdated": "2021-07-18T11:58:49.707Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "regarder la télévision",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "06331562-n",
+ "06329055-n",
+ "14030430-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "core vocabulary"
+ ],
+ "_id": 7297,
+ "created": "2009-01-22T11:24:41.000Z",
+ "lastUpdated": "2021-07-18T11:59:21.778Z",
+ "keywords": [
+ {
+ "keyword": "verbe",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "verbes"
+ },
+ {
+ "keyword": "action",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "actions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage"
+ ],
+ "synsets": [
+ "02074224-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 7298,
+ "created": "2009-01-22T11:25:48.000Z",
+ "lastUpdated": "2021-07-18T11:59:27.073Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "verser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "land transport"
+ ],
+ "synsets": [
+ "04055187-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 7299,
+ "created": "2009-01-22T11:27:06.000Z",
+ "lastUpdated": "2021-07-18T11:59:55.849Z",
+ "keywords": [
+ {
+ "keyword": "rails",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "voie ferrée",
+ "hasLocution": false,
+ "plural": "voies ferrées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "06820056-n",
+ "02193977-s",
+ "13764713-n",
+ "13603216-n",
+ "00916568-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 7291,
+ "created": "2009-01-22T11:12:55.000Z",
+ "lastUpdated": "2024-10-20T09:29:45.265Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "un",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "1",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery",
+ "container"
+ ],
+ "synsets": [
+ "03145082-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery",
+ "container"
+ ],
+ "_id": 7300,
+ "created": "2009-01-22T11:28:32.000Z",
+ "lastUpdated": "2021-07-18T12:00:07.172Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vinaigrier",
+ "hasLocution": true,
+ "plural": "vinaigriers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom"
+ ],
+ "synsets": [
+ "00076153-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 7303,
+ "created": "2009-01-22T11:32:12.000Z",
+ "lastUpdated": "2021-07-18T12:00:38.744Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "vomir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "régurgiter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7304,
+ "created": "2009-01-22T11:33:22.000Z",
+ "lastUpdated": "2021-07-18T12:00:44.767Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "vous",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "covid-19"
+ ],
+ "synsets": [
+ "00086587-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "covid-19"
+ ],
+ "_id": 7293,
+ "created": "2009-01-22T11:18:39.000Z",
+ "lastUpdated": "2021-05-04T20:00:46.691Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se faire vacciner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "vacciner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7305,
+ "created": "2009-01-22T11:34:07.000Z",
+ "lastUpdated": "2021-07-18T12:00:48.970Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "vous",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7306,
+ "created": "2009-01-22T11:34:57.000Z",
+ "lastUpdated": "2021-07-18T12:00:50.600Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "vous",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "home",
+ "verb",
+ "basic needs"
+ ],
+ "synsets": [
+ "02655932-v",
+ "02654741-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs"
+ ],
+ "_id": 7302,
+ "created": "2009-01-22T11:31:28.000Z",
+ "lastUpdated": "2022-11-09T08:33:29.622Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "vivre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "résider",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "habiter",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "egg product",
+ "food"
+ ],
+ "synsets": [
+ "07857321-n",
+ "01467485-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "egg product"
+ ],
+ "_id": 7308,
+ "created": "2009-01-22T11:36:39.000Z",
+ "lastUpdated": "2024-12-13T07:25:20.085Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jaune d'oeuf",
+ "hasLocution": false,
+ "plural": "jaunes d'oeufs"
+ },
+ {
+ "keyword": "jaune",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "jaunes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7307,
+ "created": "2009-01-22T11:35:44.000Z",
+ "lastUpdated": "2021-07-18T12:00:53.213Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "vous",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7309,
+ "created": "2009-01-22T11:37:30.000Z",
+ "lastUpdated": "2024-10-20T05:31:49.238Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "je",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "me",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "moi",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity",
+ "christmas"
+ ],
+ "synsets": [
+ "11181402-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 7301,
+ "created": "2009-01-22T11:29:48.000Z",
+ "lastUpdated": "2021-03-26T03:10:57.785Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Vierge Marie",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "vierge",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Marie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 7310,
+ "created": "2009-01-22T11:38:14.000Z",
+ "lastUpdated": "2024-10-20T05:32:07.361Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "je",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "me",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "moi",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "interrogative pronoun",
+ "core vocabulary-communication",
+ "adverb",
+ "adverb of place"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "interrogative pronoun",
+ "core vocabulary",
+ "adverb",
+ "adverb of place"
+ ],
+ "_id": 7764,
+ "created": "2009-02-04T11:41:00.000Z",
+ "lastUpdated": "2024-10-20T05:52:41.662Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "où",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "où ?",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "02186555-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 7311,
+ "created": "2009-01-22T11:39:16.000Z",
+ "lastUpdated": "2021-07-18T12:01:07.098Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bourdonner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "preposition",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 7765,
+ "created": "2009-02-04T11:41:56.000Z",
+ "lastUpdated": "2021-07-18T12:01:53.177Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "entre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "parmi",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas"
+ ],
+ "synsets": [
+ "04447193-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 7766,
+ "created": "2009-02-04T11:42:50.000Z",
+ "lastUpdated": "2021-07-18T12:02:14.311Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guirlande",
+ "hasLocution": true,
+ "plural": "guirlandes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "work tool"
+ ],
+ "synsets": [
+ "10236360-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "tool"
+ ],
+ "_id": 7767,
+ "created": "2009-02-04T11:43:28.000Z",
+ "lastUpdated": "2021-07-18T12:02:22.243Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quincaillier",
+ "hasLocution": true,
+ "plural": "quincailliers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "work tool"
+ ],
+ "synsets": [
+ "10236360-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "tool"
+ ],
+ "_id": 7768,
+ "created": "2009-02-04T11:43:58.000Z",
+ "lastUpdated": "2021-07-18T12:02:30.737Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quincaillier",
+ "hasLocution": true,
+ "plural": "quincailliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity",
+ "christmas"
+ ],
+ "synsets": [
+ "10906113-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 7769,
+ "created": "2009-02-04T11:44:50.000Z",
+ "lastUpdated": "2021-03-26T03:10:36.171Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Gaspard",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10754051-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 7770,
+ "created": "2009-02-04T11:45:58.000Z",
+ "lastUpdated": "2021-07-18T12:02:35.104Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "jumelles",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "preposition"
+ ],
+ "_id": 7771,
+ "created": "2009-02-04T11:46:48.000Z",
+ "lastUpdated": "2021-07-18T12:02:40.222Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "jusqu'à",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07872246-n",
+ "07617570-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 7763,
+ "created": "2009-02-04T11:39:46.000Z",
+ "lastUpdated": "2021-07-18T12:01:30.822Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crème de cacao",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pâte à tartiner",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "02455095-n",
+ "02455268-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 7772,
+ "created": "2009-02-04T11:47:53.000Z",
+ "lastUpdated": "2021-07-18T12:02:47.725Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "museau",
+ "hasLocution": true,
+ "plural": "museaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon"
+ ],
+ "synsets": [
+ "04278001-n"
+ ],
+ "tags": [
+ "object",
+ "weapon"
+ ],
+ "_id": 7773,
+ "created": "2009-02-04T11:48:35.000Z",
+ "lastUpdated": "2021-07-18T12:02:55.217Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lance",
+ "hasLocution": true,
+ "plural": "lances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "04346716-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 7774,
+ "created": "2009-02-04T11:49:18.000Z",
+ "lastUpdated": "2021-11-14T15:04:31.708Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "baguette",
+ "hasLocution": true,
+ "plural": "baguettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14348744-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 7775,
+ "created": "2009-02-04T11:50:06.000Z",
+ "lastUpdated": "2021-07-18T12:03:18.959Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de dos",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "lombalgie",
+ "hasLocution": true,
+ "plural": "lombalgies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01056425-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 7702,
+ "created": "2009-02-03T13:45:19.000Z",
+ "lastUpdated": "2021-07-18T12:01:10.872Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "braire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pattern",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03984658-n"
+ ],
+ "tags": [
+ "pattern",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 7776,
+ "created": "2009-02-04T11:51:28.000Z",
+ "lastUpdated": "2021-07-18T12:03:32.057Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pois",
+ "hasLocution": true
+ },
+ {
+ "keyword": "à pois",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "clothing industry"
+ ],
+ "synsets": [
+ "10329452-n",
+ "09950230-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 7780,
+ "created": "2009-02-04T12:41:37.000Z",
+ "lastUpdated": "2021-07-18T12:03:51.696Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mercière",
+ "hasLocution": true,
+ "plural": "mercières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothing industry"
+ ],
+ "synsets": [
+ "03478827-n",
+ "03056449-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 7781,
+ "created": "2009-02-04T12:42:31.000Z",
+ "lastUpdated": "2021-07-18T12:04:01.709Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mercerie",
+ "hasLocution": true,
+ "plural": "merceries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mammal"
+ ],
+ "synsets": [
+ "01864419-n",
+ "01865198-n",
+ "01867348-n"
+ ],
+ "tags": [
+ "animal",
+ "vertebrate",
+ "mammal"
+ ],
+ "_id": 7777,
+ "created": "2009-02-04T11:52:11.000Z",
+ "lastUpdated": "2021-05-02T09:57:22.097Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mammifère",
+ "hasLocution": true,
+ "plural": "mammifères"
+ },
+ {
+ "type": 2,
+ "keyword": "mammifères ",
+ "hasLocution": false,
+ "plural": "mammifères"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothing industry"
+ ],
+ "synsets": [
+ "03056449-n",
+ "03478827-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 7782,
+ "created": "2009-02-04T12:43:03.000Z",
+ "lastUpdated": "2021-07-18T12:04:07.384Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mercerie",
+ "hasLocution": true,
+ "plural": "merceries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "music device"
+ ],
+ "synsets": [
+ "02760467-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "music device"
+ ],
+ "_id": 7783,
+ "created": "2009-02-04T12:43:44.000Z",
+ "lastUpdated": "2021-07-18T12:04:23.553Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mp3",
+ "hasLocution": true
+ },
+ {
+ "keyword": "lecteur MP3",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media"
+ ],
+ "synsets": [
+ "06693922-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media"
+ ],
+ "_id": 7784,
+ "created": "2009-02-04T12:44:27.000Z",
+ "lastUpdated": "2021-07-18T12:04:36.533Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nouvelles",
+ "hasLocution": true
+ },
+ {
+ "keyword": "article",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "articles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07580361-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 7785,
+ "created": "2009-02-04T12:46:55.000Z",
+ "lastUpdated": "2021-07-18T12:04:57.215Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouillie",
+ "hasLocution": true,
+ "plural": "bouillies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05575360-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 7778,
+ "created": "2009-02-04T12:40:05.000Z",
+ "lastUpdated": "2021-05-02T09:56:50.194Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "petit doigt",
+ "hasLocution": true,
+ "plural": "petits doigts"
+ },
+ {
+ "keyword": "auriculaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "auriculaire"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "05270301-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 7789,
+ "created": "2009-02-04T13:06:00.000Z",
+ "lastUpdated": "2021-05-02T09:55:33.168Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "favori",
+ "hasLocution": true,
+ "plural": "favoris"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas"
+ ],
+ "synsets": [
+ "10607013-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 7788,
+ "created": "2009-02-04T13:00:53.000Z",
+ "lastUpdated": "2021-07-18T12:05:12.321Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "berger",
+ "hasLocution": true,
+ "plural": "bergers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "clothing industry"
+ ],
+ "synsets": [
+ "10329452-n",
+ "09950230-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 7779,
+ "created": "2009-02-04T12:40:59.000Z",
+ "lastUpdated": "2021-07-18T12:03:41.210Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mercière",
+ "hasLocution": true,
+ "plural": "mercières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human body",
+ "human anatomy"
+ ],
+ "synsets": [
+ "05575014-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 7791,
+ "created": "2009-02-04T13:12:24.000Z",
+ "lastUpdated": "2024-12-07T15:33:11.855Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "index",
+ "hasLocution": true,
+ "plural": "index"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "06269950-n",
+ "06269819-n",
+ "06516453-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 7792,
+ "created": "2009-02-04T13:14:08.000Z",
+ "lastUpdated": "2021-07-18T12:05:17.528Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "post-it",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "02156611-n",
+ "02156785-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 7790,
+ "created": "2009-02-04T13:09:59.000Z",
+ "lastUpdated": "2021-05-02T09:55:01.611Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sabot",
+ "hasLocution": true,
+ "plural": "sabots"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "03598713-n",
+ "07666634-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 7793,
+ "created": "2009-02-04T13:17:38.000Z",
+ "lastUpdated": "2021-05-02T09:53:16.126Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "pot pour bébé",
+ "plural": "pots pour bébé"
+ },
+ {
+ "keyword": "petit pot",
+ "hasLocution": true,
+ "plural": "petits pots",
+ "type": 2
+ },
+ {
+ "keyword": "nourriture pour bébé",
+ "hasLocution": false,
+ "plural": "nourritures pour bébés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 7794,
+ "created": "2009-02-04T13:19:31.000Z",
+ "lastUpdated": "2021-07-18T12:05:19.705Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "travaux manuels",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "travaux manuels ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "arts plastiques",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "03314301-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 7786,
+ "created": "2009-02-04T12:48:06.000Z",
+ "lastUpdated": "2021-07-18T12:05:03.604Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bandeau",
+ "hasLocution": true,
+ "plural": "bandeaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "musical art"
+ ],
+ "synsets": [
+ "10713754-n",
+ "10361074-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "music"
+ ],
+ "_id": 7796,
+ "created": "2009-02-04T13:24:31.000Z",
+ "lastUpdated": "2021-07-18T12:06:12.135Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "professeur de musique ",
+ "hasLocution": false,
+ "plural": "professeurs de musique"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05574850-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 7799,
+ "created": "2009-02-04T13:29:56.000Z",
+ "lastUpdated": "2021-05-02T09:50:33.741Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pouce",
+ "hasLocution": true,
+ "plural": "pouces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals"
+ ],
+ "synsets": [
+ "10713754-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work"
+ ],
+ "_id": 7798,
+ "created": "2009-02-04T13:28:20.000Z",
+ "lastUpdated": "2021-07-11T09:32:31.221Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "professeure d'éducation physique ",
+ "hasLocution": false,
+ "plural": "professeures d'éducation physique"
+ },
+ {
+ "keyword": "professeure de sport",
+ "hasLocution": false,
+ "plural": "professeures de sport",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "07211342-n",
+ "00626756-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 7800,
+ "created": "2009-02-04T13:31:15.000Z",
+ "lastUpdated": "2021-07-18T12:06:30.587Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "que lis-tu ?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "07211342-n",
+ "02208144-v",
+ "02209474-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 7802,
+ "created": "2009-02-04T13:34:19.000Z",
+ "lastUpdated": "2021-07-18T12:06:38.389Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "qu'est-ce tu as ?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional"
+ ],
+ "synsets": [
+ "09655706-n",
+ "10501296-n",
+ "10499838-n"
+ ],
+ "tags": [
+ "work",
+ "professional"
+ ],
+ "_id": 7795,
+ "created": "2009-02-04T13:22:49.000Z",
+ "lastUpdated": "2021-07-18T12:05:55.162Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "travailleurs",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "travailleur",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "profession",
+ "hasLocution": true,
+ "plural": "professions"
+ },
+ {
+ "type": 2,
+ "keyword": "métier",
+ "hasLocution": true,
+ "plural": "métiers"
+ },
+ {
+ "type": 2,
+ "keyword": "poste",
+ "hasLocution": true,
+ "plural": "postes"
+ },
+ {
+ "type": 2,
+ "keyword": "emploi",
+ "hasLocution": true,
+ "plural": "emplois"
+ },
+ {
+ "type": 2,
+ "keyword": "professionnel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "professionnels",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "01417121-v",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 7803,
+ "created": "2009-02-04T13:35:05.000Z",
+ "lastUpdated": "2021-07-18T12:06:46.229Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "qui appelle ?",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "keyword": "qui est là ?"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "07211342-n",
+ "02134765-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 7801,
+ "created": "2009-02-04T13:33:34.000Z",
+ "lastUpdated": "2021-07-18T12:06:35.156Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "que regardes-tu ?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "qu'est-ce que tu regardes?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "qu'est-ce que tu vois?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals"
+ ],
+ "synsets": [
+ "10713754-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work"
+ ],
+ "_id": 7797,
+ "created": "2009-02-04T13:27:24.000Z",
+ "lastUpdated": "2021-07-18T12:06:26.585Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "professeur d'atelier ",
+ "hasLocution": false,
+ "plural": "professeurs d'atelier "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03331893-n",
+ "03727498-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 7807,
+ "created": "2009-02-04T13:44:23.000Z",
+ "lastUpdated": "2021-07-18T12:14:23.343Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marqueur",
+ "hasLocution": true,
+ "plural": "marqueurs"
+ },
+ {
+ "keyword": "surligneur",
+ "hasLocution": false,
+ "plural": "surligneurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "reptile"
+ ],
+ "synsets": [
+ "01659454-n",
+ "01660364-n",
+ "01663732-n"
+ ],
+ "tags": [
+ "animal",
+ "vertebrate",
+ "reptile"
+ ],
+ "_id": 7806,
+ "created": "2009-02-04T13:37:55.000Z",
+ "lastUpdated": "2021-05-02T09:47:20.115Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "reptiles",
+ "hasLocution": true,
+ "plural": "reptiles"
+ },
+ {
+ "type": 2,
+ "keyword": "reptile ",
+ "hasLocution": false,
+ "plural": "reptiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "02537365-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing",
+ "domestic"
+ ],
+ "_id": 7808,
+ "created": "2009-02-04T13:46:23.000Z",
+ "lastUpdated": "2024-12-05T06:23:42.474Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saumon",
+ "hasLocution": true,
+ "plural": "saumons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "02535706-n",
+ "02535840-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 7809,
+ "created": "2009-02-04T13:47:05.000Z",
+ "lastUpdated": "2021-05-02T09:46:31.122Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sardine",
+ "hasLocution": true,
+ "plural": "sardines"
+ },
+ {
+ "keyword": "pilchard",
+ "hasLocution": false,
+ "plural": "pilchards",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 7811,
+ "created": "2009-02-04T13:48:50.000Z",
+ "lastUpdated": "2021-07-18T12:07:28.281Z",
+ "keywords": [
+ {
+ "keyword": "Attention école",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "preposition"
+ ],
+ "_id": 7810,
+ "created": "2009-02-04T13:47:55.000Z",
+ "lastUpdated": "2021-07-18T12:07:13.202Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "selon",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "gardening"
+ ],
+ "synsets": [
+ "02882329-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "work",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 7804,
+ "created": "2009-02-04T13:35:56.000Z",
+ "lastUpdated": "2021-05-02T09:48:30.606Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouquet",
+ "hasLocution": true,
+ "plural": "bouquets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03530634-n",
+ "03813077-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 7812,
+ "created": "2009-02-04T13:49:48.000Z",
+ "lastUpdated": "2021-07-18T12:07:34.170Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "porte-serviettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cookery",
+ "gastronomy"
+ ],
+ "synsets": [
+ "06801642-n"
+ ],
+ "tags": [
+ "feeding",
+ "cookery",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 7805,
+ "created": "2009-02-04T13:37:14.000Z",
+ "lastUpdated": "2024-12-08T07:13:26.432Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "recette",
+ "plural": "recettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "reproductive system"
+ ],
+ "synsets": [
+ "05532266-n",
+ "05525057-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "reproductive system"
+ ],
+ "_id": 7816,
+ "created": "2009-02-04T13:53:40.000Z",
+ "lastUpdated": "2021-07-18T12:14:27.435Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "testicules",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition",
+ "basic concepts"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "preposition",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 7814,
+ "created": "2009-02-04T13:51:19.000Z",
+ "lastUpdated": "2024-12-12T16:02:36.259Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "sur",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14384587-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 7817,
+ "created": "2009-02-04T13:54:53.000Z",
+ "lastUpdated": "2021-07-18T12:14:34.400Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "torticolis",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "preposition"
+ ],
+ "_id": 7818,
+ "created": "2009-02-04T13:55:41.000Z",
+ "lastUpdated": "2021-07-18T12:14:37.751Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "après",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "fishing",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02539716-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "work",
+ "primary sector",
+ "fishing",
+ "domestic"
+ ],
+ "_id": 7820,
+ "created": "2009-02-04T13:57:51.000Z",
+ "lastUpdated": "2021-05-02T09:44:42.669Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "truite",
+ "hasLocution": true,
+ "plural": "truites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetal origin material",
+ "carpentry",
+ "core vocabulary-object",
+ "core vocabulary-work",
+ "tree"
+ ],
+ "synsets": [
+ "13186713-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "vegetal origin material",
+ "work",
+ "secondary sector",
+ "carpentry",
+ "object",
+ "core vocabulary",
+ "plant",
+ "tree"
+ ],
+ "_id": 7819,
+ "created": "2009-02-04T13:56:19.000Z",
+ "lastUpdated": "2024-12-10T07:06:55.845Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tronc",
+ "hasLocution": true,
+ "plural": "troncs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "death",
+ "halloween"
+ ],
+ "synsets": [
+ "03459977-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 7821,
+ "created": "2009-02-04T13:58:43.000Z",
+ "lastUpdated": "2021-07-18T12:14:55.327Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tombe",
+ "hasLocution": true,
+ "plural": "tombes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "preposition"
+ ],
+ "_id": 7813,
+ "created": "2009-02-04T13:50:33.000Z",
+ "lastUpdated": "2021-07-18T12:07:37.136Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "sans",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "08269523-n",
+ "03502782-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 7815,
+ "created": "2009-02-04T13:52:36.000Z",
+ "lastUpdated": "2021-07-18T12:07:41.283Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chapeau de fête",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sea and oceans",
+ "landform",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "09269370-n",
+ "09451197-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean",
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 8007,
+ "created": "2009-02-18T13:51:29.000Z",
+ "lastUpdated": "2024-12-11T17:30:38.552Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "falaise",
+ "hasLocution": true,
+ "plural": "falaises"
+ },
+ {
+ "type": 2,
+ "keyword": "côte",
+ "hasLocution": true,
+ "plural": "côtes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "00408356-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 8008,
+ "created": "2009-02-18T13:52:19.000Z",
+ "lastUpdated": "2021-07-18T12:25:03.487Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "activité",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "activités",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02435629-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 8010,
+ "created": "2009-02-18T13:53:53.000Z",
+ "lastUpdated": "2021-05-02T09:41:36.696Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "élan",
+ "hasLocution": true,
+ "plural": "élans"
+ },
+ {
+ "keyword": "wapiti",
+ "hasLocution": false,
+ "plural": "wapitis",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07780823-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 8009,
+ "created": "2009-02-18T13:53:02.000Z",
+ "lastUpdated": "2021-05-02T09:41:49.055Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "avocat",
+ "hasLocution": true,
+ "plural": "avocats"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08784821-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8011,
+ "created": "2009-02-18T13:54:47.000Z",
+ "lastUpdated": "2021-05-02T09:40:35.100Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Allemagne",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "residential building"
+ ],
+ "synsets": [
+ "02466042-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 8012,
+ "created": "2009-02-18T13:55:28.000Z",
+ "lastUpdated": "2021-07-18T12:25:06.731Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "louer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical features"
+ ],
+ "synsets": [
+ "05009517-n"
+ ],
+ "tags": [
+ "human body",
+ "physical features"
+ ],
+ "_id": 8013,
+ "created": "2009-02-18T13:56:09.000Z",
+ "lastUpdated": "2021-07-18T12:25:16.004Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hauteur",
+ "hasLocution": true,
+ "plural": "hauteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "01237919-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 8015,
+ "created": "2009-02-18T13:58:53.000Z",
+ "lastUpdated": "2021-07-18T12:25:40.400Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "écraser",
+ "hasLocution": false
+ },
+ {
+ "keyword": "aplatir",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01188961-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 8014,
+ "created": "2009-02-18T13:56:52.000Z",
+ "lastUpdated": "2021-07-18T12:25:21.821Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "allaiter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "téter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "01506930-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 8016,
+ "created": "2009-02-18T13:59:38.000Z",
+ "lastUpdated": "2021-07-18T12:25:53.169Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "entasser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "empiler",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14156457-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 7822,
+ "created": "2009-02-04T13:59:32.000Z",
+ "lastUpdated": "2021-05-02T09:44:16.967Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "varicelle",
+ "hasLocution": true,
+ "plural": "varicelles"
+ },
+ {
+ "keyword": "variole",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "varioles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00647575-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 8021,
+ "created": "2009-02-19T09:59:59.000Z",
+ "lastUpdated": "2021-07-18T12:26:24.229Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "analyse d'urine ",
+ "hasLocution": false,
+ "plural": "analyses d'urine"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling",
+ "human value"
+ ],
+ "synsets": [
+ "07503480-n",
+ "10011405-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion",
+ "human value"
+ ],
+ "_id": 8020,
+ "created": "2009-02-19T09:58:56.000Z",
+ "lastUpdated": "2021-07-18T12:26:08.742Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chéri",
+ "hasLocution": true,
+ "plural": "chéris"
+ },
+ {
+ "type": 2,
+ "keyword": "amour",
+ "hasLocution": true,
+ "plural": "amours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "measurement unit"
+ ],
+ "synsets": [
+ "05143415-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "mathematics",
+ "measurement unit"
+ ],
+ "_id": 8023,
+ "created": "2009-02-19T10:02:22.000Z",
+ "lastUpdated": "2021-07-18T12:15:49.277Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "largeur",
+ "hasLocution": true,
+ "plural": "largeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts"
+ ],
+ "synsets": [
+ "02571278-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 8022,
+ "created": "2009-02-19T10:00:49.000Z",
+ "lastUpdated": "2021-07-18T12:15:41.207Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "large",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals"
+ ],
+ "synsets": [
+ "10713754-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work"
+ ],
+ "_id": 7823,
+ "created": "2009-02-04T14:05:51.000Z",
+ "lastUpdated": "2021-07-11T09:33:39.245Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "professeur d'éducation physique",
+ "hasLocution": true,
+ "plural": "professeurs d'éducation physique"
+ },
+ {
+ "keyword": "professeur de sport",
+ "hasLocution": false,
+ "plural": "professeurs de sport",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "00182551-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 8026,
+ "created": "2009-02-19T10:07:09.000Z",
+ "lastUpdated": "2021-07-18T12:17:01.483Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ajouter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02128571-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8028,
+ "created": "2009-02-19T10:09:44.000Z",
+ "lastUpdated": "2021-07-18T12:17:09.416Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir mauvais",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "light fixture"
+ ],
+ "synsets": [
+ "01513208-v",
+ "02766453-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 8027,
+ "created": "2009-02-19T10:08:29.000Z",
+ "lastUpdated": "2021-07-18T12:17:05.819Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éteindre la lumière",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "éteindre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "educational task"
+ ],
+ "synsets": [
+ "00599310-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "education",
+ "educational task"
+ ],
+ "_id": 8029,
+ "created": "2009-02-19T10:11:24.000Z",
+ "lastUpdated": "2021-09-13T15:20:37.947Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "apprendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08729807-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8030,
+ "created": "2009-02-19T10:13:01.000Z",
+ "lastUpdated": "2021-05-02T09:39:45.719Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Argentine",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02457010-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 8031,
+ "created": "2009-02-19T10:14:50.000Z",
+ "lastUpdated": "2021-05-02T09:39:39.954Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tatou",
+ "hasLocution": true,
+ "plural": "tatous"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "00015568-n"
+ ],
+ "tags": [
+ "animal",
+ "core vocabulary"
+ ],
+ "_id": 8025,
+ "created": "2009-02-19T10:05:55.000Z",
+ "lastUpdated": "2021-07-18T12:16:08.676Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "animal",
+ "hasLocution": true,
+ "plural": "animaux"
+ },
+ {
+ "type": 2,
+ "keyword": "bestiole ",
+ "hasLocution": false,
+ "plural": "bestioles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [
+ "08510271-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8024,
+ "created": "2009-02-19T10:04:20.000Z",
+ "lastUpdated": "2021-05-02T09:40:10.502Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Andalousie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01548431-v",
+ "00337904-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 8032,
+ "created": "2009-02-19T10:19:55.000Z",
+ "lastUpdated": "2021-07-18T12:17:20.851Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "agenouiller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "être à genoux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [
+ "09047038-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8036,
+ "created": "2009-02-19T10:32:30.000Z",
+ "lastUpdated": "2021-05-02T09:39:03.433Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Baléares",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Îles Baléares",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01974840-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 8035,
+ "created": "2009-02-19T10:29:51.000Z",
+ "lastUpdated": "2021-07-18T12:17:40.436Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": true,
+ "keyword": "descendre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "construction",
+ "carpentry"
+ ],
+ "synsets": [
+ "02847545-n",
+ "02761495-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "construction",
+ "carpentry"
+ ],
+ "_id": 8037,
+ "created": "2009-02-19T10:37:57.000Z",
+ "lastUpdated": "2021-07-18T12:17:50.382Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mèche",
+ "hasLocution": true,
+ "plural": "mèches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "comic character",
+ "movie character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "comic character",
+ "comic",
+ "movie character",
+ "cinema"
+ ],
+ "_id": 8039,
+ "created": "2009-02-19T10:43:42.000Z",
+ "lastUpdated": "2021-05-02T09:38:31.446Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Batman",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "workwear"
+ ],
+ "synsets": [
+ "03635674-n"
+ ],
+ "tags": [
+ "work",
+ "clothes",
+ "workwear"
+ ],
+ "_id": 8038,
+ "created": "2009-02-19T10:41:07.000Z",
+ "lastUpdated": "2021-07-18T12:18:08.750Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blouse",
+ "hasLocution": true,
+ "plural": "blouses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08868745-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8040,
+ "created": "2009-02-19T10:46:29.000Z",
+ "lastUpdated": "2021-05-02T09:38:24.737Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Belgique",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "12288194-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 8041,
+ "created": "2009-02-19T10:49:10.000Z",
+ "lastUpdated": "2021-05-02T09:38:18.516Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gland",
+ "hasLocution": true,
+ "plural": "glands"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07647646-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 8042,
+ "created": "2009-02-19T10:49:57.000Z",
+ "lastUpdated": "2021-05-02T09:37:52.256Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gênoise",
+ "hasLocution": false,
+ "plural": "gênoises"
+ },
+ {
+ "keyword": "biscuit de Savoie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "biscuits de Savoie"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "00394166-a"
+ ],
+ "tags": [
+ "color",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 8043,
+ "created": "2009-02-19T10:54:01.000Z",
+ "lastUpdated": "2021-05-02T09:35:18.631Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "blanc",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08872733-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8044,
+ "created": "2009-02-19T10:56:25.000Z",
+ "lastUpdated": "2021-05-02T09:35:02.499Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Brésil",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01548431-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 8033,
+ "created": "2009-02-19T10:23:23.000Z",
+ "lastUpdated": "2021-07-18T12:17:25.587Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "agenouiller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "être à genoux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mountain"
+ ],
+ "synsets": [
+ "03084501-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 8045,
+ "created": "2009-02-19T10:57:27.000Z",
+ "lastUpdated": "2021-05-02T09:34:56.851Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boussole",
+ "hasLocution": false,
+ "plural": "boussoles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport modality",
+ "diving"
+ ],
+ "synsets": [
+ "01966678-v",
+ "07378715-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport modality",
+ "diving"
+ ],
+ "_id": 8046,
+ "created": "2009-02-19T10:58:06.000Z",
+ "lastUpdated": "2021-07-18T12:18:23.555Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "plonger",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "immersion",
+ "hasLocution": false,
+ "plural": "immersions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room"
+ ],
+ "synsets": [
+ "03691456-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room"
+ ],
+ "_id": 8047,
+ "created": "2009-02-19T10:58:48.000Z",
+ "lastUpdated": "2021-07-18T12:19:09.686Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mansarde",
+ "hasLocution": true,
+ "plural": "mansardes"
+ },
+ {
+ "keyword": "grenier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "greniers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "derived material",
+ "energy"
+ ],
+ "synsets": [
+ "14709178-n",
+ "03160945-n"
+ ],
+ "tags": [
+ "material",
+ "derived material",
+ "work",
+ "secondary sector",
+ "energy"
+ ],
+ "_id": 8048,
+ "created": "2009-02-19T10:59:34.000Z",
+ "lastUpdated": "2021-07-18T12:21:45.944Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "butane",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bonbonne",
+ "hasLocution": true,
+ "plural": "bonbonnes"
+ },
+ {
+ "type": 2,
+ "keyword": "bonbonne de butane",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8034,
+ "created": "2009-02-19T10:28:52.000Z",
+ "lastUpdated": "2021-05-02T09:39:12.976Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Asturies",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "beverage"
+ ],
+ "synsets": [
+ "03067341-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 8052,
+ "created": "2009-02-19T11:09:26.000Z",
+ "lastUpdated": "2021-07-18T12:23:01.216Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cafetière",
+ "hasLocution": true,
+ "plural": "cafetières"
+ },
+ {
+ "type": 2,
+ "keyword": "cafetière expresso",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02262178-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8053,
+ "created": "2009-02-19T11:10:26.000Z",
+ "lastUpdated": "2021-07-18T12:26:27.628Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "changer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "échanger ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "intimate hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00163059-v",
+ "04142398-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "intimate hygiene",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 8054,
+ "created": "2009-02-19T11:11:25.000Z",
+ "lastUpdated": "2021-07-18T12:26:50.208Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "changer la serviette hygiénique",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08735042-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8055,
+ "created": "2009-02-19T11:12:55.000Z",
+ "lastUpdated": "2021-05-02T09:34:00.256Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Cameroun",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower"
+ ],
+ "synsets": [
+ "12057408-n"
+ ],
+ "tags": [
+ "plant",
+ "flower"
+ ],
+ "_id": 8056,
+ "created": "2009-02-19T11:13:48.000Z",
+ "lastUpdated": "2021-03-26T02:44:05.604Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "campanule",
+ "hasLocution": false,
+ "plural": "campanules"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08837973-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8057,
+ "created": "2009-02-19T11:15:27.000Z",
+ "lastUpdated": "2021-05-02T09:33:53.923Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Canada",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "excretory system"
+ ],
+ "synsets": [
+ "14878732-n",
+ "14878134-n",
+ "14878449-n"
+ ],
+ "tags": [
+ "human body",
+ "physiology",
+ "human physiology",
+ "excretory system"
+ ],
+ "_id": 8050,
+ "created": "2009-02-19T11:06:52.000Z",
+ "lastUpdated": "2021-07-18T12:22:21.913Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caca",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "excrément",
+ "hasLocution": true,
+ "plural": "excrément"
+ },
+ {
+ "keyword": "crotte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "crottes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "halloween"
+ ],
+ "synsets": [
+ "03003017-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 8051,
+ "created": "2009-02-19T11:08:33.000Z",
+ "lastUpdated": "2021-07-18T12:22:35.128Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaine",
+ "hasLocution": false,
+ "plural": "chaines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "02935784-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 8049,
+ "created": "2009-02-19T11:06:15.000Z",
+ "lastUpdated": "2021-07-18T12:21:56.507Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cabane",
+ "hasLocution": true,
+ "plural": "cabanes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [
+ "09047342-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8058,
+ "created": "2009-02-19T11:17:45.000Z",
+ "lastUpdated": "2021-05-02T09:33:47.574Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Canaries",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Îles Canaries",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mollusc",
+ "oviparous",
+ "terrestrial animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01947031-n",
+ "01947596-n",
+ "01947784-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "terrestrial animal",
+ "core vocabulary"
+ ],
+ "_id": 8061,
+ "created": "2009-02-19T11:22:53.000Z",
+ "lastUpdated": "2021-05-02T09:32:51.528Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "escargot",
+ "hasLocution": true,
+ "plural": "escargots"
+ },
+ {
+ "keyword": "escargot de jardin",
+ "hasLocution": false,
+ "plural": "escargots de jardin",
+ "type": 2
+ },
+ {
+ "keyword": "escargot petit-gris",
+ "hasLocution": false,
+ "plural": "escargots petits-gris",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "01650120-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 8059,
+ "created": "2009-02-19T11:20:40.000Z",
+ "lastUpdated": "2021-07-18T12:26:53.909Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "grisonnant",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "cheveux blancs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00314284-a",
+ "02691317-a"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 8062,
+ "created": "2009-02-19T11:26:04.000Z",
+ "lastUpdated": "2024-10-21T12:04:31.084Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "carnivore",
+ "hasLocution": true,
+ "plural": "carnivores"
+ },
+ {
+ "keyword": "carnassier",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "carnassiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "02971932-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 8063,
+ "created": "2009-02-19T11:27:01.000Z",
+ "lastUpdated": "2021-05-02T09:29:17.279Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carrosse",
+ "hasLocution": true,
+ "plural": "carrosse"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media"
+ ],
+ "synsets": [
+ "01103234-n",
+ "06806088-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media"
+ ],
+ "_id": 8064,
+ "created": "2009-02-19T11:28:05.000Z",
+ "lastUpdated": "2021-07-18T12:27:18.769Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "publicité",
+ "hasLocution": true,
+ "plural": "publicités"
+ },
+ {
+ "type": 2,
+ "keyword": "affiche",
+ "hasLocution": true,
+ "plural": "affiches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document",
+ "musical art",
+ "show"
+ ],
+ "synsets": [
+ "07261731-n",
+ "07263469-n",
+ "06806088-n"
+ ],
+ "tags": [
+ "document",
+ "information document",
+ "music",
+ "leisure",
+ "show",
+ "work"
+ ],
+ "_id": 8065,
+ "created": "2009-02-19T11:29:01.000Z",
+ "lastUpdated": "2021-07-18T12:27:35.264Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "affiche",
+ "hasLocution": true,
+ "plural": "affiches"
+ },
+ {
+ "type": 2,
+ "keyword": "annonce",
+ "hasLocution": true,
+ "plural": "annonces"
+ },
+ {
+ "keyword": "publicité",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "publicités"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8067,
+ "created": "2009-02-19T11:31:52.000Z",
+ "lastUpdated": "2021-05-02T09:28:01.589Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Castille-La Manche",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "00246175-s",
+ "00374271-s",
+ "00370893-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 8066,
+ "created": "2009-02-19T11:30:00.000Z",
+ "lastUpdated": "2021-07-18T15:53:02.289Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "chatain",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8060,
+ "created": "2009-02-19T11:21:59.000Z",
+ "lastUpdated": "2021-05-02T09:33:13.534Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Cantabrie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [
+ "09050737-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8068,
+ "created": "2009-02-19T11:36:38.000Z",
+ "lastUpdated": "2021-05-02T09:27:25.277Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Castille-Leon",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "christmas",
+ "residential building"
+ ],
+ "synsets": [
+ "03021082-n",
+ "03351301-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "event",
+ "popular event",
+ "christmas",
+ "home"
+ ],
+ "_id": 8072,
+ "created": "2009-02-19T13:07:50.000Z",
+ "lastUpdated": "2021-05-02T09:26:00.445Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cheminée",
+ "hasLocution": true,
+ "plural": "cheminées"
+ },
+ {
+ "keyword": "foyer",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "foyers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02484454-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 8073,
+ "created": "2009-02-19T13:08:29.000Z",
+ "lastUpdated": "2021-05-02T09:25:13.738Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chimpanzé",
+ "hasLocution": true,
+ "plural": "chimpanzé"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08740839-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8074,
+ "created": "2009-02-19T13:10:04.000Z",
+ "lastUpdated": "2021-05-02T09:24:50.774Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Chine",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08738314-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8071,
+ "created": "2009-02-19T11:41:58.000Z",
+ "lastUpdated": "2021-05-02T09:26:05.549Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Chili",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "chemistry",
+ "biology",
+ "medicine"
+ ],
+ "synsets": [
+ "10580065-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "chemistry",
+ "biology",
+ "health",
+ "medicine"
+ ],
+ "_id": 8076,
+ "created": "2009-02-19T13:11:42.000Z",
+ "lastUpdated": "2024-12-12T07:33:36.358Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scientifique",
+ "hasLocution": true,
+ "plural": "scientifiques"
+ },
+ {
+ "keyword": "chercheur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chercheurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [
+ "09050432-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8069,
+ "created": "2009-02-19T11:38:01.000Z",
+ "lastUpdated": "2021-05-02T09:26:45.880Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Catalogne",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00656296-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 8077,
+ "created": "2009-02-19T13:12:24.000Z",
+ "lastUpdated": "2021-07-18T15:53:16.041Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "classer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "trier",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "03552234-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 8075,
+ "created": "2009-02-19T13:10:47.000Z",
+ "lastUpdated": "2021-07-18T12:28:01.300Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hutte",
+ "hasLocution": true,
+ "plural": "huttes"
+ },
+ {
+ "keyword": "cabane",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cabanes"
+ },
+ {
+ "keyword": "case",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cases"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau",
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "04564808-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home",
+ "sensory stimulation"
+ ],
+ "_id": 8079,
+ "created": "2009-02-19T13:13:56.000Z",
+ "lastUpdated": "2021-07-18T12:28:32.969Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "matelas à eau",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03736655-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 8078,
+ "created": "2009-02-19T13:13:24.000Z",
+ "lastUpdated": "2021-05-02T09:23:40.888Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "matelas",
+ "hasLocution": true,
+ "plural": "matelas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8070,
+ "created": "2009-02-19T11:40:59.000Z",
+ "lastUpdated": "2021-05-02T09:26:40.080Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Ceuta",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "set phrase",
+ "tale character"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "set phrase",
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 8081,
+ "created": "2009-02-19T13:16:05.000Z",
+ "lastUpdated": "2021-07-18T12:28:42.899Z",
+ "keywords": [
+ {
+ "type": 5,
+ "hasLocution": false,
+ "keyword": "c'est fini"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "hairdresser"
+ ],
+ "synsets": [
+ "00562167-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 8084,
+ "created": "2009-02-19T13:18:46.000Z",
+ "lastUpdated": "2021-07-18T12:28:51.283Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couper les cheveux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08749949-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8080,
+ "created": "2009-02-19T13:15:09.000Z",
+ "lastUpdated": "2021-05-02T09:23:27.268Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Colombie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tv show"
+ ],
+ "synsets": [
+ "06633722-n",
+ "06633086-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show"
+ ],
+ "_id": 8083,
+ "created": "2009-02-19T13:17:44.000Z",
+ "lastUpdated": "2021-03-12T13:43:23.677Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "concours",
+ "hasLocution": true,
+ "plural": "concours"
+ },
+ {
+ "keyword": "jeu TV",
+ "hasLocution": false,
+ "plural": "jeux TV",
+ "type": 2
+ },
+ {
+ "keyword": "quizz TV",
+ "hasLocution": false,
+ "plural": "quizz TV",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tv show",
+ "sport modality",
+ "athletics"
+ ],
+ "synsets": [
+ "06633086-n",
+ "00434156-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show",
+ "leisure",
+ "sport",
+ "sport modality",
+ "athletics"
+ ],
+ "_id": 8085,
+ "created": "2009-02-19T13:19:56.000Z",
+ "lastUpdated": "2021-03-12T13:48:49.410Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "programme sportif",
+ "hasLocution": false,
+ "plural": "programmes sportifs"
+ },
+ {
+ "type": 2,
+ "keyword": "programme de sport",
+ "hasLocution": false,
+ "plural": "programmes de sport"
+ },
+ {
+ "keyword": "émission sportive",
+ "hasLocution": false,
+ "plural": "émissions sportives",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "13582922-n",
+ "09252616-n",
+ "02115945-a"
+ ],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 8082,
+ "created": "2009-02-19T13:16:46.000Z",
+ "lastUpdated": "2021-07-18T12:28:47.003Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "colonne à bulles",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "building facility",
+ "appliance"
+ ],
+ "synsets": [
+ "01424071-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "building facility",
+ "object",
+ "appliance"
+ ],
+ "_id": 8086,
+ "created": "2009-02-19T13:21:47.000Z",
+ "lastUpdated": "2021-07-18T12:28:54.870Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "débrancher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime",
+ "security and defense"
+ ],
+ "synsets": [
+ "01217701-v",
+ "01217985-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 8087,
+ "created": "2009-02-19T13:22:46.000Z",
+ "lastUpdated": "2021-07-18T12:28:57.939Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "arrêter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "capturer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tv show"
+ ],
+ "synsets": [
+ "06628817-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show"
+ ],
+ "_id": 8089,
+ "created": "2009-02-19T13:32:50.000Z",
+ "lastUpdated": "2021-03-12T13:49:12.786Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dessins animés",
+ "hasLocution": true,
+ "plural": "dessins animés"
+ },
+ {
+ "keyword": "programme des enfants",
+ "hasLocution": false,
+ "plural": "programmes des enfants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "special education"
+ ],
+ "synsets": [
+ "07962874-n",
+ "01022875-s",
+ "10178349-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "education",
+ "special education"
+ ],
+ "_id": 8090,
+ "created": "2009-02-19T13:39:57.000Z",
+ "lastUpdated": "2021-07-18T15:53:36.351Z",
+ "keywords": [
+ {
+ "keyword": "personnes handicapées",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "drawing",
+ "usual verbs",
+ "core vocabulary-communication",
+ "core vocabulary-education",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01585566-v",
+ "01647006-v",
+ "01694189-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "visual art",
+ "drawing",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 8088,
+ "created": "2009-02-19T13:32:04.000Z",
+ "lastUpdated": "2021-07-18T12:29:06.252Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Représenter quelqu'un, quelque chose par un dessin, en tracer, en reproduire la forme, les contours, les volumes",
+ "keyword": "dessiner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "07962874-n",
+ "01022875-s",
+ "10178349-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 8091,
+ "created": "2009-02-19T13:40:43.000Z",
+ "lastUpdated": "2021-05-02T09:22:44.765Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "handicap moteur",
+ "hasLocution": true,
+ "plural": "handicaps moteurs"
+ },
+ {
+ "keyword": "handicap physique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "handicaps physiques"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "personne à mobilité réduite",
+ "plural": "personnes à mobilité réduite",
+ "type": 2
+ },
+ {
+ "keyword": "PMR",
+ "hasLocution": false,
+ "plural": "PMR",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child",
+ "special education"
+ ],
+ "synsets": [
+ "10178349-n",
+ "01022875-s"
+ ],
+ "tags": [
+ "person",
+ "child",
+ "education",
+ "special education"
+ ],
+ "_id": 8092,
+ "created": "2009-02-19T13:41:40.000Z",
+ "lastUpdated": "2021-07-18T12:29:14.063Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "handicap moteur",
+ "hasLocution": true
+ },
+ {
+ "keyword": "handicap physique",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "drug addiction"
+ ],
+ "synsets": [
+ "01203078-v",
+ "14087890-n",
+ "00949739-n",
+ "01167359-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs"
+ ],
+ "_id": 8095,
+ "created": "2009-02-19T14:00:11.000Z",
+ "lastUpdated": "2021-07-18T12:29:34.087Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "consommation de drogues",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "droguer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se droguer",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "drogue",
+ "hasLocution": true,
+ "plural": "drogues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "07383246-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 8096,
+ "created": "2009-02-19T14:03:31.000Z",
+ "lastUpdated": "2021-07-18T12:29:48.130Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éclipse",
+ "hasLocution": true,
+ "plural": "éclipses"
+ },
+ {
+ "type": 2,
+ "keyword": "éclipse de lune",
+ "hasLocution": true,
+ "plural": "éclipses de lune"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine",
+ "core vocabulary-object",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "04261230-n",
+ "04260547-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine",
+ "core vocabulary"
+ ],
+ "_id": 8094,
+ "created": "2009-02-19T13:58:45.000Z",
+ "lastUpdated": "2021-07-18T12:29:19.511Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "savon",
+ "hasLocution": true,
+ "plural": "savons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08917311-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8099,
+ "created": "2009-02-20T10:25:33.000Z",
+ "lastUpdated": "2021-05-02T09:20:03.957Z",
+ "keywords": [
+ {
+ "type": 1,
+ "hasLocution": false,
+ "keyword": "Égypte"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tv show"
+ ],
+ "synsets": [
+ "06629313-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show"
+ ],
+ "_id": 8093,
+ "created": "2009-02-19T13:42:47.000Z",
+ "lastUpdated": "2021-03-12T13:31:38.745Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "documentaire",
+ "hasLocution": true,
+ "plural": "documentaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "07017173-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 8100,
+ "created": "2009-02-20T10:26:31.000Z",
+ "lastUpdated": "2021-07-18T12:30:34.193Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "électrocardiogramme ",
+ "hasLocution": false,
+ "plural": "électrocardiogrammes"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "ECG"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "02741628-v",
+ "01185870-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 8102,
+ "created": "2009-02-20T10:28:25.000Z",
+ "lastUpdated": "2021-07-18T12:30:49.883Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "emboîter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "07383246-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 8097,
+ "created": "2009-02-19T14:04:11.000Z",
+ "lastUpdated": "2021-07-18T16:05:03.819Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éclipse",
+ "hasLocution": true,
+ "plural": "éclipses"
+ },
+ {
+ "type": 2,
+ "keyword": "éclipse de soleil",
+ "hasLocution": false,
+ "plural": "éclipses de soleil"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "light fixture"
+ ],
+ "synsets": [
+ "01513031-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 8103,
+ "created": "2009-02-20T10:29:15.000Z",
+ "lastUpdated": "2021-07-18T12:30:53.726Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "allumer la lumière",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "allumer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "education"
+ ],
+ "synsets": [
+ "00884975-n",
+ "05993172-n",
+ "00929331-n"
+ ],
+ "tags": [
+ "education"
+ ],
+ "_id": 8098,
+ "created": "2009-02-20T10:23:39.000Z",
+ "lastUpdated": "2021-07-18T12:30:18.885Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éducation",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "formation",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07822197-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "core vocabulary"
+ ],
+ "_id": 8104,
+ "created": "2009-02-20T10:30:03.000Z",
+ "lastUpdated": "2021-07-18T12:30:58.151Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salade russe",
+ "hasLocution": false,
+ "plural": "salades russes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "07017357-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 8101,
+ "created": "2009-02-20T10:27:18.000Z",
+ "lastUpdated": "2021-07-18T16:07:09.346Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "électroencéphalogramme ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "EEG"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tv show"
+ ],
+ "synsets": [
+ "07210735-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show"
+ ],
+ "_id": 8105,
+ "created": "2009-02-20T10:31:17.000Z",
+ "lastUpdated": "2021-03-12T13:36:27.883Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entrevue",
+ "hasLocution": true,
+ "plural": "entrevues"
+ },
+ {
+ "keyword": "interview",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "interviews"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01694952-v",
+ "00995046-v",
+ "06371284-n",
+ "01694058-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 8107,
+ "created": "2009-02-20T10:34:20.000Z",
+ "lastUpdated": "2021-07-18T12:31:07.787Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Tracer les signes d'un système d'écriture, de représentation graphique des sons d'un langage, de la parole : Ãcrire un « m », un mot, un chiffre",
+ "keyword": "écrire",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "écriture",
+ "hasLocution": true,
+ "plural": "écritures"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "écrire avec une craie",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09045691-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8108,
+ "created": "2009-02-20T10:36:48.000Z",
+ "lastUpdated": "2021-05-02T09:15:40.376Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Espagne",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status",
+ "wedding"
+ ],
+ "synsets": [
+ "10213586-n"
+ ],
+ "tags": [
+ "person",
+ "marital status",
+ "event",
+ "social event",
+ "wedding"
+ ],
+ "_id": 8111,
+ "created": "2009-02-20T11:08:10.000Z",
+ "lastUpdated": "2021-05-02T09:14:30.538Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mari",
+ "hasLocution": true,
+ "plural": "maris"
+ },
+ {
+ "keyword": "époux",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "époux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09067337-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8112,
+ "created": "2009-02-20T11:09:41.000Z",
+ "lastUpdated": "2021-05-02T09:13:32.897Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "États-Unis",
+ "hasLocution": false
+ },
+ {
+ "keyword": "États-Unis d'Amérique",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "USA",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "US",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event"
+ ],
+ "synsets": [
+ "02644022-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event"
+ ],
+ "_id": 8109,
+ "created": "2009-02-20T10:37:28.000Z",
+ "lastUpdated": "2021-05-02T09:15:33.953Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attendre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "patienter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status",
+ "wedding"
+ ],
+ "synsets": [
+ "10800308-n"
+ ],
+ "tags": [
+ "person",
+ "marital status",
+ "event",
+ "social event",
+ "wedding"
+ ],
+ "_id": 8110,
+ "created": "2009-02-20T11:07:34.000Z",
+ "lastUpdated": "2021-05-02T09:14:58.387Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "femme",
+ "hasLocution": true,
+ "plural": "femmes"
+ },
+ {
+ "keyword": "épouse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "épouses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "04313985-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 8113,
+ "created": "2009-02-20T11:10:26.000Z",
+ "lastUpdated": "2021-05-02T09:12:27.155Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "statue",
+ "hasLocution": true,
+ "plural": "statue"
+ },
+ {
+ "keyword": "monument",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "monument"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "show",
+ "scenic art",
+ "musical art",
+ "popular event"
+ ],
+ "synsets": [
+ "04303700-n"
+ ],
+ "tags": [
+ "leisure",
+ "show",
+ "work",
+ "scenic art",
+ "music",
+ "event",
+ "popular event"
+ ],
+ "_id": 8106,
+ "created": "2009-02-20T10:33:15.000Z",
+ "lastUpdated": "2024-12-12T07:04:52.410Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scène",
+ "hasLocution": true,
+ "plural": "scènes"
+ },
+ {
+ "keyword": "estrade",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "estrades"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "13854554-n",
+ "13857863-n",
+ "00325179-r",
+ "00826918-a"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 8114,
+ "created": "2009-02-20T11:11:12.000Z",
+ "lastUpdated": "2021-05-02T09:11:51.748Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Est",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "set phrase"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "set phrase"
+ ],
+ "_id": 8115,
+ "created": "2009-02-20T11:11:59.000Z",
+ "lastUpdated": "2021-07-18T12:31:31.532Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "cette histoire est finie",
+ "hasLocution": true
+ },
+ {
+ "keyword": "fin de l'histoire",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts"
+ ],
+ "synsets": [
+ "02572618-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 8116,
+ "created": "2009-02-20T11:12:38.000Z",
+ "lastUpdated": "2021-05-02T09:11:35.963Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "étroit",
+ "hasLocution": true,
+ "plural": "étroits"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "region"
+ ],
+ "synsets": [
+ "08190414-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "region"
+ ],
+ "_id": 8117,
+ "created": "2009-02-20T11:14:10.000Z",
+ "lastUpdated": "2021-05-02T09:11:07.135Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Europe",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chemistry"
+ ],
+ "synsets": [
+ "00640799-n"
+ ],
+ "tags": [
+ "chemistry"
+ ],
+ "_id": 8119,
+ "created": "2009-02-20T11:16:57.000Z",
+ "lastUpdated": "2021-05-02T09:10:43.973Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "expérience",
+ "hasLocution": true,
+ "plural": "expérience"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8118,
+ "created": "2009-02-20T11:15:34.000Z",
+ "lastUpdated": "2021-05-02T09:10:59.115Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pays Basque",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Pays-basque",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8120,
+ "created": "2009-02-20T11:18:19.000Z",
+ "lastUpdated": "2021-05-02T09:09:54.103Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Estrémadure",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [
+ "09050574-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8123,
+ "created": "2009-02-20T11:21:09.000Z",
+ "lastUpdated": "2021-05-02T09:08:45.541Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Galice",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08965594-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8124,
+ "created": "2009-02-20T11:22:17.000Z",
+ "lastUpdated": "2021-05-02T09:08:35.871Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Gambie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "derived material",
+ "land transport"
+ ],
+ "synsets": [
+ "03431044-n",
+ "14711074-n"
+ ],
+ "tags": [
+ "material",
+ "derived material",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 8125,
+ "created": "2009-02-20T11:22:52.000Z",
+ "lastUpdated": "2021-05-02T09:08:25.023Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "essence",
+ "hasLocution": true,
+ "plural": "essences"
+ },
+ {
+ "type": 2,
+ "keyword": "bidon d'essence",
+ "hasLocution": true,
+ "plural": "bidons d'essence"
+ },
+ {
+ "keyword": "pétrole",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pétroles"
+ },
+ {
+ "keyword": "gasoil",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gasoil"
+ },
+ {
+ "keyword": "gazole",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gazoles"
+ },
+ {
+ "keyword": "carburant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "carburants"
+ },
+ {
+ "keyword": "réservoir de carburant",
+ "hasLocution": false,
+ "plural": "réservoirs de carburant",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07601329-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 8126,
+ "created": "2009-02-20T11:23:35.000Z",
+ "lastUpdated": "2021-05-02T09:05:57.223Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gaspacho",
+ "hasLocution": true,
+ "plural": "gaspacho"
+ },
+ {
+ "keyword": "gazpacho",
+ "hasLocution": false,
+ "plural": "gazpachos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeding"
+ ],
+ "synsets": [
+ "07501195-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "feeding"
+ ],
+ "_id": 8127,
+ "created": "2009-02-20T11:24:17.000Z",
+ "lastUpdated": "2021-07-18T12:31:35.552Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "gourmand",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "polite set expression"
+ ],
+ "synsets": [
+ "07243631-n",
+ "01211287-n",
+ "00893836-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 8128,
+ "created": "2009-02-20T11:24:56.000Z",
+ "lastUpdated": "2021-07-18T12:31:40.488Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "merci",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "core vocabulary-object",
+ "fashion"
+ ],
+ "synsets": [
+ "04056517-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 8122,
+ "created": "2009-02-20T11:20:06.000Z",
+ "lastUpdated": "2024-12-09T06:11:56.998Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "imperméable",
+ "hasLocution": true,
+ "plural": "imperméables"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "polite set expression",
+ "human value",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "07243631-n",
+ "01211287-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression",
+ "psychology",
+ "human value",
+ "core vocabulary"
+ ],
+ "_id": 8129,
+ "created": "2009-02-20T11:25:17.000Z",
+ "lastUpdated": "2021-07-19T06:49:27.390Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "merci",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08798733-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8130,
+ "created": "2009-02-20T11:26:28.000Z",
+ "lastUpdated": "2021-07-18T12:31:47.532Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Grèce",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "09563541-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 8131,
+ "created": "2009-02-20T11:27:03.000Z",
+ "lastUpdated": "2021-07-18T12:31:54.056Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fée",
+ "hasLocution": true,
+ "plural": "fées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00314920-a"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 8133,
+ "created": "2009-02-20T11:29:00.000Z",
+ "lastUpdated": "2024-10-21T12:04:47.695Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "herbivore",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "tale character"
+ ],
+ "synsets": [
+ "00779033-v",
+ "02592550-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 8132,
+ "created": "2009-02-20T11:27:38.000Z",
+ "lastUpdated": "2021-07-18T12:32:12.599Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "envoûter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "jeter un sort",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08949695-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8121,
+ "created": "2009-02-20T11:19:12.000Z",
+ "lastUpdated": "2021-04-16T20:31:10.808Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "France",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "03565610-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 8137,
+ "created": "2009-02-20T11:32:49.000Z",
+ "lastUpdated": "2021-07-18T12:33:15.055Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "igloo",
+ "hasLocution": false,
+ "plural": "igloos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "03544613-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 8134,
+ "created": "2009-02-20T11:30:53.000Z",
+ "lastUpdated": "2021-07-18T12:32:25.367Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fer à cheval",
+ "hasLocution": true,
+ "plural": "fers à cheval"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics",
+ "work tool"
+ ],
+ "synsets": [
+ "03710918-n"
+ ],
+ "tags": [
+ "physics",
+ "work",
+ "tool"
+ ],
+ "_id": 8138,
+ "created": "2009-02-20T11:33:27.000Z",
+ "lastUpdated": "2021-07-18T12:33:18.765Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aimant",
+ "hasLocution": true,
+ "plural": "aimants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mythological character",
+ "movie character",
+ "tale character",
+ "halloween",
+ "costume"
+ ],
+ "synsets": [
+ "09526253-n"
+ ],
+ "tags": [
+ "character",
+ "mythological character",
+ "mythology",
+ "movie character",
+ "cinema",
+ "book character",
+ "tale character",
+ "literature",
+ "event",
+ "popular event",
+ "halloween",
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 8135,
+ "created": "2009-02-20T11:31:34.000Z",
+ "lastUpdated": "2021-07-18T12:32:55.199Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "homme loup",
+ "hasLocution": true,
+ "plural": "hommes loup"
+ },
+ {
+ "keyword": "loup-garou",
+ "hasLocution": false,
+ "plural": "loups-garous",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00850100-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 8139,
+ "created": "2009-02-20T11:34:05.000Z",
+ "lastUpdated": "2021-07-18T12:33:22.069Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "insulter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00850100-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 8140,
+ "created": "2009-02-20T11:34:30.000Z",
+ "lastUpdated": "2021-07-19T06:49:21.839Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "insulter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01839438-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 8142,
+ "created": "2009-02-20T11:35:52.000Z",
+ "lastUpdated": "2021-07-18T12:33:32.271Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se mouvoir d'un lieu vers un autre, s'y rendre",
+ "keyword": "aller",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "invertebrate animal"
+ ],
+ "synsets": [
+ "02520331-a"
+ ],
+ "tags": [
+ "animal",
+ "invertebrate"
+ ],
+ "_id": 8141,
+ "created": "2009-02-20T11:35:07.000Z",
+ "lastUpdated": "2021-07-18T12:33:28.713Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "invertébré",
+ "hasLocution": true,
+ "plural": "invertébrés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 8136,
+ "created": "2009-02-20T11:32:11.000Z",
+ "lastUpdated": "2021-07-18T16:05:11.744Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "horchata",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "01544805-s",
+ "03971038-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 8146,
+ "created": "2009-02-20T12:05:56.000Z",
+ "lastUpdated": "2021-07-18T12:33:47.248Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jouet adapté",
+ "hasLocution": true,
+ "plural": "jouets adaptés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public building",
+ "law and justice"
+ ],
+ "synsets": [
+ "03654773-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "public administration",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 8147,
+ "created": "2009-02-20T12:07:44.000Z",
+ "lastUpdated": "2021-07-18T16:05:17.432Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tribunal",
+ "hasLocution": true,
+ "plural": "tribunaux"
+ },
+ {
+ "keyword": "cour",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08819530-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8143,
+ "created": "2009-02-20T11:37:07.000Z",
+ "lastUpdated": "2021-05-05T21:36:52.089Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Italie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8149,
+ "created": "2009-02-20T12:09:25.000Z",
+ "lastUpdated": "2021-05-05T21:35:04.043Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "La Rioja",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "law and justice"
+ ],
+ "synsets": [
+ "02506927-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 8148,
+ "created": "2009-02-20T12:08:18.000Z",
+ "lastUpdated": "2021-07-18T12:34:10.748Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "juger",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "jugement",
+ "hasLocution": true,
+ "plural": "jugements"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03635277-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 8150,
+ "created": "2009-02-20T12:10:19.000Z",
+ "lastUpdated": "2021-07-18T12:34:22.878Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "laboratoire",
+ "hasLocution": true,
+ "plural": "laboratoires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "egypt",
+ "archaeology"
+ ],
+ "synsets": [
+ "06373848-n"
+ ],
+ "tags": [
+ "history",
+ "civilization",
+ "Egypt",
+ "archaeology"
+ ],
+ "_id": 8145,
+ "created": "2009-02-20T12:05:12.000Z",
+ "lastUpdated": "2021-07-18T15:53:57.842Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hiéroglyphe",
+ "hasLocution": true,
+ "plural": "hiéroglyphes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01978076-v",
+ "01987278-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 8151,
+ "created": "2009-02-20T12:11:02.000Z",
+ "lastUpdated": "2021-07-19T06:49:17.014Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "lever",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se lever",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "se redresser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "object"
+ ],
+ "synsets": [
+ "03618503-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "object"
+ ],
+ "_id": 8153,
+ "created": "2009-02-20T12:12:13.000Z",
+ "lastUpdated": "2021-05-05T21:34:45.656Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clé",
+ "hasLocution": true,
+ "plural": "clés"
+ },
+ {
+ "keyword": "clef",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "clefs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "physical exercise",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01978076-v",
+ "01987278-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "core vocabulary"
+ ],
+ "_id": 8152,
+ "created": "2009-02-20T12:11:29.000Z",
+ "lastUpdated": "2024-12-10T18:23:18.340Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "lever",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se lever",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "se redresser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "measurement unit"
+ ],
+ "synsets": [
+ "05091408-n",
+ "05136830-n"
+ ],
+ "tags": [
+ "mathematics",
+ "measurement unit"
+ ],
+ "_id": 8154,
+ "created": "2009-02-20T12:12:53.000Z",
+ "lastUpdated": "2021-07-18T12:35:14.812Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "distance",
+ "hasLocution": true,
+ "plural": "distances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08941623-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8144,
+ "created": "2009-02-20T12:04:26.000Z",
+ "lastUpdated": "2021-04-12T21:18:23.533Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Japon",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "05025269-n",
+ "03670692-n"
+ ],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 8155,
+ "created": "2009-02-20T12:13:37.000Z",
+ "lastUpdated": "2021-07-18T12:35:19.472Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lumières",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "lumières de couleurs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08991642-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8159,
+ "created": "2009-02-20T12:18:58.000Z",
+ "lastUpdated": "2021-05-05T21:32:26.242Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Maroc",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime"
+ ],
+ "synsets": [
+ "01326622-v",
+ "02488014-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime"
+ ],
+ "_id": 8160,
+ "created": "2009-02-20T12:19:34.000Z",
+ "lastUpdated": "2021-07-18T12:35:23.478Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tuer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "assassiner ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime"
+ ],
+ "synsets": [
+ "01326622-v",
+ "02488014-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime"
+ ],
+ "_id": 8161,
+ "created": "2009-02-20T12:19:55.000Z",
+ "lastUpdated": "2021-07-18T12:35:26.695Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tuer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "assassiner ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "09903961-n",
+ "10601606-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 8162,
+ "created": "2009-02-20T12:20:36.000Z",
+ "lastUpdated": "2021-07-18T12:35:49.964Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maître d'hôtel",
+ "hasLocution": true,
+ "plural": "maitres d'hötel"
+ },
+ {
+ "type": 2,
+ "keyword": "serveur",
+ "hasLocution": true,
+ "plural": "serveurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower"
+ ],
+ "synsets": [
+ "12191102-n"
+ ],
+ "tags": [
+ "plant",
+ "flower"
+ ],
+ "_id": 8157,
+ "created": "2009-02-20T12:16:52.000Z",
+ "lastUpdated": "2021-05-05T21:33:34.935Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mauve",
+ "hasLocution": true,
+ "plural": "mauves"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament",
+ "covid-19",
+ "core vocabulary-knowledge",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "03745652-n",
+ "00659325-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament",
+ "covid-19",
+ "core vocabulary"
+ ],
+ "_id": 8163,
+ "created": "2009-02-20T12:21:12.000Z",
+ "lastUpdated": "2021-07-28T15:17:03.705Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "médicaments",
+ "hasLocution": true,
+ "plural": "médicaments"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "remèdes",
+ "plural": "remèdes"
+ },
+ {
+ "type": 2,
+ "keyword": "traitement",
+ "hasLocution": true,
+ "plural": "traitements"
+ },
+ {
+ "keyword": "médecine",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8164,
+ "created": "2009-02-20T12:22:01.000Z",
+ "lastUpdated": "2021-05-05T21:32:08.321Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Melilla",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01496967-v",
+ "00187671-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 8166,
+ "created": "2009-02-20T12:23:16.000Z",
+ "lastUpdated": "2021-07-18T12:36:20.534Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mettre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physiology",
+ "reproductive system"
+ ],
+ "synsets": [
+ "13534950-n"
+ ],
+ "tags": [
+ "human body",
+ "physiology",
+ "human physiology",
+ "reproductive system"
+ ],
+ "_id": 8165,
+ "created": "2009-02-20T12:22:43.000Z",
+ "lastUpdated": "2021-07-18T12:36:15.465Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "menstruations",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "règles",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08758708-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8167,
+ "created": "2009-02-20T12:24:14.000Z",
+ "lastUpdated": "2021-05-05T21:31:18.968Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Mexique",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "biology",
+ "medical device"
+ ],
+ "synsets": [
+ "03766206-n"
+ ],
+ "tags": [
+ "biology",
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 8168,
+ "created": "2009-02-20T12:24:56.000Z",
+ "lastUpdated": "2021-05-05T21:30:53.819Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "microscope",
+ "hasLocution": true,
+ "plural": "microscopes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "aragon"
+ ],
+ "synsets": [],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "Aragon"
+ ],
+ "_id": 8169,
+ "created": "2009-02-20T12:26:54.000Z",
+ "lastUpdated": "2021-08-01T17:59:18.038Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "migas",
+ "plural": "migas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8156,
+ "created": "2009-02-20T12:14:49.000Z",
+ "lastUpdated": "2021-05-05T21:34:06.607Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Communauté de Madrid",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "human body"
+ ],
+ "synsets": [
+ "14312373-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "human body"
+ ],
+ "_id": 8170,
+ "created": "2009-02-20T12:27:47.000Z",
+ "lastUpdated": "2024-12-10T06:35:14.739Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bleu",
+ "hasLocution": true,
+ "plural": "bleus"
+ },
+ {
+ "type": 2,
+ "keyword": "hématome",
+ "hasLocution": false,
+ "plural": "hématomes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "09897322-n",
+ "00245359-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 8171,
+ "created": "2009-02-20T12:28:35.000Z",
+ "lastUpdated": "2021-07-18T12:37:03.325Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "brun",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "brune",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "insect",
+ "oviparous",
+ "flying animal"
+ ],
+ "synsets": [
+ "02276911-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "flying animal"
+ ],
+ "_id": 8158,
+ "created": "2009-02-20T12:17:42.000Z",
+ "lastUpdated": "2021-05-05T21:32:56.997Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "papillon",
+ "hasLocution": true,
+ "plural": "papillons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tv show",
+ "musical art"
+ ],
+ "synsets": [
+ "07032286-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show",
+ "music"
+ ],
+ "_id": 8175,
+ "created": "2009-02-20T12:32:51.000Z",
+ "lastUpdated": "2021-03-12T13:35:34.237Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "comédie musicale",
+ "hasLocution": true,
+ "plural": "comédies musicales"
+ },
+ {
+ "keyword": "programme de variétés",
+ "hasLocution": false,
+ "plural": "programmes de variétés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00361585-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 8176,
+ "created": "2009-02-20T12:33:28.000Z",
+ "lastUpdated": "2021-07-18T12:37:14.738Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "naître",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8177,
+ "created": "2009-02-20T12:34:44.000Z",
+ "lastUpdated": "2021-05-05T21:29:20.712Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Navarre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical geography"
+ ],
+ "synsets": [
+ "01573077-s",
+ "01572087-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "geography",
+ "physical geography"
+ ],
+ "_id": 8173,
+ "created": "2009-02-20T12:29:46.000Z",
+ "lastUpdated": "2021-07-18T12:37:11.631Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mondial",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "13853375-n",
+ "13857626-n",
+ "13853640-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 8178,
+ "created": "2009-02-20T12:35:25.000Z",
+ "lastUpdated": "2021-05-05T21:29:10.121Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Nord",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00316006-a"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 8180,
+ "created": "2009-02-20T12:36:21.000Z",
+ "lastUpdated": "2024-10-21T12:05:01.663Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "omnivore",
+ "hasLocution": true,
+ "plural": "omnivores"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "13858335-n",
+ "13856598-n",
+ "00325301-r",
+ "00827889-a"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 8179,
+ "created": "2009-02-20T12:35:46.000Z",
+ "lastUpdated": "2021-05-05T21:29:03.460Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Ouest",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "death"
+ ],
+ "synsets": [
+ "00096133-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 8172,
+ "created": "2009-02-20T12:29:12.000Z",
+ "lastUpdated": "2021-07-18T12:37:06.201Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mort",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8174,
+ "created": "2009-02-20T12:32:12.000Z",
+ "lastUpdated": "2021-05-05T21:29:59.764Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Murcie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09001424-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8185,
+ "created": "2009-02-20T12:42:19.000Z",
+ "lastUpdated": "2021-05-05T21:27:37.717Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pérou",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fossil origin material",
+ "mining industry"
+ ],
+ "synsets": [
+ "15005138-n",
+ "02798192-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "fossil origin material",
+ "work",
+ "primary sector",
+ "mining"
+ ],
+ "_id": 8186,
+ "created": "2009-02-20T12:42:55.000Z",
+ "lastUpdated": "2021-07-18T12:37:20.828Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pétrole",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "01483400-v",
+ "01157556-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 8187,
+ "created": "2009-02-20T12:43:59.000Z",
+ "lastUpdated": "2021-07-18T12:37:27.116Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attraper",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "atteindre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01483400-v",
+ "01157556-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game",
+ "physical exercise"
+ ],
+ "_id": 8188,
+ "created": "2009-02-20T12:47:08.000Z",
+ "lastUpdated": "2024-12-11T09:01:43.811Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attraper",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "atteindre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01684943-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 8189,
+ "created": "2009-02-20T12:47:51.000Z",
+ "lastUpdated": "2021-03-25T21:36:34.057Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "peindre avec les doigts ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "décorer avec les doigts",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "egypt",
+ "archaeology"
+ ],
+ "synsets": [
+ "04035601-n",
+ "13937870-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "history",
+ "civilization",
+ "Egypt",
+ "archaeology"
+ ],
+ "_id": 8190,
+ "created": "2009-02-20T12:48:35.000Z",
+ "lastUpdated": "2021-05-05T21:27:25.113Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pyramide",
+ "hasLocution": true,
+ "plural": "pyramides"
+ },
+ {
+ "keyword": "Grande Pyramide",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "13993683-n",
+ "13993147-n"
+ ],
+ "tags": [],
+ "_id": 8182,
+ "created": "2009-02-20T12:39:27.000Z",
+ "lastUpdated": "2021-05-05T21:28:08.374Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "paix",
+ "hasLocution": true,
+ "plural": "paix"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09000713-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8181,
+ "created": "2009-02-20T12:37:50.000Z",
+ "lastUpdated": "2021-05-05T21:28:17.762Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Paraguay",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "christmas"
+ ],
+ "synsets": [
+ "07651629-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 8193,
+ "created": "2009-02-20T12:50:44.000Z",
+ "lastUpdated": "2021-05-05T21:25:50.490Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sablé",
+ "hasLocution": false,
+ "plural": "sablés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "00245266-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 8184,
+ "created": "2009-02-20T12:40:57.000Z",
+ "lastUpdated": "2021-07-18T12:37:17.662Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "roux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "polite set expression"
+ ],
+ "synsets": [
+ "00010428-r",
+ "00761314-v",
+ "00784104-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 8194,
+ "created": "2009-02-20T12:51:49.000Z",
+ "lastUpdated": "2021-07-18T12:37:50.764Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "s'il vous plaît",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "supplier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prier",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "01393487-v",
+ "00464691-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 8192,
+ "created": "2009-02-20T12:50:08.000Z",
+ "lastUpdated": "2021-07-18T12:37:39.159Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "repasser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "lisser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "polite set expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00010428-r",
+ "00761314-v",
+ "00784104-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression",
+ "core vocabulary"
+ ],
+ "_id": 8195,
+ "created": "2009-02-20T12:52:11.000Z",
+ "lastUpdated": "2021-07-18T12:37:58.817Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "s'il vous plaît",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "supplier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prier",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09007158-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8196,
+ "created": "2009-02-20T12:53:26.000Z",
+ "lastUpdated": "2021-05-05T21:25:03.150Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Portugal",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas",
+ "infrastructure"
+ ],
+ "synsets": [
+ "04579630-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas",
+ "place",
+ "infrastructure"
+ ],
+ "_id": 8197,
+ "created": "2009-02-20T12:54:00.000Z",
+ "lastUpdated": "2021-05-05T21:24:56.736Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "puits",
+ "hasLocution": true,
+ "plural": "puits"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mountain"
+ ],
+ "synsets": [
+ "02844544-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 8198,
+ "created": "2009-02-20T12:54:37.000Z",
+ "lastUpdated": "2021-05-05T21:24:22.034Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jumelles",
+ "hasLocution": true,
+ "plural": "jumelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tv show"
+ ],
+ "synsets": [
+ "06633086-n",
+ "00913288-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show"
+ ],
+ "_id": 8199,
+ "created": "2009-02-20T12:55:42.000Z",
+ "lastUpdated": "2021-03-12T13:50:13.434Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "programme de bricolage ",
+ "hasLocution": false,
+ "plural": "programmes de bricolage"
+ },
+ {
+ "keyword": "émission de bricolage",
+ "hasLocution": false,
+ "plural": "émissions de bricolage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material",
+ "recreational facility"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "sensory stimulation",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 8191,
+ "created": "2009-02-20T12:49:21.000Z",
+ "lastUpdated": "2021-05-05T21:26:50.408Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piscine de balles ",
+ "hasLocution": false,
+ "plural": "piscines de balles "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tv show"
+ ],
+ "synsets": [
+ "06633086-n",
+ "00244785-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show"
+ ],
+ "_id": 8200,
+ "created": "2009-02-20T12:56:17.000Z",
+ "lastUpdated": "2021-03-12T13:54:41.251Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "programme de cuisine",
+ "hasLocution": true,
+ "plural": "programmes de cuisine"
+ },
+ {
+ "keyword": "émission de cuisine",
+ "hasLocution": false,
+ "plural": "émissions de cuisine",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "02757108-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 8204,
+ "created": "2009-02-20T13:04:11.000Z",
+ "lastUpdated": "2021-07-18T15:54:15.684Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vaporisateur",
+ "hasLocution": true,
+ "plural": "vaporisateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "jewelry",
+ "accessories"
+ ],
+ "synsets": [
+ "04563490-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "jewelry",
+ "accessories"
+ ],
+ "_id": 8203,
+ "created": "2009-02-20T13:03:31.000Z",
+ "lastUpdated": "2021-07-18T12:38:07.297Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bracelet",
+ "hasLocution": true,
+ "plural": "bracelets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recycling"
+ ],
+ "synsets": [
+ "00950684-n"
+ ],
+ "tags": [
+ "environmental science",
+ "recycling"
+ ],
+ "_id": 8205,
+ "created": "2009-02-20T13:04:44.000Z",
+ "lastUpdated": "2021-05-05T21:20:27.531Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "recyclage",
+ "hasLocution": false,
+ "plural": "recyclages"
+ },
+ {
+ "keyword": "récupération",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "récupérations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08879115-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8206,
+ "created": "2009-02-20T13:05:59.000Z",
+ "lastUpdated": "2021-05-05T21:19:29.262Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Royaume-Uni",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Grande-Bretagne",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media"
+ ],
+ "synsets": [
+ "06900649-n",
+ "02142548-v"
+ ],
+ "tags": [
+ "communication",
+ "mass media"
+ ],
+ "_id": 8201,
+ "created": "2009-02-20T13:02:09.000Z",
+ "lastUpdated": "2021-05-05T21:23:24.940Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "projection",
+ "hasLocution": true,
+ "plural": "projections"
+ },
+ {
+ "type": 3,
+ "keyword": "projeter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "work organization"
+ ],
+ "synsets": [
+ "08327319-n",
+ "01233454-n"
+ ],
+ "tags": [
+ "work",
+ "organization"
+ ],
+ "_id": 8207,
+ "created": "2009-02-20T13:06:55.000Z",
+ "lastUpdated": "2021-07-19T06:49:07.579Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "réunion",
+ "hasLocution": true,
+ "plural": "réunions"
+ },
+ {
+ "keyword": "rencontre",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "rencontres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hairdresser"
+ ],
+ "synsets": [
+ "01226180-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 8208,
+ "created": "2009-02-20T13:07:33.000Z",
+ "lastUpdated": "2021-05-05T21:16:55.653Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "friser les cheveux",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "boucler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime"
+ ],
+ "synsets": [
+ "02326737-v",
+ "02282293-v",
+ "00783339-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime"
+ ],
+ "_id": 8209,
+ "created": "2009-02-20T13:08:21.000Z",
+ "lastUpdated": "2021-07-18T12:38:30.891Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "agresser",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "vol ",
+ "hasLocution": false,
+ "plural": "vols"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media device",
+ "mass media"
+ ],
+ "synsets": [
+ "04015928-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media",
+ "communication"
+ ],
+ "_id": 8202,
+ "created": "2009-02-20T13:02:51.000Z",
+ "lastUpdated": "2021-05-05T21:22:39.628Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "projecteur",
+ "hasLocution": true,
+ "plural": "projecteurs"
+ },
+ {
+ "keyword": "vidéoprojecteur",
+ "hasLocution": false,
+ "plural": "vidéoprojecteurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime"
+ ],
+ "synsets": [
+ "02326737-v",
+ "02282293-v",
+ "00783339-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime"
+ ],
+ "_id": 8210,
+ "created": "2009-02-20T13:08:50.000Z",
+ "lastUpdated": "2021-07-18T15:54:45.652Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "agresser",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "vol ",
+ "hasLocution": false,
+ "plural": "vols"
+ },
+ {
+ "keyword": "hold-up",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "hold-up"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08831830-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8214,
+ "created": "2009-02-20T13:12:40.000Z",
+ "lastUpdated": "2021-05-05T21:15:48.285Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Roumanie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery",
+ "household"
+ ],
+ "synsets": [
+ "04110300-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 8211,
+ "created": "2009-02-20T13:10:07.000Z",
+ "lastUpdated": "2024-12-07T13:33:39.771Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rouleau",
+ "hasLocution": true,
+ "plural": "rouleaux"
+ },
+ {
+ "type": 2,
+ "keyword": "rouleau à pâtisserie",
+ "hasLocution": false,
+ "plural": "rouleaux à pâtisserie"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07654678-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 8212,
+ "created": "2009-02-20T13:10:43.000Z",
+ "lastUpdated": "2021-07-18T12:39:17.834Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "doughnut",
+ "hasLocution": false,
+ "plural": "doughnuts"
+ },
+ {
+ "keyword": "donut",
+ "hasLocution": true,
+ "plural": "donuts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09028783-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8215,
+ "created": "2009-02-20T13:13:37.000Z",
+ "lastUpdated": "2021-05-05T21:15:42.035Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Russie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01999243-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 8216,
+ "created": "2009-02-20T13:14:14.000Z",
+ "lastUpdated": "2021-07-18T12:39:37.244Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "retirer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sortir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "special education",
+ "signaling system"
+ ],
+ "synsets": [
+ "13582922-n",
+ "03042670-n",
+ "00878415-n",
+ "04112987-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "special education",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 8218,
+ "created": "2009-02-20T13:15:40.000Z",
+ "lastUpdated": "2021-07-18T15:54:52.206Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de stimulation ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "stimulation ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "salle multi-sensorielle",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "special education",
+ "signaling system"
+ ],
+ "synsets": [
+ "13582922-n",
+ "03042670-n",
+ "00878415-n",
+ "04112987-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "special education",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 8217,
+ "created": "2009-02-20T13:15:01.000Z",
+ "lastUpdated": "2021-07-18T12:39:43.207Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de stimulation ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "stimulation ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "salle multi-sensorielle",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "00244463-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 8213,
+ "created": "2009-02-20T13:11:28.000Z",
+ "lastUpdated": "2021-07-18T15:54:48.878Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "blond",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "blonde",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "egypt",
+ "archaeology"
+ ],
+ "synsets": [
+ "04143128-n"
+ ],
+ "tags": [
+ "history",
+ "civilization",
+ "Egypt",
+ "archaeology"
+ ],
+ "_id": 8220,
+ "created": "2009-02-20T13:17:06.000Z",
+ "lastUpdated": "2021-05-05T21:15:26.072Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sarcophage",
+ "hasLocution": true,
+ "plural": "sarcophages"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "special education",
+ "signaling system"
+ ],
+ "synsets": [
+ "13582922-n",
+ "03042670-n",
+ "00878415-n",
+ "04112987-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "special education",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 8219,
+ "created": "2009-02-20T13:16:04.000Z",
+ "lastUpdated": "2021-07-18T12:39:51.093Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de stimulation ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "stimulation ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "salle multi-sensorielle",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09018232-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8221,
+ "created": "2009-02-20T13:18:03.000Z",
+ "lastUpdated": "2021-05-05T21:15:13.326Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Sénégal",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education",
+ "child"
+ ],
+ "synsets": [
+ "14183105-n"
+ ],
+ "tags": [
+ "education",
+ "special education",
+ "person",
+ "child"
+ ],
+ "_id": 8222,
+ "created": "2009-02-20T13:21:04.000Z",
+ "lastUpdated": "2021-07-18T12:39:55.159Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trisomie 21",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room"
+ ],
+ "synsets": [
+ "02803656-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room"
+ ],
+ "_id": 8223,
+ "created": "2009-02-20T13:21:57.000Z",
+ "lastUpdated": "2021-04-15T21:32:20.951Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cave",
+ "hasLocution": true,
+ "plural": "caves"
+ },
+ {
+ "keyword": "sous-sol",
+ "hasLocution": false,
+ "plural": "sous-sols",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "comic character",
+ "movie character"
+ ],
+ "synsets": [
+ "10021357-n"
+ ],
+ "tags": [
+ "character",
+ "comic character",
+ "comic",
+ "movie character",
+ "cinema"
+ ],
+ "_id": 8227,
+ "created": "2009-02-20T13:25:34.000Z",
+ "lastUpdated": "2021-05-05T21:12:49.623Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Superman",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "13855574-n",
+ "13858098-n",
+ "00245397-r",
+ "01606912-a"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 8228,
+ "created": "2009-02-20T13:26:08.000Z",
+ "lastUpdated": "2021-05-05T21:12:42.377Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Sud",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tv show",
+ "mass media"
+ ],
+ "synsets": [
+ "10717864-n",
+ "06632357-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show"
+ ],
+ "_id": 8229,
+ "created": "2009-02-20T13:26:45.000Z",
+ "lastUpdated": "2024-12-13T06:56:39.788Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "journal télévisé",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "nouvelles",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bulletin informatif ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "programme",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "journal",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bulletin d'informations",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "05018974-n"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 8230,
+ "created": "2009-02-20T13:27:34.000Z",
+ "lastUpdated": "2021-05-05T21:12:30.414Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "température",
+ "hasLocution": true,
+ "plural": "températures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "religious building",
+ "rome",
+ "greece",
+ "history"
+ ],
+ "synsets": [
+ "04414821-n",
+ "04414570-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "building",
+ "religion",
+ "history",
+ "civilization",
+ "Rome",
+ "Greece"
+ ],
+ "_id": 8231,
+ "created": "2009-02-20T13:28:07.000Z",
+ "lastUpdated": "2024-12-13T07:15:35.968Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "temple",
+ "hasLocution": true,
+ "plural": "temples"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hairdresser"
+ ],
+ "synsets": [
+ "00283850-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 8232,
+ "created": "2009-02-20T13:28:44.000Z",
+ "lastUpdated": "2021-03-25T22:01:04.408Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "teindre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "colorer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01925957-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 8226,
+ "created": "2009-02-20T13:24:50.000Z",
+ "lastUpdated": "2021-07-18T15:54:56.960Z",
+ "keywords": [
+ {
+ "keyword": "grimper",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "monter",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "painting"
+ ],
+ "synsets": [
+ "02685776-n",
+ "07461133-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "visual art",
+ "painting"
+ ],
+ "_id": 8225,
+ "created": "2009-02-20T13:23:47.000Z",
+ "lastUpdated": "2021-05-05T21:14:41.899Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "spray",
+ "hasLocution": true,
+ "plural": "sprays"
+ },
+ {
+ "keyword": "aérosol",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "aérosols"
+ },
+ {
+ "keyword": "vaporisateur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "vaporisateurs"
+ },
+ {
+ "keyword": "bombe aérosol",
+ "hasLocution": false,
+ "plural": "bombes aérosols",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "movie character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "movie character",
+ "cinema"
+ ],
+ "_id": 8224,
+ "created": "2009-02-20T13:23:06.000Z",
+ "lastUpdated": "2021-05-05T21:14:59.873Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Spiderman",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tv show",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "11545095-n",
+ "06633086-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 8233,
+ "created": "2009-02-20T13:29:52.000Z",
+ "lastUpdated": "2021-03-12T14:05:13.588Z",
+ "keywords": [
+ {
+ "keyword": "programme météo",
+ "hasLocution": false,
+ "plural": "programmes météos",
+ "type": 2
+ },
+ {
+ "keyword": "météo",
+ "hasLocution": false,
+ "plural": "météos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "keyboard instrument"
+ ],
+ "synsets": [
+ "01728928-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music",
+ "musical instrument",
+ "keyboard instrument"
+ ],
+ "_id": 8234,
+ "created": "2009-02-20T13:31:14.000Z",
+ "lastUpdated": "2021-05-05T21:11:02.099Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "jouer du piano",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01925957-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 8237,
+ "created": "2009-02-20T13:33:05.000Z",
+ "lastUpdated": "2021-07-19T06:49:02.787Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "grimper",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01925957-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 8236,
+ "created": "2009-02-20T13:32:40.000Z",
+ "lastUpdated": "2021-07-18T12:40:27.489Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "grimper",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01904401-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8238,
+ "created": "2009-02-20T13:33:44.000Z",
+ "lastUpdated": "2021-07-18T12:40:33.686Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "trébucher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01904401-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8239,
+ "created": "2009-02-20T13:34:08.000Z",
+ "lastUpdated": "2021-07-19T06:48:59.133Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "trébucher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "medical test"
+ ],
+ "synsets": [
+ "11450082-n",
+ "00524175-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 8235,
+ "created": "2009-02-20T13:31:55.000Z",
+ "lastUpdated": "2021-05-05T21:10:25.260Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prendre la tension",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "tension",
+ "hasLocution": true,
+ "plural": "tensions"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "pression artérielle",
+ "type": 2,
+ "plural": "pressions artérielles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01989043-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 8241,
+ "created": "2009-02-20T13:35:52.000Z",
+ "lastUpdated": "2021-07-19T06:49:39.705Z",
+ "keywords": [
+ {
+ "keyword": "s'allonger",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01989043-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 8242,
+ "created": "2009-02-20T13:36:15.000Z",
+ "lastUpdated": "2021-07-18T15:55:31.474Z",
+ "keywords": [
+ {
+ "keyword": "s'allonger",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "03950948-n",
+ "13924014-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 8240,
+ "created": "2009-02-20T13:34:57.000Z",
+ "lastUpdated": "2021-07-18T12:40:48.603Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tuyauterie",
+ "hasLocution": true,
+ "plural": "tuyauteries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09183088-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 8244,
+ "created": "2009-02-20T13:38:09.000Z",
+ "lastUpdated": "2021-07-18T15:55:54.362Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Uruguay",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "measurement unit",
+ "land transport"
+ ],
+ "synsets": [
+ "15307914-n"
+ ],
+ "tags": [
+ "mathematics",
+ "measurement unit",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 8247,
+ "created": "2009-02-20T13:40:32.000Z",
+ "lastUpdated": "2021-07-18T15:56:16.785Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vitesse",
+ "hasLocution": true,
+ "plural": "vitesses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "spain region"
+ ],
+ "_id": 8246,
+ "created": "2009-02-20T13:39:54.000Z",
+ "lastUpdated": "2021-07-19T06:49:49.166Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pays valencien",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chemistry"
+ ],
+ "synsets": [
+ "15061483-n",
+ "15056943-n"
+ ],
+ "tags": [
+ "chemistry"
+ ],
+ "_id": 8248,
+ "created": "2009-02-20T13:41:49.000Z",
+ "lastUpdated": "2021-07-18T15:56:36.916Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "venin",
+ "hasLocution": true,
+ "plural": "venins"
+ },
+ {
+ "keyword": "poison",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "poisons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vertebrate"
+ ],
+ "synsets": [
+ "01474323-n",
+ "02520120-a"
+ ],
+ "tags": [
+ "animal",
+ "vertebrate"
+ ],
+ "_id": 8249,
+ "created": "2009-02-20T13:42:35.000Z",
+ "lastUpdated": "2021-07-18T15:56:41.688Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "vertébré",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "vertébrés",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "02703626-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 8250,
+ "created": "2009-02-20T19:15:42.000Z",
+ "lastUpdated": "2021-07-18T15:56:47.633Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "papier aluminium",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crockery"
+ ],
+ "synsets": [
+ "00036773-v",
+ "01252288-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "crockery",
+ "home"
+ ],
+ "_id": 8251,
+ "created": "2009-02-20T19:22:08.000Z",
+ "lastUpdated": "2021-07-18T15:56:52.614Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frotter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00100933-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 8252,
+ "created": "2009-02-20T19:37:09.000Z",
+ "lastUpdated": "2021-07-18T15:56:56.888Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "éteint",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "éteinte",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00295445-s",
+ "00295445-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 8245,
+ "created": "2009-02-20T13:38:42.000Z",
+ "lastUpdated": "2021-07-18T15:56:03.124Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "paresseux",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "fainéant",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01297878-v",
+ "02628315-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 8243,
+ "created": "2009-02-20T13:37:03.000Z",
+ "lastUpdated": "2021-07-18T15:55:50.026Z",
+ "keywords": [
+ {
+ "keyword": "relier",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "14805384-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 8255,
+ "created": "2009-02-20T20:18:48.000Z",
+ "lastUpdated": "2021-07-18T15:57:18.869Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "eau oxygénée",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "02780739-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 8254,
+ "created": "2009-02-20T20:06:18.000Z",
+ "lastUpdated": "2021-07-18T15:57:06.368Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balcon",
+ "hasLocution": true,
+ "plural": "balcons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "christmas",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "15221279-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "christmas",
+ "religious event",
+ "religion",
+ "christianity"
+ ],
+ "_id": 8260,
+ "created": "2009-02-20T21:48:42.000Z",
+ "lastUpdated": "2021-07-18T15:58:08.932Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Réveillon",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Réveillon de Noël",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "nuit de Noël",
+ "hasLocution": true
+ },
+ {
+ "keyword": "24 décembre",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "new year"
+ ],
+ "synsets": [
+ "15206888-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "new year"
+ ],
+ "_id": 8261,
+ "created": "2009-02-20T21:49:41.000Z",
+ "lastUpdated": "2021-09-03T17:04:38.370Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "nuit de la Saint-Sylvestre",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "nuit de la Saint Sylvestre",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Fin d'Année ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "31 décembre",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "réveillon de la Saint-Sylvestre",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "02182105-v",
+ "01054173-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 8262,
+ "created": "2009-02-20T21:56:19.000Z",
+ "lastUpdated": "2021-07-18T15:58:37.205Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "piailler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "covid-19"
+ ],
+ "synsets": [
+ "10040615-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "covid-19"
+ ],
+ "_id": 8263,
+ "created": "2009-02-20T21:58:46.000Z",
+ "lastUpdated": "2021-07-18T15:58:55.639Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "médecin",
+ "hasLocution": true,
+ "plural": "médecins"
+ },
+ {
+ "type": 2,
+ "keyword": "docteure",
+ "hasLocution": false,
+ "plural": "docteures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character",
+ "christianity",
+ "christmas"
+ ],
+ "synsets": [
+ "11192171-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "religion",
+ "christianity",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 8264,
+ "created": "2009-02-20T22:00:00.000Z",
+ "lastUpdated": "2021-07-18T15:59:04.326Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Melchior",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element"
+ ],
+ "synsets": [
+ "04058937-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element"
+ ],
+ "_id": 8266,
+ "created": "2009-02-23T09:24:34.000Z",
+ "lastUpdated": "2021-07-18T15:59:27.585Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mur",
+ "hasLocution": true,
+ "plural": "murs"
+ },
+ {
+ "type": 2,
+ "keyword": "muraille",
+ "hasLocution": true,
+ "plural": "murailles"
+ },
+ {
+ "keyword": "rempart",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "remparts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status",
+ "wedding",
+ "event",
+ "religious event",
+ "social event"
+ ],
+ "synsets": [
+ "08005815-n",
+ "13987306-n",
+ "01039028-n"
+ ],
+ "tags": [
+ "person",
+ "marital status",
+ "event",
+ "social event",
+ "wedding",
+ "religious event"
+ ],
+ "_id": 8256,
+ "created": "2009-02-20T20:32:44.000Z",
+ "lastUpdated": "2024-12-13T06:39:05.229Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mariage",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mariés",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "jeunes mariés",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts"
+ ],
+ "synsets": [
+ "00274275-r"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 8274,
+ "created": "2009-02-24T13:13:38.000Z",
+ "lastUpdated": "2021-07-18T15:59:30.730Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "à travers",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "book character",
+ "movie character",
+ "halloween",
+ "costume"
+ ],
+ "synsets": [
+ "09622575-n",
+ "09622369-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "literature",
+ "movie character",
+ "cinema",
+ "event",
+ "popular event",
+ "halloween",
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 8279,
+ "created": "2009-02-24T13:23:47.000Z",
+ "lastUpdated": "2021-07-18T15:59:43.467Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Frankenstein",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tv show"
+ ],
+ "synsets": [
+ "07261731-n",
+ "07263469-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show"
+ ],
+ "_id": 8275,
+ "created": "2009-02-24T13:14:58.000Z",
+ "lastUpdated": "2021-03-12T13:33:53.429Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "annonce",
+ "hasLocution": true,
+ "plural": "annonces"
+ },
+ {
+ "keyword": "publicité TV",
+ "hasLocution": false,
+ "plural": "publicités TV",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container"
+ ],
+ "synsets": [
+ "02950393-n"
+ ],
+ "tags": [
+ "object",
+ "container"
+ ],
+ "_id": 8280,
+ "created": "2009-02-24T13:25:02.000Z",
+ "lastUpdated": "2021-07-18T16:00:07.513Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conserve",
+ "hasLocution": true,
+ "plural": "conserves"
+ },
+ {
+ "keyword": "boite de conserve",
+ "hasLocution": false,
+ "plural": "boites de conserve",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "workwear"
+ ],
+ "synsets": [
+ "03868628-n"
+ ],
+ "tags": [
+ "work",
+ "clothes",
+ "workwear"
+ ],
+ "_id": 8281,
+ "created": "2009-02-24T13:26:00.000Z",
+ "lastUpdated": "2021-07-18T16:00:40.978Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "combinaison",
+ "hasLocution": false,
+ "plural": "combinaisons"
+ },
+ {
+ "keyword": "bleu de travail",
+ "hasLocution": false,
+ "plural": "bleus de travail",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "set phrase",
+ "tale character"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "set phrase",
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 8277,
+ "created": "2009-02-24T13:21:48.000Z",
+ "lastUpdated": "2021-07-18T15:59:40.362Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "Il était un fois",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "02986245-n",
+ "14034398-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 8289,
+ "created": "2009-03-10T09:46:36.000Z",
+ "lastUpdated": "2021-07-18T16:00:45.094Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "stop",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry",
+ "clothes"
+ ],
+ "synsets": [
+ "03946532-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 8291,
+ "created": "2009-03-16T10:27:40.000Z",
+ "lastUpdated": "2024-12-09T06:28:59.147Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "épingle",
+ "hasLocution": true,
+ "plural": "épingles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "07766562-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 8292,
+ "created": "2009-03-16T10:29:11.000Z",
+ "lastUpdated": "2021-07-18T16:01:00.165Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amande",
+ "hasLocution": true,
+ "plural": "amandes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03266479-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 8293,
+ "created": "2009-03-16T10:39:27.000Z",
+ "lastUpdated": "2021-07-18T16:01:12.594Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écouteur",
+ "hasLocution": true,
+ "plural": "écouteurs"
+ },
+ {
+ "type": 2,
+ "keyword": "casques",
+ "hasLocution": true,
+ "plural": "casques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "nursing equipment"
+ ],
+ "synsets": [
+ "04374833-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 8294,
+ "created": "2009-03-16T10:41:23.000Z",
+ "lastUpdated": "2021-05-06T21:35:00.525Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "coton-tige",
+ "plural": "cotons-tiges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "13937623-n"
+ ],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 8276,
+ "created": "2009-02-24T13:15:44.000Z",
+ "lastUpdated": "2021-07-18T15:59:34.900Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cube avec des images",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dessert"
+ ],
+ "synsets": [
+ "07615220-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert"
+ ],
+ "_id": 8298,
+ "created": "2009-03-16T11:02:03.000Z",
+ "lastUpdated": "2021-07-18T16:01:51.462Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bonbon",
+ "hasLocution": true,
+ "plural": "bonbons"
+ },
+ {
+ "keyword": "chocolat",
+ "type": 2,
+ "plural": "chocolats",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "02876113-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 8299,
+ "created": "2009-03-16T11:04:40.000Z",
+ "lastUpdated": "2021-05-06T21:28:57.381Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "botte",
+ "hasLocution": true,
+ "plural": "bottes"
+ },
+ {
+ "keyword": "botte en caoutchouc",
+ "hasLocution": false,
+ "plural": "bottes en caoutchouc",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 8300,
+ "created": "2009-03-16T11:09:30.000Z",
+ "lastUpdated": "2021-07-18T16:01:55.218Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cabochard",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07879523-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 8301,
+ "created": "2009-03-16T11:19:27.000Z",
+ "lastUpdated": "2021-05-06T21:27:54.955Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cannelloni",
+ "hasLocution": true,
+ "plural": "cannellonis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07647646-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 8295,
+ "created": "2009-03-16T10:48:08.000Z",
+ "lastUpdated": "2021-07-18T16:01:27.355Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sponge cake",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "07788250-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 8302,
+ "created": "2009-03-16T11:21:26.000Z",
+ "lastUpdated": "2021-05-06T21:27:32.333Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "châtaigne",
+ "hasLocution": true,
+ "plural": "châtaignes"
+ },
+ {
+ "keyword": "marron",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "marrons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas"
+ ],
+ "synsets": [
+ "03174056-n",
+ "04281649-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 8296,
+ "created": "2009-03-16T10:55:45.000Z",
+ "lastUpdated": "2021-05-06T21:32:08.145Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boule de Noël",
+ "hasLocution": false,
+ "plural": "boules de Noël"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07773108-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 8303,
+ "created": "2009-03-16T11:23:20.000Z",
+ "lastUpdated": "2021-05-06T21:26:51.502Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cerise",
+ "hasLocution": true,
+ "plural": "cerises"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03830811-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 8297,
+ "created": "2009-03-16T10:58:35.000Z",
+ "lastUpdated": "2021-05-06T21:30:50.948Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quille",
+ "hasLocution": true,
+ "plural": "quilles"
+ },
+ {
+ "keyword": "quille de bowling",
+ "hasLocution": false,
+ "plural": "quilles de bowling",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07881991-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 8307,
+ "created": "2009-03-16T11:37:36.000Z",
+ "lastUpdated": "2021-05-06T21:25:03.089Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "croquette",
+ "hasLocution": true,
+ "plural": "croquettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "04438879-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 8304,
+ "created": "2009-03-16T11:29:56.000Z",
+ "lastUpdated": "2021-05-06T21:26:39.807Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "punaise",
+ "hasLocution": true,
+ "plural": "punaises"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "13937623-n",
+ "13939754-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 8308,
+ "created": "2009-03-16T11:40:40.000Z",
+ "lastUpdated": "2021-05-06T21:24:31.584Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cube ",
+ "hasLocution": false,
+ "plural": "cubes"
+ },
+ {
+ "keyword": "hexaèdre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "hexaèdres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "sport material"
+ ],
+ "synsets": [
+ "03167484-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "sport material"
+ ],
+ "_id": 8309,
+ "created": "2009-03-16T11:42:20.000Z",
+ "lastUpdated": "2021-05-06T21:22:23.031Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fléchette",
+ "hasLocution": true,
+ "plural": "fléchettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "food"
+ ],
+ "synsets": [
+ "07642919-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 8310,
+ "created": "2009-03-16T11:43:55.000Z",
+ "lastUpdated": "2024-12-12T07:03:00.466Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "friand",
+ "hasLocution": true,
+ "plural": "friands"
+ },
+ {
+ "keyword": "chausson",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chaussons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07767427-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 8305,
+ "created": "2009-03-16T11:30:49.000Z",
+ "lastUpdated": "2021-05-06T21:26:06.641Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prune",
+ "hasLocution": false,
+ "plural": "prunes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07752668-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 8311,
+ "created": "2009-03-16T11:45:39.000Z",
+ "lastUpdated": "2021-05-06T21:20:33.637Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "épinard",
+ "hasLocution": true,
+ "plural": "épinards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07650764-n",
+ "07709717-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 8312,
+ "created": "2009-03-16T11:49:05.000Z",
+ "lastUpdated": "2021-05-06T21:19:59.833Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "biscuit",
+ "plural": "biscuits"
+ },
+ {
+ "keyword": "gâteau sec",
+ "hasLocution": false,
+ "plural": "gâteaux secs",
+ "type": 2
+ },
+ {
+ "keyword": "gâteau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "gâteaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry",
+ "object"
+ ],
+ "synsets": [
+ "03810284-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry",
+ "object"
+ ],
+ "_id": 8306,
+ "created": "2009-03-16T11:32:59.000Z",
+ "lastUpdated": "2024-12-05T07:13:09.613Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clou",
+ "hasLocution": true,
+ "plural": "clous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "02785352-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 8313,
+ "created": "2009-03-16T11:52:06.000Z",
+ "lastUpdated": "2021-05-06T21:16:20.146Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ballon",
+ "hasLocution": true,
+ "plural": "ballons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03780604-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 8314,
+ "created": "2009-03-16T11:56:16.000Z",
+ "lastUpdated": "2021-03-26T15:07:52.875Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moufle",
+ "hasLocution": true,
+ "plural": "moufles"
+ },
+ {
+ "keyword": "mitaine",
+ "hasLocution": false,
+ "plural": "mitaines",
+ "type": 2
+ },
+ {
+ "keyword": "gant",
+ "hasLocution": true,
+ "plural": "gants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "03726382-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 8315,
+ "created": "2009-03-16T13:06:02.000Z",
+ "lastUpdated": "2021-05-06T21:15:25.836Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maraca",
+ "hasLocution": true,
+ "plural": "maracas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "visual system"
+ ],
+ "synsets": [
+ "05322469-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "visual system"
+ ],
+ "_id": 8319,
+ "created": "2009-03-16T13:23:23.000Z",
+ "lastUpdated": "2021-07-18T16:02:32.436Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cil",
+ "hasLocution": true,
+ "plural": "cils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "sport material",
+ "skating"
+ ],
+ "synsets": [
+ "04232791-n",
+ "04109712-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "sport material",
+ "skating"
+ ],
+ "_id": 8318,
+ "created": "2009-03-16T13:20:45.000Z",
+ "lastUpdated": "2021-05-06T21:11:24.840Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patin",
+ "hasLocution": true,
+ "plural": "patins"
+ },
+ {
+ "keyword": "patin à roulettes",
+ "hasLocution": false,
+ "plural": "patins à roulettes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit",
+ "food"
+ ],
+ "synsets": [
+ "07791173-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 8321,
+ "created": "2009-03-16T13:25:24.000Z",
+ "lastUpdated": "2024-12-13T06:51:14.872Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "graine de tournesol",
+ "hasLocution": true,
+ "plural": "graines de tournesol"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "appliance"
+ ],
+ "synsets": [
+ "02813606-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 8320,
+ "created": "2009-03-16T13:24:14.000Z",
+ "lastUpdated": "2024-12-08T15:38:00.952Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pile",
+ "hasLocution": true,
+ "plural": "piles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "07791026-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 8322,
+ "created": "2009-03-16T13:27:28.000Z",
+ "lastUpdated": "2021-07-18T16:02:58.100Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pistache",
+ "hasLocution": true,
+ "plural": "pistaches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "02385089-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 8323,
+ "created": "2009-03-16T13:29:10.000Z",
+ "lastUpdated": "2021-07-18T16:03:06.272Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poney",
+ "hasLocution": true,
+ "plural": "poneys"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "12321962-n",
+ "07783320-n",
+ "07783525-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 8316,
+ "created": "2009-03-16T13:16:10.000Z",
+ "lastUpdated": "2021-05-06T21:14:23.482Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "olive",
+ "hasLocution": true,
+ "plural": "olives"
+ },
+ {
+ "type": 2,
+ "keyword": "olive noire",
+ "hasLocution": true,
+ "plural": "olives noires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "12321962-n",
+ "07783320-n",
+ "07783685-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 8317,
+ "created": "2009-03-16T13:18:11.000Z",
+ "lastUpdated": "2021-05-06T21:13:33.144Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "olive",
+ "hasLocution": true,
+ "plural": "olives"
+ },
+ {
+ "type": 2,
+ "keyword": "olive verte",
+ "hasLocution": true,
+ "plural": "olives vertes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07691372-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 8326,
+ "created": "2009-03-16T13:36:41.000Z",
+ "lastUpdated": "2021-07-18T16:03:27.142Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saucisse",
+ "hasLocution": true,
+ "plural": "saucisses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02789081-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 8331,
+ "created": "2009-03-16T13:46:44.000Z",
+ "lastUpdated": "2021-07-18T16:03:42.312Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pansement",
+ "hasLocution": true,
+ "plural": "pansements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "equine-assisted therapy",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02385089-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy",
+ "domestic"
+ ],
+ "_id": 8324,
+ "created": "2009-03-16T13:31:33.000Z",
+ "lastUpdated": "2021-07-18T16:03:13.886Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poney",
+ "hasLocution": true,
+ "plural": "poneys"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "sportswear"
+ ],
+ "synsets": [
+ "03477658-n",
+ "04127583-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "leisure",
+ "sport",
+ "sportswear",
+ "clothing"
+ ],
+ "_id": 8332,
+ "created": "2009-03-16T13:48:00.000Z",
+ "lastUpdated": "2021-07-18T16:03:52.161Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussure de sport",
+ "hasLocution": true,
+ "plural": "chaussures de sport"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "04248522-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 8333,
+ "created": "2009-03-16T13:50:51.000Z",
+ "lastUpdated": "2021-07-18T16:03:58.739Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chausson",
+ "hasLocution": true,
+ "plural": "chaussons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "craftsmanship",
+ "educational material"
+ ],
+ "synsets": [
+ "02818206-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "craftsmanship",
+ "education",
+ "educational material"
+ ],
+ "_id": 8334,
+ "created": "2009-03-16T13:53:58.000Z",
+ "lastUpdated": "2024-12-11T06:49:27.604Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "perle",
+ "hasLocution": false,
+ "plural": "perles"
+ },
+ {
+ "type": 2,
+ "keyword": "perle de verre",
+ "hasLocution": false,
+ "plural": "perles de verre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07887412-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 8335,
+ "created": "2009-03-16T13:54:56.000Z",
+ "lastUpdated": "2021-07-18T16:04:33.860Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boulette",
+ "hasLocution": true,
+ "plural": "boulettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware",
+ "music device"
+ ],
+ "synsets": [
+ "03696785-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware",
+ "object",
+ "appliance",
+ "music device"
+ ],
+ "_id": 8336,
+ "created": "2009-03-16T13:56:01.000Z",
+ "lastUpdated": "2021-07-19T06:50:59.711Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "haut-parleur",
+ "hasLocution": true,
+ "plural": "haut-parleurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "excretory system"
+ ],
+ "synsets": [
+ "05340350-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "excretory system"
+ ],
+ "_id": 8325,
+ "created": "2009-03-16T13:34:33.000Z",
+ "lastUpdated": "2021-07-18T16:03:19.825Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rein",
+ "hasLocution": true,
+ "plural": "reins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant-based food",
+ "fungus"
+ ],
+ "synsets": [
+ "13021651-n",
+ "13018679-n",
+ "13021801-n",
+ "13013628-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "plant",
+ "fungus"
+ ],
+ "_id": 8328,
+ "created": "2009-03-16T13:38:38.000Z",
+ "lastUpdated": "2021-07-18T16:03:35.060Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "champignon",
+ "hasLocution": true,
+ "plural": "champignons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "legume"
+ ],
+ "synsets": [
+ "07743116-n",
+ "07740688-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "legume"
+ ],
+ "_id": 8337,
+ "created": "2009-03-16T13:57:31.000Z",
+ "lastUpdated": "2021-07-19T06:51:13.725Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "haricot",
+ "hasLocution": true,
+ "plural": "haricots"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "04261887-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 8339,
+ "created": "2009-03-16T14:00:59.000Z",
+ "lastUpdated": "2021-07-18T16:07:46.996Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussette",
+ "hasLocution": true,
+ "plural": "chaussettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "07753721-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 8338,
+ "created": "2009-03-16T13:59:02.000Z",
+ "lastUpdated": "2021-07-18T16:07:43.290Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cacahuète",
+ "hasLocution": true,
+ "plural": "cacahuètes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument",
+ "fiestas del pilar"
+ ],
+ "synsets": [
+ "02872589-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument",
+ "event",
+ "popular event",
+ "fiestas del pilar"
+ ],
+ "_id": 8340,
+ "created": "2009-03-16T14:02:47.000Z",
+ "lastUpdated": "2021-07-18T16:07:54.968Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "castagnette",
+ "hasLocution": true,
+ "plural": "castagnettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "02873098-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 8341,
+ "created": "2009-03-16T14:04:10.000Z",
+ "lastUpdated": "2021-07-18T16:08:02.669Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bongo",
+ "hasLocution": true,
+ "plural": "bongos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "swimming"
+ ],
+ "synsets": [
+ "03368854-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 8343,
+ "created": "2009-03-16T14:06:59.000Z",
+ "lastUpdated": "2021-07-18T16:08:21.750Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tong",
+ "hasLocution": true,
+ "plural": "tongs"
+ },
+ {
+ "type": 2,
+ "keyword": "savate",
+ "hasLocution": true,
+ "plural": "savates"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "literacy genre",
+ "library science",
+ "educational material"
+ ],
+ "synsets": [
+ "07235754-n"
+ ],
+ "tags": [
+ "literature",
+ "literacy genre",
+ "library science",
+ "education",
+ "educational material"
+ ],
+ "_id": 8346,
+ "created": "2009-03-16T14:10:57.000Z",
+ "lastUpdated": "2021-07-19T06:51:21.935Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conte",
+ "hasLocution": true,
+ "plural": "contes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "04622201-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 8345,
+ "created": "2009-03-16T14:09:11.000Z",
+ "lastUpdated": "2021-07-18T16:08:35.314Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crotales",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07734958-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 8347,
+ "created": "2009-03-16T14:12:19.000Z",
+ "lastUpdated": "2021-07-18T16:08:47.105Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "asperge",
+ "hasLocution": true,
+ "plural": "asperges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04235116-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 8348,
+ "created": "2009-03-18T12:28:41.000Z",
+ "lastUpdated": "2021-07-18T16:08:54.355Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ski",
+ "hasLocution": true,
+ "plural": "skis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "06266354-n",
+ "14998823-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "core vocabulary"
+ ],
+ "_id": 8349,
+ "created": "2009-03-18T12:29:23.000Z",
+ "lastUpdated": "2021-07-19T06:51:31.132Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "papier",
+ "hasLocution": true,
+ "plural": "papiers"
+ },
+ {
+ "type": 2,
+ "keyword": "feuille",
+ "hasLocution": true,
+ "plural": "feuilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "crustacean",
+ "oviparous",
+ "marine animal"
+ ],
+ "synsets": [
+ "07810135-n",
+ "01989447-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "crustacean",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea"
+ ],
+ "_id": 8350,
+ "created": "2009-03-18T12:30:11.000Z",
+ "lastUpdated": "2021-07-18T16:09:12.216Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crevette rose",
+ "hasLocution": true,
+ "plural": "crevettes roses"
+ },
+ {
+ "keyword": "crevette",
+ "hasLocution": true,
+ "plural": "crevettes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "legume"
+ ],
+ "synsets": [
+ "12536430-n",
+ "07742071-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "legume"
+ ],
+ "_id": 8351,
+ "created": "2009-03-18T12:31:09.000Z",
+ "lastUpdated": "2021-07-18T16:09:15.444Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pois chiche",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "03155743-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 8344,
+ "created": "2009-03-16T14:07:50.000Z",
+ "lastUpdated": "2021-07-18T16:08:30.052Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rideau",
+ "hasLocution": true,
+ "plural": "rideaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "smoking"
+ ],
+ "synsets": [
+ "03734473-n",
+ "03733928-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "smoking"
+ ],
+ "_id": 8342,
+ "created": "2009-03-16T14:05:34.000Z",
+ "lastUpdated": "2021-07-18T16:08:10.378Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "allumette",
+ "hasLocution": true,
+ "plural": "allumette"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03446036-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 8353,
+ "created": "2009-03-18T12:57:47.000Z",
+ "lastUpdated": "2021-07-18T16:09:28.809Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gant",
+ "hasLocution": true,
+ "plural": "gants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document",
+ "biology",
+ "gardening"
+ ],
+ "synsets": [
+ "02678963-a",
+ "06434383-n"
+ ],
+ "tags": [
+ "document",
+ "information document",
+ "biology",
+ "work",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 8355,
+ "created": "2009-03-18T13:00:06.000Z",
+ "lastUpdated": "2021-07-19T06:51:40.465Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "livre sur les plantes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document",
+ "tourism"
+ ],
+ "synsets": [
+ "06434383-n",
+ "06435021-n"
+ ],
+ "tags": [
+ "document",
+ "information document",
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 8356,
+ "created": "2009-03-18T13:00:57.000Z",
+ "lastUpdated": "2022-05-05T07:55:28.502Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guide",
+ "hasLocution": true,
+ "plural": "guides"
+ },
+ {
+ "type": 2,
+ "keyword": "guide touristique",
+ "hasLocution": true,
+ "plural": "guides touristiques"
+ },
+ {
+ "type": 2,
+ "keyword": "guide de voyage",
+ "hasLocution": true,
+ "plural": "guides de voyage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07716709-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 8357,
+ "created": "2009-03-18T13:01:57.000Z",
+ "lastUpdated": "2021-07-19T06:51:49.502Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "macaroni",
+ "hasLocution": true,
+ "plural": "macaronis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "04330957-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 8358,
+ "created": "2009-03-18T13:02:39.000Z",
+ "lastUpdated": "2021-07-18T16:09:56.548Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "collants",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "03745652-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 8359,
+ "created": "2009-03-18T13:03:32.000Z",
+ "lastUpdated": "2021-07-28T15:15:12.971Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sachet de médicament",
+ "hasLocution": false,
+ "plural": "sachets de médicament"
+ },
+ {
+ "type": 2,
+ "keyword": "médicament",
+ "hasLocution": true,
+ "plural": "médicaments"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "remède",
+ "plural": "remèdes"
+ },
+ {
+ "keyword": "médicament en poudre",
+ "hasLocution": false,
+ "plural": "médicaments en poudre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07783147-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 8360,
+ "created": "2009-03-18T13:05:08.000Z",
+ "lastUpdated": "2021-07-18T16:10:29.032Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mûre",
+ "hasLocution": true,
+ "plural": "mûres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07743844-n",
+ "12599160-n",
+ "07741018-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 8354,
+ "created": "2009-03-18T12:59:11.000Z",
+ "lastUpdated": "2021-07-19T06:51:36.751Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "haricot vert",
+ "hasLocution": true,
+ "plural": "haricots verts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sweets"
+ ],
+ "synsets": [
+ "07622278-n",
+ "07621553-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 8352,
+ "created": "2009-03-18T12:32:21.000Z",
+ "lastUpdated": "2021-07-18T16:09:23.386Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bonbon",
+ "hasLocution": true,
+ "plural": "bonbons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "03146474-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 8361,
+ "created": "2009-03-18T13:06:40.000Z",
+ "lastUpdated": "2021-07-18T16:12:22.625Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "béquille",
+ "hasLocution": true,
+ "plural": "béquilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04460661-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 8362,
+ "created": "2009-03-18T13:09:37.000Z",
+ "lastUpdated": "2021-07-19T06:51:53.055Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cure-dents",
+ "hasLocution": true,
+ "plural": "cure-dents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food",
+ "dairy product"
+ ],
+ "synsets": [
+ "07866305-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "animal-based food",
+ "dairy product"
+ ],
+ "_id": 8366,
+ "created": "2009-03-18T13:15:59.000Z",
+ "lastUpdated": "2021-07-18T16:11:46.859Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fromage en portion",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04195222-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 8367,
+ "created": "2009-03-18T13:17:36.000Z",
+ "lastUpdated": "2021-07-18T16:11:55.881Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "drap",
+ "hasLocution": true,
+ "plural": "draps"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "04140872-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 8368,
+ "created": "2009-03-18T13:19:20.000Z",
+ "lastUpdated": "2021-07-18T16:12:33.152Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sandale",
+ "hasLocution": true,
+ "plural": "sandales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "respiratory system"
+ ],
+ "synsets": [
+ "05394887-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "respiratory system"
+ ],
+ "_id": 8365,
+ "created": "2009-03-18T13:15:10.000Z",
+ "lastUpdated": "2021-07-18T16:11:41.084Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poumon",
+ "hasLocution": true,
+ "plural": "poumons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07647646-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 8369,
+ "created": "2009-03-18T13:22:21.000Z",
+ "lastUpdated": "2021-07-18T16:12:46.038Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "biscuit",
+ "hasLocution": true,
+ "plural": "biscuits"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "football"
+ ],
+ "synsets": [
+ "14824204-n",
+ "04972838-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "football"
+ ],
+ "_id": 8370,
+ "created": "2009-03-18T13:23:06.000Z",
+ "lastUpdated": "2021-07-18T16:12:53.025Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carton jaune",
+ "hasLocution": false,
+ "plural": "cartons jaunes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "football"
+ ],
+ "synsets": [
+ "14824204-n",
+ "04969961-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "football"
+ ],
+ "_id": 8371,
+ "created": "2009-03-18T13:23:52.000Z",
+ "lastUpdated": "2021-07-18T16:21:17.039Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carton rouge",
+ "hasLocution": false,
+ "plural": "cartons rouges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05562038-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 8372,
+ "created": "2009-03-18T13:24:42.000Z",
+ "lastUpdated": "2021-07-18T16:13:14.761Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poitrine",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "néné",
+ "hasLocution": true,
+ "plural": "nénés"
+ },
+ {
+ "type": 2,
+ "keyword": "sein",
+ "hasLocution": true,
+ "plural": "seins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "jewelry",
+ "accessories"
+ ],
+ "synsets": [
+ "03267052-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "jewelry",
+ "accessories"
+ ],
+ "_id": 8363,
+ "created": "2009-03-18T13:10:44.000Z",
+ "lastUpdated": "2021-07-18T16:11:18.313Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boucle d'oreille",
+ "hasLocution": true,
+ "plural": "boucles d'oreille"
+ },
+ {
+ "type": 2,
+ "keyword": "pendant d'oreille",
+ "hasLocution": false,
+ "plural": "pendant d'oreille"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous",
+ "toy"
+ ],
+ "synsets": [
+ "09252616-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 8389,
+ "created": "2009-03-18T14:09:26.000Z",
+ "lastUpdated": "2024-12-09T11:45:29.810Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bulle",
+ "hasLocution": true,
+ "plural": "bulles"
+ },
+ {
+ "type": 2,
+ "keyword": "bulle de savon",
+ "hasLocution": true,
+ "plural": "bulles de savon"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07638745-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 8455,
+ "created": "2009-03-19T12:54:36.000Z",
+ "lastUpdated": "2021-07-18T16:14:26.844Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "beignet",
+ "hasLocution": true,
+ "plural": "beignets"
+ },
+ {
+ "keyword": "churros",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00595732-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8456,
+ "created": "2009-03-21T18:43:11.000Z",
+ "lastUpdated": "2021-07-19T06:52:10.032Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "connaître",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothes"
+ ],
+ "synsets": [
+ "03055234-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 8466,
+ "created": "2009-03-28T19:56:24.000Z",
+ "lastUpdated": "2021-07-18T16:14:48.051Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pince à linge",
+ "hasLocution": true,
+ "plural": "pinces à linge"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body sensation"
+ ],
+ "synsets": [
+ "00067316-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 8469,
+ "created": "2009-03-28T20:00:12.000Z",
+ "lastUpdated": "2021-07-18T16:15:02.359Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "suer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "transpirer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "religious act",
+ "christianity",
+ "easter week"
+ ],
+ "synsets": [
+ "07341888-n"
+ ],
+ "tags": [
+ "event",
+ "religious event",
+ "religion",
+ "christianity",
+ "popular event",
+ "easter week"
+ ],
+ "_id": 8470,
+ "created": "2009-03-28T20:42:18.000Z",
+ "lastUpdated": "2021-07-19T06:52:00.288Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "procession",
+ "hasLocution": true,
+ "plural": "processions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "03162014-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 8364,
+ "created": "2009-03-18T13:13:22.000Z",
+ "lastUpdated": "2021-07-18T16:11:34.757Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cymbale",
+ "hasLocution": true,
+ "plural": "cymbales"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "article"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "article"
+ ],
+ "_id": 8475,
+ "created": "2009-04-29T22:22:37.000Z",
+ "lastUpdated": "2021-07-18T16:15:18.657Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "quelques",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "article"
+ ],
+ "_id": 8474,
+ "created": "2009-04-29T22:21:34.000Z",
+ "lastUpdated": "2024-11-06T16:11:01.941Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "un",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "une",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "article"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "article"
+ ],
+ "_id": 8476,
+ "created": "2009-05-01T16:36:13.000Z",
+ "lastUpdated": "2021-07-18T16:15:24.730Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "la",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "le",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "article"
+ ],
+ "synsets": [],
+ "tags": [
+ "article"
+ ],
+ "_id": 8477,
+ "created": "2009-05-01T16:37:07.000Z",
+ "lastUpdated": "2024-10-18T05:02:24.080Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "les",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories"
+ ],
+ "synsets": [
+ "01889573-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 8480,
+ "created": "2009-05-18T10:19:10.000Z",
+ "lastUpdated": "2021-07-18T16:21:29.960Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éventer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [
+ "10148670-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 8375,
+ "created": "2009-03-18T13:48:39.000Z",
+ "lastUpdated": "2021-07-18T16:13:26.507Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "géant",
+ "hasLocution": true,
+ "plural": "géants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "condiment",
+ "cookery",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07691156-n",
+ "07689142-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment",
+ "cookery",
+ "gastronomy"
+ ],
+ "_id": 8481,
+ "created": "2009-05-18T10:25:39.000Z",
+ "lastUpdated": "2024-12-09T06:13:37.557Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "huile",
+ "hasLocution": true,
+ "plural": "huiles"
+ },
+ {
+ "type": 2,
+ "keyword": "huile de tournesol",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "senses"
+ ],
+ "synsets": [
+ "01590750-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 8484,
+ "created": "2009-05-18T13:49:42.000Z",
+ "lastUpdated": "2021-07-19T06:52:19.874Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "agréable",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "signaling system",
+ "beverage"
+ ],
+ "synsets": [
+ "00800773-a"
+ ],
+ "tags": [
+ "communication",
+ "signaling system",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 8485,
+ "created": "2009-05-18T13:50:28.000Z",
+ "lastUpdated": "2021-07-18T16:16:33.461Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "eau non potable",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traffic"
+ ],
+ "synsets": [
+ "02053645-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic"
+ ],
+ "_id": 8482,
+ "created": "2009-05-18T13:45:45.000Z",
+ "lastUpdated": "2021-07-18T16:16:07.826Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "dépasser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "doubler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "10132360-n",
+ "09783207-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 8487,
+ "created": "2009-05-18T13:52:40.000Z",
+ "lastUpdated": "2021-07-18T16:16:47.159Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ami",
+ "hasLocution": true,
+ "plural": "amis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "13954178-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 8488,
+ "created": "2009-05-19T09:26:52.000Z",
+ "lastUpdated": "2021-07-18T16:16:55.073Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amitié",
+ "hasLocution": true,
+ "plural": "amitiés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [
+ "08510271-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8489,
+ "created": "2009-05-19T09:34:24.000Z",
+ "lastUpdated": "2021-07-18T16:16:59.020Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Andalousie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "10132360-n",
+ "09783207-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 8486,
+ "created": "2009-05-18T13:51:48.000Z",
+ "lastUpdated": "2021-07-18T16:16:41.319Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amie",
+ "hasLocution": true,
+ "plural": "amies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "political geography"
+ ],
+ "synsets": [
+ "03156969-n",
+ "08529808-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography"
+ ],
+ "_id": 8483,
+ "created": "2009-05-18T13:47:14.000Z",
+ "lastUpdated": "2021-07-18T16:16:19.929Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "frontière",
+ "hasLocution": true,
+ "plural": "frontières"
+ },
+ {
+ "type": 2,
+ "keyword": "douane",
+ "hasLocution": true,
+ "plural": "douanes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "03671250-n",
+ "06887069-n",
+ "00292635-v",
+ "03670692-n"
+ ],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 8376,
+ "created": "2009-03-18T13:49:12.000Z",
+ "lastUpdated": "2021-07-18T16:14:00.126Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lumière de couleur",
+ "hasLocution": true,
+ "plural": "lumières de couleur"
+ },
+ {
+ "keyword": "ampoule de couleur",
+ "hasLocution": false,
+ "plural": "ampoules de couleur"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "string instrument"
+ ],
+ "synsets": [
+ "03500383-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "string instrument"
+ ],
+ "_id": 8493,
+ "created": "2009-05-19T13:44:42.000Z",
+ "lastUpdated": "2021-07-18T16:17:31.725Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "harpe",
+ "hasLocution": true,
+ "plural": "harpes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8494,
+ "created": "2009-05-19T13:46:48.000Z",
+ "lastUpdated": "2021-07-18T16:17:36.302Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Asturies",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "document"
+ ],
+ "synsets": [
+ "01022943-v",
+ "01022365-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "document"
+ ],
+ "_id": 8490,
+ "created": "2009-05-19T09:42:32.000Z",
+ "lastUpdated": "2024-12-05T10:05:15.158Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "noter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dietetics",
+ "healthy habit"
+ ],
+ "synsets": [
+ "01185958-s",
+ "00996467-s"
+ ],
+ "tags": [
+ "health",
+ "dietetics",
+ "lifestyle",
+ "healthy habit"
+ ],
+ "_id": 8496,
+ "created": "2009-05-19T13:48:38.000Z",
+ "lastUpdated": "2021-07-18T16:18:16.451Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "light",
+ "hasLocution": true
+ },
+ {
+ "keyword": "léger",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "faible en calories",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hobby"
+ ],
+ "synsets": [
+ "00938272-n"
+ ],
+ "tags": [
+ "leisure",
+ "hobby"
+ ],
+ "_id": 8495,
+ "created": "2009-05-19T13:47:40.000Z",
+ "lastUpdated": "2021-07-18T16:17:49.328Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "avion en papier",
+ "hasLocution": true,
+ "plural": "avions en papier"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "12954163-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 8492,
+ "created": "2009-05-19T13:40:26.000Z",
+ "lastUpdated": "2021-07-18T16:17:25.356Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "céleri",
+ "hasLocution": true,
+ "plural": "céleris"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [
+ "09047038-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8498,
+ "created": "2009-05-19T13:51:44.000Z",
+ "lastUpdated": "2021-07-18T16:18:35.314Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Baléares",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "waste disposal"
+ ],
+ "synsets": [
+ "10139987-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "waste disposal"
+ ],
+ "_id": 8500,
+ "created": "2009-05-19T13:54:03.000Z",
+ "lastUpdated": "2021-07-18T16:18:57.320Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éboueur",
+ "hasLocution": true,
+ "plural": "éboueurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recycling",
+ "pollution"
+ ],
+ "synsets": [
+ "14881648-n",
+ "14882443-n"
+ ],
+ "tags": [
+ "environmental science",
+ "recycling",
+ "pollution"
+ ],
+ "_id": 8499,
+ "created": "2009-05-19T13:52:41.000Z",
+ "lastUpdated": "2021-07-18T16:18:49.227Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poubelle",
+ "hasLocution": true,
+ "plural": "poubelles"
+ },
+ {
+ "keyword": "ordures",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "home"
+ ],
+ "synsets": [
+ "02729230-n",
+ "02729606-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 8491,
+ "created": "2009-05-19T13:35:15.000Z",
+ "lastUpdated": "2022-11-09T08:51:38.663Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "appartement",
+ "hasLocution": true,
+ "plural": "appartements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon",
+ "hunting"
+ ],
+ "synsets": [
+ "02919696-n",
+ "04015010-n"
+ ],
+ "tags": [
+ "object",
+ "weapon",
+ "work",
+ "primary sector",
+ "hunting"
+ ],
+ "_id": 8497,
+ "created": "2009-05-19T13:49:18.000Z",
+ "lastUpdated": "2021-07-18T16:30:24.087Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "projectile",
+ "hasLocution": true,
+ "plural": "projectiles"
+ },
+ {
+ "type": 2,
+ "keyword": "balle",
+ "hasLocution": true,
+ "plural": "balles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "02802334-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 8501,
+ "created": "2009-05-20T12:43:31.000Z",
+ "lastUpdated": "2021-07-18T16:19:19.435Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "batte de base-ball",
+ "hasLocution": true,
+ "plural": "battes de base-ball"
+ },
+ {
+ "type": 2,
+ "keyword": "batte",
+ "hasLocution": true,
+ "plural": "battes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "04586220-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 8504,
+ "created": "2009-05-20T12:57:30.000Z",
+ "lastUpdated": "2021-07-18T16:19:52.038Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "batteur",
+ "hasLocution": true,
+ "plural": "batteurs"
+ },
+ {
+ "keyword": "fouet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fouets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular festival"
+ ],
+ "synsets": [
+ "04276079-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "popular festival"
+ ],
+ "_id": 8505,
+ "created": "2009-05-20T13:01:20.000Z",
+ "lastUpdated": "2021-07-18T16:20:39.002Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "feux d'artifice",
+ "hasLocution": true
+ },
+ {
+ "keyword": "cierge magique",
+ "hasLocution": false,
+ "plural": "cierges magiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02413155-n",
+ "02413348-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 8507,
+ "created": "2009-05-20T13:08:08.000Z",
+ "lastUpdated": "2021-07-19T06:52:24.816Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bison",
+ "hasLocution": true,
+ "plural": "bisons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bill",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "13406050-n",
+ "13414935-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "bill",
+ "core vocabulary"
+ ],
+ "_id": 8506,
+ "created": "2009-05-20T13:06:13.000Z",
+ "lastUpdated": "2021-07-18T16:30:26.892Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "billets",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adapted sport"
+ ],
+ "synsets": [
+ "00464058-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "adapted sport"
+ ],
+ "_id": 8509,
+ "created": "2009-05-20T13:16:53.000Z",
+ "lastUpdated": "2021-07-18T16:30:31.901Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boccia",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport material"
+ ],
+ "synsets": [
+ "01415827-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 8502,
+ "created": "2009-05-20T12:45:58.000Z",
+ "lastUpdated": "2021-07-18T16:19:24.991Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frapper avec la batte",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07939537-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 8503,
+ "created": "2009-05-20T12:54:03.000Z",
+ "lastUpdated": "2021-07-18T16:19:35.331Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "milk-shake",
+ "hasLocution": true,
+ "plural": "milk-shakes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "educational material"
+ ],
+ "synsets": [
+ "03660621-n",
+ "02901103-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "education",
+ "educational material"
+ ],
+ "_id": 8508,
+ "created": "2009-05-20T13:14:20.000Z",
+ "lastUpdated": "2021-07-18T16:22:07.337Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blocs",
+ "hasLocution": true
+ },
+ {
+ "keyword": "briques",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "sport material",
+ "core vocabulary-object",
+ "sport"
+ ],
+ "synsets": [
+ "02776042-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "leisure",
+ "sport",
+ "sport material",
+ "core vocabulary"
+ ],
+ "_id": 8511,
+ "created": "2009-05-20T13:19:42.000Z",
+ "lastUpdated": "2024-12-09T11:42:34.619Z",
+ "keywords": [
+ {
+ "keyword": "sac de sport",
+ "hasLocution": false,
+ "plural": "sacs de sport"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "gardening",
+ "hobby"
+ ],
+ "synsets": [
+ "13132640-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "gardening",
+ "leisure",
+ "hobby"
+ ],
+ "_id": 8512,
+ "created": "2009-05-20T13:25:42.000Z",
+ "lastUpdated": "2021-07-18T16:30:40.106Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bonsaï",
+ "hasLocution": true,
+ "plural": "bonsaïs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body sensation"
+ ],
+ "synsets": [
+ "00007328-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 8513,
+ "created": "2009-05-20T13:27:50.000Z",
+ "lastUpdated": "2021-07-18T16:22:49.772Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bailler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body sensation"
+ ],
+ "synsets": [
+ "00007328-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 8514,
+ "created": "2009-05-20T13:33:41.000Z",
+ "lastUpdated": "2021-07-18T16:30:43.310Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bailler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "container"
+ ],
+ "synsets": [
+ "02705946-v",
+ "00301318-v",
+ "02665841-v",
+ "02741628-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "container"
+ ],
+ "_id": 8516,
+ "created": "2009-05-20T13:38:32.000Z",
+ "lastUpdated": "2021-07-19T06:53:22.672Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "adapter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic",
+ "beach"
+ ],
+ "synsets": [
+ "13586825-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 8515,
+ "created": "2009-05-20T13:34:54.000Z",
+ "lastUpdated": "2021-07-19T06:52:30.240Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crème solaire",
+ "hasLocution": true,
+ "plural": "crèmes solaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "03542265-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 8510,
+ "created": "2009-05-20T13:17:40.000Z",
+ "lastUpdated": "2021-07-18T16:30:36.725Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corne",
+ "hasLocution": true,
+ "plural": "cornes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "00554692-n",
+ "07312772-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 8517,
+ "created": "2009-05-20T13:40:31.000Z",
+ "lastUpdated": "2021-07-18T16:30:52.053Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte à surprise",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "surprise ",
+ "hasLocution": false,
+ "plural": "surprises"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "00371917-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 8520,
+ "created": "2009-05-21T12:46:15.000Z",
+ "lastUpdated": "2021-07-18T16:23:34.072Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réchauffer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "chauffer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "cuire",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs"
+ ],
+ "synsets": [
+ "00373903-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs"
+ ],
+ "_id": 8521,
+ "created": "2009-05-21T12:46:52.000Z",
+ "lastUpdated": "2021-03-26T15:01:13.600Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réchauffer",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "keyword": "se réchauffer",
+ "type": 3
+ },
+ {
+ "keyword": "chauffer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "work machine"
+ ],
+ "synsets": [
+ "03421952-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "work machine"
+ ],
+ "_id": 8523,
+ "created": "2009-05-21T12:48:49.000Z",
+ "lastUpdated": "2021-07-18T16:24:00.834Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "camion poubelle",
+ "hasLocution": false,
+ "plural": "camions poubelle"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "03451472-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 8524,
+ "created": "2009-05-21T13:04:59.000Z",
+ "lastUpdated": "2021-07-19T06:53:26.638Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "terrain de golf",
+ "hasLocution": true,
+ "plural": "terrain de golf"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [
+ "09047342-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8525,
+ "created": "2009-05-21T13:06:58.000Z",
+ "lastUpdated": "2021-07-19T06:53:29.794Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Canaries",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal",
+ "core vocabulary-living being",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "02439767-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic",
+ "core vocabulary"
+ ],
+ "_id": 8522,
+ "created": "2009-05-21T12:48:00.000Z",
+ "lastUpdated": "2021-07-18T16:27:34.330Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chameau",
+ "hasLocution": true,
+ "plural": "chameaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "02954794-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 8526,
+ "created": "2009-05-21T13:07:55.000Z",
+ "lastUpdated": "2021-07-18T16:25:00.401Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canoé",
+ "hasLocution": false,
+ "plural": "canoés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8527,
+ "created": "2009-05-21T13:08:53.000Z",
+ "lastUpdated": "2021-07-18T16:31:03.710Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Cantabrie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8529,
+ "created": "2009-05-21T13:44:08.000Z",
+ "lastUpdated": "2021-07-18T16:27:53.646Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Castilla-La-Mancha",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [
+ "09050737-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8530,
+ "created": "2009-05-21T13:45:14.000Z",
+ "lastUpdated": "2021-07-18T16:27:49.663Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Castilla-Leon",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [
+ "09050432-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8532,
+ "created": "2009-05-21T13:51:25.000Z",
+ "lastUpdated": "2021-07-18T16:31:06.565Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Catalogne",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "03338074-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 8531,
+ "created": "2009-05-21T13:50:16.000Z",
+ "lastUpdated": "2021-07-18T16:25:19.376Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "longue-vue",
+ "hasLocution": true,
+ "plural": "longues-vues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hunting"
+ ],
+ "synsets": [
+ "01146304-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "hunting"
+ ],
+ "_id": 8533,
+ "created": "2009-05-21T13:52:11.000Z",
+ "lastUpdated": "2021-07-19T06:53:42.586Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chasser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "energy"
+ ],
+ "synsets": [
+ "11446239-n",
+ "04003013-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "work",
+ "secondary sector",
+ "energy"
+ ],
+ "_id": 8534,
+ "created": "2009-05-21T13:52:53.000Z",
+ "lastUpdated": "2021-07-18T16:25:37.309Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "centrale nucléaire",
+ "hasLocution": true,
+ "plural": "centrales nucléaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "03594978-n",
+ "01268218-s"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 8536,
+ "created": "2009-05-21T13:55:13.000Z",
+ "lastUpdated": "2021-07-19T06:53:35.929Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "veste de clown",
+ "hasLocution": true,
+ "plural": "vestes de clown"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "city"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "city"
+ ],
+ "_id": 8535,
+ "created": "2009-05-21T13:54:13.000Z",
+ "lastUpdated": "2021-07-18T16:25:40.653Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Ceuta",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media",
+ "computing",
+ "covid-19"
+ ],
+ "synsets": [
+ "01040538-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mass media",
+ "computing",
+ "covid-19"
+ ],
+ "_id": 8537,
+ "created": "2009-05-21T13:56:15.000Z",
+ "lastUpdated": "2021-07-18T16:26:58.240Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chater",
+ "hasLocution": true
+ },
+ {
+ "keyword": "visioconférence",
+ "hasLocution": false,
+ "plural": "visioconférences"
+ },
+ {
+ "keyword": "vidéoconférence",
+ "hasLocution": false,
+ "plural": "vidéoconférences"
+ },
+ {
+ "keyword": "appel vidéo",
+ "hasLocution": false,
+ "plural": "appels vidéo"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media",
+ "computing"
+ ],
+ "synsets": [
+ "01040538-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mass media",
+ "computing"
+ ],
+ "_id": 8539,
+ "created": "2009-05-25T13:44:33.000Z",
+ "lastUpdated": "2021-07-18T16:28:16.276Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chater",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07776835-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 8540,
+ "created": "2009-05-25T13:45:47.000Z",
+ "lastUpdated": "2021-07-20T16:33:35.975Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "anone",
+ "hasLocution": true,
+ "plural": "anones"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03242119-n",
+ "03502782-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 8541,
+ "created": "2009-05-25T13:46:32.000Z",
+ "lastUpdated": "2021-07-18T16:28:42.991Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chapeau haut de forme",
+ "hasLocution": true,
+ "plural": "chapeaux haut de forme"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cinema"
+ ],
+ "synsets": [
+ "03041389-n"
+ ],
+ "tags": [
+ "scenic art",
+ "cinema",
+ "show"
+ ],
+ "_id": 8542,
+ "created": "2009-05-25T13:47:31.000Z",
+ "lastUpdated": "2021-07-18T16:28:54.429Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clap",
+ "hasLocution": false,
+ "plural": "claps"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mathematics",
+ "educational material"
+ ],
+ "synsets": [
+ "00638921-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mathematics",
+ "education",
+ "educational material"
+ ],
+ "_id": 8518,
+ "created": "2009-05-20T13:44:17.000Z",
+ "lastUpdated": "2021-07-18T16:23:22.383Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "calculer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cutlery",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03960019-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "cutlery",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 8545,
+ "created": "2009-05-25T13:49:05.000Z",
+ "lastUpdated": "2021-07-18T16:31:16.987Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couverts",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "athletics"
+ ],
+ "synsets": [
+ "01930264-v",
+ "01088514-v",
+ "10562445-n",
+ "09839665-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "athletics"
+ ],
+ "_id": 8544,
+ "created": "2009-05-25T13:48:23.000Z",
+ "lastUpdated": "2021-07-18T16:29:02.772Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se déplacer rapidement, en s'appuyant alternativement sur une jambe puis sur l'autre ou sur une patte puis sur l'autre",
+ "keyword": "courir",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "coureur",
+ "hasLocution": true,
+ "plural": "coureurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "02942602-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 8519,
+ "created": "2009-05-21T12:44:40.000Z",
+ "lastUpdated": "2021-07-18T16:23:30.164Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaudron",
+ "hasLocution": true,
+ "plural": "chaudrons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03251786-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 8547,
+ "created": "2009-05-25T13:50:35.000Z",
+ "lastUpdated": "2021-07-18T16:29:24.613Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "compte-gouttes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01806732-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 8548,
+ "created": "2009-05-25T13:51:30.000Z",
+ "lastUpdated": "2021-07-18T16:29:29.158Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "désagréable",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mythological character",
+ "religious character",
+ "christianity",
+ "islamism",
+ "judaism"
+ ],
+ "synsets": [
+ "09565450-n"
+ ],
+ "tags": [
+ "character",
+ "mythological character",
+ "mythology",
+ "religion",
+ "christianity",
+ "islamism",
+ "judaism"
+ ],
+ "_id": 8549,
+ "created": "2009-05-25T13:53:34.000Z",
+ "lastUpdated": "2021-07-18T16:29:36.554Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "diable",
+ "hasLocution": true,
+ "plural": "diables"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "drawing",
+ "professional artist"
+ ],
+ "synsets": [
+ "10048793-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "visual art",
+ "drawing",
+ "artist"
+ ],
+ "_id": 8550,
+ "created": "2009-05-25T13:54:17.000Z",
+ "lastUpdated": "2022-02-03T09:13:05.698Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dessinateur",
+ "hasLocution": true,
+ "plural": "dessinateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00166433-s",
+ "00166720-s",
+ "00759397-s",
+ "00166125-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 8551,
+ "created": "2009-05-25T13:55:54.000Z",
+ "lastUpdated": "2021-07-18T16:31:19.866Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "distrait",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cookery"
+ ],
+ "synsets": [
+ "13792309-n"
+ ],
+ "tags": [
+ "feeding",
+ "cookery"
+ ],
+ "_id": 8546,
+ "created": "2009-05-25T13:49:44.000Z",
+ "lastUpdated": "2021-07-18T16:29:19.324Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuillerée",
+ "hasLocution": true,
+ "plural": "cuillerées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "01795785-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 8552,
+ "created": "2009-05-25T13:56:23.000Z",
+ "lastUpdated": "2021-07-18T16:31:24.715Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "distraire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07694173-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat",
+ "core vocabulary"
+ ],
+ "_id": 8554,
+ "created": "2009-05-25T13:59:04.000Z",
+ "lastUpdated": "2021-07-18T16:31:40.261Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charcuterie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "07563271-n"
+ ],
+ "tags": [],
+ "_id": 8557,
+ "created": "2009-05-26T10:50:44.000Z",
+ "lastUpdated": "2021-07-18T16:32:00.399Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "inimitié",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "miscellaneous"
+ ],
+ "synsets": [
+ "10118479-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 8556,
+ "created": "2009-05-26T10:50:10.000Z",
+ "lastUpdated": "2021-07-19T06:53:55.880Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ennemis",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14085287-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 8558,
+ "created": "2009-05-26T10:51:51.000Z",
+ "lastUpdated": "2021-07-19T06:54:00.307Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maladie",
+ "hasLocution": true,
+ "plural": "maladies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00037131-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 8559,
+ "created": "2009-05-26T10:53:14.000Z",
+ "lastUpdated": "2021-07-18T16:32:17.275Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rincer la bouche",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "rincer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine",
+ "odontology"
+ ],
+ "synsets": [
+ "14872812-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine",
+ "health",
+ "odontology"
+ ],
+ "_id": 8561,
+ "created": "2009-05-26T10:58:46.000Z",
+ "lastUpdated": "2021-07-18T16:32:23.755Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "solution buccale",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00037131-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 8560,
+ "created": "2009-05-26T10:57:54.000Z",
+ "lastUpdated": "2021-07-19T06:54:11.632Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se rincer la bouche",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "rincer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "tourism",
+ "categorization"
+ ],
+ "synsets": [
+ "02777635-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "work",
+ "tertiary sector",
+ "tourism",
+ "categorization"
+ ],
+ "_id": 8562,
+ "created": "2009-05-26T10:59:56.000Z",
+ "lastUpdated": "2021-07-19T07:00:51.101Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bagages",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance",
+ "hardware"
+ ],
+ "synsets": [
+ "01513031-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "computing",
+ "hardware"
+ ],
+ "_id": 8555,
+ "created": "2009-05-25T14:00:19.000Z",
+ "lastUpdated": "2021-07-18T16:31:45.711Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "allumer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "literature"
+ ],
+ "synsets": [
+ "10813654-n",
+ "10820913-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "literature"
+ ],
+ "_id": 8565,
+ "created": "2009-05-26T11:10:43.000Z",
+ "lastUpdated": "2021-07-18T16:32:56.440Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écrivaine",
+ "hasLocution": true,
+ "plural": "écrivaines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sculpture",
+ "verb"
+ ],
+ "synsets": [
+ "01688232-v"
+ ],
+ "tags": [
+ "visual art",
+ "sculpture",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8566,
+ "created": "2009-05-26T11:14:15.000Z",
+ "lastUpdated": "2021-07-19T06:54:25.753Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sculpter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sculpture"
+ ],
+ "synsets": [
+ "04164381-n"
+ ],
+ "tags": [
+ "visual art",
+ "sculpture"
+ ],
+ "_id": 8567,
+ "created": "2009-05-26T11:15:19.000Z",
+ "lastUpdated": "2021-07-18T16:33:10.416Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sculpture",
+ "hasLocution": true,
+ "plural": "sculptures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "arachnid",
+ "ovoviviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01773034-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "arthropod",
+ "arachnid",
+ "ovoviviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 8564,
+ "created": "2009-05-26T11:09:53.000Z",
+ "lastUpdated": "2021-07-18T16:32:44.903Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scorpion",
+ "hasLocution": true,
+ "plural": "scorpions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "00452603-v",
+ "01461293-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 8568,
+ "created": "2009-05-26T11:16:54.000Z",
+ "lastUpdated": "2021-07-18T16:33:15.935Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "égoutter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon"
+ ],
+ "synsets": [
+ "02990947-n"
+ ],
+ "tags": [
+ "object",
+ "weapon"
+ ],
+ "_id": 8569,
+ "created": "2009-05-26T11:17:56.000Z",
+ "lastUpdated": "2021-07-18T16:33:21.926Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sabre",
+ "hasLocution": true,
+ "plural": "sabres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon"
+ ],
+ "synsets": [
+ "04380981-n"
+ ],
+ "tags": [
+ "object",
+ "weapon"
+ ],
+ "_id": 8570,
+ "created": "2009-05-26T11:18:49.000Z",
+ "lastUpdated": "2021-07-18T16:34:17.614Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "épée laser",
+ "hasLocution": true,
+ "plural": "épées laser"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "04150777-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 8571,
+ "created": "2009-05-26T11:19:49.000Z",
+ "lastUpdated": "2021-07-18T16:33:56.168Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "épouvantail",
+ "hasLocution": true,
+ "plural": "épouvantails"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00166433-s",
+ "00166125-a",
+ "00759397-s",
+ "00166720-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 8553,
+ "created": "2009-05-25T13:56:59.000Z",
+ "lastUpdated": "2021-07-18T16:31:29.768Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "distrait",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03778568-n",
+ "03490281-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "core vocabulary"
+ ],
+ "_id": 8573,
+ "created": "2009-05-26T11:22:17.000Z",
+ "lastUpdated": "2021-07-18T16:34:12.481Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "miroir",
+ "hasLocution": true,
+ "plural": "miroirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00241696-v",
+ "00319617-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8574,
+ "created": "2009-05-26T11:23:21.000Z",
+ "lastUpdated": "2021-07-18T16:34:24.457Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étirer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03914737-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 8575,
+ "created": "2009-05-26T11:24:13.000Z",
+ "lastUpdated": "2021-07-18T16:34:33.047Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trousse",
+ "hasLocution": true,
+ "plural": "trousses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8576,
+ "created": "2009-05-26T11:25:55.000Z",
+ "lastUpdated": "2021-07-19T06:54:29.213Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pays Basque",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Pays-basque",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "mountain"
+ ],
+ "synsets": [
+ "10616097-n",
+ "10195742-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 8577,
+ "created": "2009-05-26T11:28:38.000Z",
+ "lastUpdated": "2021-07-18T16:35:09.217Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "randonneuse",
+ "hasLocution": false,
+ "plural": "randonneuses"
+ },
+ {
+ "keyword": "marcheuse",
+ "hasLocution": false,
+ "plural": "marcheuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "chemistry"
+ ],
+ "synsets": [
+ "02538261-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "chemistry"
+ ],
+ "_id": 8578,
+ "created": "2009-05-26T11:29:25.000Z",
+ "lastUpdated": "2021-07-18T16:35:21.702Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "expérimenter",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "02910059-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 8563,
+ "created": "2009-05-26T11:00:41.000Z",
+ "lastUpdated": "2021-07-18T16:32:37.677Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balai",
+ "hasLocution": true,
+ "plural": "balais"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04277054-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 8572,
+ "created": "2009-05-26T11:21:21.000Z",
+ "lastUpdated": "2021-07-18T16:34:03.843Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "spatule",
+ "hasLocution": true,
+ "plural": "spatules"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8580,
+ "created": "2009-05-26T11:31:54.000Z",
+ "lastUpdated": "2021-07-18T16:35:31.479Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Estrémadure",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human value"
+ ],
+ "synsets": [
+ "07541996-n",
+ "14010908-n"
+ ],
+ "tags": [
+ "psychology",
+ "human value"
+ ],
+ "_id": 8582,
+ "created": "2009-05-26T12:53:32.000Z",
+ "lastUpdated": "2021-07-18T16:36:06.473Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bonheur",
+ "hasLocution": true,
+ "plural": "bonheurs"
+ },
+ {
+ "type": 2,
+ "keyword": "optimisme",
+ "hasLocution": false,
+ "plural": "optimisme"
+ },
+ {
+ "type": 2,
+ "keyword": "joie",
+ "hasLocution": true,
+ "plural": "joies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "educational material"
+ ],
+ "synsets": [
+ "03604123-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "education",
+ "educational material"
+ ],
+ "_id": 8583,
+ "created": "2009-05-26T12:58:45.000Z",
+ "lastUpdated": "2024-12-09T18:31:59.158Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pièce de puzzle",
+ "hasLocution": true,
+ "plural": "pièces de puzzle"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07715329-n",
+ "07598762-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 8584,
+ "created": "2009-05-26T13:02:21.000Z",
+ "lastUpdated": "2021-07-18T16:36:28.334Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vermicelles",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bouillon aux vermicelles",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance",
+ "document"
+ ],
+ "synsets": [
+ "03930801-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "document"
+ ],
+ "_id": 8586,
+ "created": "2009-05-26T13:19:55.000Z",
+ "lastUpdated": "2021-07-19T06:54:32.226Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "photocopieuse",
+ "hasLocution": true,
+ "plural": "photocopieuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "document",
+ "usual verbs",
+ "core vocabulary-communication",
+ "core vocabulary-document"
+ ],
+ "synsets": [
+ "01740180-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "document",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 8587,
+ "created": "2009-05-26T13:22:50.000Z",
+ "lastUpdated": "2021-07-19T06:57:36.306Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "photocopier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "industrial building",
+ "worksite"
+ ],
+ "synsets": [
+ "08074934-n",
+ "03321351-n",
+ "08082070-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "industry",
+ "work",
+ "workplace"
+ ],
+ "_id": 8581,
+ "created": "2009-05-26T11:32:56.000Z",
+ "lastUpdated": "2021-07-18T16:35:53.256Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entreprise",
+ "hasLocution": true,
+ "plural": "entreprises"
+ },
+ {
+ "type": 2,
+ "keyword": "usine",
+ "hasLocution": true,
+ "plural": "usines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "education"
+ ],
+ "synsets": [
+ "00941308-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education"
+ ],
+ "_id": 8579,
+ "created": "2009-05-26T11:30:22.000Z",
+ "lastUpdated": "2021-07-18T16:35:26.840Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "expliquer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower"
+ ],
+ "synsets": [
+ "11737868-n"
+ ],
+ "tags": [
+ "plant",
+ "flower"
+ ],
+ "_id": 8585,
+ "created": "2009-05-26T13:12:16.000Z",
+ "lastUpdated": "2021-07-18T16:36:42.137Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fleur de lotus",
+ "hasLocution": true,
+ "plural": "fleurs de lotus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "03537522-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 8589,
+ "created": "2009-05-26T13:35:51.000Z",
+ "lastUpdated": "2021-07-18T16:37:07.055Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crochet",
+ "hasLocution": true,
+ "plural": "crochets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chemistry"
+ ],
+ "synsets": [
+ "13793544-n"
+ ],
+ "tags": [
+ "chemistry"
+ ],
+ "_id": 8592,
+ "created": "2009-05-26T16:48:50.000Z",
+ "lastUpdated": "2021-07-18T16:38:08.707Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "goutte d'eau",
+ "hasLocution": true,
+ "plural": "gouttes d'eau"
+ },
+ {
+ "type": 2,
+ "keyword": "goutte",
+ "hasLocution": true,
+ "plural": "gouttes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 8590,
+ "created": "2009-05-26T16:46:57.000Z",
+ "lastUpdated": "2021-07-20T16:34:16.438Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "goalball",
+ "hasLocution": true,
+ "plural": "goalballs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [
+ "09050574-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8588,
+ "created": "2009-05-26T13:34:39.000Z",
+ "lastUpdated": "2021-07-19T06:57:39.314Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Galice",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01268418-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 8593,
+ "created": "2009-05-26T16:49:49.000Z",
+ "lastUpdated": "2021-07-19T06:54:46.285Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "drôle",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "amusant",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "document",
+ "container"
+ ],
+ "synsets": [
+ "02208876-v",
+ "02230274-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "document",
+ "object",
+ "container"
+ ],
+ "_id": 8596,
+ "created": "2009-05-26T16:54:04.000Z",
+ "lastUpdated": "2021-07-18T16:38:53.165Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": true,
+ "keyword": "ranger"
+ },
+ {
+ "keyword": "garder",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07784670-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 8594,
+ "created": "2009-05-26T16:50:34.000Z",
+ "lastUpdated": "2021-07-18T16:38:19.361Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grenade",
+ "hasLocution": true,
+ "plural": "grenades"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00008299-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8597,
+ "created": "2009-05-26T16:55:33.000Z",
+ "lastUpdated": "2021-07-11T09:47:56.621Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire un clin d'oeil",
+ "hasLocution": true
+ },
+ {
+ "keyword": "cligner de l'oeil",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "cligner des yeux",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00008299-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8598,
+ "created": "2009-05-26T16:56:26.000Z",
+ "lastUpdated": "2021-08-04T09:03:40.608Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire un clin d'œil",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "string instrument"
+ ],
+ "synsets": [
+ "03276921-n",
+ "03472449-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "string instrument"
+ ],
+ "_id": 8599,
+ "created": "2009-05-26T16:58:02.000Z",
+ "lastUpdated": "2021-07-19T06:54:56.774Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guitare électrique",
+ "hasLocution": true,
+ "plural": "guitares électriques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07584671-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "core vocabulary"
+ ],
+ "_id": 8600,
+ "created": "2009-05-26T16:58:59.000Z",
+ "lastUpdated": "2021-07-18T16:39:19.022Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "farine",
+ "hasLocution": true,
+ "plural": "farines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10156479-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 8591,
+ "created": "2009-05-26T16:47:55.000Z",
+ "lastUpdated": "2021-07-18T16:37:55.178Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joueur de golf",
+ "hasLocution": true,
+ "plural": "joueurs de golf"
+ },
+ {
+ "keyword": "golfeur",
+ "hasLocution": false,
+ "plural": "golfeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "02803372-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 8595,
+ "created": "2009-05-26T16:51:41.000Z",
+ "lastUpdated": "2021-07-19T06:54:49.793Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gant de base-ball",
+ "hasLocution": true,
+ "plural": "gants de base-ball"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "physical features",
+ "supporting document"
+ ],
+ "synsets": [
+ "06657156-n",
+ "04702328-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physical features",
+ "document",
+ "supporting document"
+ ],
+ "_id": 8604,
+ "created": "2009-05-26T17:02:27.000Z",
+ "lastUpdated": "2021-07-18T16:39:53.046Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "empreinte digitale",
+ "hasLocution": true,
+ "plural": "empreintes digitales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "06657802-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 8605,
+ "created": "2009-05-26T17:03:33.000Z",
+ "lastUpdated": "2021-07-18T16:39:57.929Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "traces de pas",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "traces",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "craftsmanship",
+ "construction"
+ ],
+ "synsets": [
+ "09878558-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "craftsmanship",
+ "construction"
+ ],
+ "_id": 8603,
+ "created": "2009-05-26T17:01:40.000Z",
+ "lastUpdated": "2021-07-19T06:55:03.783Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "forgeron",
+ "hasLocution": true,
+ "plural": "forgerons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural disaster"
+ ],
+ "synsets": [
+ "11487417-n",
+ "11541578-n"
+ ],
+ "tags": [
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 8606,
+ "created": "2009-05-26T17:04:26.000Z",
+ "lastUpdated": "2021-07-18T16:40:18.782Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ouragan",
+ "hasLocution": true,
+ "plural": "ouragans"
+ },
+ {
+ "keyword": "typhon",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "typhons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gender identity"
+ ],
+ "synsets": [
+ "01487390-a",
+ "01489504-a"
+ ],
+ "tags": [
+ "sexuality",
+ "gender identity"
+ ],
+ "_id": 8602,
+ "created": "2009-05-26T17:00:49.000Z",
+ "lastUpdated": "2021-07-19T06:54:59.907Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "féminin",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "14944099-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 8607,
+ "created": "2009-05-26T17:05:03.000Z",
+ "lastUpdated": "2021-07-18T16:40:25.644Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "insecticide",
+ "hasLocution": true,
+ "plural": "insecticide"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "09854894-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 8609,
+ "created": "2009-05-26T17:23:53.000Z",
+ "lastUpdated": "2021-07-18T16:40:44.679Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joueur de base-ball ",
+ "hasLocution": false,
+ "plural": "joueurs de base-ball "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical instrument"
+ ],
+ "synsets": [
+ "03806455-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument"
+ ],
+ "_id": 8608,
+ "created": "2009-05-26T17:06:05.000Z",
+ "lastUpdated": "2021-07-18T16:40:30.982Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "instruments de musique",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "instruments",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "instrument musical",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bush"
+ ],
+ "synsets": [
+ "11566165-n"
+ ],
+ "tags": [
+ "plant",
+ "bush"
+ ],
+ "_id": 8601,
+ "created": "2009-05-26T16:59:56.000Z",
+ "lastUpdated": "2021-07-18T16:39:27.671Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fougère",
+ "hasLocution": true,
+ "plural": "fougères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8613,
+ "created": "2009-05-26T17:39:44.000Z",
+ "lastUpdated": "2021-07-19T06:58:02.486Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "La Rioja",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aromatic plant",
+ "aromatic herb"
+ ],
+ "synsets": [
+ "07832272-n",
+ "11724138-n"
+ ],
+ "tags": [
+ "plant",
+ "aromatic plant",
+ "feeding",
+ "food",
+ "plant-based food"
+ ],
+ "_id": 8614,
+ "created": "2009-05-26T17:40:31.000Z",
+ "lastUpdated": "2021-07-19T06:58:12.165Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "laurier",
+ "hasLocution": true,
+ "plural": "lauriers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "01538034-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 8615,
+ "created": "2009-05-26T17:41:18.000Z",
+ "lastUpdated": "2021-07-19T08:00:18.134Z",
+ "keywords": [
+ {
+ "keyword": "savonner les cheveux",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "shampouiner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10459618-n",
+ "00472041-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 8611,
+ "created": "2009-05-26T17:36:38.000Z",
+ "lastUpdated": "2021-07-19T06:57:08.824Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joueur de rugby",
+ "hasLocution": true,
+ "plural": "joueurs de rugby"
+ },
+ {
+ "keyword": "rugbyman",
+ "hasLocution": false,
+ "plural": "rugbymen"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine",
+ "hairdresser"
+ ],
+ "synsets": [
+ "01538034-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 8616,
+ "created": "2009-05-26T17:41:54.000Z",
+ "lastUpdated": "2021-07-19T08:00:22.811Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver les cheveux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crockery"
+ ],
+ "synsets": [
+ "01538034-v",
+ "01535954-v",
+ "00252647-n",
+ "01253792-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "crockery",
+ "home"
+ ],
+ "_id": 8617,
+ "created": "2009-05-26T17:43:18.000Z",
+ "lastUpdated": "2021-07-19T07:06:41.266Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "02082451-s",
+ "01842483-s",
+ "02580838-a",
+ "00441663-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 8618,
+ "created": "2009-05-26T17:51:07.000Z",
+ "lastUpdated": "2021-07-19T07:06:49.408Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fou",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10121403-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 8610,
+ "created": "2009-05-26T17:33:30.000Z",
+ "lastUpdated": "2021-07-19T06:56:30.882Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joueur de football américain ",
+ "hasLocution": false,
+ "plural": "joueurs de football américain "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "law and justice"
+ ],
+ "synsets": [
+ "04857348-n",
+ "00695934-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 8612,
+ "created": "2009-05-26T17:38:07.000Z",
+ "lastUpdated": "2021-07-19T06:57:57.760Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "justice",
+ "hasLocution": true,
+ "plural": "justices"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8622,
+ "created": "2009-05-26T17:57:05.000Z",
+ "lastUpdated": "2021-07-19T07:08:04.122Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Communauté de Madrid",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07646632-n",
+ "07706018-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 8623,
+ "created": "2009-05-26T17:58:17.000Z",
+ "lastUpdated": "2021-07-19T08:00:26.407Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cupcake",
+ "hasLocution": false,
+ "plural": "cupcakes"
+ },
+ {
+ "keyword": "muffin",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "muffins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "insect",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02238696-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 8624,
+ "created": "2009-05-26T17:59:00.000Z",
+ "lastUpdated": "2021-07-19T07:08:59.991Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mante",
+ "hasLocution": true,
+ "plural": "mantes"
+ },
+ {
+ "keyword": "mante religieuse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mantes religieuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "03725654-n",
+ "13391842-n"
+ ],
+ "tags": [],
+ "_id": 8625,
+ "created": "2009-05-26T17:59:48.000Z",
+ "lastUpdated": "2021-07-19T08:00:29.545Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carte au trésor",
+ "hasLocution": false,
+ "plural": "cartes au trésor"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic",
+ "circus"
+ ],
+ "synsets": [
+ "03719774-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic",
+ "scenic art",
+ "circus",
+ "show"
+ ],
+ "_id": 8626,
+ "created": "2009-05-26T18:19:04.000Z",
+ "lastUpdated": "2021-07-19T07:09:44.860Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maquillage",
+ "hasLocution": true,
+ "plural": "maquillages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seafood",
+ "crustacean",
+ "christmas"
+ ],
+ "synsets": [
+ "07799186-n",
+ "01977414-n",
+ "02716896-a"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "seafood",
+ "animal",
+ "invertebrate",
+ "arthropod",
+ "crustacean",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 8627,
+ "created": "2009-05-26T18:19:54.000Z",
+ "lastUpdated": "2021-07-19T07:09:49.888Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fruits de mer",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "crustacés",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "city"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "city"
+ ],
+ "_id": 8628,
+ "created": "2009-05-26T18:20:59.000Z",
+ "lastUpdated": "2021-07-19T07:09:54.062Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Melilla",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "10276234-n",
+ "06769542-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 8629,
+ "created": "2009-05-26T18:21:50.000Z",
+ "lastUpdated": "2021-09-13T17:13:12.009Z",
+ "keywords": [
+ {
+ "keyword": "menteur",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "menteuse",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mining industry",
+ "worksite",
+ "workplace"
+ ],
+ "synsets": [
+ "03773881-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "mining",
+ "workplace",
+ "place"
+ ],
+ "_id": 8630,
+ "created": "2009-05-26T18:24:15.000Z",
+ "lastUpdated": "2021-07-19T07:10:41.929Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mine",
+ "hasLocution": true,
+ "plural": "mines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mining industry",
+ "professional"
+ ],
+ "synsets": [
+ "10339454-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "mining",
+ "professional"
+ ],
+ "_id": 8631,
+ "created": "2009-05-26T18:25:10.000Z",
+ "lastUpdated": "2021-07-19T07:10:52.276Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mineur",
+ "hasLocution": true,
+ "plural": "mineurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02448346-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 8632,
+ "created": "2009-05-26T18:26:17.000Z",
+ "lastUpdated": "2021-07-19T07:11:20.208Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mouffette",
+ "hasLocution": false,
+ "plural": "mouffettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "coin"
+ ],
+ "synsets": [
+ "13409418-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "coin"
+ ],
+ "_id": 8633,
+ "created": "2009-05-26T18:27:09.000Z",
+ "lastUpdated": "2021-07-19T07:11:24.090Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pièces",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat"
+ ],
+ "synsets": [
+ "07692712-n",
+ "07692018-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 8634,
+ "created": "2009-05-26T18:28:13.000Z",
+ "lastUpdated": "2021-07-19T07:11:33.834Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mortadelle",
+ "hasLocution": true,
+ "plural": "mortadelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "forestry"
+ ],
+ "synsets": [
+ "03004288-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "primary sector",
+ "forestry"
+ ],
+ "_id": 8635,
+ "created": "2009-05-26T18:28:56.000Z",
+ "lastUpdated": "2021-07-19T07:12:18.989Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tronçonneuse",
+ "hasLocution": false,
+ "plural": "tronçonneuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8636,
+ "created": "2009-05-26T18:30:49.000Z",
+ "lastUpdated": "2021-07-19T07:12:29.562Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Murcie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 8637,
+ "created": "2009-05-26T18:38:50.000Z",
+ "lastUpdated": "2021-07-19T07:12:37.275Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nez de clown",
+ "hasLocution": true,
+ "plural": "nez de clown"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon"
+ ],
+ "synsets": [
+ "03979986-n"
+ ],
+ "tags": [
+ "object",
+ "weapon"
+ ],
+ "_id": 8638,
+ "created": "2009-05-26T18:39:42.000Z",
+ "lastUpdated": "2021-07-19T07:12:59.825Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canif",
+ "hasLocution": true,
+ "plural": "canifs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8639,
+ "created": "2009-05-26T18:40:32.000Z",
+ "lastUpdated": "2021-07-19T07:13:05.979Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Navarre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "05025269-n",
+ "14006789-n"
+ ],
+ "tags": [
+ "core vocabulary"
+ ],
+ "_id": 8619,
+ "created": "2009-05-26T17:52:26.000Z",
+ "lastUpdated": "2021-07-19T07:07:29.621Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lumière",
+ "hasLocution": true,
+ "plural": "lumières"
+ },
+ {
+ "keyword": "luminosité",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "luminosités"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07597496-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 8620,
+ "created": "2009-05-26T17:53:18.000Z",
+ "lastUpdated": "2021-07-19T07:07:56.128Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salade de fruits",
+ "hasLocution": true,
+ "plural": "salades de fruits"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gender identity",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01486631-a",
+ "01489391-a"
+ ],
+ "tags": [
+ "sexuality",
+ "gender identity",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 8621,
+ "created": "2009-05-26T17:56:15.000Z",
+ "lastUpdated": "2021-07-19T07:08:00.798Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "masculin",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "wedding"
+ ],
+ "synsets": [
+ "09894191-n",
+ "09894084-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "wedding"
+ ],
+ "_id": 8640,
+ "created": "2009-05-26T18:41:49.000Z",
+ "lastUpdated": "2021-04-30T09:45:08.782Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "mariée",
+ "plural": "mariées"
+ },
+ {
+ "keyword": "épouse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "épouses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "wedding"
+ ],
+ "synsets": [
+ "10167555-n",
+ "10167455-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "wedding"
+ ],
+ "_id": 8641,
+ "created": "2009-05-27T10:18:36.000Z",
+ "lastUpdated": "2021-07-19T07:13:13.271Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fiancé",
+ "hasLocution": true,
+ "plural": "fiancés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "marine animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02073946-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "wild"
+ ],
+ "_id": 8642,
+ "created": "2009-05-27T10:19:34.000Z",
+ "lastUpdated": "2021-07-19T07:13:23.728Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "orque",
+ "hasLocution": true,
+ "plural": "orques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "14007000-n"
+ ],
+ "tags": [],
+ "_id": 8643,
+ "created": "2009-05-27T10:22:35.000Z",
+ "lastUpdated": "2021-07-19T07:13:37.023Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "obscurité",
+ "hasLocution": true,
+ "plural": "obscurités"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "painting"
+ ],
+ "synsets": [
+ "03884371-n"
+ ],
+ "tags": [
+ "visual art",
+ "painting"
+ ],
+ "_id": 8644,
+ "created": "2009-05-27T10:36:07.000Z",
+ "lastUpdated": "2024-12-07T08:04:30.724Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "palette",
+ "hasLocution": true,
+ "plural": "palettes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01921973-v",
+ "01886163-v",
+ "01911069-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 8649,
+ "created": "2009-05-27T11:00:27.000Z",
+ "lastUpdated": "2021-07-19T07:14:45.794Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se promener",
+ "hasLocution": true
+ },
+ {
+ "keyword": "marcher",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "se balader",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01921973-v",
+ "01886163-v",
+ "01911069-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8651,
+ "created": "2009-05-27T11:03:24.000Z",
+ "lastUpdated": "2021-07-19T07:15:06.961Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se promener",
+ "hasLocution": true
+ },
+ {
+ "keyword": "marcher",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "se balade",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07714660-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 8652,
+ "created": "2009-05-27T11:09:01.000Z",
+ "lastUpdated": "2021-04-02T13:51:25.671Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pâtes",
+ "hasLocution": false,
+ "plural": "pâtes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07728304-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 8653,
+ "created": "2009-05-27T11:13:53.000Z",
+ "lastUpdated": "2021-07-19T07:15:11.450Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "frites",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07873935-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 8654,
+ "created": "2009-05-27T11:14:32.000Z",
+ "lastUpdated": "2021-04-02T13:53:54.694Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pâté",
+ "hasLocution": true,
+ "plural": "pâtés"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "pot de pâté",
+ "plural": "pots de pâté",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "meat"
+ ],
+ "synsets": [
+ "07664017-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 8655,
+ "created": "2009-05-27T11:16:20.000Z",
+ "lastUpdated": "2024-12-07T15:39:14.706Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blanc de poulet",
+ "hasLocution": false,
+ "plural": "blancs de poulet"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "energy",
+ "signaling system"
+ ],
+ "synsets": [
+ "08661788-n",
+ "14564367-n",
+ "14565454-n",
+ "11470903-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "energy",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 8656,
+ "created": "2009-05-27T11:23:09.000Z",
+ "lastUpdated": "2021-07-19T07:15:49.440Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "danger électricité",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "08661788-n",
+ "14564367-n",
+ "14565454-n",
+ "00428404-a",
+ "13566387-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 8657,
+ "created": "2009-05-27T11:24:32.000Z",
+ "lastUpdated": "2021-07-19T07:19:08.897Z",
+ "keywords": [
+ {
+ "keyword": "danger nucléaire",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "danger radiations",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "08661788-n",
+ "14564367-n",
+ "14565454-n",
+ "00475648-s"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 8659,
+ "created": "2009-05-27T12:38:20.000Z",
+ "lastUpdated": "2021-07-19T07:19:12.610Z",
+ "keywords": [
+ {
+ "keyword": "danger matériaux inflammables",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "02802230-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 8660,
+ "created": "2009-05-27T12:39:15.000Z",
+ "lastUpdated": "2021-07-19T07:48:26.891Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balle de base-ball",
+ "hasLocution": true,
+ "plural": "balles de base-ball"
+ },
+ {
+ "keyword": "balle de pelote",
+ "hasLocution": false,
+ "plural": "balles de pelote"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00630153-v",
+ "01640708-v",
+ "00710367-v",
+ "00610362-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response",
+ "core vocabulary"
+ ],
+ "_id": 8661,
+ "created": "2009-05-27T13:04:31.000Z",
+ "lastUpdated": "2023-02-03T10:06:39.301Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "penser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00630153-v",
+ "01640708-v",
+ "00710367-v",
+ "00610362-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 8662,
+ "created": "2009-05-27T13:05:28.000Z",
+ "lastUpdated": "2021-07-19T07:18:09.648Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "penser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "04461511-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 8663,
+ "created": "2009-05-27T13:06:56.000Z",
+ "lastUpdated": "2021-07-19T07:18:01.905Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toupie",
+ "hasLocution": false,
+ "plural": "toupies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "mass media"
+ ],
+ "synsets": [
+ "10244248-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "communication",
+ "mass media"
+ ],
+ "_id": 8664,
+ "created": "2009-05-27T13:07:46.000Z",
+ "lastUpdated": "2021-07-19T07:18:19.516Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "journaliste",
+ "hasLocution": true,
+ "plural": "journalistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "animal physiology",
+ "insect",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01448026-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "animal physiology",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "animal behavior"
+ ],
+ "_id": 8665,
+ "created": "2009-05-27T13:08:47.000Z",
+ "lastUpdated": "2021-07-19T07:18:27.809Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "piquer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05568420-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "core vocabulary"
+ ],
+ "_id": 8666,
+ "created": "2009-05-27T13:09:35.000Z",
+ "lastUpdated": "2021-07-19T07:18:36.312Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jambe",
+ "hasLocution": true,
+ "plural": "jambes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "07790818-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 8667,
+ "created": "2009-05-27T13:11:18.000Z",
+ "lastUpdated": "2021-07-19T07:19:19.138Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pignons",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy"
+ ],
+ "synsets": [
+ "11703800-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy"
+ ],
+ "_id": 8668,
+ "created": "2009-05-27T13:12:15.000Z",
+ "lastUpdated": "2021-07-19T07:19:34.806Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pomme de pin",
+ "hasLocution": false,
+ "plural": "pommes de pin"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03451003-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 8646,
+ "created": "2009-05-27T10:42:14.000Z",
+ "lastUpdated": "2021-07-19T07:13:55.578Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "club de golf",
+ "hasLocution": true,
+ "plural": "clubs de golf"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "15099529-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 8647,
+ "created": "2009-05-27T10:48:29.000Z",
+ "lastUpdated": "2021-07-19T07:13:59.520Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mouchoirs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "07768640-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 8648,
+ "created": "2009-05-27T10:52:52.000Z",
+ "lastUpdated": "2021-07-19T07:14:04.611Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "raisins secs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "07786739-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 8669,
+ "created": "2009-05-27T13:14:41.000Z",
+ "lastUpdated": "2021-07-19T07:19:39.286Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "graines de courge",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cookery"
+ ],
+ "synsets": [
+ "13796315-n"
+ ],
+ "tags": [
+ "feeding",
+ "cookery"
+ ],
+ "_id": 8670,
+ "created": "2009-05-27T13:15:42.000Z",
+ "lastUpdated": "2021-07-19T07:19:45.926Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pincée",
+ "hasLocution": true,
+ "plural": "pincées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03964924-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 8671,
+ "created": "2009-05-27T13:16:14.000Z",
+ "lastUpdated": "2021-07-19T07:20:05.513Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plastifieuse",
+ "hasLocution": false,
+ "plural": "plastifieuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational material"
+ ],
+ "synsets": [
+ "01367834-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational material"
+ ],
+ "_id": 8672,
+ "created": "2009-05-27T13:17:02.000Z",
+ "lastUpdated": "2021-07-19T07:20:10.023Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "plastifier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system",
+ "beverage"
+ ],
+ "synsets": [
+ "01765887-s",
+ "00202772-n",
+ "07227534-n",
+ "06806283-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 8673,
+ "created": "2009-05-27T13:17:42.000Z",
+ "lastUpdated": "2021-07-19T07:20:16.265Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "interdit de boire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "01765887-s",
+ "00202772-n",
+ "07227534-n",
+ "02741017-v",
+ "01381086-v"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 8677,
+ "created": "2009-05-27T13:20:33.000Z",
+ "lastUpdated": "2021-07-19T07:20:35.153Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "interdit de jeter des papiers",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "11915427-n",
+ "07751663-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 8678,
+ "created": "2009-05-27T13:26:24.000Z",
+ "lastUpdated": "2021-07-19T07:20:42.440Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "radis",
+ "hasLocution": true,
+ "plural": "radis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "waste disposal"
+ ],
+ "synsets": [
+ "02228020-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "waste disposal"
+ ],
+ "_id": 8679,
+ "created": "2009-05-27T13:28:15.000Z",
+ "lastUpdated": "2021-07-19T07:21:03.240Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ramasser les poubelles",
+ "hasLocution": true
+ },
+ {
+ "keyword": "collecter les ordures",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "toy"
+ ],
+ "synsets": [
+ "01210022-v",
+ "00276642-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 8680,
+ "created": "2009-05-27T13:28:54.000Z",
+ "lastUpdated": "2021-07-19T07:21:29.336Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ramasser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "ramasser les jouets",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ranger",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "08664839-n",
+ "03969939-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 8681,
+ "created": "2009-05-27T13:30:03.000Z",
+ "lastUpdated": "2021-07-19T07:22:17.900Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cour de récréation",
+ "hasLocution": false,
+ "plural": "cours de récréation"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02141219-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8682,
+ "created": "2009-05-27T13:31:26.000Z",
+ "lastUpdated": "2021-07-19T07:22:23.723Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "refléter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02141219-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8683,
+ "created": "2009-05-27T13:33:59.000Z",
+ "lastUpdated": "2021-07-19T08:00:40.339Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "refléter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07670276-n",
+ "07765558-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 8684,
+ "created": "2009-05-27T13:34:43.000Z",
+ "lastUpdated": "2021-07-19T07:22:44.310Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tranche de citron",
+ "hasLocution": true,
+ "plural": "tranches de citron"
+ },
+ {
+ "type": 2,
+ "keyword": "rondelle",
+ "hasLocution": true,
+ "plural": "rondelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00393662-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 8685,
+ "created": "2009-05-27T13:36:16.000Z",
+ "lastUpdated": "2021-07-19T07:48:39.697Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tailler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "03350504-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 8687,
+ "created": "2009-05-27T13:41:32.000Z",
+ "lastUpdated": "2021-07-19T07:23:20.223Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "sortie d'urgence",
+ "hasLocution": true,
+ "plural": "sorties d'urgence"
+ },
+ {
+ "keyword": "sortie de secours",
+ "hasLocution": false,
+ "plural": "sorties de secours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crockery"
+ ],
+ "synsets": [
+ "00218901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "crockery",
+ "home"
+ ],
+ "_id": 8688,
+ "created": "2009-05-27T13:42:14.000Z",
+ "lastUpdated": "2021-07-19T07:23:25.708Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "essuyer les assiettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant physiology",
+ "plant anatomy"
+ ],
+ "synsets": [
+ "11704458-n"
+ ],
+ "tags": [
+ "plant",
+ "plant physiology",
+ "plant anatomy",
+ "anatomy"
+ ],
+ "_id": 8689,
+ "created": "2009-05-27T13:43:27.000Z",
+ "lastUpdated": "2021-07-19T07:23:42.838Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "graine",
+ "hasLocution": true,
+ "plural": "graines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "02130695-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 8690,
+ "created": "2009-05-27T13:45:12.000Z",
+ "lastUpdated": "2021-07-19T07:23:47.715Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sérieux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dietetics",
+ "cereal"
+ ],
+ "synsets": [
+ "07578549-n",
+ "14081310-n"
+ ],
+ "tags": [
+ "health",
+ "dietetics",
+ "feeding",
+ "food",
+ "plant-based food",
+ "cereal"
+ ],
+ "_id": 8691,
+ "created": "2009-05-27T13:46:03.000Z",
+ "lastUpdated": "2021-07-19T07:23:51.449Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sans gluten",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat"
+ ],
+ "synsets": [
+ "07692265-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 8692,
+ "created": "2009-05-27T13:47:18.000Z",
+ "lastUpdated": "2021-07-19T07:24:00.103Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saucisson de Majorque",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "07982754-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 8693,
+ "created": "2009-05-27T13:48:17.000Z",
+ "lastUpdated": "2021-07-19T07:24:08.267Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "société",
+ "hasLocution": true,
+ "plural": "sociétés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04265969-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 8694,
+ "created": "2009-05-27T13:49:20.000Z",
+ "lastUpdated": "2021-07-19T07:24:24.385Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fer à souder",
+ "hasLocution": false,
+ "plural": "fers à souder"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool"
+ ],
+ "synsets": [
+ "01598181-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool"
+ ],
+ "_id": 8696,
+ "created": "2009-05-27T13:50:16.000Z",
+ "lastUpdated": "2021-07-19T07:24:30.234Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "souder",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system",
+ "food"
+ ],
+ "synsets": [
+ "01765887-s",
+ "00202772-n",
+ "07227534-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system",
+ "feeding",
+ "food"
+ ],
+ "_id": 8674,
+ "created": "2009-05-27T13:18:28.000Z",
+ "lastUpdated": "2021-07-19T07:20:20.450Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "interdiction de manger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system",
+ "smoking",
+ "healthy habit"
+ ],
+ "synsets": [
+ "01765887-s",
+ "00202772-n",
+ "07227534-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "smoking",
+ "healthy habit"
+ ],
+ "_id": 8675,
+ "created": "2009-05-27T13:19:02.000Z",
+ "lastUpdated": "2021-07-19T07:48:31.789Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "interdiction de fumer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "01765887-s",
+ "00202772-n",
+ "07227534-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 8676,
+ "created": "2009-05-27T13:19:45.000Z",
+ "lastUpdated": "2021-07-19T07:20:31.657Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "téléphones portables interdits",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume",
+ "halloween"
+ ],
+ "synsets": [
+ "03502782-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 8697,
+ "created": "2009-05-27T13:50:57.000Z",
+ "lastUpdated": "2021-07-19T07:25:18.292Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chapeau de sorcier",
+ "hasLocution": true,
+ "plural": "chapeaux de sorcier"
+ },
+ {
+ "keyword": "chapeau de sorcière",
+ "hasLocution": false,
+ "plural": "chapeaux de sorcière",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "03502782-n",
+ "03065053-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 8698,
+ "created": "2009-05-27T13:51:44.000Z",
+ "lastUpdated": "2021-07-19T07:48:42.747Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chapeau de pirate ",
+ "hasLocution": false,
+ "plural": "chapeaux de pirate "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gambling",
+ "verb"
+ ],
+ "synsets": [
+ "02206757-v"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "gambling",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8699,
+ "created": "2009-05-27T13:52:59.000Z",
+ "lastUpdated": "2021-07-19T07:26:14.511Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "loterie",
+ "hasLocution": true,
+ "plural": "loteries"
+ },
+ {
+ "keyword": "tirage au sort",
+ "hasLocution": false,
+ "plural": "tirages au sort"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pollution"
+ ],
+ "synsets": [
+ "14511588-n",
+ "14521347-n"
+ ],
+ "tags": [
+ "environmental science",
+ "pollution"
+ ],
+ "_id": 8700,
+ "created": "2009-05-27T13:53:44.000Z",
+ "lastUpdated": "2021-07-19T07:26:24.333Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saleté",
+ "hasLocution": true,
+ "plural": "saletés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "04377543-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 8701,
+ "created": "2009-05-27T13:54:48.000Z",
+ "lastUpdated": "2021-07-19T07:48:45.668Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sweet-shirt",
+ "hasLocution": true,
+ "plural": "sweet-shirts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "sports facility"
+ ],
+ "synsets": [
+ "02936846-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility"
+ ],
+ "_id": 8705,
+ "created": "2009-05-28T10:50:28.000Z",
+ "lastUpdated": "2021-07-19T07:27:18.443Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casier",
+ "hasLocution": true,
+ "plural": "casiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "wedding"
+ ],
+ "synsets": [
+ "07648411-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "event",
+ "social event",
+ "wedding"
+ ],
+ "_id": 8706,
+ "created": "2009-05-28T10:58:16.000Z",
+ "lastUpdated": "2021-07-19T07:27:57.784Z",
+ "keywords": [
+ {
+ "keyword": "gâteau de mariage",
+ "hasLocution": false,
+ "plural": "gâteaux de mariage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00340839-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 8707,
+ "created": "2009-05-28T11:00:00.000Z",
+ "lastUpdated": "2021-07-19T07:28:02.260Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "timide",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport material"
+ ],
+ "synsets": [
+ "01600207-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 8708,
+ "created": "2009-05-28T11:02:06.000Z",
+ "lastUpdated": "2021-07-19T07:28:05.568Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tirer à l'arc",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "string instrument"
+ ],
+ "synsets": [
+ "01728928-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music",
+ "musical instrument",
+ "string instrument"
+ ],
+ "_id": 8709,
+ "created": "2009-05-28T11:03:29.000Z",
+ "lastUpdated": "2021-07-19T07:28:08.685Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "jouer la guitare",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "04242397-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "core vocabulary"
+ ],
+ "_id": 8710,
+ "created": "2009-05-28T11:07:21.000Z",
+ "lastUpdated": "2021-07-19T07:28:34.854Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "luge",
+ "hasLocution": true,
+ "plural": "luges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01846024-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 8711,
+ "created": "2009-05-28T11:08:45.000Z",
+ "lastUpdated": "2021-07-19T07:28:42.832Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toucan",
+ "hasLocution": true,
+ "plural": "toucans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mining industry",
+ "land transport",
+ "work machine"
+ ],
+ "synsets": [
+ "04550444-n",
+ "03260602-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "mining",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work machine"
+ ],
+ "_id": 8712,
+ "created": "2009-05-28T11:09:50.000Z",
+ "lastUpdated": "2021-07-19T07:28:59.393Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "wagonnet",
+ "hasLocution": true,
+ "plural": "wagonnets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 8713,
+ "created": "2009-05-28T11:12:01.000Z",
+ "lastUpdated": "2021-07-19T07:29:05.304Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pays valencien",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport",
+ "beach",
+ "summer"
+ ],
+ "synsets": [
+ "04135600-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "leisure",
+ "outdoor activity",
+ "beach",
+ "summer"
+ ],
+ "_id": 8714,
+ "created": "2009-05-28T11:13:37.000Z",
+ "lastUpdated": "2024-12-04T15:42:35.088Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bateau",
+ "hasLocution": true,
+ "plural": "bateaux"
+ },
+ {
+ "type": 2,
+ "keyword": "voilier",
+ "hasLocution": true,
+ "plural": "voiliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "05827597-n",
+ "06736815-n",
+ "02469730-a",
+ "01228271-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 8715,
+ "created": "2009-05-28T11:14:27.000Z",
+ "lastUpdated": "2024-10-26T14:33:30.950Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vérité",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "certain",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "vraie",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "vrai",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "reptile",
+ "ovoviviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01754806-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "reptile",
+ "ovoviviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 8716,
+ "created": "2009-05-28T11:15:55.000Z",
+ "lastUpdated": "2021-07-19T07:29:43.837Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vipère",
+ "hasLocution": true,
+ "plural": "vipères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "person according to their age"
+ ],
+ "synsets": [
+ "15165704-n"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 8717,
+ "created": "2009-05-28T11:16:56.000Z",
+ "lastUpdated": "2021-07-19T07:29:50.776Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vie",
+ "hasLocution": true,
+ "plural": "vies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02156396-v",
+ "02460829-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8718,
+ "created": "2009-05-28T11:18:10.000Z",
+ "lastUpdated": "2021-07-19T07:29:55.418Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "surveiller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "scruter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "02728797-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 8719,
+ "created": "2009-05-28T11:19:46.000Z",
+ "lastUpdated": "2021-07-19T07:33:43.625Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enclume",
+ "hasLocution": true,
+ "plural": "enclumes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "04206070-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 8720,
+ "created": "2009-05-28T11:20:26.000Z",
+ "lastUpdated": "2021-07-19T07:30:13.172Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussure de clown",
+ "hasLocution": true,
+ "plural": "chaussures de clown"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "craftsmanship"
+ ],
+ "synsets": [
+ "10480372-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "craftsmanship"
+ ],
+ "_id": 8721,
+ "created": "2009-05-28T13:06:13.000Z",
+ "lastUpdated": "2021-07-19T07:30:22.440Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "potière",
+ "hasLocution": true,
+ "plural": "potières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "02875324-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 8722,
+ "created": "2009-05-28T13:08:13.000Z",
+ "lastUpdated": "2021-07-19T07:30:30.922Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boomerang",
+ "hasLocution": true,
+ "plural": "boomerangs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "04266092-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 8702,
+ "created": "2009-05-27T13:55:58.000Z",
+ "lastUpdated": "2021-07-19T07:26:45.258Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "semelle",
+ "hasLocution": true,
+ "plural": "semelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10698501-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 8703,
+ "created": "2009-05-27T13:56:43.000Z",
+ "lastUpdated": "2021-07-19T07:26:58.328Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "surfeur",
+ "hasLocution": true,
+ "plural": "surfeurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "size"
+ ],
+ "synsets": [
+ "05106204-n"
+ ],
+ "tags": [
+ "size"
+ ],
+ "_id": 8704,
+ "created": "2009-05-28T09:42:27.000Z",
+ "lastUpdated": "2021-07-19T07:27:11.338Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "taille",
+ "hasLocution": true,
+ "plural": "tailles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "painting"
+ ],
+ "synsets": [
+ "03267512-n"
+ ],
+ "tags": [
+ "visual art",
+ "painting"
+ ],
+ "_id": 8723,
+ "created": "2009-05-28T13:09:01.000Z",
+ "lastUpdated": "2021-07-19T07:30:39.846Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chevalet",
+ "hasLocution": true,
+ "plural": "chevalets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sweets"
+ ],
+ "synsets": [
+ "07615569-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 8724,
+ "created": "2009-05-28T13:10:14.000Z",
+ "lastUpdated": "2021-07-19T07:30:49.708Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chewing-gums",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "00701253-n",
+ "03477235-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 8725,
+ "created": "2009-05-28T13:11:12.000Z",
+ "lastUpdated": "2021-07-28T09:35:13.700Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kinésithérapie",
+ "hasLocution": true,
+ "plural": "kinésithérapies"
+ },
+ {
+ "keyword": "physiothérapie",
+ "plural": "physiothérapies",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories"
+ ],
+ "synsets": [
+ "01535377-v",
+ "00180982-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 8726,
+ "created": "2009-05-28T13:11:49.000Z",
+ "lastUpdated": "2021-07-02T00:29:18.612Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "nettoyer les lunettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cleaning product",
+ "footwear"
+ ],
+ "synsets": [
+ "01248201-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "cleaning product",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 8727,
+ "created": "2009-05-28T13:12:24.000Z",
+ "lastUpdated": "2021-07-19T07:31:52.520Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "nettoyer les chaussures ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "cirer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00034941-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 8731,
+ "created": "2009-05-28T13:16:53.000Z",
+ "lastUpdated": "2021-07-19T07:33:57.403Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "moucher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se moucher le nez",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se moucher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "worksite",
+ "workplace",
+ "land transport",
+ "signaling system"
+ ],
+ "synsets": [
+ "04610439-n",
+ "02837983-n"
+ ],
+ "tags": [
+ "work",
+ "workplace",
+ "place",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 8732,
+ "created": "2009-05-28T13:17:55.000Z",
+ "lastUpdated": "2021-07-19T07:34:18.923Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier de bicyclettes ",
+ "hasLocution": false,
+ "plural": "ateliers de bicyclettes "
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "worksite",
+ "workplace",
+ "gardening",
+ "signaling system"
+ ],
+ "synsets": [
+ "04610439-n",
+ "00920197-n"
+ ],
+ "tags": [
+ "work",
+ "workplace",
+ "place",
+ "primary sector",
+ "gardening",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 8733,
+ "created": "2009-05-28T13:18:50.000Z",
+ "lastUpdated": "2021-07-19T07:34:47.514Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier de jardinage",
+ "hasLocution": false,
+ "plural": "ateliers de jardinage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "04620912-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 8734,
+ "created": "2009-05-28T13:19:41.000Z",
+ "lastUpdated": "2021-07-19T07:34:55.692Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "yoyo",
+ "hasLocution": true,
+ "plural": "yoyos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "02843474-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 8828,
+ "created": "2009-06-01T12:16:34.000Z",
+ "lastUpdated": "2021-07-19T07:35:20.420Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "classeur à anneaux ",
+ "hasLocution": false,
+ "plural": "classeurs à anneaux "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "02886446-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 8895,
+ "created": "2009-06-02T10:19:56.000Z",
+ "lastUpdated": "2021-07-19T07:35:37.102Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "noeud papillon",
+ "hasLocution": false,
+ "plural": "noeuds papillon"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "land transport"
+ ],
+ "synsets": [
+ "04505257-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 8972,
+ "created": "2009-06-02T12:22:19.000Z",
+ "lastUpdated": "2021-03-27T21:28:52.309Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tunnel",
+ "hasLocution": true,
+ "plural": "tunnels"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00036355-v",
+ "01539713-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 8975,
+ "created": "2009-08-03T13:06:47.000Z",
+ "lastUpdated": "2021-07-19T07:36:14.685Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver les mains",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se laver les mains",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "lavage des mains",
+ "hasLocution": false,
+ "plural": "lavages des mains",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine",
+ "hairdresser"
+ ],
+ "synsets": [
+ "00036355-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 8976,
+ "created": "2009-08-03T13:08:21.000Z",
+ "lastUpdated": "2021-07-19T07:36:26.687Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver les cheveux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "corporal hygiene",
+ "routine",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "00036355-v",
+ "01539713-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine",
+ "core vocabulary"
+ ],
+ "_id": 8977,
+ "created": "2009-08-03T13:09:07.000Z",
+ "lastUpdated": "2021-07-19T07:37:06.811Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Nettoyer avec de l'eau et le plus souvent un produit spécial (savon, lessive, détergent, etc.)",
+ "keyword": "laver",
+ "hasLocution": true
+ },
+ {
+ "keyword": "laver les mains",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "se laver les mains",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "lavage des mains",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "lavages des mains"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine",
+ "hairdresser"
+ ],
+ "synsets": [
+ "01538956-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 8978,
+ "created": "2009-08-03T13:09:38.000Z",
+ "lastUpdated": "2024-12-05T08:59:45.846Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rincer les cheveux",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rincer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "halloween"
+ ],
+ "synsets": [
+ "01783082-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 8979,
+ "created": "2009-08-03T13:11:26.000Z",
+ "lastUpdated": "2021-07-19T07:37:38.662Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire peur",
+ "hasLocution": true
+ },
+ {
+ "keyword": "effrayer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "halloween"
+ ],
+ "synsets": [
+ "01783082-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 8980,
+ "created": "2009-08-03T13:11:56.000Z",
+ "lastUpdated": "2021-07-19T07:37:48.475Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire peur",
+ "hasLocution": true
+ },
+ {
+ "keyword": "effrayer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00446787-n",
+ "01422636-v",
+ "01423419-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 8981,
+ "created": "2009-08-03T13:14:23.000Z",
+ "lastUpdated": "2021-07-19T07:38:08.156Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boxe",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "boxer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01452567-v",
+ "01089350-s",
+ "01219607-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 8982,
+ "created": "2009-08-03T13:15:45.000Z",
+ "lastUpdated": "2021-07-19T07:39:12.474Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "charger",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "chargé",
+ "hasLocution": true
+ },
+ {
+ "keyword": "porter",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "transporter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01452567-v",
+ "01089350-s",
+ "01219607-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 8983,
+ "created": "2009-08-03T13:16:35.000Z",
+ "lastUpdated": "2021-07-19T07:39:34.548Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "charger",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "chargé",
+ "hasLocution": true
+ },
+ {
+ "keyword": "porter",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "transporter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "egg product",
+ "cookery"
+ ],
+ "synsets": [
+ "00337070-v",
+ "00198119-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "animal-based food",
+ "egg product",
+ "cookery"
+ ],
+ "_id": 8984,
+ "created": "2009-08-03T13:18:18.000Z",
+ "lastUpdated": "2021-03-26T14:46:13.830Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fissurer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "casser",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "keyword": "craqueler",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "trade"
+ ],
+ "synsets": [
+ "02211988-v",
+ "02330964-v",
+ "02471557-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 8985,
+ "created": "2009-08-03T13:19:49.000Z",
+ "lastUpdated": "2021-07-19T07:39:43.265Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": " tr. Obtenir un bien, un droit contre paiement ; acquérir",
+ "keyword": "acheter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire des courses",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire les courses",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03223838-n",
+ "03340545-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 8728,
+ "created": "2009-05-28T13:13:33.000Z",
+ "lastUpdated": "2021-07-19T07:33:09.478Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "figurine",
+ "hasLocution": false,
+ "plural": "figurines"
+ },
+ {
+ "type": 2,
+ "keyword": "figurine articulée",
+ "hasLocution": false,
+ "plural": "figurines articulées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "03912225-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 8729,
+ "created": "2009-05-28T13:14:16.000Z",
+ "lastUpdated": "2021-07-19T07:33:18.777Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jambe de bois",
+ "hasLocution": true,
+ "plural": "jambes de bois"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07670276-n",
+ "07763583-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 8730,
+ "created": "2009-05-28T13:15:19.000Z",
+ "lastUpdated": "2021-07-19T07:33:36.441Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rondelle d'orange",
+ "hasLocution": true,
+ "plural": "rondelles d'orange"
+ },
+ {
+ "type": 2,
+ "keyword": "rondelle",
+ "hasLocution": true,
+ "plural": "rondelles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "trade",
+ "core vocabulary-communication",
+ "commercial building",
+ "food",
+ "cleaning product",
+ "hygiene product"
+ ],
+ "synsets": [
+ "02211988-v",
+ "02330964-v",
+ "02471557-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "work",
+ "tertiary sector",
+ "trade",
+ "core vocabulary",
+ "place",
+ "building",
+ "feeding",
+ "food",
+ "object",
+ "cleaning product",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 8986,
+ "created": "2009-08-03T13:20:28.000Z",
+ "lastUpdated": "2024-12-15T06:32:16.933Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": " tr. Obtenir un bien, un droit contre paiement ; acquérir",
+ "keyword": "acheter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire des courses",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire les courses",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00182020-v",
+ "00277013-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 8987,
+ "created": "2009-08-03T13:22:30.000Z",
+ "lastUpdated": "2021-07-19T07:39:58.895Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mettre en désordre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déranger",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "00018519-v",
+ "00027261-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 8988,
+ "created": "2009-08-03T13:25:02.000Z",
+ "lastUpdated": "2021-07-19T07:40:04.475Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réveiller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se réveiller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'étirer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "routine",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "00018519-v",
+ "00027261-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "person",
+ "routine",
+ "core vocabulary"
+ ],
+ "_id": 8989,
+ "created": "2009-08-03T13:25:49.000Z",
+ "lastUpdated": "2021-07-19T07:40:09.647Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réveiller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se réveiller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'étirer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "musical artist",
+ "professional artist",
+ "musical notation",
+ "verb"
+ ],
+ "synsets": [
+ "01736802-v",
+ "09972018-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "music",
+ "visual art",
+ "musical notation",
+ "musical composition",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 8990,
+ "created": "2009-08-03T13:27:41.000Z",
+ "lastUpdated": "2021-07-19T07:40:52.742Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "diriger",
+ "hasLocution": true
+ },
+ {
+ "keyword": "chef d'orchestre",
+ "hasLocution": true,
+ "plural": "chefs d'orchestre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "road safety",
+ "tourism",
+ "group"
+ ],
+ "synsets": [
+ "02003830-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "road safety",
+ "work",
+ "tertiary sector",
+ "tourism",
+ "person",
+ "group"
+ ],
+ "_id": 8994,
+ "created": "2009-08-03T13:38:30.000Z",
+ "lastUpdated": "2024-12-05T18:24:44.108Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "diriger",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "guider",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "acheminer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "sexuality"
+ ],
+ "synsets": [
+ "09645472-n",
+ "00148417-v",
+ "01468558-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "sexuality"
+ ],
+ "_id": 8995,
+ "created": "2009-08-03T13:40:24.000Z",
+ "lastUpdated": "2021-07-19T07:41:50.284Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "amoureux",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "amoureux",
+ "hasLocution": true,
+ "plural": "amoureux"
+ },
+ {
+ "type": 3,
+ "keyword": "tomber amoureux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "verb",
+ "crime"
+ ],
+ "synsets": [
+ "01290804-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "verb",
+ "law",
+ "crime"
+ ],
+ "_id": 8996,
+ "created": "2009-08-03T13:42:14.000Z",
+ "lastUpdated": "2022-04-09T05:31:23.563Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "menotté",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "passer les menottes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "menotter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "students"
+ ],
+ "synsets": [
+ "02507387-v",
+ "02406951-v",
+ "00207776-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "education",
+ "students"
+ ],
+ "_id": 8997,
+ "created": "2009-08-03T13:44:02.000Z",
+ "lastUpdated": "2021-07-19T07:42:51.786Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "expulser",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "expulsion",
+ "hasLocution": true,
+ "plural": "expulsions"
+ },
+ {
+ "type": 3,
+ "keyword": "congédier",
+ "hasLocution": false
+ },
+ {
+ "keyword": "mettre à la porte",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "students"
+ ],
+ "synsets": [
+ "02507387-v",
+ "02406951-v",
+ "00207776-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "education",
+ "students"
+ ],
+ "_id": 8998,
+ "created": "2009-08-03T13:44:33.000Z",
+ "lastUpdated": "2021-07-19T07:43:01.848Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "expulser",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "expulsion",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "congédier",
+ "hasLocution": false
+ },
+ {
+ "keyword": "mettre à la porte",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01417939-v",
+ "01423419-v",
+ "00135600-n",
+ "01399864-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 8999,
+ "created": "2009-08-03T13:47:24.000Z",
+ "lastUpdated": "2021-07-19T07:44:46.432Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "cogner",
+ "hasLocution": false
+ },
+ {
+ "keyword": "frapper",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "taper",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "donner un coup",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "coup de poing",
+ "hasLocution": false,
+ "plural": "coups de poing",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "crime"
+ ],
+ "synsets": [
+ "01417939-v",
+ "01423419-v",
+ "00135600-n",
+ "01399864-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime"
+ ],
+ "_id": 9000,
+ "created": "2009-08-03T13:48:13.000Z",
+ "lastUpdated": "2021-07-19T07:44:55.717Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "donner un coup",
+ "hasLocution": true
+ },
+ {
+ "keyword": "frapper",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "cogner",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "coup de poing",
+ "hasLocution": false,
+ "plural": "coups de poing"
+ },
+ {
+ "keyword": "taper",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02609706-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 9001,
+ "created": "2009-08-03T13:50:14.000Z",
+ "lastUpdated": "2021-07-19T07:45:25.466Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "il y a",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "tourism"
+ ],
+ "synsets": [
+ "00298987-n",
+ "01847846-v",
+ "01849171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 9002,
+ "created": "2009-08-03T13:52:38.000Z",
+ "lastUpdated": "2021-07-19T07:45:49.237Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tourisme",
+ "hasLocution": true,
+ "plural": "tourismes"
+ },
+ {
+ "type": 3,
+ "keyword": "faire du tourisme",
+ "hasLocution": true
+ },
+ {
+ "keyword": "visiter",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "02066560-v",
+ "02040935-v",
+ "02042202-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 9003,
+ "created": "2009-08-03T13:55:05.000Z",
+ "lastUpdated": "2021-07-19T07:46:03.738Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "incliner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pencher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "02066560-v",
+ "02040935-v",
+ "02042202-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 9004,
+ "created": "2009-08-03T13:56:06.000Z",
+ "lastUpdated": "2021-07-19T07:48:59.356Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "incliner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pencher",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01125332-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 9005,
+ "created": "2009-08-03T13:57:46.000Z",
+ "lastUpdated": "2021-07-19T07:49:08.251Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "incliner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pencher",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport"
+ ],
+ "synsets": [
+ "00558763-v",
+ "01535377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 9006,
+ "created": "2009-08-03T15:19:48.000Z",
+ "lastUpdated": "2021-07-19T07:49:12.373Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver la voiture",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "olympic games",
+ "sport modality",
+ "verb"
+ ],
+ "synsets": [
+ "01092746-v",
+ "01507331-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games",
+ "sport modality",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 9007,
+ "created": "2009-08-03T15:21:36.000Z",
+ "lastUpdated": "2024-12-05T12:08:02.038Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "lutter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se battre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "combattre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "cleaning product"
+ ],
+ "synsets": [
+ "01535377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 9008,
+ "created": "2009-08-03T15:23:48.000Z",
+ "lastUpdated": "2021-07-19T07:49:34.406Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "nettoyer la fenêtre ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "laver les vitres",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "cleaning product"
+ ],
+ "synsets": [
+ "01535377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 9009,
+ "created": "2009-08-03T15:26:30.000Z",
+ "lastUpdated": "2021-07-19T07:50:01.372Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "nettoyer la vitre ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "laver les vitres",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00660291-n",
+ "00064258-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 9010,
+ "created": "2009-08-03T15:29:49.000Z",
+ "lastUpdated": "2021-07-19T07:50:31.410Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire un massage",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "massage",
+ "hasLocution": true,
+ "plural": "massages"
+ },
+ {
+ "type": 2,
+ "keyword": "massage corporel",
+ "hasLocution": true,
+ "plural": "massages corporels"
+ },
+ {
+ "keyword": "masser",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00660291-n",
+ "00064258-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 9011,
+ "created": "2009-08-03T15:31:06.000Z",
+ "lastUpdated": "2021-07-19T07:50:55.572Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire un massage",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "massage",
+ "hasLocution": true,
+ "plural": "massages"
+ },
+ {
+ "type": 2,
+ "keyword": "massage facial",
+ "hasLocution": true,
+ "plural": "massages faciaux"
+ },
+ {
+ "keyword": "masser",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport",
+ "road safety",
+ "security and defense"
+ ],
+ "synsets": [
+ "00751382-v",
+ "00751211-v",
+ "01935739-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 8991,
+ "created": "2009-08-03T13:32:54.000Z",
+ "lastUpdated": "2024-12-05T18:21:21.880Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "diriger",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "diriger la circulation",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "02498011-v",
+ "01824240-v",
+ "01193481-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 8992,
+ "created": "2009-08-03T13:34:55.000Z",
+ "lastUpdated": "2021-07-19T07:41:12.022Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "amuser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'amuser",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "tourism"
+ ],
+ "synsets": [
+ "10761478-n",
+ "10171090-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 8993,
+ "created": "2009-08-03T13:37:27.000Z",
+ "lastUpdated": "2021-07-19T07:41:22.105Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guide",
+ "hasLocution": true,
+ "plural": "guides"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01893603-v",
+ "01894619-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "babycare"
+ ],
+ "_id": 9012,
+ "created": "2009-08-03T15:33:51.000Z",
+ "lastUpdated": "2022-12-18T05:40:51.836Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "remuer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "agiter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "secouer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mountain"
+ ],
+ "synsets": [
+ "02163627-v",
+ "01991174-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 9013,
+ "created": "2009-08-03T15:35:40.000Z",
+ "lastUpdated": "2021-07-19T07:51:27.157Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'orienter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "orienter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "trouver son chemin",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "trade"
+ ],
+ "synsets": [
+ "02256551-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 9014,
+ "created": "2009-08-03T15:37:32.000Z",
+ "lastUpdated": "2021-07-19T07:51:31.460Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "payer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "athlete",
+ "football"
+ ],
+ "synsets": [
+ "10153521-n",
+ "01863207-v",
+ "01441809-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "person",
+ "football"
+ ],
+ "_id": 9015,
+ "created": "2009-08-03T15:39:53.000Z",
+ "lastUpdated": "2021-07-19T07:52:04.447Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attraper",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "arrêter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "arrêter le ballon",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "gardien de but",
+ "hasLocution": false,
+ "plural": "gardiens de but"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "pet",
+ "dog-assisted therapy"
+ ],
+ "synsets": [
+ "01910816-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "pet",
+ "animal-assisted therapy",
+ "dog-assisted therapy"
+ ],
+ "_id": 9016,
+ "created": "2009-08-03T15:42:08.000Z",
+ "lastUpdated": "2021-07-19T07:52:10.221Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "promener le chien",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00043211-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 9021,
+ "created": "2009-08-03T15:49:55.000Z",
+ "lastUpdated": "2021-07-19T07:54:14.667Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se parfumer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "parfumer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "parfum",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "parfums"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traffic signal"
+ ],
+ "synsets": [
+ "00798054-v",
+ "00797525-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 9022,
+ "created": "2009-08-03T15:51:43.000Z",
+ "lastUpdated": "2021-07-19T07:54:25.872Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "interdire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "01576908-v",
+ "07869738-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 9023,
+ "created": "2009-08-03T15:55:11.000Z",
+ "lastUpdated": "2021-07-19T08:13:31.543Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "râper",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "râper du fromage",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "fromage râpé",
+ "hasLocution": true,
+ "plural": "fromages rapés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00024272-v",
+ "00169106-v",
+ "00098271-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 9024,
+ "created": "2009-08-03T15:57:22.000Z",
+ "lastUpdated": "2021-07-19T07:54:46.446Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réanimer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media"
+ ],
+ "synsets": [
+ "02214901-v",
+ "01210022-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mass media"
+ ],
+ "_id": 9025,
+ "created": "2009-08-03T15:58:52.000Z",
+ "lastUpdated": "2021-07-19T07:54:55.987Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prendre le courrier",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "recevoir une lettre",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime"
+ ],
+ "synsets": [
+ "01113995-v",
+ "02314987-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime"
+ ],
+ "_id": 9026,
+ "created": "2009-08-03T16:02:01.000Z",
+ "lastUpdated": "2021-07-19T07:55:02.659Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "récupérer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "rendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00241017-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 9027,
+ "created": "2009-08-03T16:03:39.000Z",
+ "lastUpdated": "2021-07-19T07:55:11.856Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réduire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work accident"
+ ],
+ "synsets": [
+ "01874268-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "work accident"
+ ],
+ "_id": 9028,
+ "created": "2009-08-03T16:04:54.000Z",
+ "lastUpdated": "2021-07-19T07:55:29.309Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "glisser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déraper",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work accident"
+ ],
+ "synsets": [
+ "01874268-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "work accident"
+ ],
+ "_id": 9029,
+ "created": "2009-08-03T16:06:33.000Z",
+ "lastUpdated": "2021-07-19T07:55:39.928Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "glisser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déraper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00817348-v",
+ "00637941-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 9030,
+ "created": "2009-08-03T16:08:35.000Z",
+ "lastUpdated": "2021-07-19T07:55:46.148Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "répondre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00817348-v",
+ "00637941-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response",
+ "core vocabulary"
+ ],
+ "_id": 9031,
+ "created": "2009-08-03T16:09:29.000Z",
+ "lastUpdated": "2021-07-19T07:55:51.111Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "répondre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00335806-v",
+ "01569486-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 9032,
+ "created": "2009-08-03T16:11:40.000Z",
+ "lastUpdated": "2021-07-19T07:56:05.337Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mettre quelque chose en morceaux par choc, par pression, le briser",
+ "keyword": "casser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "briser",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00335806-v",
+ "01569486-v",
+ "00336733-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 9033,
+ "created": "2009-08-03T16:13:45.000Z",
+ "lastUpdated": "2021-07-19T08:00:46.123Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mettre quelque chose en morceaux par choc, par pression, le briser",
+ "keyword": "casser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "briser",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "students"
+ ],
+ "synsets": [
+ "00596016-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "students"
+ ],
+ "_id": 9034,
+ "created": "2009-08-03T16:17:04.000Z",
+ "lastUpdated": "2021-07-19T07:56:22.607Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "savoir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "lever le doigt",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cleaning product"
+ ],
+ "synsets": [
+ "00218901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 9035,
+ "created": "2009-08-03T16:18:34.000Z",
+ "lastUpdated": "2021-07-19T07:56:33.700Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "sécher la table",
+ "hasLocution": true
+ },
+ {
+ "keyword": "essuyer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "00727236-v"
+ ],
+ "tags": [],
+ "_id": 9036,
+ "created": "2009-08-03T16:21:46.000Z",
+ "lastUpdated": "2024-12-12T17:42:42.856Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "surprendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00917783-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 9037,
+ "created": "2009-08-03T16:23:52.000Z",
+ "lastUpdated": "2021-07-19T07:56:48.892Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chuchoter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00727236-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 9038,
+ "created": "2009-08-03T16:24:36.000Z",
+ "lastUpdated": "2021-07-19T07:56:55.112Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "surprendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00909100-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 9017,
+ "created": "2009-08-03T15:43:59.000Z",
+ "lastUpdated": "2021-07-19T07:52:33.073Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "trépigner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire un caprice",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire une crise",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00909100-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 9018,
+ "created": "2009-08-03T15:44:24.000Z",
+ "lastUpdated": "2021-07-19T07:53:01.389Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "trépigner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire un caprice",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire une crise",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10623899-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 9020,
+ "created": "2009-08-03T15:47:49.000Z",
+ "lastUpdated": "2021-07-19T07:53:32.900Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "skateur",
+ "hasLocution": false,
+ "plural": "skateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "craftsmanship",
+ "clothing industry"
+ ],
+ "synsets": [
+ "01677786-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "craftsmanship",
+ "clothing industry"
+ ],
+ "_id": 9039,
+ "created": "2009-08-03T16:27:04.000Z",
+ "lastUpdated": "2021-05-07T21:09:38.010Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tisser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "01677786-v",
+ "01674934-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 9040,
+ "created": "2009-08-03T16:29:43.000Z",
+ "lastUpdated": "2021-05-07T21:08:57.576Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tricoter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire du tricot",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "construction",
+ "building facility"
+ ],
+ "synsets": [
+ "01591055-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "construction",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 9041,
+ "created": "2009-08-03T16:31:06.000Z",
+ "lastUpdated": "2021-07-19T07:57:01.252Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "clôturer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "encercler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "construction",
+ "building facility"
+ ],
+ "synsets": [
+ "01591055-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "construction",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 9042,
+ "created": "2009-08-03T16:31:54.000Z",
+ "lastUpdated": "2021-07-19T07:57:12.358Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "clôturer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "encercler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "agriculture"
+ ],
+ "synsets": [
+ "01322669-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 9043,
+ "created": "2009-08-03T16:33:21.000Z",
+ "lastUpdated": "2021-07-19T07:57:16.840Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "récolter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "vendanger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "13759840-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 9047,
+ "created": "2009-08-03T16:41:50.000Z",
+ "lastUpdated": "2021-07-19T07:57:32.619Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "3/4",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "trois quarts",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dessert"
+ ],
+ "synsets": [
+ "07630339-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert"
+ ],
+ "_id": 9048,
+ "created": "2009-08-03T16:43:33.000Z",
+ "lastUpdated": "2021-05-07T21:01:49.589Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cornet de glace",
+ "hasLocution": false,
+ "plural": "cornets de glace"
+ },
+ {
+ "keyword": "cône de glace",
+ "hasLocution": false,
+ "plural": "cônes de glace",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07630339-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 9049,
+ "created": "2009-08-03T16:44:21.000Z",
+ "lastUpdated": "2021-05-07T21:03:27.301Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cornet de glace au chocolat",
+ "hasLocution": false,
+ "plural": "cornets de glace au chocolat"
+ },
+ {
+ "type": 2,
+ "keyword": "cône de glace au chocolat ",
+ "hasLocution": false,
+ "plural": "cônes de glace au chocolat "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seafood"
+ ],
+ "synsets": [
+ "01989447-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "seafood"
+ ],
+ "_id": 9050,
+ "created": "2009-08-03T16:46:43.000Z",
+ "lastUpdated": "2021-05-07T20:55:37.889Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crevettes décortiquées",
+ "hasLocution": false,
+ "plural": "crevettes décortiquées"
+ },
+ {
+ "type": 2,
+ "keyword": "crevettes",
+ "hasLocution": true,
+ "plural": "crevettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "traditional dish"
+ ],
+ "synsets": [
+ "07886143-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 9051,
+ "created": "2009-08-03T16:48:23.000Z",
+ "lastUpdated": "2021-05-07T20:53:55.162Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lasagne",
+ "hasLocution": true,
+ "plural": "lasagnes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "13046407-n",
+ "15130838-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 9052,
+ "created": "2009-08-03T16:51:06.000Z",
+ "lastUpdated": "2021-05-07T20:53:14.949Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "levure",
+ "hasLocution": true,
+ "plural": "levures"
+ },
+ {
+ "keyword": "levain",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "levains"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07638082-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 9053,
+ "created": "2009-08-03T16:52:38.000Z",
+ "lastUpdated": "2021-05-07T20:52:14.409Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "miette",
+ "hasLocution": false,
+ "plural": "miettes"
+ },
+ {
+ "type": 2,
+ "keyword": "miettes de pain",
+ "hasLocution": false,
+ "plural": "miettes de pain"
+ },
+ {
+ "keyword": "chapelure",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chapelures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07769568-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 9054,
+ "created": "2009-08-03T16:54:59.000Z",
+ "lastUpdated": "2021-05-07T20:48:28.036Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "banane",
+ "hasLocution": true,
+ "plural": "bananes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07628241-n",
+ "07632797-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 9055,
+ "created": "2009-08-03T16:56:14.000Z",
+ "lastUpdated": "2021-05-07T20:48:04.535Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pudding",
+ "hasLocution": false,
+ "plural": "puddings"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "11915427-n",
+ "07751663-n",
+ "11915561-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 9056,
+ "created": "2009-08-03T16:58:28.000Z",
+ "lastUpdated": "2021-05-07T20:43:33.892Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "radis",
+ "hasLocution": true,
+ "plural": "radis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07641783-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 9057,
+ "created": "2009-08-03T17:01:34.000Z",
+ "lastUpdated": "2021-05-07T20:42:41.515Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tarte",
+ "hasLocution": true,
+ "plural": "tartes"
+ },
+ {
+ "type": 2,
+ "keyword": "tarte aux pommes",
+ "hasLocution": true,
+ "plural": "tartes aux pommes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "food",
+ "trade"
+ ],
+ "synsets": [
+ "04210932-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 9058,
+ "created": "2009-08-03T17:02:55.000Z",
+ "lastUpdated": "2024-12-12T06:46:27.350Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "courses",
+ "plural": "courses"
+ },
+ {
+ "keyword": "shopping",
+ "hasLocution": false,
+ "plural": "shopping"
+ },
+ {
+ "keyword": "achats",
+ "hasLocution": false,
+ "plural": "achats"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07702956-n",
+ "07695101-n",
+ "07670276-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 9059,
+ "created": "2009-08-03T17:04:52.000Z",
+ "lastUpdated": "2021-04-17T08:02:12.187Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tranche de pain de mie",
+ "hasLocution": false,
+ "plural": "tranches de pain de mie"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cookery"
+ ],
+ "synsets": [
+ "06424663-n",
+ "06801642-n"
+ ],
+ "tags": [
+ "feeding",
+ "cookery"
+ ],
+ "_id": 9060,
+ "created": "2009-08-03T17:06:56.000Z",
+ "lastUpdated": "2021-05-07T20:40:29.451Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "livre de recettes",
+ "hasLocution": true,
+ "plural": "livres de recettes"
+ },
+ {
+ "type": 2,
+ "keyword": "livre de cuisine",
+ "hasLocution": true,
+ "plural": "livres de cuisine"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02414726-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 9061,
+ "created": "2009-08-03T17:10:19.000Z",
+ "lastUpdated": "2021-05-07T20:39:18.272Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "bélier",
+ "plural": "béliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01836446-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 9062,
+ "created": "2009-08-03T17:15:52.000Z",
+ "lastUpdated": "2021-05-07T20:38:24.645Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "plural": "colibris",
+ "keyword": "colibri"
+ },
+ {
+ "keyword": "oiseau-mouche",
+ "plural": "oiseaux-mouches",
+ "type": 2,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02056690-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 9063,
+ "created": "2009-08-03T17:16:58.000Z",
+ "lastUpdated": "2021-05-07T20:36:20.714Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cormoran",
+ "hasLocution": true,
+ "plural": "cormorans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02132115-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 9065,
+ "created": "2009-08-03T17:19:37.000Z",
+ "lastUpdated": "2021-05-07T20:35:15.483Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lionne",
+ "hasLocution": true,
+ "plural": "lionnes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "02117374-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 9044,
+ "created": "2009-08-03T16:35:31.000Z",
+ "lastUpdated": "2021-05-07T21:07:40.983Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aérer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ventiler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "covid-19",
+ "place",
+ "educational space"
+ ],
+ "synsets": [
+ "00489706-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "covid-19",
+ "place",
+ "education",
+ "educational space"
+ ],
+ "_id": 9045,
+ "created": "2009-08-03T16:37:09.000Z",
+ "lastUpdated": "2024-12-19T07:02:20.277Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aérer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ventiler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming pool"
+ ],
+ "synsets": [
+ "02556841-v",
+ "02553283-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 9046,
+ "created": "2009-08-03T16:38:43.000Z",
+ "lastUpdated": "2021-07-19T07:57:22.707Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sauver",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "secourir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "aider",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02271095-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 9066,
+ "created": "2009-08-03T17:22:33.000Z",
+ "lastUpdated": "2021-05-07T20:34:38.877Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "libellule",
+ "hasLocution": true,
+ "plural": "libellules"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02440247-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic"
+ ],
+ "_id": 9067,
+ "created": "2009-08-03T17:23:41.000Z",
+ "lastUpdated": "2021-05-07T20:34:22.566Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lama",
+ "hasLocution": true,
+ "plural": "lamas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02127963-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 9068,
+ "created": "2009-08-03T17:24:33.000Z",
+ "lastUpdated": "2021-05-07T20:33:40.341Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "puma",
+ "hasLocution": true,
+ "plural": "pumas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02436556-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic"
+ ],
+ "_id": 9069,
+ "created": "2009-08-03T17:26:33.000Z",
+ "lastUpdated": "2021-05-07T20:33:17.575Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "renne",
+ "hasLocution": true,
+ "plural": "rennes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01892161-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 9070,
+ "created": "2009-08-03T17:27:42.000Z",
+ "lastUpdated": "2021-05-07T20:32:42.270Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "taupe",
+ "hasLocution": true,
+ "plural": "taupes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation",
+ "financial services"
+ ],
+ "synsets": [
+ "08316414-n",
+ "08317704-n"
+ ],
+ "tags": [
+ "international organization",
+ "work",
+ "tertiary sector",
+ "financial services"
+ ],
+ "_id": 9074,
+ "created": "2009-08-03T17:45:34.000Z",
+ "lastUpdated": "2021-07-19T08:00:50.604Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Banque Mondiale",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation"
+ ],
+ "synsets": [
+ "08064499-n"
+ ],
+ "tags": [
+ "international organization"
+ ],
+ "_id": 9075,
+ "created": "2009-08-03T17:58:03.000Z",
+ "lastUpdated": "2021-03-26T03:33:09.328Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Croix-Rouge ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation",
+ "agriculture"
+ ],
+ "synsets": [
+ "08316414-n",
+ "08317111-n"
+ ],
+ "tags": [
+ "international organization",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 9076,
+ "created": "2009-08-03T17:59:36.000Z",
+ "lastUpdated": "2021-05-07T20:25:58.025Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "FAO",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Organisation pour l’Alimentation et l’Agriculture ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation",
+ "financial services"
+ ],
+ "synsets": [
+ "08316414-n",
+ "08318792-n"
+ ],
+ "tags": [
+ "international organization",
+ "work",
+ "tertiary sector",
+ "financial services"
+ ],
+ "_id": 9077,
+ "created": "2009-08-03T18:00:58.000Z",
+ "lastUpdated": "2021-05-07T20:22:11.110Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "FMI",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Fonds Monétaire International",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation"
+ ],
+ "synsets": [
+ "08316414-n",
+ "08318446-n"
+ ],
+ "tags": [
+ "international organization"
+ ],
+ "_id": 9078,
+ "created": "2009-08-03T18:02:01.000Z",
+ "lastUpdated": "2021-05-07T20:21:32.905Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "OIT",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Organisation Internationale du Travail",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation",
+ "political representation"
+ ],
+ "synsets": [
+ "08312501-n"
+ ],
+ "tags": [
+ "international organization",
+ "work",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 9079,
+ "created": "2009-08-03T18:03:05.000Z",
+ "lastUpdated": "2021-05-07T20:20:25.514Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Nations Unies",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "ONU",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "transport services"
+ ],
+ "synsets": [
+ "02310566-v",
+ "01210022-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 9072,
+ "created": "2009-08-03T17:40:48.000Z",
+ "lastUpdated": "2021-07-19T07:57:44.552Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aller chercher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "retirer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 9071,
+ "created": "2009-08-03T17:30:23.000Z",
+ "lastUpdated": "2021-05-07T20:32:11.683Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trace de pattes",
+ "hasLocution": false,
+ "plural": "traces de pattes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation"
+ ],
+ "synsets": [
+ "08316414-n",
+ "08318973-n"
+ ],
+ "tags": [
+ "international organization"
+ ],
+ "_id": 9082,
+ "created": "2009-08-03T18:05:44.000Z",
+ "lastUpdated": "2021-05-07T20:17:31.849Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "UNESCO",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation"
+ ],
+ "synsets": [
+ "08316414-n"
+ ],
+ "tags": [
+ "international organization"
+ ],
+ "_id": 9081,
+ "created": "2009-08-03T18:04:37.000Z",
+ "lastUpdated": "2021-05-07T20:19:23.605Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "PAM",
+ "hasLocution": false
+ },
+ {
+ "keyword": "Programme Alimentaire Mondial",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation"
+ ],
+ "synsets": [
+ "08316414-n",
+ "08316832-n"
+ ],
+ "tags": [
+ "international organization"
+ ],
+ "_id": 9083,
+ "created": "2009-08-03T18:06:33.000Z",
+ "lastUpdated": "2021-05-07T20:17:24.084Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "UNICEF",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "03741555-n",
+ "03773501-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 9084,
+ "created": "2009-08-03T18:07:46.000Z",
+ "lastUpdated": "2021-05-07T20:17:13.612Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hachoir",
+ "hasLocution": true,
+ "plural": "hachoirs"
+ },
+ {
+ "keyword": "hachoir à viande",
+ "hasLocution": false,
+ "plural": "hachoirs à viande",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "music device"
+ ],
+ "synsets": [
+ "04508845-n",
+ "04071513-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "music device"
+ ],
+ "_id": 9085,
+ "created": "2009-08-03T18:09:15.000Z",
+ "lastUpdated": "2021-05-07T20:14:31.127Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tourne-disque",
+ "hasLocution": false,
+ "plural": "tourne-disques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04007623-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 9087,
+ "created": "2009-08-03T18:13:12.000Z",
+ "lastUpdated": "2021-05-07T20:10:50.050Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cocotte-minute",
+ "hasLocution": false,
+ "plural": "cocottes-minutes"
+ },
+ {
+ "keyword": "autocuiseur",
+ "hasLocution": false,
+ "plural": "autocuiseurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "03996832-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 9086,
+ "created": "2009-08-03T18:12:11.000Z",
+ "lastUpdated": "2021-05-07T20:12:52.014Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marmite",
+ "hasLocution": true,
+ "plural": "marmites"
+ },
+ {
+ "keyword": "cocotte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cocottes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation"
+ ],
+ "synsets": [
+ "08316414-n"
+ ],
+ "tags": [
+ "international organization"
+ ],
+ "_id": 9073,
+ "created": "2009-08-03T17:42:17.000Z",
+ "lastUpdated": "2021-05-07T20:30:30.160Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 1,
+ "keyword": "HCNUR "
+ },
+ {
+ "keyword": "Haut Commissariat des Nations Unies pour les Réfugiés",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03029196-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 9090,
+ "created": "2009-08-03T18:18:39.000Z",
+ "lastUpdated": "2021-05-07T20:07:34.508Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "planche à découper",
+ "hasLocution": true,
+ "plural": "planches à découper"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery"
+ ],
+ "synsets": [
+ "03802912-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home"
+ ],
+ "_id": 9091,
+ "created": "2009-08-03T18:20:12.000Z",
+ "lastUpdated": "2021-05-07T20:06:11.468Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "mug",
+ "plural": "mugs"
+ },
+ {
+ "type": 2,
+ "keyword": "tasse",
+ "hasLocution": true,
+ "plural": "tasse"
+ },
+ {
+ "keyword": "chope",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chope"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03459829-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 9089,
+ "created": "2009-08-03T18:17:09.000Z",
+ "lastUpdated": "2021-05-07T20:08:28.748Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "râpe à fromage",
+ "hasLocution": true,
+ "plural": "râpes à fromage"
+ },
+ {
+ "type": 2,
+ "keyword": "râpe",
+ "hasLocution": true,
+ "plural": "râpes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03847186-n",
+ "08341204-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 9092,
+ "created": "2009-08-03T18:22:01.000Z",
+ "lastUpdated": "2021-07-19T07:58:08.293Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bureau",
+ "hasLocution": true,
+ "plural": "bureaux"
+ },
+ {
+ "type": 2,
+ "keyword": "secrétariat",
+ "hasLocution": true,
+ "plural": "secrétariats"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "00371563-s"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 9093,
+ "created": "2009-08-03T18:23:18.000Z",
+ "lastUpdated": "2021-07-19T07:58:12.366Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "beige",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [],
+ "tags": [
+ "color"
+ ],
+ "_id": 9094,
+ "created": "2009-08-03T18:24:15.000Z",
+ "lastUpdated": "2021-05-11T07:42:06.268Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "couleur café",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "café",
+ "hasLocution": true
+ },
+ {
+ "keyword": "marron foncé",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "marron",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "brun",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "00378764-s"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 9095,
+ "created": "2009-08-03T18:25:03.000Z",
+ "lastUpdated": "2021-07-19T07:58:20.977Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "grenat",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "00378952-s"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 9096,
+ "created": "2009-08-03T18:26:43.000Z",
+ "lastUpdated": "2021-07-19T07:58:28.936Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mauve",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation",
+ "health sciences"
+ ],
+ "synsets": [
+ "08316414-n",
+ "08319645-n"
+ ],
+ "tags": [
+ "international organization",
+ "health"
+ ],
+ "_id": 9080,
+ "created": "2009-08-03T18:04:00.000Z",
+ "lastUpdated": "2021-05-07T20:20:05.174Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "OMS",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Organisation Mondiale de la Santé",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03947960-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 9088,
+ "created": "2009-08-03T18:15:30.000Z",
+ "lastUpdated": "2021-05-07T20:09:26.243Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pinces",
+ "hasLocution": true,
+ "plural": "pinces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "visual system",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "05324904-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "visual system",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 9100,
+ "created": "2009-08-03T18:43:26.000Z",
+ "lastUpdated": "2021-07-19T08:00:57.755Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cornée",
+ "hasLocution": true,
+ "plural": "cornées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "visual system",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "05327912-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "visual system",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 9101,
+ "created": "2009-08-03T18:44:54.000Z",
+ "lastUpdated": "2021-07-19T08:13:34.962Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "cristallin",
+ "hasLocution": true,
+ "plural": "cristallins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "visual system",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "05454794-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "visual system",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 9102,
+ "created": "2009-08-03T18:46:41.000Z",
+ "lastUpdated": "2021-07-19T08:01:18.875Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sclérotique",
+ "hasLocution": true,
+ "plural": "sclérotiques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "visual system",
+ "ophthalmology",
+ "human body"
+ ],
+ "synsets": [
+ "05327486-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "visual system",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 9103,
+ "created": "2009-08-03T18:48:01.000Z",
+ "lastUpdated": "2024-12-12T07:34:04.816Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "iris",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "visual system",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "05321347-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "visual system",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 9104,
+ "created": "2009-08-03T18:49:50.000Z",
+ "lastUpdated": "2021-07-19T08:01:33.262Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "paupière",
+ "hasLocution": true,
+ "plural": "paupières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "visual system",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "05327733-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "visual system",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 9105,
+ "created": "2009-08-03T18:51:28.000Z",
+ "lastUpdated": "2021-07-19T08:01:44.561Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pupille",
+ "hasLocution": true,
+ "plural": "pupilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hobby",
+ "educational task"
+ ],
+ "synsets": [
+ "00938272-n"
+ ],
+ "tags": [
+ "leisure",
+ "hobby",
+ "education",
+ "educational task"
+ ],
+ "_id": 9099,
+ "created": "2009-08-03T18:30:27.000Z",
+ "lastUpdated": "2021-07-19T07:59:05.518Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cocotte en papier",
+ "hasLocution": true,
+ "plural": "cocottes en papier"
+ },
+ {
+ "type": 2,
+ "keyword": "pliage",
+ "hasLocution": false,
+ "plural": "pliages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "08630777-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 9107,
+ "created": "2009-08-03T18:54:04.000Z",
+ "lastUpdated": "2021-07-19T08:02:04.697Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "profil",
+ "hasLocution": true,
+ "plural": "profils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "visual system",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "05434566-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "visual system",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 9106,
+ "created": "2009-08-03T18:52:58.000Z",
+ "lastUpdated": "2021-07-19T08:01:53.963Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rétine",
+ "hasLocution": true,
+ "plural": "rétines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "13886094-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 9109,
+ "created": "2009-08-03T19:11:07.000Z",
+ "lastUpdated": "2021-07-19T08:02:41.937Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "figures géométriques ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "formes géométriques",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "body position"
+ ],
+ "synsets": [
+ "08630777-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "position"
+ ],
+ "_id": 9108,
+ "created": "2009-08-03T18:55:06.000Z",
+ "lastUpdated": "2021-07-19T08:02:18.610Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "profil",
+ "hasLocution": true,
+ "plural": "profils"
+ },
+ {
+ "type": 2,
+ "keyword": "corps de profil",
+ "hasLocution": true,
+ "plural": "corps de profil"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "13887919-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 9111,
+ "created": "2009-08-03T19:25:12.000Z",
+ "lastUpdated": "2021-07-19T08:03:25.825Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cylindre",
+ "hasLocution": true,
+ "plural": "cylindres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "13937870-n",
+ "13938146-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 9110,
+ "created": "2009-08-03T19:23:36.000Z",
+ "lastUpdated": "2021-07-19T08:03:17.125Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pyramide",
+ "hasLocution": true,
+ "plural": "pyramide"
+ },
+ {
+ "type": 2,
+ "keyword": "tétraèdre",
+ "hasLocution": true,
+ "plural": "tétraèdres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "00379560-s"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 9097,
+ "created": "2009-08-03T18:27:43.000Z",
+ "lastUpdated": "2021-07-19T07:58:33.404Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ocre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "13895231-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 9112,
+ "created": "2009-08-03T19:26:07.000Z",
+ "lastUpdated": "2021-07-19T08:03:33.545Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cône",
+ "hasLocution": true,
+ "plural": "cônes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "13939754-n",
+ "13937623-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 9115,
+ "created": "2009-08-03T19:29:10.000Z",
+ "lastUpdated": "2021-07-19T08:12:53.252Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cube ",
+ "hasLocution": false,
+ "plural": "cubes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "trade"
+ ],
+ "synsets": [
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 9116,
+ "created": "2009-08-03T19:30:32.000Z",
+ "lastUpdated": "2021-07-19T08:04:55.817Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin",
+ "hasLocution": true,
+ "plural": "magasins"
+ },
+ {
+ "type": 2,
+ "keyword": "commerce",
+ "hasLocution": true,
+ "plural": "commerce"
+ },
+ {
+ "keyword": "boutique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "boutiques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "trade"
+ ],
+ "synsets": [
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 9117,
+ "created": "2009-08-03T19:31:06.000Z",
+ "lastUpdated": "2021-07-19T08:05:19.629Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin",
+ "hasLocution": true,
+ "plural": "magasins"
+ },
+ {
+ "type": 2,
+ "keyword": "commerce",
+ "hasLocution": true,
+ "plural": "commerces"
+ },
+ {
+ "type": 2,
+ "keyword": "boutique",
+ "hasLocution": false,
+ "plural": "boutiques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "construction"
+ ],
+ "synsets": [
+ "04193891-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 9118,
+ "created": "2009-08-03T19:33:11.000Z",
+ "lastUpdated": "2021-07-19T08:12:47.559Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cisaille",
+ "hasLocution": true,
+ "plural": "cisailles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "construction"
+ ],
+ "synsets": [
+ "03664184-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 9119,
+ "created": "2009-08-03T19:36:18.000Z",
+ "lastUpdated": "2021-07-19T08:05:43.857Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "niveau",
+ "hasLocution": true,
+ "plural": "niveaux"
+ },
+ {
+ "type": 2,
+ "keyword": "niveau à bulle",
+ "hasLocution": true,
+ "plural": "niveaux à bulle"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "gardening"
+ ],
+ "synsets": [
+ "04057178-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 9120,
+ "created": "2009-08-03T19:38:18.000Z",
+ "lastUpdated": "2021-07-19T08:06:08.390Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rateau",
+ "hasLocution": true,
+ "plural": "rateaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "03796486-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 9121,
+ "created": "2009-08-03T19:39:43.000Z",
+ "lastUpdated": "2021-07-24T21:50:10.798Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fauteuil roulant électrique",
+ "hasLocution": true,
+ "plural": "fauteuils roulants électriques"
+ },
+ {
+ "type": 2,
+ "keyword": "fauteuil roulant à moteur",
+ "hasLocution": true,
+ "plural": "fauteuil roulants à moteurs"
+ },
+ {
+ "type": 2,
+ "keyword": "fauteuil électrique",
+ "hasLocution": false,
+ "plural": "fauteuils électriques"
+ },
+ {
+ "hasLocution": true,
+ "type": 2,
+ "keyword": "fauteuil",
+ "plural": "fauteuils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "13907168-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 9114,
+ "created": "2009-08-03T19:28:26.000Z",
+ "lastUpdated": "2021-07-19T08:12:56.592Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prisme",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product",
+ "signaling system"
+ ],
+ "synsets": [
+ "04583288-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 9122,
+ "created": "2009-08-03T19:41:02.000Z",
+ "lastUpdated": "2021-07-19T08:12:39.394Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fauteuil roulant",
+ "hasLocution": true,
+ "plural": "fauteuils roulants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical notation",
+ "musical art"
+ ],
+ "synsets": [
+ "06878395-n",
+ "06883894-n"
+ ],
+ "tags": [
+ "music",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 9123,
+ "created": "2009-08-03T19:45:18.000Z",
+ "lastUpdated": "2024-12-09T11:38:32.635Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "note",
+ "hasLocution": true,
+ "plural": "notes"
+ },
+ {
+ "type": 2,
+ "keyword": "note de musique",
+ "hasLocution": true,
+ "plural": "notes de musique"
+ },
+ {
+ "type": 2,
+ "keyword": "blanche",
+ "hasLocution": true,
+ "plural": "blanches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical notation"
+ ],
+ "synsets": [
+ "06884177-n"
+ ],
+ "tags": [
+ "music",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 9124,
+ "created": "2009-08-03T19:46:24.000Z",
+ "lastUpdated": "2021-07-19T08:08:15.037Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "noire",
+ "hasLocution": true,
+ "plural": "noires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "13921893-n",
+ "13921592-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 9113,
+ "created": "2009-08-03T19:27:04.000Z",
+ "lastUpdated": "2021-07-19T08:03:41.445Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sphère",
+ "hasLocution": true,
+ "plural": "sphères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical notation"
+ ],
+ "synsets": [
+ "06884434-n"
+ ],
+ "tags": [
+ "music",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 9126,
+ "created": "2009-08-03T19:48:25.000Z",
+ "lastUpdated": "2021-07-19T08:08:31.849Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "croche",
+ "hasLocution": true,
+ "plural": "croches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical notation"
+ ],
+ "synsets": [
+ "06883626-n"
+ ],
+ "tags": [
+ "music",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 9125,
+ "created": "2009-08-03T19:47:15.000Z",
+ "lastUpdated": "2021-07-19T08:08:22.975Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ronde",
+ "hasLocution": true,
+ "plural": "rondes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical notation"
+ ],
+ "synsets": [
+ "06878395-n"
+ ],
+ "tags": [
+ "music",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 9127,
+ "created": "2009-08-03T19:50:26.000Z",
+ "lastUpdated": "2021-07-19T08:09:23.273Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "note",
+ "hasLocution": true,
+ "plural": "notes"
+ },
+ {
+ "type": 2,
+ "keyword": "note de musique",
+ "hasLocution": true,
+ "plural": "notes de musique"
+ },
+ {
+ "keyword": "composer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "écrire de la musique",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical notation"
+ ],
+ "synsets": [
+ "06876004-n"
+ ],
+ "tags": [
+ "music",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 9128,
+ "created": "2009-08-03T19:51:58.000Z",
+ "lastUpdated": "2021-07-19T08:13:38.439Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clé de fa",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical notation"
+ ],
+ "synsets": [
+ "06876259-n"
+ ],
+ "tags": [
+ "music",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 9130,
+ "created": "2009-08-03T19:54:26.000Z",
+ "lastUpdated": "2021-07-19T08:09:34.748Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clé de do",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical notation"
+ ],
+ "synsets": [
+ "06875855-n"
+ ],
+ "tags": [
+ "music",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 9129,
+ "created": "2009-08-03T19:53:26.000Z",
+ "lastUpdated": "2021-07-19T08:09:31.272Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clé de sol",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "video game"
+ ],
+ "synsets": [
+ "00459914-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "video game"
+ ],
+ "_id": 9131,
+ "created": "2009-08-03T19:56:12.000Z",
+ "lastUpdated": "2021-03-12T13:39:21.497Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pacman",
+ "hasLocution": true,
+ "plural": "Pacmans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "video game"
+ ],
+ "synsets": [
+ "00459914-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "video game"
+ ],
+ "_id": 9132,
+ "created": "2009-08-03T19:57:10.000Z",
+ "lastUpdated": "2021-03-12T13:47:22.676Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Tetris",
+ "hasLocution": true,
+ "plural": "Tetris"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "board game"
+ ],
+ "synsets": [
+ "03195970-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "board game"
+ ],
+ "_id": 9133,
+ "created": "2009-08-03T19:58:34.000Z",
+ "lastUpdated": "2021-07-19T08:09:58.877Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "timbale",
+ "hasLocution": true,
+ "plural": "timbales"
+ },
+ {
+ "keyword": "gobelet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gobelets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 9134,
+ "created": "2009-08-03T20:00:02.000Z",
+ "lastUpdated": "2021-07-20T16:43:21.190Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cube de Rubik",
+ "hasLocution": true,
+ "plural": "cubes de Rubik"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "board game"
+ ],
+ "synsets": [
+ "03721866-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "board game"
+ ],
+ "_id": 9135,
+ "created": "2009-08-03T20:01:17.000Z",
+ "lastUpdated": "2021-07-19T08:10:34.912Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pions",
+ "hasLocution": false
+ },
+ {
+ "keyword": "jetons",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "hinduism"
+ ],
+ "synsets": [
+ "06249497-n",
+ "00632200-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "religion",
+ "hinduism"
+ ],
+ "_id": 9098,
+ "created": "2009-08-03T18:28:28.000Z",
+ "lastUpdated": "2021-07-19T07:58:38.033Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "yoga",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gambling"
+ ],
+ "synsets": [
+ "03024099-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "gambling"
+ ],
+ "_id": 9136,
+ "created": "2009-08-03T20:02:55.000Z",
+ "lastUpdated": "2021-07-19T08:12:17.975Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pièces",
+ "hasLocution": true
+ },
+ {
+ "keyword": "jetons",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tourism",
+ "signaling system"
+ ],
+ "synsets": [
+ "00298987-n",
+ "10737780-n",
+ "03847186-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "tourism",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 9139,
+ "created": "2009-08-03T20:08:03.000Z",
+ "lastUpdated": "2021-07-19T08:11:15.783Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "office de tourisme",
+ "hasLocution": true,
+ "plural": "offices de tourisme"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "derived material",
+ "construction",
+ "core vocabulary-object",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "03147485-n",
+ "14905454-n"
+ ],
+ "tags": [
+ "material",
+ "derived material",
+ "work",
+ "secondary sector",
+ "construction",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 9140,
+ "created": "2009-08-03T20:10:44.000Z",
+ "lastUpdated": "2021-07-19T08:11:24.017Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cristal",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "verre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bush",
+ "agriculture"
+ ],
+ "synsets": [
+ "13165571-n"
+ ],
+ "tags": [
+ "plant",
+ "bush",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 9142,
+ "created": "2009-08-03T20:14:22.000Z",
+ "lastUpdated": "2021-07-19T08:12:08.018Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vigne",
+ "hasLocution": true,
+ "plural": "vignes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "agriculture"
+ ],
+ "synsets": [
+ "04227317-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 9138,
+ "created": "2009-08-03T20:06:24.000Z",
+ "lastUpdated": "2021-07-19T08:11:05.147Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "silo",
+ "hasLocution": true,
+ "plural": "silos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "03279176-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 9143,
+ "created": "2009-08-03T20:16:16.000Z",
+ "lastUpdated": "2021-07-19T08:12:03.817Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brosse électrique",
+ "hasLocution": true,
+ "plural": "brosses électriques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "document"
+ ],
+ "synsets": [
+ "14783182-n"
+ ],
+ "tags": [
+ "document"
+ ],
+ "_id": 9141,
+ "created": "2009-08-03T20:12:32.000Z",
+ "lastUpdated": "2021-07-19T08:11:34.330Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parchemin",
+ "hasLocution": true,
+ "plural": "parchemins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "odontology"
+ ],
+ "synsets": [
+ "03180509-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "health",
+ "odontology"
+ ],
+ "_id": 9144,
+ "created": "2009-08-03T20:17:30.000Z",
+ "lastUpdated": "2021-07-19T09:48:49.917Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fil dentaire",
+ "hasLocution": true,
+ "plural": "fils dentaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "04453978-n",
+ "04454290-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 9145,
+ "created": "2009-08-03T20:19:32.000Z",
+ "lastUpdated": "2021-07-19T08:14:04.070Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trousse",
+ "hasLocution": true,
+ "plural": "trousses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03084637-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 9146,
+ "created": "2009-08-03T20:21:02.000Z",
+ "lastUpdated": "2021-07-19T08:14:08.594Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "compas",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "02888703-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 9147,
+ "created": "2009-08-03T20:26:56.000Z",
+ "lastUpdated": "2021-07-19T08:14:13.497Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gants de boxe",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "04568834-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 9137,
+ "created": "2009-08-03T20:04:15.000Z",
+ "lastUpdated": "2024-12-12T08:56:13.935Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pistolet à eau",
+ "hasLocution": true,
+ "plural": "pistolets à eau"
+ },
+ {
+ "type": 2,
+ "keyword": "pistolet",
+ "hasLocution": true,
+ "plural": "pistolets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03497643-n",
+ "03312737-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9151,
+ "created": "2009-08-03T20:36:40.000Z",
+ "lastUpdated": "2021-07-19T08:16:06.890Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "disque dur",
+ "hasLocution": true,
+ "plural": "disques durs"
+ },
+ {
+ "keyword": "disque externe",
+ "hasLocution": false,
+ "plural": "disques externes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "weapon"
+ ],
+ "_id": 9148,
+ "created": "2009-08-03T20:29:30.000Z",
+ "lastUpdated": "2021-07-19T09:48:52.859Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nunchakus",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "02998952-n",
+ "03086983-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9150,
+ "created": "2009-08-03T20:33:17.000Z",
+ "lastUpdated": "2021-07-19T08:15:24.105Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "unité centrale",
+ "hasLocution": true,
+ "plural": "unités centrales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "04541241-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9152,
+ "created": "2009-08-03T20:46:51.000Z",
+ "lastUpdated": "2021-07-19T09:48:56.490Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dvd",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware",
+ "computing"
+ ],
+ "synsets": [
+ "04150205-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9153,
+ "created": "2009-08-03T20:48:37.000Z",
+ "lastUpdated": "2024-12-12T07:05:50.329Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scanner",
+ "hasLocution": true,
+ "plural": "scanners"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware",
+ "movement"
+ ],
+ "synsets": [
+ "03445140-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware",
+ "movement"
+ ],
+ "_id": 9154,
+ "created": "2009-08-03T20:52:50.000Z",
+ "lastUpdated": "2021-07-19T09:49:10.214Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "GPS",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03586925-n",
+ "03686803-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9155,
+ "created": "2009-08-03T20:55:08.000Z",
+ "lastUpdated": "2021-07-19T10:16:20.366Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hub",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "02992418-n",
+ "03083498-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9156,
+ "created": "2009-08-03T20:57:14.000Z",
+ "lastUpdated": "2021-07-19T09:49:29.449Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lecteur CD",
+ "hasLocution": true,
+ "plural": "lecteurs CD"
+ },
+ {
+ "type": 2,
+ "keyword": "lecteur",
+ "hasLocution": true,
+ "plural": "lecteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03448073-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 9149,
+ "created": "2009-08-03T20:31:10.000Z",
+ "lastUpdated": "2021-07-19T08:15:12.052Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "buts de rugby",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "buts",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "02766311-n",
+ "03364282-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9157,
+ "created": "2009-08-03T20:58:55.000Z",
+ "lastUpdated": "2021-07-19T09:49:55.669Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carte mémoire",
+ "hasLocution": false,
+ "plural": "cartes mémoire"
+ },
+ {
+ "keyword": "carte SD",
+ "hasLocution": false,
+ "plural": "cartes SD"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03023717-n",
+ "04065351-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9158,
+ "created": "2009-08-03T21:00:33.000Z",
+ "lastUpdated": "2021-07-19T09:51:11.381Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "micropuce",
+ "hasLocution": true,
+ "plural": "micropuces"
+ },
+ {
+ "keyword": "circuit intégré",
+ "hasLocution": false,
+ "plural": "circuits intégrés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03924859-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9161,
+ "created": "2009-08-03T21:07:03.000Z",
+ "lastUpdated": "2021-07-19T09:52:14.896Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pda",
+ "hasLocution": true
+ },
+ {
+ "keyword": "assistant personnel",
+ "hasLocution": false,
+ "plural": "assistant personnel",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "06272575-n",
+ "03216337-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 9162,
+ "created": "2009-08-03T21:09:35.000Z",
+ "lastUpdated": "2021-07-27T20:28:42.162Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "TNI",
+ "hasLocution": false,
+ "plural": "TNI"
+ },
+ {
+ "type": 2,
+ "keyword": "tableau numérique interactif",
+ "hasLocution": false,
+ "plural": "tableaux numériques interactifs"
+ },
+ {
+ "keyword": "TBI",
+ "hasLocution": false,
+ "plural": "TBI",
+ "type": 2
+ },
+ {
+ "keyword": "tableau blanc interactif",
+ "hasLocution": false,
+ "plural": "tableaux blancs interactifs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "04121938-n",
+ "04602355-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9163,
+ "created": "2009-08-03T21:14:24.000Z",
+ "lastUpdated": "2021-07-19T09:53:34.975Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "point d'accès",
+ "hasLocution": true,
+ "plural": "points d'accès"
+ },
+ {
+ "type": 2,
+ "keyword": "routeur",
+ "hasLocution": false,
+ "plural": "routeur"
+ },
+ {
+ "type": 2,
+ "keyword": "routeur wi-fi",
+ "hasLocution": false,
+ "plural": "routeurs wi-fi"
+ },
+ {
+ "type": 2,
+ "keyword": "wi-fi",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03586925-n",
+ "03686803-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9164,
+ "created": "2009-08-03T21:16:51.000Z",
+ "lastUpdated": "2021-07-19T09:53:46.082Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "switch",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "04466078-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9160,
+ "created": "2009-08-03T21:04:35.000Z",
+ "lastUpdated": "2021-07-19T09:51:28.155Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écran tactile",
+ "hasLocution": true,
+ "plural": "écrans tactiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "hardware"
+ ],
+ "synsets": [
+ "03086983-n",
+ "03648120-n",
+ "03838213-n",
+ "03201008-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "computing",
+ "hardware"
+ ],
+ "_id": 9165,
+ "created": "2009-08-03T21:20:31.000Z",
+ "lastUpdated": "2021-07-19T09:54:13.986Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tablette PC",
+ "hasLocution": false,
+ "plural": "tablettes PC"
+ },
+ {
+ "type": 2,
+ "keyword": "tablette",
+ "hasLocution": false,
+ "plural": "tablettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9166,
+ "created": "2009-08-03T21:23:07.000Z",
+ "lastUpdated": "2021-07-19T09:54:25.102Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carte graphique ",
+ "hasLocution": false,
+ "plural": "cartes graphiques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "04576349-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9167,
+ "created": "2009-08-03T21:26:57.000Z",
+ "lastUpdated": "2021-07-19T09:54:33.219Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "webcam",
+ "hasLocution": true,
+ "plural": "webcams"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "04149499-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 9168,
+ "created": "2009-08-04T13:15:50.000Z",
+ "lastUpdated": "2021-07-19T09:54:42.468Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scalpel",
+ "hasLocution": true,
+ "plural": "scalpels"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "protective equipment",
+ "covid-19",
+ "medical equipment"
+ ],
+ "synsets": [
+ "03730526-n"
+ ],
+ "tags": [
+ "work",
+ "clothes",
+ "workwear",
+ "protective equipment",
+ "covid-19",
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 9169,
+ "created": "2009-08-04T13:18:08.000Z",
+ "lastUpdated": "2024-12-12T15:44:22.138Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03783287-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9159,
+ "created": "2009-08-03T21:02:30.000Z",
+ "lastUpdated": "2021-07-19T09:51:16.125Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "modem",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "document"
+ ],
+ "synsets": [
+ "06485234-n"
+ ],
+ "tags": [
+ "document"
+ ],
+ "_id": 9173,
+ "created": "2009-08-04T13:27:42.000Z",
+ "lastUpdated": "2021-07-19T09:55:39.742Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "formulaire",
+ "hasLocution": true,
+ "plural": "formulaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "07012462-n",
+ "07012937-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 9174,
+ "created": "2009-08-04T13:29:32.000Z",
+ "lastUpdated": "2021-07-19T09:56:35.513Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "graphique",
+ "hasLocution": true,
+ "plural": "graphiques"
+ },
+ {
+ "type": 2,
+ "keyword": "représentation graphique ",
+ "hasLocution": false,
+ "plural": "représentations graphiques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "02926715-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 9175,
+ "created": "2009-08-04T13:31:21.000Z",
+ "lastUpdated": "2021-07-19T09:56:57.124Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "réchaud",
+ "hasLocution": true,
+ "plural": "réchauds"
+ },
+ {
+ "type": 2,
+ "keyword": "réchaud électrique",
+ "hasLocution": true,
+ "plural": "réchauds électriques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mountain",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "03426982-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 9176,
+ "created": "2009-08-04T13:32:10.000Z",
+ "lastUpdated": "2024-12-12T07:27:38.253Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "réchaud",
+ "hasLocution": true,
+ "plural": "réchauds"
+ },
+ {
+ "type": 2,
+ "keyword": "réchaud à gaz",
+ "hasLocution": false,
+ "plural": "réchauds à gaz"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "music device"
+ ],
+ "synsets": [
+ "03609369-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "music device"
+ ],
+ "_id": 9177,
+ "created": "2009-08-04T13:33:45.000Z",
+ "lastUpdated": "2021-07-19T09:57:25.940Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jukebox",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "light fixture"
+ ],
+ "synsets": [
+ "03849565-n",
+ "03641539-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 9178,
+ "created": "2009-08-04T13:35:34.000Z",
+ "lastUpdated": "2021-07-19T09:58:04.878Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lampe",
+ "hasLocution": true,
+ "plural": "lampes"
+ },
+ {
+ "type": 2,
+ "keyword": "lampe à huile",
+ "hasLocution": true,
+ "plural": "lampes à huile"
+ },
+ {
+ "keyword": "lampe à pétrole",
+ "hasLocution": false,
+ "plural": "lampes à pétrole"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "15113825-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 9170,
+ "created": "2009-08-04T13:19:56.000Z",
+ "lastUpdated": "2021-07-28T15:21:09.837Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vitamines",
+ "hasLocution": true,
+ "plural": "vitamines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "christianity"
+ ],
+ "synsets": [
+ "02830070-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "religion",
+ "christianity"
+ ],
+ "_id": 9171,
+ "created": "2009-08-04T13:23:15.000Z",
+ "lastUpdated": "2021-07-19T09:55:08.784Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clocher",
+ "hasLocution": true,
+ "plural": "clochers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance"
+ ],
+ "synsets": [
+ "03436153-n",
+ "03436655-n",
+ "03435461-n"
+ ],
+ "tags": [
+ "object",
+ "appliance"
+ ],
+ "_id": 9172,
+ "created": "2009-08-04T13:24:39.000Z",
+ "lastUpdated": "2021-07-19T09:55:19.833Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "engrenage",
+ "hasLocution": true,
+ "plural": "engrenages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothing industry"
+ ],
+ "synsets": [
+ "03632523-n",
+ "03869677-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 9180,
+ "created": "2009-08-04T13:38:31.000Z",
+ "lastUpdated": "2021-07-19T09:58:46.994Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "noeud",
+ "hasLocution": true,
+ "plural": "noeuds"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chemistry",
+ "biology"
+ ],
+ "synsets": [
+ "04423056-n"
+ ],
+ "tags": [
+ "chemistry",
+ "biology"
+ ],
+ "_id": 9182,
+ "created": "2009-08-04T13:41:09.000Z",
+ "lastUpdated": "2021-07-19T10:16:23.814Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "erlenmeyer",
+ "hasLocution": false,
+ "plural": "erlenmeyers"
+ },
+ {
+ "keyword": "flacon erlenmeyer",
+ "hasLocution": false,
+ "plural": "flacons erlenmeyer",
+ "type": 2
+ },
+ {
+ "keyword": "erlen",
+ "plural": "erlens",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "fiole",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fioles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cinema"
+ ],
+ "synsets": [
+ "06273220-n",
+ "03794933-n"
+ ],
+ "tags": [
+ "scenic art",
+ "cinema",
+ "show"
+ ],
+ "_id": 9183,
+ "created": "2009-08-04T13:43:25.000Z",
+ "lastUpdated": "2021-07-19T10:03:01.239Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bobine de film",
+ "hasLocution": true,
+ "plural": "bobines de film"
+ },
+ {
+ "type": 2,
+ "keyword": "film",
+ "hasLocution": true,
+ "plural": "films"
+ },
+ {
+ "keyword": "pellicule",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pellicules"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "trade"
+ ],
+ "synsets": [
+ "06564805-n",
+ "06532213-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 9184,
+ "created": "2009-08-04T13:44:52.000Z",
+ "lastUpdated": "2021-07-19T10:03:24.075Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ticket",
+ "hasLocution": true,
+ "plural": "tickets"
+ },
+ {
+ "keyword": "reçu",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "reçus"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chemistry",
+ "biology"
+ ],
+ "synsets": [
+ "04423056-n"
+ ],
+ "tags": [
+ "chemistry",
+ "biology"
+ ],
+ "_id": 9186,
+ "created": "2009-08-04T13:49:21.000Z",
+ "lastUpdated": "2021-07-19T10:04:18.827Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tube à essai",
+ "hasLocution": true,
+ "plural": "tubes à essai"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware",
+ "trade"
+ ],
+ "synsets": [
+ "04420554-n",
+ "05911706-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 9185,
+ "created": "2009-08-04T13:47:39.000Z",
+ "lastUpdated": "2021-07-19T10:03:46.883Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "TPV",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "Terminal Point de Vente ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "caisse",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "caisses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "music device"
+ ],
+ "synsets": [
+ "03930191-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "music device"
+ ],
+ "_id": 9187,
+ "created": "2009-08-04T13:51:55.000Z",
+ "lastUpdated": "2021-07-19T10:16:28.162Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "disque",
+ "hasLocution": true,
+ "plural": "disques"
+ },
+ {
+ "type": 2,
+ "keyword": "disque vinyle",
+ "hasLocution": false,
+ "plural": "disques vinyles"
+ },
+ {
+ "keyword": "33 tours",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "painting"
+ ],
+ "synsets": [
+ "03848612-n"
+ ],
+ "tags": [
+ "visual art",
+ "painting"
+ ],
+ "_id": 9181,
+ "created": "2009-08-04T13:39:32.000Z",
+ "lastUpdated": "2021-07-19T09:59:17.199Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "huile",
+ "hasLocution": true,
+ "plural": "huiles"
+ },
+ {
+ "keyword": "peinture à l'huile",
+ "hasLocution": false,
+ "plural": "peintures à l'huile",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "music device",
+ "mass media"
+ ],
+ "synsets": [
+ "03748770-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "music device",
+ "communication",
+ "mass media"
+ ],
+ "_id": 9179,
+ "created": "2009-08-04T13:37:10.000Z",
+ "lastUpdated": "2021-07-19T09:58:38.921Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "haut-parleur",
+ "hasLocution": true,
+ "plural": "haut-parleurs"
+ },
+ {
+ "keyword": "mégaphone",
+ "hasLocution": false,
+ "plural": "mégaphones"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense"
+ ],
+ "synsets": [
+ "10028930-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 9191,
+ "created": "2009-08-04T14:00:02.000Z",
+ "lastUpdated": "2021-07-19T10:05:32.547Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "détective",
+ "hasLocution": true,
+ "plural": "détectives"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "telecommunication",
+ "mass media"
+ ],
+ "synsets": [
+ "10717560-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "telecommunication",
+ "communication",
+ "mass media"
+ ],
+ "_id": 9192,
+ "created": "2009-08-04T14:01:49.000Z",
+ "lastUpdated": "2021-07-19T10:06:07.686Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "téléopératrice",
+ "hasLocution": true,
+ "plural": "téléopératrices"
+ },
+ {
+ "type": 2,
+ "keyword": "opérateur",
+ "hasLocution": true,
+ "plural": "opérateurs"
+ },
+ {
+ "keyword": "téléphoniste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "téléphonistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical artist",
+ "professional artist",
+ "musical art"
+ ],
+ "synsets": [
+ "10036990-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "music",
+ "visual art"
+ ],
+ "_id": 9193,
+ "created": "2009-08-04T14:03:28.000Z",
+ "lastUpdated": "2021-07-19T10:06:16.845Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "disc-jockey",
+ "hasLocution": true,
+ "plural": "disc-jockeys"
+ },
+ {
+ "type": 2,
+ "keyword": "DJ",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "00481519-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 9190,
+ "created": "2009-08-04T13:57:21.000Z",
+ "lastUpdated": "2021-07-19T10:16:32.363Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joueur de badminton",
+ "hasLocution": true,
+ "plural": "joueurs de badminton"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "transport services"
+ ],
+ "synsets": [
+ "10020810-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 9194,
+ "created": "2009-08-04T14:04:56.000Z",
+ "lastUpdated": "2021-07-19T10:08:16.778Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "livreur",
+ "hasLocution": true,
+ "plural": "livreurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10387518-n",
+ "10386665-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 9196,
+ "created": "2009-08-04T14:07:14.000Z",
+ "lastUpdated": "2021-07-19T10:06:55.459Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "infirmier",
+ "hasLocution": true,
+ "plural": "infirmiers"
+ },
+ {
+ "type": 2,
+ "keyword": "auxiliaire médical",
+ "hasLocution": true,
+ "plural": "auxiliaires médicaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "14847958-n",
+ "08661788-n",
+ "14564367-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 9198,
+ "created": "2009-08-04T15:15:14.000Z",
+ "lastUpdated": "2021-07-19T10:08:09.315Z",
+ "keywords": [
+ {
+ "keyword": "danger substances corrosives",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics",
+ "energy"
+ ],
+ "synsets": [
+ "11446103-n",
+ "08661788-n",
+ "14564367-n"
+ ],
+ "tags": [
+ "physics",
+ "work",
+ "secondary sector",
+ "energy"
+ ],
+ "_id": 9199,
+ "created": "2009-08-04T15:17:16.000Z",
+ "lastUpdated": "2021-07-19T10:08:30.417Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "énergie nucléaire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "horse riding",
+ "equine-assisted therapy",
+ "sport event",
+ "animal",
+ "olympic games"
+ ],
+ "synsets": [
+ "02377103-n"
+ ],
+ "tags": [
+ "sport event",
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy",
+ "event",
+ "olympic games"
+ ],
+ "_id": 9200,
+ "created": "2009-08-04T15:18:38.000Z",
+ "lastUpdated": "2024-12-10T06:15:30.975Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cheval",
+ "hasLocution": true,
+ "plural": "chevaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "03061006-n",
+ "03709002-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 9197,
+ "created": "2009-08-04T14:10:18.000Z",
+ "lastUpdated": "2021-07-19T10:07:47.628Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trois-quarts",
+ "hasLocution": true
+ },
+ {
+ "keyword": "veste",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "vestes"
+ },
+ {
+ "keyword": "manteau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "manteaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical notation"
+ ],
+ "synsets": [
+ "01709353-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 9201,
+ "created": "2009-08-04T15:20:56.000Z",
+ "lastUpdated": "2021-07-19T10:08:49.181Z",
+ "keywords": [
+ {
+ "keyword": "composer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts"
+ ],
+ "synsets": [
+ "08642648-n",
+ "00351826-n",
+ "02039393-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 9202,
+ "created": "2009-08-04T15:22:05.000Z",
+ "lastUpdated": "2021-07-19T10:09:05.241Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "droite",
+ "hasLocution": true
+ },
+ {
+ "keyword": "à droite",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00351994-n",
+ "08643037-n",
+ "02040360-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 9203,
+ "created": "2009-08-04T15:23:24.000Z",
+ "lastUpdated": "2021-07-19T10:09:17.256Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "gauche",
+ "hasLocution": true
+ },
+ {
+ "keyword": "à gauche",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "sport material",
+ "skating"
+ ],
+ "synsets": [
+ "04232791-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "sport material",
+ "skating"
+ ],
+ "_id": 9204,
+ "created": "2009-08-04T15:25:59.000Z",
+ "lastUpdated": "2021-07-19T10:09:28.064Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patins",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rollers",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport"
+ ],
+ "synsets": [
+ "03601053-n",
+ "02694015-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 9205,
+ "created": "2009-08-04T15:27:16.000Z",
+ "lastUpdated": "2021-07-19T10:09:54.653Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "avion",
+ "hasLocution": true,
+ "plural": "avions"
+ },
+ {
+ "type": 2,
+ "keyword": "jet",
+ "hasLocution": true,
+ "plural": "jets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "athlete"
+ ],
+ "synsets": [
+ "04569548-n",
+ "01944107-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "person"
+ ],
+ "_id": 9189,
+ "created": "2009-08-04T13:55:08.000Z",
+ "lastUpdated": "2021-07-19T10:05:13.324Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ski nautique",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "00202772-n",
+ "06804229-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 9207,
+ "created": "2009-08-04T15:32:37.000Z",
+ "lastUpdated": "2021-07-19T10:11:58.310Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "interdit aux piétons",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "00202772-n",
+ "06804229-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 9208,
+ "created": "2009-08-04T15:34:40.000Z",
+ "lastUpdated": "2021-07-19T10:10:38.321Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "vélos interdits",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "interdit aux bicyclettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00980581-v",
+ "01011267-v",
+ "00942415-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 9692,
+ "created": "2009-09-23T20:39:00.000Z",
+ "lastUpdated": "2021-07-19T10:10:42.018Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Transmettre par la parole une information ; communiquer",
+ "keyword": "dire",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "exprimer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00980581-v",
+ "01011267-v",
+ "00942415-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response",
+ "core vocabulary"
+ ],
+ "_id": 9693,
+ "created": "2009-09-23T20:39:47.000Z",
+ "lastUpdated": "2021-07-19T10:10:54.600Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Transmettre par la parole une information ; communiquer",
+ "keyword": "dire",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "exprimer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "cycling"
+ ],
+ "synsets": [
+ "00452356-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "cycling"
+ ],
+ "_id": 9698,
+ "created": "2009-09-26T12:50:04.000Z",
+ "lastUpdated": "2021-07-19T10:10:58.426Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cyclisme",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "cycling"
+ ],
+ "synsets": [
+ "00452356-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "cycling"
+ ],
+ "_id": 9699,
+ "created": "2009-09-26T12:50:37.000Z",
+ "lastUpdated": "2021-07-19T10:11:52.021Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cyclisme",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport"
+ ],
+ "synsets": [
+ "04273124-n",
+ "04311353-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 9206,
+ "created": "2009-08-04T15:28:01.000Z",
+ "lastUpdated": "2021-07-19T10:10:28.780Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fusée",
+ "hasLocution": true,
+ "plural": "fusée"
+ },
+ {
+ "keyword": "navette spatiale",
+ "hasLocution": false,
+ "plural": "navettes spatiales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "09889614-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 9188,
+ "created": "2009-08-04T13:53:19.000Z",
+ "lastUpdated": "2021-07-19T10:05:07.137Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boxeur",
+ "hasLocution": true,
+ "plural": "boxeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance",
+ "mass media",
+ "mass media device"
+ ],
+ "synsets": [
+ "01513031-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "mass media",
+ "mass media device"
+ ],
+ "_id": 9802,
+ "created": "2009-09-29T21:27:20.000Z",
+ "lastUpdated": "2021-07-19T10:15:30.426Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "allumer la télévision",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03364282-n",
+ "03750331-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 9800,
+ "created": "2009-09-28T22:37:33.000Z",
+ "lastUpdated": "2021-07-19T10:13:04.389Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mémoire flash",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mémoire USB",
+ "hasLocution": true
+ },
+ {
+ "keyword": "clé USB",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "worksite",
+ "workplace",
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "04610439-n"
+ ],
+ "tags": [
+ "work",
+ "workplace",
+ "place",
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 9805,
+ "created": "2009-09-29T21:30:12.000Z",
+ "lastUpdated": "2021-07-19T10:13:27.720Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier",
+ "hasLocution": true,
+ "plural": "ateliers"
+ },
+ {
+ "type": 2,
+ "keyword": "atelier de menuiserie",
+ "hasLocution": true,
+ "plural": "ateliers de menuiserie"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "worksite",
+ "workplace",
+ "signaling system"
+ ],
+ "synsets": [
+ "04610439-n"
+ ],
+ "tags": [
+ "work",
+ "workplace",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 9806,
+ "created": "2009-09-29T21:34:17.000Z",
+ "lastUpdated": "2021-07-19T10:13:42.412Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier de couture",
+ "hasLocution": true,
+ "plural": "ateliers de couture"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "worksite",
+ "workplace",
+ "signaling system"
+ ],
+ "synsets": [
+ "04610439-n"
+ ],
+ "tags": [
+ "work",
+ "workplace",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 9809,
+ "created": "2009-09-29T21:38:54.000Z",
+ "lastUpdated": "2021-07-19T10:14:22.997Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier de couture",
+ "hasLocution": true,
+ "plural": "ateliers de couture"
+ },
+ {
+ "keyword": "ouvrage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ouvrages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "board game",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "00503426-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "board game"
+ ],
+ "_id": 9810,
+ "created": "2009-09-30T08:51:41.000Z",
+ "lastUpdated": "2021-07-19T10:14:44.591Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jeu",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "jeux",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "jeux de table",
+ "hasLocution": true
+ },
+ {
+ "keyword": "jeux de plateau",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "musical artist",
+ "professional artist",
+ "verb",
+ "musical notation"
+ ],
+ "synsets": [
+ "09972018-n",
+ "01736802-v"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "music",
+ "visual art",
+ "musical notation",
+ "musical composition",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 9700,
+ "created": "2009-09-27T13:28:38.000Z",
+ "lastUpdated": "2024-12-05T18:22:28.669Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "diriger",
+ "hasLocution": true
+ },
+ {
+ "keyword": "cheffe d'orchestre",
+ "hasLocution": false,
+ "plural": "cheffes d'orchestre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system",
+ "core vocabulary-education",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "03042670-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 9815,
+ "created": "2009-09-30T21:21:23.000Z",
+ "lastUpdated": "2021-07-19T10:15:22.748Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de classe",
+ "hasLocution": true,
+ "plural": "salles de classe"
+ },
+ {
+ "type": 2,
+ "keyword": "salle de cours",
+ "hasLocution": true,
+ "plural": "salles de cours"
+ },
+ {
+ "keyword": "classe",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "classes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "place",
+ "core vocabulary-place"
+ ],
+ "synsets": [
+ "08639173-n",
+ "00722683-n",
+ "05619605-n"
+ ],
+ "tags": [
+ "place",
+ "core vocabulary"
+ ],
+ "_id": 9819,
+ "created": "2009-09-30T21:29:58.000Z",
+ "lastUpdated": "2021-07-19T10:16:50.071Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "endroit",
+ "hasLocution": true,
+ "plural": "endroits"
+ },
+ {
+ "type": 2,
+ "keyword": "place",
+ "hasLocution": true,
+ "plural": "places"
+ },
+ {
+ "keyword": "lieu",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "lieux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03042670-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 9814,
+ "created": "2009-09-30T21:20:27.000Z",
+ "lastUpdated": "2021-03-12T14:08:13.167Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de classe",
+ "hasLocution": true,
+ "plural": "salles de classe"
+ },
+ {
+ "type": 2,
+ "keyword": "salle de cours",
+ "hasLocution": true,
+ "plural": "salles de cours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "library science"
+ ],
+ "synsets": [
+ "06008975-n",
+ "06009578-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "library science"
+ ],
+ "_id": 9820,
+ "created": "2009-09-30T21:30:54.000Z",
+ "lastUpdated": "2021-07-19T10:16:53.491Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sciences de la nature",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "livre de sciences naturelles ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "library science"
+ ],
+ "synsets": [
+ "06152605-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "library science"
+ ],
+ "_id": 9823,
+ "created": "2009-09-30T21:32:42.000Z",
+ "lastUpdated": "2021-07-19T10:17:04.319Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sciences sociales",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "livre de sciences sociales ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03205385-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 9824,
+ "created": "2009-10-01T10:14:50.000Z",
+ "lastUpdated": "2021-03-12T14:02:13.787Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle à manger",
+ "hasLocution": true,
+ "plural": "salles à manger"
+ },
+ {
+ "keyword": "cantine",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cantines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05574137-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 9826,
+ "created": "2009-10-04T13:37:56.000Z",
+ "lastUpdated": "2021-03-25T21:43:23.503Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "doigts",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "verb",
+ "unit of time"
+ ],
+ "synsets": [
+ "01736519-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "verb",
+ "time",
+ "unit of time"
+ ],
+ "_id": 9829,
+ "created": "2009-10-04T13:41:30.000Z",
+ "lastUpdated": "2021-08-02T22:17:24.121Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "futur",
+ "hasLocution": true,
+ "plural": "futurs"
+ },
+ {
+ "keyword": "prochain",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "futur",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "avenir",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "christmas",
+ "categorization",
+ "core vocabulary-leisure",
+ "core vocabulary-time",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "03971038-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "event",
+ "popular event",
+ "christmas",
+ "categorization",
+ "core vocabulary"
+ ],
+ "_id": 9813,
+ "created": "2009-09-30T08:55:07.000Z",
+ "lastUpdated": "2021-07-19T10:14:53.157Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jouets",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "jouet",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "measurement unit"
+ ],
+ "synsets": [
+ "05136466-n",
+ "00998911-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "mathematics",
+ "measurement unit"
+ ],
+ "_id": 9833,
+ "created": "2009-10-04T13:49:11.000Z",
+ "lastUpdated": "2021-07-19T10:18:11.654Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "longueur",
+ "hasLocution": true,
+ "plural": "longueurs"
+ },
+ {
+ "type": 2,
+ "keyword": "mesure",
+ "hasLocution": true,
+ "plural": "mesures"
+ },
+ {
+ "type": 5,
+ "keyword": "combien cela mesure?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "measurement unit"
+ ],
+ "synsets": [
+ "05136466-n",
+ "00998911-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "mathematics",
+ "measurement unit"
+ ],
+ "_id": 9834,
+ "created": "2009-10-04T13:50:38.000Z",
+ "lastUpdated": "2021-07-19T10:18:24.627Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "longueur",
+ "hasLocution": true,
+ "plural": "longueurs"
+ },
+ {
+ "type": 2,
+ "keyword": "mesure",
+ "hasLocution": true,
+ "plural": "mesures"
+ },
+ {
+ "type": 5,
+ "keyword": "combien cela mesure?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "lexicon"
+ ],
+ "synsets": [
+ "06297048-n"
+ ],
+ "tags": [],
+ "_id": 9837,
+ "created": "2009-10-04T13:53:57.000Z",
+ "lastUpdated": "2021-07-19T10:18:34.005Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mot",
+ "hasLocution": true,
+ "plural": "mots"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "verb",
+ "unit of time"
+ ],
+ "synsets": [
+ "01732158-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "verb",
+ "time",
+ "unit of time"
+ ],
+ "_id": 9839,
+ "created": "2009-10-04T13:56:07.000Z",
+ "lastUpdated": "2021-08-02T22:16:11.103Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "passé",
+ "hasLocution": true
+ },
+ {
+ "keyword": "passé",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00899241-v",
+ "01020074-v",
+ "00786670-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response",
+ "core vocabulary"
+ ],
+ "_id": 9840,
+ "created": "2009-10-04T13:58:40.000Z",
+ "lastUpdated": "2021-07-19T10:19:23.900Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "demander",
+ "hasLocution": true
+ },
+ {
+ "keyword": "questionner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "interroger",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "supporting document"
+ ],
+ "synsets": [
+ "00311842-s",
+ "06648469-n",
+ "08479331-n"
+ ],
+ "tags": [
+ "document",
+ "supporting document"
+ ],
+ "_id": 9702,
+ "created": "2009-09-28T12:57:23.000Z",
+ "lastUpdated": "2021-07-19T10:12:36.755Z",
+ "keywords": [
+ {
+ "keyword": "données personnelles",
+ "hasLocution": true
+ },
+ {
+ "keyword": "données privées",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "07211342-n",
+ "07208256-n",
+ "00899241-v",
+ "01020074-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 9843,
+ "created": "2009-10-04T14:01:13.000Z",
+ "lastUpdated": "2021-07-19T10:19:44.528Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "demander",
+ "hasLocution": true
+ },
+ {
+ "keyword": "questionner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "interroger",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "senses"
+ ],
+ "synsets": [
+ "05572223-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 9830,
+ "created": "2009-10-04T13:44:38.000Z",
+ "lastUpdated": "2021-07-19T10:17:46.810Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mains",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00899241-v",
+ "00786670-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response",
+ "core vocabulary"
+ ],
+ "_id": 9847,
+ "created": "2009-10-04T14:06:02.000Z",
+ "lastUpdated": "2021-07-19T10:20:31.920Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "demander",
+ "hasLocution": true
+ },
+ {
+ "keyword": "questionner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "interroger",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 9851,
+ "created": "2009-10-04T14:25:49.000Z",
+ "lastUpdated": "2021-07-19T10:21:52.287Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "je n'ai pas le mot",
+ "hasLocution": false
+ },
+ {
+ "keyword": "je ne connais pas le mot",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00899241-v",
+ "00786670-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 9844,
+ "created": "2009-10-04T14:04:57.000Z",
+ "lastUpdated": "2021-07-19T10:20:01.647Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "demander",
+ "hasLocution": true
+ },
+ {
+ "keyword": "questionner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "interroger",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "interrogative pronoun",
+ "core vocabulary-communication",
+ "pronoun"
+ ],
+ "synsets": [
+ "01379820-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "interrogative pronoun",
+ "core vocabulary"
+ ],
+ "_id": 9853,
+ "created": "2009-10-04T19:25:21.000Z",
+ "lastUpdated": "2024-10-21T05:06:34.537Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "qui",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "inconnu",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "Qu'est-ce que c'est ?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "qui c'est?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sans nom",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "anonyme",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "province"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "province"
+ ],
+ "_id": 9858,
+ "created": "2009-10-09T00:06:35.000Z",
+ "lastUpdated": "2021-07-19T10:23:44.454Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Barcelone",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "political representation"
+ ],
+ "synsets": [
+ "08335621-n",
+ "08325730-n",
+ "09975260-n",
+ "10657783-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 9859,
+ "created": "2009-10-09T00:14:03.000Z",
+ "lastUpdated": "2021-07-19T10:24:27.679Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "congressiste",
+ "hasLocution": true,
+ "plural": "congressistes"
+ },
+ {
+ "keyword": "législateur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "législateurs"
+ },
+ {
+ "keyword": "délégué",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "délégués"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "interrogative pronoun",
+ "pronoun"
+ ],
+ "synsets": [
+ "00121594-s",
+ "00121384-a",
+ "00969942-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "interrogative pronoun"
+ ],
+ "_id": 9857,
+ "created": "2009-10-04T19:53:18.000Z",
+ "lastUpdated": "2024-10-21T05:12:02.549Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "qui?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "qui sont-ils?",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "inconnus",
+ "hasLocution": true
+ },
+ {
+ "keyword": "anonymes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "interrogative pronoun",
+ "pronoun"
+ ],
+ "synsets": [
+ "01379820-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "interrogative pronoun"
+ ],
+ "_id": 9854,
+ "created": "2009-10-04T19:51:41.000Z",
+ "lastUpdated": "2024-10-21T05:12:13.096Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "qui",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "Qu'est-ce que c'est ?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "qui est-elle?",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "inconnue",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "verb",
+ "unit of time"
+ ],
+ "synsets": [
+ "00669833-s",
+ "00669281-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "verb",
+ "time",
+ "unit of time"
+ ],
+ "_id": 9848,
+ "created": "2009-10-04T14:08:10.000Z",
+ "lastUpdated": "2021-08-02T22:15:41.139Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "présent",
+ "hasLocution": false,
+ "plural": "présents"
+ },
+ {
+ "keyword": "actuel",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "actuels"
+ },
+ {
+ "keyword": "courant",
+ "type": 4,
+ "hasLocution": false,
+ "plural": "courants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "education professionals",
+ "educational staff"
+ ],
+ "synsets": [
+ "10272244-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education"
+ ],
+ "_id": 9868,
+ "created": "2009-10-09T11:11:40.000Z",
+ "lastUpdated": "2021-07-19T10:26:16.908Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conférencier",
+ "hasLocution": true,
+ "plural": "conférenciers"
+ },
+ {
+ "keyword": "maitre de conférence",
+ "hasLocution": false,
+ "plural": "maitres de conférence",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media"
+ ],
+ "synsets": [
+ "00941308-v",
+ "02153218-v",
+ "00991634-v",
+ "02142548-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mass media"
+ ],
+ "_id": 9870,
+ "created": "2009-10-09T19:05:59.000Z",
+ "lastUpdated": "2021-07-19T10:26:47.534Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "exposition",
+ "hasLocution": true,
+ "plural": "expositions"
+ },
+ {
+ "type": 3,
+ "keyword": "présenter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "exposer",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "communication",
+ "hasLocution": true,
+ "plural": "communications"
+ },
+ {
+ "type": 2,
+ "keyword": "présentation",
+ "hasLocution": true,
+ "plural": "présentations"
+ },
+ {
+ "type": 3,
+ "keyword": "projeter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hardware"
+ ],
+ "synsets": [
+ "00113648-n",
+ "02190110-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "computing",
+ "hardware"
+ ],
+ "_id": 9872,
+ "created": "2009-10-09T19:21:06.000Z",
+ "lastUpdated": "2021-07-19T10:27:17.575Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clic",
+ "hasLocution": true,
+ "plural": "clics"
+ },
+ {
+ "type": 3,
+ "keyword": "cliquer",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "clic droit",
+ "hasLocution": true,
+ "plural": "clics droits"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade",
+ "money"
+ ],
+ "synsets": [
+ "13434666-n",
+ "05152365-n",
+ "07287729-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "trade",
+ "economy",
+ "money"
+ ],
+ "_id": 9874,
+ "created": "2009-10-12T13:39:58.000Z",
+ "lastUpdated": "2021-07-19T10:27:56.580Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prix",
+ "hasLocution": true
+ },
+ {
+ "keyword": "coût",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "coûts"
+ },
+ {
+ "keyword": "étiquette de prix",
+ "hasLocution": false,
+ "plural": "étiquettes de prix",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "document"
+ ],
+ "synsets": [
+ "03930933-n"
+ ],
+ "tags": [
+ "document"
+ ],
+ "_id": 9876,
+ "created": "2009-10-12T13:42:35.000Z",
+ "lastUpdated": "2021-07-19T10:28:07.918Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "photocopie",
+ "hasLocution": true,
+ "plural": "photocopies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "03395053-n",
+ "05876035-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 9877,
+ "created": "2009-10-12T13:48:05.000Z",
+ "lastUpdated": "2021-07-19T10:28:25.409Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fractions",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "fraction",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "parties",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sections",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "computing"
+ ],
+ "synsets": [
+ "08524579-n",
+ "08602685-n"
+ ],
+ "tags": [
+ "computing"
+ ],
+ "_id": 9861,
+ "created": "2009-10-09T00:22:52.000Z",
+ "lastUpdated": "2021-07-19T10:25:34.020Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "début",
+ "hasLocution": true,
+ "plural": "débuts"
+ },
+ {
+ "keyword": "accueil",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "accueils"
+ },
+ {
+ "keyword": "page d'accueil",
+ "hasLocution": false,
+ "plural": "pages d'accueil",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "communication aid"
+ ],
+ "synsets": [
+ "04209460-n",
+ "05162155-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 9862,
+ "created": "2009-10-09T00:25:42.000Z",
+ "lastUpdated": "2021-07-11T09:34:31.494Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin d'aides techniques",
+ "hasLocution": false,
+ "plural": "magasins d'aides techniques"
+ },
+ {
+ "keyword": "revendeur d'aides techniques",
+ "hasLocution": false,
+ "plural": "revendeurs d'aides techniques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04459089-n",
+ "03494245-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 9883,
+ "created": "2009-10-12T13:53:49.000Z",
+ "lastUpdated": "2021-07-19T10:29:15.292Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "outil",
+ "hasLocution": true,
+ "plural": "outils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10012375-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 9885,
+ "created": "2009-10-12T13:57:07.000Z",
+ "lastUpdated": "2021-07-19T10:29:22.880Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fille",
+ "hasLocution": true,
+ "plural": "filles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10643436-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 9887,
+ "created": "2009-10-12T14:01:32.000Z",
+ "lastUpdated": "2021-07-19T10:29:31.665Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fils",
+ "hasLocution": true,
+ "plural": "fils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "literature"
+ ],
+ "synsets": [
+ "02093687-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "literature"
+ ],
+ "_id": 9889,
+ "created": "2009-10-12T15:01:13.000Z",
+ "lastUpdated": "2021-07-19T10:29:56.144Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "passer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tourner la page",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "geometry"
+ ],
+ "synsets": [
+ "01235508-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 9891,
+ "created": "2009-10-14T13:11:52.000Z",
+ "lastUpdated": "2021-07-19T10:30:02.627Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "horizontal",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "geometry"
+ ],
+ "synsets": [
+ "01236220-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 9892,
+ "created": "2009-10-14T13:15:11.000Z",
+ "lastUpdated": "2021-07-19T10:30:18.074Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "vertical",
+ "hasLocution": true
+ },
+ {
+ "keyword": "perpendiculaire",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hardware"
+ ],
+ "synsets": [
+ "00113648-n",
+ "02190110-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "computing",
+ "hardware"
+ ],
+ "_id": 9860,
+ "created": "2009-10-09T00:17:33.000Z",
+ "lastUpdated": "2021-07-19T10:24:49.219Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clic",
+ "hasLocution": true,
+ "plural": "clics"
+ },
+ {
+ "type": 2,
+ "keyword": "clic de souris",
+ "hasLocution": true,
+ "plural": "clics de souris"
+ },
+ {
+ "type": 3,
+ "keyword": "cliquer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "halloween",
+ "pet",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02124272-n",
+ "02124950-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "event",
+ "popular event",
+ "halloween",
+ "pet",
+ "domestic"
+ ],
+ "_id": 9881,
+ "created": "2009-10-12T13:51:07.000Z",
+ "lastUpdated": "2021-07-19T10:29:04.941Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chat",
+ "hasLocution": true,
+ "plural": "chats"
+ },
+ {
+ "type": 2,
+ "keyword": "chat noir",
+ "hasLocution": true,
+ "plural": "chats noirs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal",
+ "signaling system"
+ ],
+ "synsets": [
+ "05824413-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 9899,
+ "created": "2009-10-14T19:12:11.000Z",
+ "lastUpdated": "2021-07-19T10:31:28.090Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "information",
+ "hasLocution": true,
+ "plural": "informations"
+ },
+ {
+ "keyword": "renseignements",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02476750-v",
+ "02477113-v",
+ "00050857-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 9901,
+ "created": "2009-10-14T19:15:02.000Z",
+ "lastUpdated": "2021-07-19T10:32:13.111Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "inscrire",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'inscrire",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "inscription",
+ "hasLocution": true,
+ "plural": "inscriptions"
+ },
+ {
+ "keyword": "enregistrement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "enregistrements"
+ },
+ {
+ "keyword": "s'enregistrer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tourism"
+ ],
+ "synsets": [
+ "00298987-n",
+ "03847186-n",
+ "01213037-n",
+ "10530662-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 9897,
+ "created": "2009-10-14T19:08:26.000Z",
+ "lastUpdated": "2021-07-19T10:30:54.714Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "information",
+ "hasLocution": true,
+ "plural": "informations"
+ },
+ {
+ "type": 2,
+ "keyword": "office de tourisme",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bureau d'informations",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "02476750-v",
+ "02477113-v",
+ "00050857-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "work",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 9902,
+ "created": "2009-10-14T19:15:36.000Z",
+ "lastUpdated": "2024-12-13T18:20:11.172Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "inscrire",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'inscrire",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "inscription",
+ "hasLocution": true,
+ "plural": "inscriptions"
+ },
+ {
+ "keyword": "enregistrement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "enregistrements"
+ },
+ {
+ "keyword": "s'enregistrer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "adjective"
+ ],
+ "synsets": [
+ "01151786-a",
+ "00591490-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 9907,
+ "created": "2009-10-19T13:23:18.000Z",
+ "lastUpdated": "2024-11-20T07:21:37.028Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "content",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "heureux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03094335-n",
+ "03081620-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 9911,
+ "created": "2009-10-19T13:39:37.000Z",
+ "lastUpdated": "2021-07-19T10:33:09.677Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de réunions",
+ "hasLocution": true,
+ "plural": "salles de réunions"
+ },
+ {
+ "type": 2,
+ "keyword": "salle des professeurs",
+ "hasLocution": true,
+ "plural": "salles des professeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "building room",
+ "scenic art",
+ "signaling system"
+ ],
+ "synsets": [
+ "02753075-n",
+ "02753075-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "place",
+ "building",
+ "room",
+ "scenic art",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 9913,
+ "created": "2009-10-19T13:52:28.000Z",
+ "lastUpdated": "2021-03-12T14:03:42.419Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle des fêtes",
+ "hasLocution": true,
+ "plural": "salles des fêtes"
+ },
+ {
+ "keyword": "auditorium",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "auditoriums"
+ },
+ {
+ "keyword": "salle de spectacle",
+ "hasLocution": false,
+ "plural": "salles de spectacle",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03924602-n",
+ "03089957-n",
+ "03042670-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 9915,
+ "created": "2009-10-19T16:38:10.000Z",
+ "lastUpdated": "2021-03-12T14:07:36.138Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle informatique",
+ "hasLocution": true,
+ "plural": "salles informatiques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothing industry",
+ "clothes"
+ ],
+ "synsets": [
+ "07287841-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "clothing industry",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 9919,
+ "created": "2009-10-19T18:14:40.000Z",
+ "lastUpdated": "2021-07-19T10:33:57.019Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étiquette",
+ "hasLocution": true,
+ "plural": "étiquettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "03547513-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 9895,
+ "created": "2009-10-14T13:48:13.000Z",
+ "lastUpdated": "2021-07-19T10:33:16.960Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hôtel",
+ "hasLocution": true,
+ "plural": "hôtels"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothing industry",
+ "clothes"
+ ],
+ "synsets": [
+ "07287841-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "clothing industry",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 9920,
+ "created": "2009-10-19T18:15:27.000Z",
+ "lastUpdated": "2021-07-19T10:34:11.802Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étiquette",
+ "hasLocution": true,
+ "plural": "étiquettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothing industry",
+ "clothes"
+ ],
+ "synsets": [
+ "05102953-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "clothing industry",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 9923,
+ "created": "2009-10-19T18:17:39.000Z",
+ "lastUpdated": "2021-07-19T10:34:22.198Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "taille",
+ "hasLocution": true,
+ "plural": "tailles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothing industry",
+ "clothes"
+ ],
+ "synsets": [
+ "07287841-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "clothing industry",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 9925,
+ "created": "2009-10-20T20:23:11.000Z",
+ "lastUpdated": "2021-07-19T10:34:36.017Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étiquette",
+ "hasLocution": true,
+ "plural": "étiquettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "03490014-n"
+ ],
+ "tags": [],
+ "_id": 9927,
+ "created": "2009-10-23T15:49:47.000Z",
+ "lastUpdated": "2021-07-19T10:34:45.869Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "loupe",
+ "hasLocution": true,
+ "plural": "loupes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "teaching activity"
+ ],
+ "synsets": [
+ "01483990-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "teaching activity"
+ ],
+ "_id": 10133,
+ "created": "2009-11-03T12:17:46.000Z",
+ "lastUpdated": "2021-07-19T10:35:04.726Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "accrocher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "suspendre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03545775-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 9918,
+ "created": "2009-10-19T16:40:03.000Z",
+ "lastUpdated": "2021-07-19T10:33:43.262Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "infirmerie",
+ "hasLocution": true,
+ "plural": "infirmeries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "pet",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02124272-n",
+ "02124950-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "pet",
+ "domestic"
+ ],
+ "_id": 9879,
+ "created": "2009-10-12T13:49:20.000Z",
+ "lastUpdated": "2021-07-19T10:28:44.846Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chat",
+ "hasLocution": true,
+ "plural": "chats"
+ },
+ {
+ "type": 2,
+ "keyword": "chat noir",
+ "hasLocution": true,
+ "plural": "chats noirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00658247-v",
+ "01092289-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 10139,
+ "created": "2009-11-11T11:23:46.000Z",
+ "lastUpdated": "2021-07-19T10:35:54.187Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "regrouper",
+ "hasLocution": true
+ },
+ {
+ "keyword": "classer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "meat",
+ "cookery"
+ ],
+ "synsets": [
+ "00325361-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat",
+ "cookery"
+ ],
+ "_id": 10140,
+ "created": "2009-11-11T11:27:03.000Z",
+ "lastUpdated": "2021-07-19T10:36:09.599Z",
+ "keywords": [
+ {
+ "keyword": "griller",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human anatomy",
+ "visual system"
+ ],
+ "synsets": [
+ "01348685-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "visual system"
+ ],
+ "_id": 10138,
+ "created": "2009-11-11T11:20:40.000Z",
+ "lastUpdated": "2021-07-19T10:35:37.978Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir les yeux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "verb"
+ ],
+ "synsets": [
+ "00081834-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 10141,
+ "created": "2009-11-11T11:28:48.000Z",
+ "lastUpdated": "2024-12-05T11:37:24.314Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "secouriste",
+ "plural": "secouristes"
+ },
+ {
+ "type": 3,
+ "keyword": "secourir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "aider",
+ "hasLocution": true
+ },
+ {
+ "keyword": "assister",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00049617-v",
+ "00177253-v",
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 10142,
+ "created": "2009-11-11T11:31:32.000Z",
+ "lastUpdated": "2021-07-19T10:37:09.158Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baisser le caleçon",
+ "hasLocution": true
+ },
+ {
+ "keyword": "baisser le slip",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00049617-v",
+ "00177253-v",
+ "01977139-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 10143,
+ "created": "2009-11-11T11:33:14.000Z",
+ "lastUpdated": "2021-09-23T23:11:11.857Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baisser le pantalon",
+ "hasLocution": true
+ },
+ {
+ "keyword": "descendre son pantalon",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enlever le pantalon",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine",
+ "building facility"
+ ],
+ "synsets": [
+ "01977139-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 10144,
+ "created": "2009-11-11T11:58:01.000Z",
+ "lastUpdated": "2024-12-05T12:02:15.426Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baisser le couvercle",
+ "hasLocution": true
+ },
+ {
+ "keyword": "baisser le siège",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "pet",
+ "dog-assisted therapy"
+ ],
+ "synsets": [
+ "01246373-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "pet",
+ "animal-assisted therapy",
+ "dog-assisted therapy"
+ ],
+ "_id": 10145,
+ "created": "2009-11-11T12:00:47.000Z",
+ "lastUpdated": "2021-07-19T10:38:48.418Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "brosser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "03868196-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 10135,
+ "created": "2009-11-03T13:31:37.000Z",
+ "lastUpdated": "2021-07-19T10:35:12.479Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "four",
+ "hasLocution": true,
+ "plural": "fours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human anatomy",
+ "visual system"
+ ],
+ "synsets": [
+ "01347791-v",
+ "01659588-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "visual system"
+ ],
+ "_id": 10146,
+ "created": "2009-11-11T12:02:15.000Z",
+ "lastUpdated": "2021-07-19T10:38:51.693Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fermer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "fermer les yeux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hygiene product"
+ ],
+ "synsets": [
+ "01216829-v",
+ "01210022-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 10147,
+ "created": "2009-11-11T12:04:43.000Z",
+ "lastUpdated": "2021-07-19T10:39:13.637Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prendre le papier toilette",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs"
+ ],
+ "synsets": [
+ "01582662-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs"
+ ],
+ "_id": 10137,
+ "created": "2009-11-11T11:18:49.000Z",
+ "lastUpdated": "2021-07-19T10:35:30.340Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01216829-v",
+ "01210022-v",
+ "01980103-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 10148,
+ "created": "2009-11-11T12:25:59.000Z",
+ "lastUpdated": "2021-07-19T10:39:24.701Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Saisir, attraper",
+ "keyword": "prendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "01555301-v",
+ "01613738-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 10149,
+ "created": "2009-11-11T12:33:05.000Z",
+ "lastUpdated": "2021-04-17T08:01:18.437Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couper le pain ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "01555301-v",
+ "01257041-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 10150,
+ "created": "2009-11-11T12:35:16.000Z",
+ "lastUpdated": "2021-04-17T08:03:31.045Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couper le pain ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "couper le pain en tranches",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "gardening"
+ ],
+ "synsets": [
+ "00430013-v",
+ "01323084-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 10151,
+ "created": "2009-11-11T12:39:04.000Z",
+ "lastUpdated": "2021-07-19T10:39:26.710Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tondre la pelouse",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faucher",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "01555301-v",
+ "00562167-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 10152,
+ "created": "2009-11-11T12:40:48.000Z",
+ "lastUpdated": "2021-07-19T10:39:37.031Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se couper les ongles",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "00099475-v",
+ "00100305-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10156,
+ "created": "2009-11-11T12:46:32.000Z",
+ "lastUpdated": "2021-07-19T10:40:54.291Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire de l'exercice",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "performing artist",
+ "professional artist",
+ "show"
+ ],
+ "synsets": [
+ "10300371-n",
+ "00100771-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "scenic art",
+ "visual art",
+ "leisure",
+ "show"
+ ],
+ "_id": 10157,
+ "created": "2009-11-11T12:48:52.000Z",
+ "lastUpdated": "2024-12-07T07:48:02.483Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magie",
+ "hasLocution": true,
+ "plural": "magies"
+ },
+ {
+ "type": 2,
+ "keyword": "magicien",
+ "hasLocution": true,
+ "plural": "magiciens"
+ },
+ {
+ "keyword": "illusionniste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "illusionnistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00483309-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 10158,
+ "created": "2009-11-11T12:53:19.000Z",
+ "lastUpdated": "2021-07-19T10:41:27.804Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tennis",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00480451-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 10159,
+ "created": "2009-11-11T12:55:52.000Z",
+ "lastUpdated": "2021-07-19T10:41:35.185Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "handball",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00465962-n",
+ "01149259-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 10160,
+ "created": "2009-11-11T13:14:19.000Z",
+ "lastUpdated": "2021-07-19T10:41:49.264Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "golf",
+ "hasLocution": true
+ },
+ {
+ "keyword": "golfer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00469063-n",
+ "01075360-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 10161,
+ "created": "2009-11-11T13:15:52.000Z",
+ "lastUpdated": "2021-07-19T10:42:26.210Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hockey",
+ "hasLocution": true
+ },
+ {
+ "keyword": "hockey sur gazon",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "video game"
+ ],
+ "synsets": [
+ "01075360-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "game",
+ "video game"
+ ],
+ "_id": 10162,
+ "created": "2009-11-11T13:20:51.000Z",
+ "lastUpdated": "2021-07-19T10:42:51.916Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "jouer à la console vidéo",
+ "hasLocution": true
+ },
+ {
+ "keyword": "jouer à un jeu vidéo",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "01075360-v",
+ "00462843-n",
+ "01148973-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 10163,
+ "created": "2009-11-11T13:22:32.000Z",
+ "lastUpdated": "2021-07-19T10:43:15.303Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quilles",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "jouer au Bowling",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bowling",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00500274-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 10164,
+ "created": "2009-11-11T13:25:40.000Z",
+ "lastUpdated": "2021-07-19T10:43:32.644Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ping-pong",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tennis de table",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00472688-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 10165,
+ "created": "2009-11-11T13:28:12.000Z",
+ "lastUpdated": "2021-07-19T10:43:36.733Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "base-ball",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "basketball",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "00482004-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "basketball"
+ ],
+ "_id": 10166,
+ "created": "2009-11-11T13:30:11.000Z",
+ "lastUpdated": "2021-07-19T10:43:40.272Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "basket",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00481222-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 10167,
+ "created": "2009-11-11T17:52:52.000Z",
+ "lastUpdated": "2021-07-19T10:43:45.424Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "volley-ball",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "building facility",
+ "routine"
+ ],
+ "synsets": [
+ "01978076-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "building facility",
+ "person",
+ "routine"
+ ],
+ "_id": 10168,
+ "created": "2009-11-11T17:54:30.000Z",
+ "lastUpdated": "2021-07-19T10:44:13.984Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "lever le couvercle",
+ "hasLocution": true
+ },
+ {
+ "keyword": "lever le siège",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "lever l'abattant",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "01389676-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 10169,
+ "created": "2009-11-11T17:56:03.000Z",
+ "lastUpdated": "2021-07-19T10:44:18.741Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "limer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "limer les ongles ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00035769-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 10170,
+ "created": "2009-11-11T17:57:39.000Z",
+ "lastUpdated": "2021-07-19T10:46:48.673Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "nettoyer le derrière",
+ "hasLocution": false
+ },
+ {
+ "keyword": "nettoyer les fesses",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "building facility"
+ ],
+ "synsets": [
+ "02185984-v",
+ "02185344-v",
+ "00793966-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 10171,
+ "created": "2009-11-11T17:59:28.000Z",
+ "lastUpdated": "2021-07-19T10:44:53.090Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "appeler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "sonner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "02504365-v",
+ "02312392-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 10172,
+ "created": "2009-11-11T18:01:10.000Z",
+ "lastUpdated": "2023-01-30T17:45:53.095Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mettre une amende",
+ "hasLocution": true
+ },
+ {
+ "keyword": "verbaliser",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "02504365-v",
+ "13322350-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 10173,
+ "created": "2009-11-11T18:02:48.000Z",
+ "lastUpdated": "2021-07-19T10:47:21.604Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mettre une amende",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "amende",
+ "hasLocution": true,
+ "plural": "amendes"
+ },
+ {
+ "keyword": "verbaliser",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "contravention",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "contraventions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00430013-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 10153,
+ "created": "2009-11-11T12:41:31.000Z",
+ "lastUpdated": "2021-07-19T10:40:01.370Z",
+ "keywords": [
+ {
+ "keyword": "se couper les ongles",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "road safety"
+ ],
+ "synsets": [
+ "02003830-v",
+ "00436056-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "road safety"
+ ],
+ "_id": 10154,
+ "created": "2009-11-11T12:43:10.000Z",
+ "lastUpdated": "2021-07-19T10:40:37.101Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laisser passer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire traverser",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport event"
+ ],
+ "synsets": [
+ "01102556-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "event",
+ "sport event"
+ ],
+ "_id": 10155,
+ "created": "2009-11-11T12:44:39.000Z",
+ "lastUpdated": "2021-07-19T10:40:44.113Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "gagner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01275827-v",
+ "01585566-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 10174,
+ "created": "2009-11-11T18:04:32.000Z",
+ "lastUpdated": "2021-07-19T10:47:40.081Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rayer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00827309-v",
+ "00826456-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 10175,
+ "created": "2009-11-11T18:06:41.000Z",
+ "lastUpdated": "2021-07-19T10:47:53.230Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "gronder",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "réprimander",
+ "hasLocution": true
+ },
+ {
+ "keyword": "disputer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media"
+ ],
+ "synsets": [
+ "00817348-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mass media"
+ ],
+ "_id": 10176,
+ "created": "2009-11-11T18:08:17.000Z",
+ "lastUpdated": "2021-07-19T10:48:01.843Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "répondre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01988916-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 10177,
+ "created": "2009-11-11T18:12:05.000Z",
+ "lastUpdated": "2021-07-19T10:48:08.211Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'asseoir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'asseoir sur les toilettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02556841-v",
+ "02553283-v",
+ "00094303-n",
+ "00410662-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 10178,
+ "created": "2009-11-11T18:15:18.000Z",
+ "lastUpdated": "2021-07-19T10:48:15.002Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sauver",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "secourir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "aider",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical features"
+ ],
+ "synsets": [
+ "01685228-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physical features"
+ ],
+ "_id": 10182,
+ "created": "2009-11-11T18:23:17.000Z",
+ "lastUpdated": "2021-07-19T10:48:51.693Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tatouer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "01516062-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 10183,
+ "created": "2009-11-11T18:28:35.000Z",
+ "lastUpdated": "2021-07-19T10:49:11.551Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Envoyer quelque chose à travers l'espace ou le lancer dans une direction pour qu'il retombe quelque part : Jeter son chapeau en l'air. Jeter des cailloux dans l'eau.",
+ "keyword": "jeter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "jeter le papier dans les WC",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "building facility",
+ "routine"
+ ],
+ "synsets": [
+ "01450719-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "building facility",
+ "person",
+ "routine"
+ ],
+ "_id": 10184,
+ "created": "2009-11-11T18:30:14.000Z",
+ "lastUpdated": "2021-07-19T10:49:21.585Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tirer la chasse d'eau",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "01258531-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 10185,
+ "created": "2009-11-11T19:18:09.000Z",
+ "lastUpdated": "2021-07-19T10:49:39.864Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "diviser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "couper",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "partager",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "movement",
+ "land transport",
+ "route"
+ ],
+ "synsets": [
+ "02106280-v",
+ "01846997-v",
+ "01849662-v",
+ "01845021-v",
+ "01839438-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "route"
+ ],
+ "_id": 10186,
+ "created": "2009-11-11T19:20:29.000Z",
+ "lastUpdated": "2021-07-19T10:49:45.852Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voyager",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "parcourir ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "movement",
+ "land transport",
+ "route"
+ ],
+ "synsets": [
+ "01940396-v",
+ "01846997-v",
+ "01849662-v",
+ "01845021-v",
+ "01839438-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "route"
+ ],
+ "_id": 10187,
+ "created": "2009-11-11T19:21:22.000Z",
+ "lastUpdated": "2021-07-19T10:49:56.825Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voyager",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "parcourir ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "movement",
+ "aerial transport",
+ "route"
+ ],
+ "synsets": [
+ "01944262-v",
+ "01846997-v",
+ "01849662-v",
+ "01845021-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport",
+ "route"
+ ],
+ "_id": 10188,
+ "created": "2009-11-11T19:22:03.000Z",
+ "lastUpdated": "2021-07-19T10:50:02.218Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voyager",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "parcourir ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "movement",
+ "water transport",
+ "route"
+ ],
+ "synsets": [
+ "01948551-v",
+ "01851524-v",
+ "01849662-v",
+ "01845021-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "route"
+ ],
+ "_id": 10189,
+ "created": "2009-11-11T19:28:30.000Z",
+ "lastUpdated": "2021-07-19T10:50:06.506Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voyager",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "parcourir ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "03178745-n",
+ "01944262-v",
+ "01844180-v",
+ "03496133-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 10190,
+ "created": "2009-11-11T19:30:58.000Z",
+ "lastUpdated": "2021-07-19T10:50:10.088Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voler",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "deltaplane",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02258643-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 10191,
+ "created": "2009-11-11T19:32:33.000Z",
+ "lastUpdated": "2021-07-19T10:50:31.173Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accompagné",
+ "hasLocution": true
+ },
+ {
+ "keyword": "compagnie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "compagnies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01151786-a",
+ "00363547-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 10192,
+ "created": "2009-11-11T19:35:07.000Z",
+ "lastUpdated": "2021-07-19T10:50:50.531Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "joyeuse",
+ "hasLocution": false
+ },
+ {
+ "keyword": "gaie",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features"
+ ],
+ "synsets": [
+ "02393670-a",
+ "01398335-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features"
+ ],
+ "_id": 10193,
+ "created": "2009-11-11T19:37:45.000Z",
+ "lastUpdated": "2021-07-19T10:51:05.662Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "plus grande",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "grande",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "elderly",
+ "family"
+ ],
+ "synsets": [
+ "10162267-n",
+ "10068026-n",
+ "01648667-s"
+ ],
+ "tags": [
+ "person",
+ "elderly",
+ "family"
+ ],
+ "_id": 10194,
+ "created": "2009-11-11T19:39:37.000Z",
+ "lastUpdated": "2021-07-19T10:51:31.467Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grand-mère",
+ "hasLocution": true,
+ "plural": "grands-mères"
+ },
+ {
+ "type": 2,
+ "keyword": "mamy",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mémé",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01080481-a",
+ "01806732-a",
+ "01821097-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 10195,
+ "created": "2009-11-11T19:41:22.000Z",
+ "lastUpdated": "2021-07-19T10:51:40.612Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "désagréable",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "déplaire",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "antipathique",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features"
+ ],
+ "synsets": [
+ "02395180-a",
+ "01397927-s",
+ "01394303-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features"
+ ],
+ "_id": 10196,
+ "created": "2009-11-11T19:48:34.000Z",
+ "lastUpdated": "2021-07-19T10:52:03.163Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "inférieur",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "petite",
+ "hasLocution": true
+ },
+ {
+ "keyword": "plus petite",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01133477-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 10197,
+ "created": "2009-11-11T20:00:48.000Z",
+ "lastUpdated": "2021-07-19T10:52:26.141Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "bonne",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sainte",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "bénie",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "02166241-a",
+ "07960684-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 10198,
+ "created": "2009-11-11T20:03:09.000Z",
+ "lastUpdated": "2021-07-19T10:52:35.500Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "aveugle",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "non-voyant",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02332106-a",
+ "02332825-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 10199,
+ "created": "2009-11-11T20:04:34.000Z",
+ "lastUpdated": "2021-07-19T10:52:40.635Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "faible",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "00007012-v",
+ "02767855-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 10179,
+ "created": "2009-11-11T18:17:07.000Z",
+ "lastUpdated": "2021-07-19T10:48:22.484Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "souffler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "souffler les bougies",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 10180,
+ "created": "2009-11-11T18:18:37.000Z",
+ "lastUpdated": "2021-07-19T10:48:26.427Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "remonter le pantalon",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 10181,
+ "created": "2009-11-11T18:21:43.000Z",
+ "lastUpdated": "2021-07-19T10:48:46.796Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "remonter le caleçon",
+ "hasLocution": true
+ },
+ {
+ "keyword": "remonter le slip",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features"
+ ],
+ "synsets": [
+ "00991420-a",
+ "00993331-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features"
+ ],
+ "_id": 10200,
+ "created": "2009-11-11T20:05:49.000Z",
+ "lastUpdated": "2021-07-19T10:52:53.259Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mince",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "maigre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "taste",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02376904-a",
+ "02346267-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "taste",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 10201,
+ "created": "2009-11-11T20:07:17.000Z",
+ "lastUpdated": "2021-07-19T10:52:56.603Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sucré",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "character",
+ "mass media"
+ ],
+ "synsets": [
+ "01378757-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "character",
+ "mass media"
+ ],
+ "_id": 10202,
+ "created": "2009-11-11T20:09:31.000Z",
+ "lastUpdated": "2021-07-19T10:53:03.095Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "célèbre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "character",
+ "mass media"
+ ],
+ "synsets": [
+ "01378757-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "character",
+ "mass media"
+ ],
+ "_id": 10203,
+ "created": "2009-11-11T20:10:08.000Z",
+ "lastUpdated": "2021-07-19T10:53:09.786Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "célèbre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02328781-a",
+ "02329581-s",
+ "00831875-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 10204,
+ "created": "2009-11-11T20:11:50.000Z",
+ "lastUpdated": "2021-07-19T10:53:52.143Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "forte",
+ "hasLocution": true
+ },
+ {
+ "keyword": "musclée",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "costaude",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "halloween"
+ ],
+ "synsets": [
+ "00080947-s",
+ "00080219-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 10208,
+ "created": "2009-11-11T20:21:26.000Z",
+ "lastUpdated": "2021-07-19T10:55:35.017Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "peureux",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "effrayé",
+ "hasLocution": true
+ },
+ {
+ "keyword": "terrorisé",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "economy"
+ ],
+ "synsets": [
+ "02030204-a",
+ "07964900-n",
+ "10201821-n",
+ "09866418-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "economy"
+ ],
+ "_id": 10209,
+ "created": "2009-11-11T20:24:16.000Z",
+ "lastUpdated": "2021-07-19T10:56:49.808Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "pauvre",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "indigente",
+ "hasLocution": false,
+ "plural": "indigentes"
+ },
+ {
+ "keyword": "sans toit",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "SDF",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "mendiante",
+ "hasLocution": false,
+ "plural": "mendiantes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective"
+ ],
+ "synsets": [
+ "01014459-a",
+ "02209716-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective"
+ ],
+ "_id": 10210,
+ "created": "2009-11-11T20:26:44.000Z",
+ "lastUpdated": "2021-07-19T10:56:58.574Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "première",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "economy"
+ ],
+ "synsets": [
+ "02029118-a",
+ "02029380-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "economy"
+ ],
+ "_id": 10211,
+ "created": "2009-11-11T20:28:17.000Z",
+ "lastUpdated": "2021-07-19T10:57:01.380Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "riche",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01591274-s",
+ "01590750-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 10212,
+ "created": "2009-11-11T20:31:46.000Z",
+ "lastUpdated": "2021-07-19T10:57:06.021Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "agréable",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "sympathique",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02258956-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 10213,
+ "created": "2009-11-11T20:33:25.000Z",
+ "lastUpdated": "2021-07-19T10:57:41.009Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "seule",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "00685207-a"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 10214,
+ "created": "2009-11-11T20:34:26.000Z",
+ "lastUpdated": "2021-07-19T10:57:43.849Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sourde",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "00685207-a"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 10215,
+ "created": "2009-11-11T20:35:40.000Z",
+ "lastUpdated": "2021-07-19T10:58:00.205Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sourde-muette",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective"
+ ],
+ "synsets": [
+ "01016876-a",
+ "00231668-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective"
+ ],
+ "_id": 10216,
+ "created": "2009-11-11T20:39:13.000Z",
+ "lastUpdated": "2021-07-19T10:58:05.596Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "dernière",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00295445-s",
+ "00295445-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 10217,
+ "created": "2009-11-11T20:41:43.000Z",
+ "lastUpdated": "2021-07-19T10:58:27.252Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fainéante",
+ "hasLocution": false
+ },
+ {
+ "keyword": "paresseuse",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07769568-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 10218,
+ "created": "2009-11-11T20:46:49.000Z",
+ "lastUpdated": "2021-07-19T10:58:54.573Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "banane",
+ "hasLocution": true,
+ "plural": "bananes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07896943-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 10219,
+ "created": "2009-11-11T20:48:29.000Z",
+ "lastUpdated": "2021-07-19T10:59:13.105Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "burrito",
+ "hasLocution": false,
+ "plural": "burritos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fungus",
+ "plant-based food"
+ ],
+ "synsets": [
+ "13021651-n",
+ "07750720-n"
+ ],
+ "tags": [
+ "plant",
+ "fungus",
+ "feeding",
+ "food",
+ "plant-based food"
+ ],
+ "_id": 10220,
+ "created": "2009-11-11T20:52:43.000Z",
+ "lastUpdated": "2021-07-19T10:59:20.751Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "champignon",
+ "hasLocution": true,
+ "plural": "champignons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07597172-n",
+ "07596911-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 10221,
+ "created": "2009-11-11T20:57:45.000Z",
+ "lastUpdated": "2021-07-19T10:59:37.717Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canapé",
+ "hasLocution": true,
+ "plural": "canapés"
+ },
+ {
+ "type": 2,
+ "keyword": "amuse-gueule",
+ "hasLocution": true,
+ "plural": "amuse-gueule"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07815555-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 10222,
+ "created": "2009-11-11T20:59:51.000Z",
+ "lastUpdated": "2021-07-19T10:59:50.499Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caviar",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "alcoholism"
+ ],
+ "synsets": [
+ "07902824-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "alcohol"
+ ],
+ "_id": 10223,
+ "created": "2009-11-11T21:01:30.000Z",
+ "lastUpdated": "2021-07-19T11:00:00.616Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bière",
+ "hasLocution": true,
+ "plural": "bières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07788911-n",
+ "07789214-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 10224,
+ "created": "2009-11-11T21:03:11.000Z",
+ "lastUpdated": "2021-07-19T11:00:08.260Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "noix de coco",
+ "hasLocution": true,
+ "plural": "noix de coco"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat"
+ ],
+ "synsets": [
+ "07691372-n",
+ "07694173-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 10225,
+ "created": "2009-11-11T21:05:27.000Z",
+ "lastUpdated": "2021-07-19T11:00:31.694Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charcuterie",
+ "hasLocution": true
+ },
+ {
+ "keyword": "viande froide",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features"
+ ],
+ "synsets": [
+ "00989218-a",
+ "00990368-s",
+ "00989957-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features"
+ ],
+ "_id": 10205,
+ "created": "2009-11-11T20:13:21.000Z",
+ "lastUpdated": "2021-07-19T10:54:25.298Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "grosse",
+ "hasLocution": true
+ },
+ {
+ "keyword": "obèse",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "en surpoids",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "teenager",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "09791452-n",
+ "01651383-a"
+ ],
+ "tags": [
+ "person",
+ "teenager",
+ "core vocabulary"
+ ],
+ "_id": 10206,
+ "created": "2009-11-11T20:15:15.000Z",
+ "lastUpdated": "2021-07-19T10:54:56.987Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "jeune",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "adolescente",
+ "hasLocution": false,
+ "plural": "adolescentes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01129296-a",
+ "02523798-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 10207,
+ "created": "2009-11-11T20:17:18.000Z",
+ "lastUpdated": "2021-07-19T10:55:06.610Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mauvaise",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "méchante",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07883397-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 10226,
+ "created": "2009-11-11T21:07:32.000Z",
+ "lastUpdated": "2021-07-19T11:00:42.143Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fondue",
+ "hasLocution": true,
+ "plural": "fondue"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07712845-n",
+ "07728304-n",
+ "07575758-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 10227,
+ "created": "2009-11-11T21:15:21.000Z",
+ "lastUpdated": "2021-07-19T11:00:46.301Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hamburger et frites",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07860018-n",
+ "07650764-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 10228,
+ "created": "2009-11-11T21:18:11.000Z",
+ "lastUpdated": "2021-07-19T11:00:53.881Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lait et galettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07766980-n",
+ "02950393-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 10229,
+ "created": "2009-11-11T21:19:55.000Z",
+ "lastUpdated": "2021-07-19T11:01:04.427Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pêche au sirop",
+ "hasLocution": true,
+ "plural": "pêches au sirop"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07695101-n",
+ "07699531-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 10230,
+ "created": "2009-11-11T21:26:37.000Z",
+ "lastUpdated": "2021-04-17T08:00:25.265Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pain",
+ "hasLocution": true,
+ "plural": "pains"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07647646-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 10234,
+ "created": "2009-11-11T21:33:05.000Z",
+ "lastUpdated": "2021-07-19T11:02:08.577Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gateau",
+ "hasLocution": true,
+ "plural": "gateaux"
+ },
+ {
+ "keyword": "biscuit",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "génoise",
+ "hasLocution": false,
+ "plural": "génoise",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07765558-n",
+ "13758939-n",
+ "03938441-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 10235,
+ "created": "2009-11-11T21:35:04.000Z",
+ "lastUpdated": "2021-07-19T11:02:15.066Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "un demi citron",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "07592003-n",
+ "15163651-n"
+ ],
+ "tags": [
+ "event",
+ "feeding"
+ ],
+ "_id": 10236,
+ "created": "2009-11-11T21:37:45.000Z",
+ "lastUpdated": "2021-07-19T11:02:29.766Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pique-nique",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container"
+ ],
+ "synsets": [
+ "02974815-n"
+ ],
+ "tags": [
+ "object",
+ "container"
+ ],
+ "_id": 10237,
+ "created": "2009-11-11T21:39:18.000Z",
+ "lastUpdated": "2021-07-19T11:02:53.290Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tétra brique",
+ "hasLocution": false,
+ "plural": "tétra briques"
+ },
+ {
+ "keyword": "brique",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "briques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "christmas",
+ "cattle farming",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02405655-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "event",
+ "popular event",
+ "christmas",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic"
+ ],
+ "_id": 10238,
+ "created": "2009-11-11T21:41:52.000Z",
+ "lastUpdated": "2021-07-19T11:03:14.479Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boeuf",
+ "hasLocution": false,
+ "plural": "boeufs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "omnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02510652-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 10239,
+ "created": "2009-11-11T21:43:24.000Z",
+ "lastUpdated": "2021-07-19T11:03:44.462Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "raton-laveur",
+ "hasLocution": false,
+ "plural": "ratons-laveurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "bird",
+ "oviparous",
+ "marine animal",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02058457-n",
+ "02059382-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 10240,
+ "created": "2009-11-11T21:44:42.000Z",
+ "lastUpdated": "2021-07-19T11:05:02.655Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "manchot empereur",
+ "hasLocution": false,
+ "plural": "manchots empereur"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "reptile",
+ "oviparous",
+ "marine animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01666042-n",
+ "01666423-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "reptile",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "wild"
+ ],
+ "_id": 10241,
+ "created": "2009-11-11T21:47:10.000Z",
+ "lastUpdated": "2021-07-19T11:05:29.898Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tortue",
+ "hasLocution": true,
+ "plural": "tortues"
+ },
+ {
+ "keyword": "tortue marine",
+ "hasLocution": false,
+ "plural": "tortues marines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal group",
+ "fishing"
+ ],
+ "synsets": [
+ "08011895-n"
+ ],
+ "tags": [
+ "animal",
+ "group",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 10242,
+ "created": "2009-11-11T21:49:05.000Z",
+ "lastUpdated": "2024-12-04T10:37:14.173Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "banc",
+ "hasLocution": true,
+ "plural": "bancs"
+ },
+ {
+ "keyword": "banc de poissons",
+ "hasLocution": false,
+ "plural": "bancs de poissons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal group"
+ ],
+ "synsets": [
+ "08007398-n"
+ ],
+ "tags": [
+ "animal",
+ "group"
+ ],
+ "_id": 10243,
+ "created": "2009-11-11T21:50:25.000Z",
+ "lastUpdated": "2021-07-19T11:08:32.316Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vol",
+ "hasLocution": true,
+ "plural": "vols"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal group"
+ ],
+ "synsets": [
+ "08201135-n"
+ ],
+ "tags": [
+ "animal",
+ "group"
+ ],
+ "_id": 10244,
+ "created": "2009-11-11T21:52:11.000Z",
+ "lastUpdated": "2021-07-19T11:50:20.732Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "essaim",
+ "hasLocution": true,
+ "plural": "essaims"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal group"
+ ],
+ "synsets": [
+ "08011383-n"
+ ],
+ "tags": [
+ "animal",
+ "group"
+ ],
+ "_id": 10245,
+ "created": "2009-11-11T21:57:47.000Z",
+ "lastUpdated": "2021-07-19T11:09:49.714Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "meute",
+ "hasLocution": true,
+ "plural": "meutes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal group"
+ ],
+ "synsets": [
+ "08011720-n"
+ ],
+ "tags": [
+ "animal",
+ "group"
+ ],
+ "_id": 10246,
+ "created": "2009-11-11T22:02:39.000Z",
+ "lastUpdated": "2021-07-19T11:10:07.632Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "troupeau",
+ "hasLocution": true,
+ "plural": "troupeaux"
+ },
+ {
+ "keyword": "horde",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "hordes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "apiculture"
+ ],
+ "synsets": [
+ "09241222-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "apiculture"
+ ],
+ "_id": 10247,
+ "created": "2009-11-11T22:05:07.000Z",
+ "lastUpdated": "2021-07-19T11:11:19.180Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rayon",
+ "hasLocution": true,
+ "plural": "rayons"
+ },
+ {
+ "keyword": "nid d'abeille",
+ "hasLocution": false,
+ "plural": "nids d'abeilles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal group",
+ "cattle farming"
+ ],
+ "synsets": [
+ "08201253-n"
+ ],
+ "tags": [
+ "animal",
+ "group",
+ "work",
+ "primary sector",
+ "cattle farming"
+ ],
+ "_id": 10248,
+ "created": "2009-11-11T22:06:26.000Z",
+ "lastUpdated": "2021-07-19T11:11:28.539Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "troupeau",
+ "hasLocution": true,
+ "plural": "troupeaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cattle farming",
+ "animal group"
+ ],
+ "synsets": [
+ "08010773-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "cattle farming",
+ "animal",
+ "group"
+ ],
+ "_id": 10249,
+ "created": "2009-11-11T22:07:53.000Z",
+ "lastUpdated": "2021-07-19T11:12:27.384Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "troupeau",
+ "hasLocution": true,
+ "plural": "troupeaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "categorization",
+ "person according to their age",
+ "animal",
+ "plant",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "00004475-n"
+ ],
+ "tags": [
+ "categorization",
+ "person",
+ "animal",
+ "plant",
+ "core vocabulary"
+ ],
+ "_id": 10250,
+ "created": "2009-11-11T22:09:03.000Z",
+ "lastUpdated": "2024-12-12T16:01:11.732Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "êtres vivants",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "être vivant",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08971963-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 10251,
+ "created": "2009-11-12T11:01:24.000Z",
+ "lastUpdated": "2021-07-19T11:12:40.832Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Hongrie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07696677-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 10231,
+ "created": "2009-11-11T21:28:14.000Z",
+ "lastUpdated": "2021-07-19T11:04:25.156Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "petit pain",
+ "hasLocution": true,
+ "plural": "petits pains"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food",
+ "food"
+ ],
+ "synsets": [
+ "07699531-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 10232,
+ "created": "2009-11-11T21:29:52.000Z",
+ "lastUpdated": "2024-12-13T06:58:50.520Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tranche de pain",
+ "hasLocution": true,
+ "plural": "tranches de pain"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07933210-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 10233,
+ "created": "2009-11-11T21:31:01.000Z",
+ "lastUpdated": "2021-07-19T11:01:22.061Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sangria",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08781940-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 10252,
+ "created": "2009-11-12T11:02:40.000Z",
+ "lastUpdated": "2021-07-19T11:12:44.140Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Norvège",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08783723-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 10253,
+ "created": "2009-11-12T11:03:59.000Z",
+ "lastUpdated": "2021-07-19T11:12:48.014Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Suède",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "03476596-n",
+ "04294291-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 10254,
+ "created": "2009-11-12T11:05:47.000Z",
+ "lastUpdated": "2021-07-19T11:13:06.637Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gouttière",
+ "hasLocution": true,
+ "plural": "gouttières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "02843474-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 10255,
+ "created": "2009-11-12T11:07:06.000Z",
+ "lastUpdated": "2021-07-19T11:12:59.750Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "classeur",
+ "hasLocution": true,
+ "plural": "classeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03491080-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 10256,
+ "created": "2009-11-12T11:13:07.000Z",
+ "lastUpdated": "2021-07-19T11:13:21.331Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "manche",
+ "hasLocution": true,
+ "plural": "manches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "06009822-n",
+ "00891150-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 10260,
+ "created": "2009-11-12T12:16:45.000Z",
+ "lastUpdated": "2021-07-19T11:14:31.443Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cours de mathématiques",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mathématiques",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling",
+ "human response",
+ "halloween"
+ ],
+ "synsets": [
+ "07534492-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion",
+ "human response",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 10261,
+ "created": "2009-11-12T12:19:29.000Z",
+ "lastUpdated": "2021-07-19T11:50:27.025Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peur",
+ "hasLocution": true,
+ "plural": "peurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14196966-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 10262,
+ "created": "2009-11-12T12:25:51.000Z",
+ "lastUpdated": "2021-07-19T11:14:52.907Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pharyngite",
+ "hasLocution": false,
+ "plural": "pharyngites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "odontology"
+ ],
+ "synsets": [
+ "14347383-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "odontology"
+ ],
+ "_id": 10263,
+ "created": "2009-11-12T12:27:41.000Z",
+ "lastUpdated": "2021-07-19T11:15:27.833Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de dent",
+ "hasLocution": true,
+ "plural": "maux de dents"
+ },
+ {
+ "keyword": "rage de dent",
+ "hasLocution": false,
+ "plural": "rages de dent",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14369821-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 10264,
+ "created": "2009-11-12T12:28:47.000Z",
+ "lastUpdated": "2021-07-03T14:31:06.731Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gastrite",
+ "hasLocution": true,
+ "plural": "gastrites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14375034-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 10265,
+ "created": "2009-11-12T12:29:57.000Z",
+ "lastUpdated": "2021-07-19T11:15:35.962Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "otite",
+ "hasLocution": true,
+ "plural": "otites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14313092-n",
+ "04701438-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 10266,
+ "created": "2009-11-12T12:31:23.000Z",
+ "lastUpdated": "2021-07-19T11:15:45.598Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brûlure",
+ "hasLocution": true,
+ "plural": "brûlures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "digestive system",
+ "odontology"
+ ],
+ "synsets": [
+ "05290245-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "human physiology",
+ "physiology",
+ "digestive system",
+ "health",
+ "odontology"
+ ],
+ "_id": 10267,
+ "created": "2009-11-12T12:33:14.000Z",
+ "lastUpdated": "2021-07-19T11:15:54.268Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dent",
+ "hasLocution": true,
+ "plural": "dents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "biology"
+ ],
+ "synsets": [
+ "14854534-n"
+ ],
+ "tags": [
+ "biology"
+ ],
+ "_id": 10268,
+ "created": "2009-11-12T12:39:08.000Z",
+ "lastUpdated": "2021-07-19T11:16:33.861Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ADN",
+ "hasLocution": true
+ },
+ {
+ "keyword": "acide désoxyribonucléique",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "circulatory system"
+ ],
+ "synsets": [
+ "05341325-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "circulatory system"
+ ],
+ "_id": 10269,
+ "created": "2009-11-12T12:40:37.000Z",
+ "lastUpdated": "2021-07-19T11:16:47.892Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "artère",
+ "hasLocution": true,
+ "plural": "artères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "circulatory system"
+ ],
+ "synsets": [
+ "05426061-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "circulatory system"
+ ],
+ "_id": 10270,
+ "created": "2009-11-12T12:41:39.000Z",
+ "lastUpdated": "2021-07-19T11:16:56.181Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "veine",
+ "hasLocution": true,
+ "plural": "veines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "03271817-n",
+ "08952341-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 10271,
+ "created": "2009-11-12T12:50:44.000Z",
+ "lastUpdated": "2021-07-19T11:16:59.855Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "tour Eiffel",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "03022625-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 10272,
+ "created": "2009-11-12T12:54:45.000Z",
+ "lastUpdated": "2021-07-19T11:17:17.049Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Muraille de Chine",
+ "hasLocution": true
+ },
+ {
+ "keyword": "La grande Muraille",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "feeling",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "06645018-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "psychology",
+ "feeling",
+ "emotion",
+ "core vocabulary"
+ ],
+ "_id": 10273,
+ "created": "2009-11-12T12:56:28.000Z",
+ "lastUpdated": "2021-07-19T11:17:38.142Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "comment vas-tu ?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "comment ça va ",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "gender identity"
+ ],
+ "synsets": [
+ "05014082-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "sexuality",
+ "gender identity"
+ ],
+ "_id": 10274,
+ "created": "2009-11-12T13:00:28.000Z",
+ "lastUpdated": "2021-07-19T11:17:46.029Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "Quel est son sexe ?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "supporting document",
+ "birthday"
+ ],
+ "synsets": [
+ "07334902-n",
+ "07211342-n",
+ "15185626-n"
+ ],
+ "tags": [
+ "document",
+ "supporting document",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 10275,
+ "created": "2009-11-12T13:02:33.000Z",
+ "lastUpdated": "2021-07-19T11:17:49.977Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Date de naissance",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "interrogative pronoun",
+ "pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "interrogative pronoun"
+ ],
+ "_id": 10276,
+ "created": "2009-11-12T13:04:16.000Z",
+ "lastUpdated": "2024-10-21T05:12:24.284Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "qui",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "hasLocution": false,
+ "keyword": "qui est-ce?"
+ },
+ {
+ "type": 5,
+ "keyword": "qui c'est?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "qui est-elle?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "qui est-il?",
+ "hasLocution": false
+ },
+ {
+ "keyword": "qui?",
+ "hasLocution": true,
+ "type": 6
+ },
+ {
+ "keyword": "que",
+ "hasLocution": true,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "construction"
+ ],
+ "synsets": [
+ "03607053-n",
+ "02819085-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 10277,
+ "created": "2009-11-12T13:07:16.000Z",
+ "lastUpdated": "2021-07-19T11:18:19.380Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poutre",
+ "hasLocution": true,
+ "plural": "poutres"
+ },
+ {
+ "keyword": "poutrelle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "poutrelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04270367-n",
+ "04506357-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 10257,
+ "created": "2009-11-12T11:39:12.000Z",
+ "lastUpdated": "2021-07-19T11:50:23.980Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "soupière",
+ "hasLocution": false,
+ "plural": "soupières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "subject",
+ "education"
+ ],
+ "synsets": [
+ "05764885-n",
+ "00891150-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 10258,
+ "created": "2009-11-12T12:09:53.000Z",
+ "lastUpdated": "2024-12-12T07:01:04.204Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éducation physique et sportive",
+ "hasLocution": false,
+ "plural": "éducations physiques et sportives"
+ },
+ {
+ "type": 2,
+ "keyword": "cours d'éducation physique",
+ "hasLocution": false,
+ "plural": "cours d'éducation physique"
+ },
+ {
+ "keyword": "EPS",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "EPS"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00730776-n",
+ "05762896-n",
+ "00891150-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 10259,
+ "created": "2009-11-12T12:11:39.000Z",
+ "lastUpdated": "2021-07-19T11:14:20.640Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "espagnol",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "cours d'espagnol",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "coin"
+ ],
+ "synsets": [
+ "13683925-n",
+ "13409418-n",
+ "13765409-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "coin"
+ ],
+ "_id": 10279,
+ "created": "2009-11-12T19:51:57.000Z",
+ "lastUpdated": "2021-07-19T11:18:24.045Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "2 euros",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "gardening"
+ ],
+ "synsets": [
+ "03655235-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 10280,
+ "created": "2009-11-12T21:08:56.000Z",
+ "lastUpdated": "2021-07-19T11:18:33.873Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tondeuse à gazon",
+ "hasLocution": true,
+ "plural": "tondeuses à gazon"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03726538-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 10281,
+ "created": "2009-11-12T21:10:39.000Z",
+ "lastUpdated": "2021-07-19T11:18:37.997Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "billes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00486092-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 10282,
+ "created": "2009-11-12T21:12:01.000Z",
+ "lastUpdated": "2021-07-19T12:08:19.065Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marelle",
+ "hasLocution": true,
+ "plural": "marelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "gastronomy"
+ ],
+ "synsets": [
+ "04088393-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 10283,
+ "created": "2009-11-12T21:14:44.000Z",
+ "lastUpdated": "2021-04-12T21:23:43.828Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "restaurant",
+ "hasLocution": true,
+ "plural": "restaurants"
+ },
+ {
+ "keyword": "resto",
+ "hasLocution": false,
+ "plural": "restos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "14659900-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 10287,
+ "created": "2009-11-12T21:37:11.000Z",
+ "lastUpdated": "2021-07-19T11:19:20.078Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuivre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "derived material",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "14616790-n"
+ ],
+ "tags": [
+ "material",
+ "derived material",
+ "object",
+ "core vocabulary"
+ ],
+ "_id": 10288,
+ "created": "2009-11-12T21:39:17.000Z",
+ "lastUpdated": "2021-07-19T11:19:23.732Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plastique",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "08516085-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 10289,
+ "created": "2009-11-12T21:41:24.000Z",
+ "lastUpdated": "2021-07-19T11:19:26.877Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atmosphère",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "02544973-a",
+ "15232098-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 10290,
+ "created": "2009-11-12T21:43:23.000Z",
+ "lastUpdated": "2021-07-19T11:19:30.194Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "premier quartier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "02545162-a",
+ "15232226-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 10291,
+ "created": "2009-11-12T21:44:29.000Z",
+ "lastUpdated": "2021-07-19T11:19:34.163Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dernier quartier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "15232668-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 10292,
+ "created": "2009-11-12T21:45:49.000Z",
+ "lastUpdated": "2021-07-19T11:19:36.841Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "phases lunaires",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "planet"
+ ],
+ "synsets": [
+ "09416900-n",
+ "09345360-n"
+ ],
+ "tags": [
+ "astronomy",
+ "planet"
+ ],
+ "_id": 10293,
+ "created": "2009-11-12T21:47:28.000Z",
+ "lastUpdated": "2021-07-19T11:19:43.022Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Jupiter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy",
+ "halloween"
+ ],
+ "synsets": [
+ "15232352-n",
+ "09381255-n"
+ ],
+ "tags": [
+ "astronomy",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 10294,
+ "created": "2009-11-12T21:49:46.000Z",
+ "lastUpdated": "2021-07-19T11:19:45.657Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pleine lune",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "08600622-n",
+ "08629219-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 10285,
+ "created": "2009-11-12T21:23:54.000Z",
+ "lastUpdated": "2021-07-19T11:19:04.477Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hémisphère nord",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "planet"
+ ],
+ "synsets": [
+ "09416900-n",
+ "09370342-n"
+ ],
+ "tags": [
+ "astronomy",
+ "planet"
+ ],
+ "_id": 10296,
+ "created": "2009-11-12T21:52:32.000Z",
+ "lastUpdated": "2021-03-26T02:46:44.339Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Mars",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "planet"
+ ],
+ "synsets": [
+ "09416900-n",
+ "09374305-n"
+ ],
+ "tags": [
+ "astronomy",
+ "planet"
+ ],
+ "_id": 10297,
+ "created": "2009-11-12T21:53:41.000Z",
+ "lastUpdated": "2021-07-19T11:19:52.560Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Mercure",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "planet"
+ ],
+ "synsets": [
+ "09416900-n",
+ "09391596-n"
+ ],
+ "tags": [
+ "astronomy",
+ "planet"
+ ],
+ "_id": 10298,
+ "created": "2009-11-12T21:54:56.000Z",
+ "lastUpdated": "2021-07-19T11:19:54.805Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Neptune",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "theater"
+ ],
+ "synsets": [
+ "04424944-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "scenic art",
+ "theater",
+ "show"
+ ],
+ "_id": 10284,
+ "created": "2009-11-12T21:16:07.000Z",
+ "lastUpdated": "2021-07-19T11:18:55.847Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "théâtre",
+ "hasLocution": true,
+ "plural": "théâtres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "08600622-n",
+ "08670126-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 10286,
+ "created": "2009-11-12T21:25:30.000Z",
+ "lastUpdated": "2021-07-19T11:19:10.989Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hémisphère sud ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "planet"
+ ],
+ "synsets": [
+ "09416900-n",
+ "09490547-n"
+ ],
+ "tags": [
+ "astronomy",
+ "planet"
+ ],
+ "_id": 10302,
+ "created": "2009-11-12T22:03:36.000Z",
+ "lastUpdated": "2021-07-19T11:20:02.272Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Uranus",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "planet"
+ ],
+ "synsets": [
+ "09416900-n",
+ "09493892-n"
+ ],
+ "tags": [
+ "astronomy",
+ "planet"
+ ],
+ "_id": 10303,
+ "created": "2009-11-12T22:05:00.000Z",
+ "lastUpdated": "2021-07-19T11:20:04.852Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Vénus",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "planet"
+ ],
+ "synsets": [
+ "09418792-n",
+ "09231590-n"
+ ],
+ "tags": [
+ "astronomy",
+ "planet"
+ ],
+ "_id": 10299,
+ "created": "2009-11-12T21:56:44.000Z",
+ "lastUpdated": "2021-07-19T11:19:57.413Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pluton",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "08664477-n",
+ "08662608-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 10304,
+ "created": "2009-11-12T22:07:45.000Z",
+ "lastUpdated": "2021-07-19T11:20:15.244Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "paysage",
+ "hasLocution": true,
+ "plural": "paysages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform",
+ "monument"
+ ],
+ "synsets": [
+ "09047342-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "place",
+ "monument"
+ ],
+ "_id": 10305,
+ "created": "2009-11-12T22:09:10.000Z",
+ "lastUpdated": "2021-07-19T11:20:55.546Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Teide",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Mont Teide",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "river"
+ ],
+ "synsets": [
+ "08536123-n",
+ "09434308-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "river"
+ ],
+ "_id": 10306,
+ "created": "2009-11-12T22:13:40.000Z",
+ "lastUpdated": "2021-07-19T11:20:59.468Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fleuves d'Espagne",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "rivières",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container"
+ ],
+ "synsets": [
+ "04523286-n"
+ ],
+ "tags": [
+ "object",
+ "container"
+ ],
+ "_id": 10307,
+ "created": "2009-11-12T22:15:25.000Z",
+ "lastUpdated": "2021-07-19T11:21:35.486Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pot de chambre",
+ "hasLocution": true,
+ "plural": "pots de chambre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "planet"
+ ],
+ "synsets": [
+ "09416900-n",
+ "09447520-n"
+ ],
+ "tags": [
+ "astronomy",
+ "planet"
+ ],
+ "_id": 10300,
+ "created": "2009-11-12T21:59:15.000Z",
+ "lastUpdated": "2021-07-19T11:19:59.924Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saturne",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "06520807-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "core vocabulary"
+ ],
+ "_id": 10310,
+ "created": "2009-11-12T22:23:23.000Z",
+ "lastUpdated": "2021-07-19T11:23:17.766Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fiche",
+ "hasLocution": true,
+ "plural": "fiches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03892459-n",
+ "03047943-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 10309,
+ "created": "2009-11-12T22:18:15.000Z",
+ "lastUpdated": "2021-07-19T11:23:08.668Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trombone",
+ "hasLocution": true,
+ "plural": "trombones"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03342085-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 10311,
+ "created": "2009-11-12T22:24:48.000Z",
+ "lastUpdated": "2021-07-19T11:23:30.438Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fichier",
+ "hasLocution": true,
+ "plural": "fichiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "14820918-n",
+ "06266190-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 10312,
+ "created": "2009-11-12T22:26:29.000Z",
+ "lastUpdated": "2021-07-19T11:23:34.087Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crayon et papier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03393029-n",
+ "03913116-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 10313,
+ "created": "2009-11-12T22:28:13.000Z",
+ "lastUpdated": "2021-07-19T11:23:44.460Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "stylo à plume",
+ "hasLocution": true,
+ "plural": "stylos à plume"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "work tool",
+ "hairdresser"
+ ],
+ "synsets": [
+ "03078859-n",
+ "04155119-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "work",
+ "tool",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 10308,
+ "created": "2009-11-12T22:16:55.000Z",
+ "lastUpdated": "2021-07-19T11:21:40.308Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peigne et ciseaux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "03043932-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 10314,
+ "created": "2009-11-12T22:30:26.000Z",
+ "lastUpdated": "2021-07-19T11:23:58.063Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "seau et serpillère",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "03043932-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 10315,
+ "created": "2009-11-12T22:32:16.000Z",
+ "lastUpdated": "2021-07-19T11:24:07.450Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balai et pelle",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "15231739-n",
+ "09381255-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 10295,
+ "created": "2009-11-12T21:50:54.000Z",
+ "lastUpdated": "2021-07-19T11:19:50.117Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nouvelle lune",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon"
+ ],
+ "synsets": [
+ "04380981-n",
+ "02990947-n"
+ ],
+ "tags": [
+ "object",
+ "weapon"
+ ],
+ "_id": 10319,
+ "created": "2009-11-13T09:53:07.000Z",
+ "lastUpdated": "2021-07-19T11:25:52.954Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "katana",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "cimeterre",
+ "hasLocution": true,
+ "plural": "cimeterres"
+ },
+ {
+ "keyword": "sabre",
+ "type": 2,
+ "plural": "sabres",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular festival"
+ ],
+ "synsets": [
+ "03174056-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "popular festival"
+ ],
+ "_id": 10318,
+ "created": "2009-11-13T09:30:44.000Z",
+ "lastUpdated": "2021-07-19T11:24:53.729Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "décoration",
+ "hasLocution": true,
+ "plural": "décorations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document"
+ ],
+ "synsets": [
+ "06366181-n"
+ ],
+ "tags": [
+ "document",
+ "information document"
+ ],
+ "_id": 10320,
+ "created": "2009-11-13T09:57:50.000Z",
+ "lastUpdated": "2021-07-19T11:26:10.096Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "code barre",
+ "hasLocution": true,
+ "plural": "codes barre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "light fixture"
+ ],
+ "synsets": [
+ "04293713-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 10321,
+ "created": "2009-11-13T10:03:48.000Z",
+ "lastUpdated": "2021-07-19T12:08:21.231Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "projecteur",
+ "hasLocution": true,
+ "plural": "projecteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "music device"
+ ],
+ "synsets": [
+ "03457211-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "music device"
+ ],
+ "_id": 10323,
+ "created": "2009-11-13T10:07:15.000Z",
+ "lastUpdated": "2021-07-19T11:26:28.921Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gramophone",
+ "hasLocution": true,
+ "plural": "gramophones"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00289948-a"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 10322,
+ "created": "2009-11-13T10:05:07.000Z",
+ "lastUpdated": "2021-07-02T00:35:33.220Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lunettes cassées",
+ "hasLocution": true,
+ "plural": "lunettes cassées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "document"
+ ],
+ "synsets": [
+ "04307101-n",
+ "04166119-n",
+ "03493970-n"
+ ],
+ "tags": [
+ "document"
+ ],
+ "_id": 10324,
+ "created": "2009-11-13T10:13:25.000Z",
+ "lastUpdated": "2021-07-19T11:27:29.965Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tampon",
+ "hasLocution": true,
+ "plural": "tampons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "odontology"
+ ],
+ "synsets": [
+ "02890320-n"
+ ],
+ "tags": [
+ "health",
+ "odontology"
+ ],
+ "_id": 10316,
+ "created": "2009-11-12T22:33:57.000Z",
+ "lastUpdated": "2021-07-19T11:24:31.512Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bagues",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bagues dentaires",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chemistry",
+ "nursing equipment"
+ ],
+ "synsets": [
+ "14672278-n",
+ "03160945-n"
+ ],
+ "tags": [
+ "chemistry",
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 10317,
+ "created": "2009-11-12T22:35:37.000Z",
+ "lastUpdated": "2021-07-19T11:24:36.779Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oxygène",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bonbonne",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bonbonne d'oxygène",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "03059144-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 10327,
+ "created": "2009-11-13T10:22:58.000Z",
+ "lastUpdated": "2021-07-19T11:28:13.971Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "embrayage",
+ "hasLocution": true,
+ "plural": "embrayages"
+ },
+ {
+ "keyword": "pédale d'embrayage",
+ "hasLocution": false,
+ "plural": "pédales d'embrayage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "03509141-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 10328,
+ "created": "2009-11-13T10:25:07.000Z",
+ "lastUpdated": "2021-07-19T11:28:37.802Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "phares",
+ "hasLocution": true
+ },
+ {
+ "keyword": "feux de croisement",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport",
+ "traffic"
+ ],
+ "synsets": [
+ "02894045-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 10329,
+ "created": "2009-11-13T10:26:34.000Z",
+ "lastUpdated": "2024-12-12T07:19:25.999Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "frein",
+ "hasLocution": true,
+ "plural": "freins"
+ },
+ {
+ "keyword": "pédale de frein",
+ "hasLocution": false,
+ "plural": "pédales de frein",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "03488720-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 10330,
+ "created": "2009-11-13T10:27:57.000Z",
+ "lastUpdated": "2021-07-19T11:29:48.773Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "frein à main",
+ "hasLocution": true,
+ "plural": "freins à main"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "04598049-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 10331,
+ "created": "2009-11-13T10:38:29.000Z",
+ "lastUpdated": "2021-07-19T11:29:52.803Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "esssuies-glace",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "03701391-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 10332,
+ "created": "2009-11-13T10:40:50.000Z",
+ "lastUpdated": "2021-07-19T11:30:01.108Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coffre",
+ "hasLocution": true,
+ "plural": "coffres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "02673313-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 10326,
+ "created": "2009-11-13T10:19:40.000Z",
+ "lastUpdated": "2021-07-19T11:29:35.664Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accélérateur",
+ "hasLocution": true,
+ "plural": "accélérateurs"
+ },
+ {
+ "keyword": "pédale d'accélérateur",
+ "hasLocution": false,
+ "plural": "pédales d'accélérateur",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "03666506-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 10333,
+ "created": "2009-11-13T10:44:16.000Z",
+ "lastUpdated": "2021-07-19T11:30:15.059Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plaque d'immatriculation",
+ "hasLocution": true,
+ "plural": "plaques d'immatriculation"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "03292644-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 10334,
+ "created": "2009-11-13T10:46:51.000Z",
+ "lastUpdated": "2021-07-19T11:30:26.300Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moteur",
+ "hasLocution": true,
+ "plural": "moteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "04597856-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 10335,
+ "created": "2009-11-13T10:50:50.000Z",
+ "lastUpdated": "2021-07-19T11:30:37.851Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pare-brise",
+ "hasLocution": true,
+ "plural": "pare-brises"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media",
+ "object",
+ "document"
+ ],
+ "synsets": [
+ "03296730-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "object",
+ "document"
+ ],
+ "_id": 10325,
+ "created": "2009-11-13T10:17:05.000Z",
+ "lastUpdated": "2025-01-12T16:37:11.788Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enveloppe",
+ "hasLocution": true,
+ "plural": "enveloppes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "04067059-n",
+ "02969235-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 10336,
+ "created": "2009-11-13T10:55:29.000Z",
+ "lastUpdated": "2021-07-19T11:30:53.690Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rétroviseur intérieur",
+ "hasLocution": true,
+ "plural": "rétroviseurs intérieurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "02969235-n",
+ "03867362-n",
+ "03778568-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 10337,
+ "created": "2009-11-13T10:57:19.000Z",
+ "lastUpdated": "2021-07-19T11:31:02.248Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rétroviseur",
+ "hasLocution": true,
+ "plural": "rétroviseurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "indigenouos people",
+ "movie character"
+ ],
+ "synsets": [
+ "09664887-n",
+ "01040065-s"
+ ],
+ "tags": [
+ "person",
+ "character",
+ "movie character",
+ "cinema"
+ ],
+ "_id": 10339,
+ "created": "2009-11-13T11:02:08.000Z",
+ "lastUpdated": "2021-07-21T12:50:45.612Z",
+ "keywords": [
+ {
+ "keyword": "Américaine",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "native d'Amérique",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "road safety"
+ ],
+ "synsets": [
+ "03308455-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "road safety"
+ ],
+ "_id": 10338,
+ "created": "2009-11-13T10:59:57.000Z",
+ "lastUpdated": "2021-07-19T11:33:26.769Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pot d'échappement",
+ "hasLocution": true,
+ "plural": "pots d'échappement"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10012375-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 10340,
+ "created": "2009-11-13T11:05:53.000Z",
+ "lastUpdated": "2021-07-19T11:33:40.577Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fille",
+ "hasLocution": true,
+ "plural": "filles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual orientation"
+ ],
+ "synsets": [
+ "09645472-n",
+ "08005299-n",
+ "01204643-a"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual orientation"
+ ],
+ "_id": 10344,
+ "created": "2009-11-13T11:27:44.000Z",
+ "lastUpdated": "2021-07-19T11:35:10.622Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "hétérosexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "amoureux",
+ "hasLocution": true
+ },
+ {
+ "keyword": "couple",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "couples"
+ },
+ {
+ "keyword": "petit-ami",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gender identity"
+ ],
+ "synsets": [
+ "08015733-n",
+ "05014082-n"
+ ],
+ "tags": [
+ "sexuality",
+ "gender identity"
+ ],
+ "_id": 10345,
+ "created": "2009-11-13T11:29:38.000Z",
+ "lastUpdated": "2021-07-19T11:35:21.038Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sexe",
+ "hasLocution": true
+ },
+ {
+ "keyword": "genre",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03042670-n",
+ "02925183-a"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 10346,
+ "created": "2009-11-13T11:39:46.000Z",
+ "lastUpdated": "2021-07-19T11:35:32.315Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de psychomotricité",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport event"
+ ],
+ "synsets": [
+ "09932913-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event"
+ ],
+ "_id": 10347,
+ "created": "2009-11-13T11:41:16.000Z",
+ "lastUpdated": "2021-07-21T08:04:51.259Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "majorette",
+ "hasLocution": false,
+ "plural": "majorettes"
+ },
+ {
+ "keyword": "pom-pom girl",
+ "hasLocution": false,
+ "plural": "pom-pom girls",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10161110-n",
+ "10162819-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 10343,
+ "created": "2009-11-13T11:08:47.000Z",
+ "lastUpdated": "2021-07-19T11:34:23.854Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "petit-fils",
+ "hasLocution": true,
+ "plural": "petits-fils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "cookery"
+ ],
+ "synsets": [
+ "09983053-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 10348,
+ "created": "2009-11-13T11:49:42.000Z",
+ "lastUpdated": "2021-07-19T11:37:07.714Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuisinier",
+ "hasLocution": true,
+ "plural": "cuisiniers"
+ },
+ {
+ "type": 2,
+ "keyword": "chef cuisinier",
+ "hasLocution": true,
+ "plural": "chefs cuisiniers"
+ },
+ {
+ "type": 2,
+ "keyword": "chef",
+ "hasLocution": true,
+ "plural": "chefs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10161252-n",
+ "10161110-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 10342,
+ "created": "2009-11-13T11:08:11.000Z",
+ "lastUpdated": "2021-07-19T11:34:18.133Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "petite-fille",
+ "hasLocution": false,
+ "plural": "petites-filles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "waste disposal"
+ ],
+ "synsets": [
+ "10802821-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "waste disposal"
+ ],
+ "_id": 10349,
+ "created": "2009-11-13T11:53:40.000Z",
+ "lastUpdated": "2021-07-19T11:37:18.309Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "laveur de vitres",
+ "hasLocution": true,
+ "plural": "laveurs de vitres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10643436-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 10341,
+ "created": "2009-11-13T11:06:32.000Z",
+ "lastUpdated": "2021-07-19T11:33:46.881Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fils",
+ "hasLocution": true,
+ "plural": "fils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "circus"
+ ],
+ "synsets": [
+ "10246083-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "circus",
+ "show"
+ ],
+ "_id": 10350,
+ "created": "2009-11-13T11:55:31.000Z",
+ "lastUpdated": "2021-07-19T11:37:27.136Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jongleur",
+ "hasLocution": true,
+ "plural": "jongleurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mode of transport",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "03105141-n",
+ "04531608-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "core vocabulary"
+ ],
+ "_id": 10351,
+ "created": "2009-11-13T12:01:00.000Z",
+ "lastUpdated": "2021-07-19T11:37:44.214Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "transports",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "transport",
+ "hasLocution": true
+ },
+ {
+ "keyword": "moyens de transport",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "09749725-n",
+ "03518520-n",
+ "03518281-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 10354,
+ "created": "2009-11-13T12:11:56.000Z",
+ "lastUpdated": "2021-07-19T11:38:37.967Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casque viking",
+ "hasLocution": true,
+ "plural": "casques vikings"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnival"
+ ],
+ "synsets": [
+ "02850247-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "carnival"
+ ],
+ "_id": 10353,
+ "created": "2009-11-13T12:05:45.000Z",
+ "lastUpdated": "2021-07-19T11:38:24.206Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pavillon pirate",
+ "hasLocution": true,
+ "plural": "pavillons pirate"
+ },
+ {
+ "keyword": "drapeau noir",
+ "hasLocution": false,
+ "plural": "drapeaux noirs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "food"
+ ],
+ "synsets": [
+ "07638317-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 10356,
+ "created": "2009-11-13T12:18:10.000Z",
+ "lastUpdated": "2024-12-13T06:47:46.325Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "palmier au chocolat",
+ "hasLocution": true,
+ "plural": "palmiers au chocolat"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work machine"
+ ],
+ "synsets": [
+ "03389198-n"
+ ],
+ "tags": [
+ "work",
+ "work machine"
+ ],
+ "_id": 10355,
+ "created": "2009-11-13T12:13:18.000Z",
+ "lastUpdated": "2021-07-19T11:39:18.958Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "transpalette",
+ "hasLocution": true,
+ "plural": "transpalettes"
+ },
+ {
+ "type": 2,
+ "keyword": "charriot élévateur",
+ "hasLocution": false,
+ "plural": "charriots élévateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07638317-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 10357,
+ "created": "2009-11-13T12:23:01.000Z",
+ "lastUpdated": "2021-07-19T11:40:11.150Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pain au chocolat",
+ "hasLocution": false,
+ "plural": "pains au chocolat"
+ },
+ {
+ "keyword": "chocolatine",
+ "hasLocution": false,
+ "plural": "chocolatines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mollusc",
+ "omnivorous",
+ "oviparous",
+ "marine animal"
+ ],
+ "synsets": [
+ "01963100-n"
+ ],
+ "tags": [
+ "animal",
+ "invertebrate",
+ "mollusc",
+ "omnivorous",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea"
+ ],
+ "_id": 10358,
+ "created": "2009-11-13T12:26:10.000Z",
+ "lastUpdated": "2021-07-19T11:41:43.962Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "huître",
+ "hasLocution": true,
+ "plural": "huîtres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "book character"
+ ],
+ "synsets": [
+ "09621544-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "literature"
+ ],
+ "_id": 10359,
+ "created": "2009-11-13T12:28:04.000Z",
+ "lastUpdated": "2021-07-19T11:41:46.388Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Don Quichotte",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "beach",
+ "fashion",
+ "clothes"
+ ],
+ "synsets": [
+ "03938123-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "leisure",
+ "outdoor activity",
+ "beach",
+ "clothes"
+ ],
+ "_id": 10352,
+ "created": "2009-11-13T12:02:08.000Z",
+ "lastUpdated": "2024-12-08T07:28:50.860Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "capeline",
+ "hasLocution": true,
+ "plural": "capelines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "10305010-n",
+ "08630777-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 10363,
+ "created": "2009-11-13T12:33:03.000Z",
+ "lastUpdated": "2021-07-19T11:42:27.083Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enfant",
+ "hasLocution": true,
+ "plural": "enfants"
+ },
+ {
+ "keyword": "garçon",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "garçons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "07211342-n",
+ "02174146-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 10364,
+ "created": "2009-11-13T12:34:40.000Z",
+ "lastUpdated": "2021-07-19T11:42:32.992Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "l'as-tu entendu?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "tu entends ça?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "tu as entendu ça?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "10362098-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 10365,
+ "created": "2009-11-13T12:36:43.000Z",
+ "lastUpdated": "2021-07-19T11:42:47.932Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "muette",
+ "hasLocution": true
+ },
+ {
+ "keyword": "non verbale",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "07208256-n",
+ "02622439-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 10366,
+ "created": "2009-11-13T12:38:09.000Z",
+ "lastUpdated": "2021-07-19T11:43:11.101Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "qu'est-ce que c'est ça?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "qu'est-ce que c'est ?",
+ "hasLocution": true,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "07208256-n",
+ "01649143-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 10367,
+ "created": "2009-11-13T12:39:31.000Z",
+ "lastUpdated": "2021-07-19T11:43:16.730Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "qu'as-tu fait ?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "toy"
+ ],
+ "synsets": [
+ "07208256-n",
+ "00431591-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 10368,
+ "created": "2009-11-13T12:40:59.000Z",
+ "lastUpdated": "2021-07-19T11:50:40.716Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "quel jeu veux-tu ?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "A quoi veux tu jouer ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "08630777-n",
+ "10104064-n",
+ "10149362-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 10362,
+ "created": "2009-11-13T12:32:29.000Z",
+ "lastUpdated": "2021-07-19T11:42:09.264Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fille",
+ "hasLocution": true,
+ "plural": "filles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "08630777-n",
+ "10807146-n"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 10361,
+ "created": "2009-11-13T12:31:20.000Z",
+ "lastUpdated": "2021-07-19T11:42:03.847Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "femme",
+ "hasLocution": true,
+ "plural": "femmes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10370,
+ "created": "2009-11-13T12:59:16.000Z",
+ "lastUpdated": "2022-02-03T15:08:05.154Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bras en croix",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bras tendus",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10371,
+ "created": "2009-11-13T12:59:58.000Z",
+ "lastUpdated": "2021-07-19T11:44:20.894Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bras en croix",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bras tendus",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10372,
+ "created": "2009-11-13T13:00:40.000Z",
+ "lastUpdated": "2021-07-19T11:44:40.674Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains à la taille",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mains sur les hanches",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10373,
+ "created": "2009-11-13T13:01:17.000Z",
+ "lastUpdated": "2021-07-19T11:44:57.020Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains à la taille",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mains sur les hanches",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10374,
+ "created": "2009-11-13T13:02:41.000Z",
+ "lastUpdated": "2021-07-19T11:45:13.723Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains sur le ventre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "tv show"
+ ],
+ "synsets": [
+ "07208256-n",
+ "06633086-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "mass media",
+ "tertiary sector",
+ "TV show"
+ ],
+ "_id": 10369,
+ "created": "2009-11-13T12:42:04.000Z",
+ "lastUpdated": "2021-03-12T13:33:16.017Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "Quelle émission veux-tu regarder ?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Quelle chaîne veux-tu regarder?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10375,
+ "created": "2009-11-13T13:03:19.000Z",
+ "lastUpdated": "2021-07-19T11:45:17.075Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains sur le ventre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10376,
+ "created": "2009-11-13T13:04:02.000Z",
+ "lastUpdated": "2021-07-19T11:45:20.228Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains aux épaules",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10377,
+ "created": "2009-11-13T13:04:38.000Z",
+ "lastUpdated": "2021-07-19T11:45:23.322Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains aux épaules",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10378,
+ "created": "2009-11-13T13:05:17.000Z",
+ "lastUpdated": "2021-07-19T11:45:29.672Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains aux épaules",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10379,
+ "created": "2009-11-13T13:05:53.000Z",
+ "lastUpdated": "2021-07-19T11:45:32.498Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains aux épaules",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "08630777-n",
+ "10306910-n"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 10360,
+ "created": "2009-11-13T12:30:29.000Z",
+ "lastUpdated": "2021-07-19T11:41:53.810Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "homme",
+ "hasLocution": true,
+ "plural": "hommes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10382,
+ "created": "2009-11-13T13:09:34.000Z",
+ "lastUpdated": "2021-07-19T11:46:08.245Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains en haut",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10383,
+ "created": "2009-11-13T13:10:25.000Z",
+ "lastUpdated": "2021-07-19T11:46:12.095Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains en haut",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10384,
+ "created": "2009-11-13T13:12:48.000Z",
+ "lastUpdated": "2021-07-19T11:46:14.559Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains derrière la tête",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10385,
+ "created": "2009-11-13T13:14:09.000Z",
+ "lastUpdated": "2021-07-19T11:46:18.501Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains derrière la tête",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10381,
+ "created": "2009-11-13T13:08:08.000Z",
+ "lastUpdated": "2021-07-19T11:45:58.663Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains sur les fesses",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10386,
+ "created": "2009-11-13T13:14:56.000Z",
+ "lastUpdated": "2021-07-19T11:46:21.456Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains sur la tête",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10387,
+ "created": "2009-11-13T13:15:34.000Z",
+ "lastUpdated": "2021-07-19T11:46:23.205Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains sur la tête",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09045691-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 10476,
+ "created": "2009-11-13T21:49:05.000Z",
+ "lastUpdated": "2021-07-19T11:46:26.036Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Espagne",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "07211342-n",
+ "15033174-n",
+ "02762516-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 10722,
+ "created": "2009-11-20T19:06:20.000Z",
+ "lastUpdated": "2021-07-19T11:48:22.254Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "pleut-il?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "il pleut ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "07211342-n",
+ "11528800-n",
+ "02764935-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 10723,
+ "created": "2009-11-20T19:07:30.000Z",
+ "lastUpdated": "2021-07-19T11:46:57.250Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "neige-t-il?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "il neige ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 10380,
+ "created": "2009-11-13T13:07:29.000Z",
+ "lastUpdated": "2021-07-19T11:45:46.275Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains sur les pieds",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "07211342-n",
+ "00463344-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 10724,
+ "created": "2009-11-20T19:08:18.000Z",
+ "lastUpdated": "2021-07-19T11:47:14.056Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "est-ce- nuageux?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "il y a des nuages ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "02764935-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 10733,
+ "created": "2009-11-20T21:06:23.000Z",
+ "lastUpdated": "2021-07-19T11:47:48.343Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "il neige !",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "07211342-n",
+ "11505767-n",
+ "00462768-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 10725,
+ "created": "2009-11-20T19:09:29.000Z",
+ "lastUpdated": "2021-07-19T11:47:29.833Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "y a-t-il du soleil?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "il y a du soleil ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "00463344-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 10734,
+ "created": "2009-11-20T21:07:06.000Z",
+ "lastUpdated": "2021-07-19T11:47:58.892Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "il y a des nuages !",
+ "hasLocution": false
+ },
+ {
+ "type": 5,
+ "keyword": "c'est nuageux !",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "00365018-s",
+ "02769698-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 10735,
+ "created": "2009-11-20T21:07:52.000Z",
+ "lastUpdated": "2021-07-21T08:05:03.271Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "il y a du soleil !",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "02762516-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 10732,
+ "created": "2009-11-20T21:05:29.000Z",
+ "lastUpdated": "2021-07-19T11:47:42.052Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "il pleut !",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "02775199-v",
+ "02104910-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 10736,
+ "created": "2009-11-20T21:09:07.000Z",
+ "lastUpdated": "2021-07-19T11:50:56.522Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "il y a du vent !",
+ "hasLocution": false
+ },
+ {
+ "type": 5,
+ "keyword": "le vent souffle !",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "08663881-n",
+ "14007000-n"
+ ],
+ "tags": [],
+ "_id": 10742,
+ "created": "2009-11-20T23:28:34.000Z",
+ "lastUpdated": "2021-07-19T11:51:03.799Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "obscurité",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "feeling"
+ ],
+ "synsets": [
+ "07211342-n",
+ "01151786-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 10744,
+ "created": "2009-11-20T23:38:34.000Z",
+ "lastUpdated": "2021-07-19T11:51:26.236Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "es-tu content?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tu es content ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "feeling"
+ ],
+ "synsets": [
+ "07211342-n",
+ "00080219-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 10746,
+ "created": "2009-11-20T23:39:44.000Z",
+ "lastUpdated": "2021-07-19T11:51:38.416Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "as-tu peur?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tu as peur ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "feeling"
+ ],
+ "synsets": [
+ "07211342-n",
+ "00114629-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 10748,
+ "created": "2009-11-20T23:42:00.000Z",
+ "lastUpdated": "2021-07-19T12:08:27.349Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "es-tu fâché?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tu es fâché ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "07211342-n",
+ "00306024-s",
+ "11546388-n",
+ "02775199-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 10726,
+ "created": "2009-11-20T19:10:47.000Z",
+ "lastUpdated": "2021-07-19T11:47:36.043Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "y-a-t-il du vent?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "le vent souffle-t-il?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "feeling"
+ ],
+ "synsets": [
+ "07211342-n",
+ "01364779-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 10750,
+ "created": "2009-11-20T23:43:20.000Z",
+ "lastUpdated": "2021-07-21T12:50:51.128Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "es-tu triste?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tu es triste ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "06306016-n"
+ ],
+ "tags": [],
+ "_id": 11098,
+ "created": "2009-12-15T19:25:47.000Z",
+ "lastUpdated": "2021-07-19T11:53:07.029Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pluriel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "pluriels",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system",
+ "core vocabulary-place",
+ "place"
+ ],
+ "synsets": [
+ "03625099-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 10752,
+ "created": "2009-11-21T17:23:36.000Z",
+ "lastUpdated": "2024-12-05T07:26:00.502Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuisine",
+ "hasLocution": true,
+ "plural": "cuisines"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "06306016-n"
+ ],
+ "tags": [],
+ "_id": 11100,
+ "created": "2009-12-15T19:26:52.000Z",
+ "lastUpdated": "2021-07-19T11:53:10.268Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pluriel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "pluriels",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "law and justice",
+ "law",
+ "professional"
+ ],
+ "synsets": [
+ "10269647-n",
+ "09795104-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice",
+ "professional"
+ ],
+ "_id": 11160,
+ "created": "2009-12-23T19:46:24.000Z",
+ "lastUpdated": "2021-07-19T11:54:32.647Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "avocate",
+ "hasLocution": true,
+ "plural": "avocates"
+ },
+ {
+ "keyword": "procureure",
+ "hasLocution": false,
+ "plural": "procureures",
+ "type": 2
+ },
+ {
+ "keyword": "avocate de la défense",
+ "hasLocution": false,
+ "plural": "avocate de la défense",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01348685-v",
+ "00220389-v",
+ "01351387-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 11161,
+ "created": "2009-12-23T19:48:53.000Z",
+ "lastUpdated": "2021-07-19T12:08:36.899Z",
+ "keywords": [
+ {
+ "keyword": "ouvrir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "déverrouiller",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "tourner la clé",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "ouvrir la serrure",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01348685-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 11162,
+ "created": "2009-12-23T19:50:11.000Z",
+ "lastUpdated": "2021-07-19T11:55:39.469Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "ouvrir la fenêtre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "movie character",
+ "tale character",
+ "verb"
+ ],
+ "synsets": [
+ "00918880-v",
+ "00919743-v",
+ "00919743-v"
+ ],
+ "tags": [
+ "character",
+ "movie character",
+ "cinema",
+ "book character",
+ "tale character",
+ "literature",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11163,
+ "created": "2009-12-23T19:53:05.000Z",
+ "lastUpdated": "2024-12-05T09:03:34.009Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "deviner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "prédire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "voyant",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "voyants"
+ },
+ {
+ "keyword": "diseur de bonne aventure",
+ "plural": "diseurs de bonne aventure",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01471012-a",
+ "11438252-n",
+ "11438574-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 11164,
+ "created": "2009-12-23T19:59:33.000Z",
+ "lastUpdated": "2021-07-19T11:57:23.121Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "chanceux",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "chance",
+ "hasLocution": true,
+ "plural": "chances"
+ },
+ {
+ "type": 2,
+ "keyword": "fortune",
+ "hasLocution": true,
+ "plural": "fortunes"
+ },
+ {
+ "type": 2,
+ "keyword": "sort",
+ "hasLocution": true,
+ "plural": "sorts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothing industry"
+ ],
+ "synsets": [
+ "07977630-n",
+ "04433923-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 11008,
+ "created": "2009-12-02T10:45:23.000Z",
+ "lastUpdated": "2021-07-19T11:53:02.369Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pelote",
+ "hasLocution": true,
+ "plural": "pelotes"
+ },
+ {
+ "keyword": "pelote de laine",
+ "hasLocution": false,
+ "plural": "pelotes de laine",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "professional"
+ ],
+ "synsets": [
+ "10099179-n",
+ "10098586-n",
+ "09990803-n",
+ "10430741-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "professional"
+ ],
+ "_id": 11165,
+ "created": "2009-12-23T20:03:22.000Z",
+ "lastUpdated": "2021-07-19T11:57:52.149Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "agricultrice",
+ "hasLocution": true,
+ "plural": "agricultrices"
+ },
+ {
+ "type": 2,
+ "keyword": "paysane",
+ "hasLocution": true,
+ "plural": "paysanes"
+ },
+ {
+ "keyword": "cultivatrice",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cultivatrices"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03821676-n",
+ "03560744-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 11166,
+ "created": "2009-12-23T20:05:14.000Z",
+ "lastUpdated": "2021-07-19T11:58:01.488Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aiguille",
+ "hasLocution": true,
+ "plural": "aiguilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00077703-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 11167,
+ "created": "2009-12-23T20:08:07.000Z",
+ "lastUpdated": "2022-04-09T05:30:17.759Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étrangler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00077703-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 11168,
+ "created": "2009-12-23T20:08:59.000Z",
+ "lastUpdated": "2022-04-09T05:30:22.484Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étrangler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "aerial transport"
+ ],
+ "synsets": [
+ "04600068-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "air transport"
+ ],
+ "_id": 11169,
+ "created": "2009-12-23T20:10:12.000Z",
+ "lastUpdated": "2021-07-19T11:58:40.965Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aile",
+ "hasLocution": true,
+ "plural": "ailes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system",
+ "core vocabulary-place",
+ "place"
+ ],
+ "synsets": [
+ "03625099-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 10753,
+ "created": "2009-11-21T17:24:06.000Z",
+ "lastUpdated": "2024-12-05T07:26:26.853Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuisine",
+ "hasLocution": true,
+ "plural": "cuisines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "craftsmanship"
+ ],
+ "synsets": [
+ "10480372-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "craftsmanship"
+ ],
+ "_id": 11173,
+ "created": "2009-12-23T20:17:56.000Z",
+ "lastUpdated": "2021-07-19T12:00:16.354Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "potier",
+ "hasLocution": true,
+ "plural": "potiers"
+ },
+ {
+ "keyword": "céramiste",
+ "plural": "céramistes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sweets"
+ ],
+ "synsets": [
+ "07620649-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 11174,
+ "created": "2009-12-23T20:22:49.000Z",
+ "lastUpdated": "2021-07-19T12:00:25.007Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "barbe à papa",
+ "hasLocution": true,
+ "plural": "barbes à papa"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "indefinite adjective",
+ "indefinite pronoun",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00007414-r",
+ "02276025-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "indefinite adjective",
+ "pronoun",
+ "indefinite pronoun",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 11175,
+ "created": "2009-12-23T20:24:11.000Z",
+ "lastUpdated": "2024-10-13T05:08:11.006Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "quelques",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "plusieurs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "pet"
+ ],
+ "synsets": [
+ "01180862-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "pet"
+ ],
+ "_id": 11176,
+ "created": "2009-12-23T20:26:58.000Z",
+ "lastUpdated": "2021-07-19T12:00:36.748Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "nourrir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "prehistory",
+ "painting"
+ ],
+ "synsets": [
+ "03145662-a",
+ "03239009-n"
+ ],
+ "tags": [
+ "history",
+ "prehistory",
+ "visual art",
+ "painting"
+ ],
+ "_id": 11177,
+ "created": "2009-12-23T20:31:12.000Z",
+ "lastUpdated": "2021-07-19T12:00:58.146Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Altamira",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "grotte rupestre",
+ "hasLocution": true,
+ "plural": "grottes rupestres"
+ },
+ {
+ "type": 2,
+ "keyword": "peinture rupestre",
+ "hasLocution": false,
+ "plural": "peintures rupestres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "political representation",
+ "leader"
+ ],
+ "synsets": [
+ "10323685-n",
+ "10323481-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "person",
+ "leader"
+ ],
+ "_id": 11172,
+ "created": "2009-12-23T20:16:39.000Z",
+ "lastUpdated": "2021-07-19T11:59:52.500Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mairesse",
+ "hasLocution": true,
+ "plural": "mairesses"
+ },
+ {
+ "keyword": "maire",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "maires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "feeling"
+ ],
+ "synsets": [
+ "09869006-n",
+ "09890770-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 11178,
+ "created": "2009-12-23T20:51:59.000Z",
+ "lastUpdated": "2021-10-04T20:48:22.215Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amour",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bien-aimé",
+ "hasLocution": false,
+ "plural": "bien-aimés"
+ },
+ {
+ "keyword": "chéri",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chéris"
+ },
+ {
+ "keyword": "petit ami",
+ "hasLocution": false,
+ "plural": "petits amis",
+ "type": 2
+ },
+ {
+ "keyword": "amoureux",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "amoureux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "09979006-n",
+ "10317198-n",
+ "09893984-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 11171,
+ "created": "2009-12-23T20:14:33.000Z",
+ "lastUpdated": "2021-07-19T11:59:35.363Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maçon",
+ "hasLocution": true,
+ "plural": "maçons"
+ },
+ {
+ "keyword": "maçonne",
+ "hasLocution": false,
+ "plural": "maçonnes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "03311982-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 11170,
+ "created": "2009-12-23T20:11:52.000Z",
+ "lastUpdated": "2021-07-19T11:58:47.701Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rallonge",
+ "hasLocution": true,
+ "plural": "rallonges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "feeling"
+ ],
+ "synsets": [
+ "09869006-n",
+ "10150206-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 11179,
+ "created": "2009-12-23T20:53:06.000Z",
+ "lastUpdated": "2021-10-04T20:48:40.001Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amour",
+ "hasLocution": true,
+ "plural": "amours"
+ },
+ {
+ "type": 2,
+ "keyword": "bien-aimée",
+ "hasLocution": false,
+ "plural": "bien-aimées"
+ },
+ {
+ "keyword": "amoureuse",
+ "hasLocution": false,
+ "plural": "amoureuses",
+ "type": 2
+ },
+ {
+ "keyword": "petite amie",
+ "hasLocution": false,
+ "plural": "petites amies",
+ "type": 2
+ },
+ {
+ "keyword": "chérie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chéries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "architecture",
+ "construction"
+ ],
+ "synsets": [
+ "09824898-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "architecture",
+ "building",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 11183,
+ "created": "2009-12-23T21:02:46.000Z",
+ "lastUpdated": "2021-07-21T12:50:59.993Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "architecte",
+ "hasLocution": true,
+ "plural": "architectes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01596858-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11180,
+ "created": "2009-12-23T20:56:16.000Z",
+ "lastUpdated": "2021-07-19T12:01:42.146Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aplatir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "presser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "écraser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "meat",
+ "cookery"
+ ],
+ "synsets": [
+ "00325361-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat",
+ "cookery"
+ ],
+ "_id": 11184,
+ "created": "2009-12-23T21:05:14.000Z",
+ "lastUpdated": "2021-07-19T12:08:51.833Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rôtir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "conjunction",
+ "adversative conjunction"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "conjunction",
+ "concessive conjunction",
+ "adversative conjunction"
+ ],
+ "_id": 11185,
+ "created": "2009-12-23T21:06:43.000Z",
+ "lastUpdated": "2024-11-19T06:15:07.646Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "bien que",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "dance"
+ ],
+ "synsets": [
+ "09854087-n",
+ "10009040-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "dance",
+ "show"
+ ],
+ "_id": 11186,
+ "created": "2009-12-23T21:08:27.000Z",
+ "lastUpdated": "2021-07-19T12:09:04.776Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "danseur",
+ "hasLocution": true,
+ "plural": "danseurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adapted sport",
+ "basketball"
+ ],
+ "synsets": [
+ "00482004-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "adapted sport",
+ "basketball"
+ ],
+ "_id": 11187,
+ "created": "2009-12-23T21:10:57.000Z",
+ "lastUpdated": "2021-07-24T21:53:50.937Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "basket en fauteuil",
+ "hasLocution": false
+ },
+ {
+ "keyword": "basket adapté",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "03342085-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 11182,
+ "created": "2009-12-23T21:00:08.000Z",
+ "lastUpdated": "2021-07-19T12:07:37.406Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "classeur",
+ "hasLocution": true,
+ "plural": "classeurs"
+ },
+ {
+ "keyword": "trieur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "trieurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "waste disposal"
+ ],
+ "synsets": [
+ "10139987-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "waste disposal"
+ ],
+ "_id": 11189,
+ "created": "2009-12-23T21:14:42.000Z",
+ "lastUpdated": "2021-07-21T12:51:04.868Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éboueuse",
+ "hasLocution": true,
+ "plural": "éboueuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "waste disposal"
+ ],
+ "synsets": [
+ "10139987-n",
+ "10681913-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "waste disposal"
+ ],
+ "_id": 11188,
+ "created": "2009-12-23T21:12:31.000Z",
+ "lastUpdated": "2021-07-19T12:09:18.973Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balayeuse",
+ "hasLocution": true,
+ "plural": "balayeuses"
+ },
+ {
+ "type": 2,
+ "keyword": "éboueuse",
+ "hasLocution": true,
+ "plural": "éboueuses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space"
+ ],
+ "synsets": [
+ "03666235-n",
+ "03665990-n"
+ ],
+ "tags": [
+ "education",
+ "educational space"
+ ],
+ "_id": 11190,
+ "created": "2009-12-23T21:18:45.000Z",
+ "lastUpdated": "2021-07-21T12:51:25.526Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bibliothèque adaptée",
+ "hasLocution": true,
+ "plural": "bibliothèques adaptées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gambling"
+ ],
+ "synsets": [
+ "00505671-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "gambling"
+ ],
+ "_id": 11191,
+ "created": "2009-12-23T21:20:18.000Z",
+ "lastUpdated": "2021-07-19T12:10:17.269Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bingo",
+ "hasLocution": true,
+ "plural": "bingos"
+ },
+ {
+ "keyword": "loto",
+ "hasLocution": true,
+ "plural": "lotos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "00349906-n",
+ "03396616-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 11192,
+ "created": "2009-12-23T21:22:03.000Z",
+ "lastUpdated": "2021-07-19T12:10:29.477Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "verticalisateur",
+ "hasLocution": true,
+ "plural": "verticalisateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport rules",
+ "professional",
+ "football"
+ ],
+ "synsets": [
+ "10534022-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport rules",
+ "work",
+ "professional",
+ "football"
+ ],
+ "_id": 11181,
+ "created": "2009-12-23T20:58:35.000Z",
+ "lastUpdated": "2021-07-19T12:07:18.784Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arbitre",
+ "hasLocution": true,
+ "plural": "arbitres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense"
+ ],
+ "synsets": [
+ "10111420-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 11193,
+ "created": "2009-12-23T21:24:32.000Z",
+ "lastUpdated": "2021-07-19T12:11:13.848Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pompière",
+ "hasLocution": true,
+ "plural": "pompières"
+ },
+ {
+ "keyword": "pompier",
+ "hasLocution": true,
+ "plural": "pompiers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01551500-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 11195,
+ "created": "2009-12-23T21:28:28.000Z",
+ "lastUpdated": "2021-07-19T12:11:25.043Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "effacer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00221674-s",
+ "00219320-a",
+ "00168540-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary"
+ ],
+ "_id": 11194,
+ "created": "2009-12-23T21:26:42.000Z",
+ "lastUpdated": "2021-07-19T12:11:19.293Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "joli",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "beau",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "jolie",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "belle",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry",
+ "beverage"
+ ],
+ "synsets": [
+ "10783051-n",
+ "09860576-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 11198,
+ "created": "2009-12-23T21:35:03.000Z",
+ "lastUpdated": "2021-07-19T12:11:59.043Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "serveuse",
+ "hasLocution": true,
+ "plural": "serveuse"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "00551194-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 11199,
+ "created": "2009-12-23T21:37:19.000Z",
+ "lastUpdated": "2021-07-19T14:57:59.761Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "changer de conversation",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "changer de sujet",
+ "hasLocution": true
+ },
+ {
+ "keyword": "changement de conversation",
+ "hasLocution": false,
+ "plural": "changements de conversation",
+ "type": 2
+ },
+ {
+ "keyword": "changement de sujet",
+ "hasLocution": false,
+ "plural": "changements de sujet",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "crustacean",
+ "oviparous",
+ "river animal"
+ ],
+ "synsets": [
+ "01979598-n",
+ "07804861-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "crustacean",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river"
+ ],
+ "_id": 11200,
+ "created": "2009-12-23T21:40:31.000Z",
+ "lastUpdated": "2021-07-21T08:07:46.079Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "langouste",
+ "hasLocution": true,
+ "plural": "langoustes"
+ },
+ {
+ "keyword": "écrevisses",
+ "hasLocution": false,
+ "plural": "écrevisses",
+ "type": 2
+ },
+ {
+ "keyword": "tourteau",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tourteaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "musical artist",
+ "professional artist",
+ "musical art"
+ ],
+ "synsets": [
+ "10619214-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "music",
+ "visual art"
+ ],
+ "_id": 11201,
+ "created": "2009-12-23T21:44:14.000Z",
+ "lastUpdated": "2021-07-19T12:14:06.845Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chanteuse",
+ "hasLocution": false,
+ "plural": "chanteuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "trade"
+ ],
+ "synsets": [
+ "09918741-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 11197,
+ "created": "2009-12-23T21:31:37.000Z",
+ "lastUpdated": "2021-07-19T12:11:39.951Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caissier",
+ "hasLocution": true,
+ "plural": "caissier"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy",
+ "flower"
+ ],
+ "synsets": [
+ "11695365-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy",
+ "flower"
+ ],
+ "_id": 11202,
+ "created": "2009-12-23T21:46:38.000Z",
+ "lastUpdated": "2021-07-21T08:08:18.308Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouton",
+ "hasLocution": true,
+ "plural": "boutons"
+ },
+ {
+ "keyword": "bourgeon",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "bourgeons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "meat"
+ ],
+ "synsets": [
+ "09903843-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 11203,
+ "created": "2009-12-24T11:31:28.000Z",
+ "lastUpdated": "2021-07-19T12:14:23.462Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouchère",
+ "hasLocution": true,
+ "plural": "bouchères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "carpentry",
+ "construction"
+ ],
+ "synsets": [
+ "09916137-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "carpentry",
+ "construction"
+ ],
+ "_id": 11204,
+ "created": "2009-12-24T11:35:29.000Z",
+ "lastUpdated": "2021-07-19T12:14:32.243Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "menuisière",
+ "hasLocution": true,
+ "plural": "menuisières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "sport event",
+ "athletics"
+ ],
+ "synsets": [
+ "07473244-n",
+ "07487797-n",
+ "07471429-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "event",
+ "sport event",
+ "athletics"
+ ],
+ "_id": 11205,
+ "created": "2009-12-24T11:37:30.000Z",
+ "lastUpdated": "2021-07-19T12:14:57.765Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "course",
+ "hasLocution": true
+ },
+ {
+ "keyword": "course à pied",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport event",
+ "sport modality"
+ ],
+ "synsets": [
+ "07473683-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "sport modality",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 11206,
+ "created": "2009-12-24T11:40:49.000Z",
+ "lastUpdated": "2024-12-05T08:10:04.827Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "course de voitures",
+ "hasLocution": true,
+ "plural": "courses de voitures"
+ },
+ {
+ "type": 2,
+ "keyword": "course",
+ "hasLocution": true,
+ "plural": "courses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01551500-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 11196,
+ "created": "2009-12-23T21:29:28.000Z",
+ "lastUpdated": "2021-07-19T12:11:30.926Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "effacer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "telecommunication",
+ "mass media"
+ ],
+ "synsets": [
+ "10302734-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "telecommunication",
+ "communication",
+ "mass media"
+ ],
+ "_id": 11207,
+ "created": "2009-12-24T11:42:45.000Z",
+ "lastUpdated": "2021-07-21T12:51:41.521Z",
+ "keywords": [
+ {
+ "keyword": "factrice",
+ "hasLocution": false,
+ "plural": "factrices",
+ "type": 2
+ },
+ {
+ "keyword": "facteur",
+ "type": 2,
+ "plural": "facteurs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware",
+ "music device"
+ ],
+ "synsets": [
+ "03266479-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware",
+ "object",
+ "appliance",
+ "music device"
+ ],
+ "_id": 11208,
+ "created": "2009-12-24T11:44:35.000Z",
+ "lastUpdated": "2021-07-19T12:15:41.110Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casque",
+ "hasLocution": true,
+ "plural": "casques"
+ },
+ {
+ "type": 2,
+ "keyword": "écouteurs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "hunting"
+ ],
+ "synsets": [
+ "10212645-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "hunting"
+ ],
+ "_id": 11209,
+ "created": "2009-12-24T11:45:59.000Z",
+ "lastUpdated": "2021-07-19T12:16:01.080Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chasseuse",
+ "hasLocution": false,
+ "plural": "chasseuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01347791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 11212,
+ "created": "2009-12-24T11:51:33.000Z",
+ "lastUpdated": "2021-07-19T12:17:06.604Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fermer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "fermer la fenêtre",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "official document"
+ ],
+ "synsets": [
+ "06490123-n"
+ ],
+ "tags": [
+ "document",
+ "public administration"
+ ],
+ "_id": 11213,
+ "created": "2009-12-24T11:53:02.000Z",
+ "lastUpdated": "2021-07-19T12:17:19.155Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "acte de naissance",
+ "hasLocution": true,
+ "plural": "actes de naissance"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbaceous plant",
+ "gardening"
+ ],
+ "synsets": [
+ "12122650-n",
+ "08609148-n"
+ ],
+ "tags": [
+ "plant",
+ "hervaceouos plant",
+ "work",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 11214,
+ "created": "2009-12-24T11:55:36.000Z",
+ "lastUpdated": "2021-07-19T12:17:30.956Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pelouse",
+ "hasLocution": true
+ },
+ {
+ "keyword": "herbe",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "cold meat"
+ ],
+ "synsets": [
+ "10474538-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 11215,
+ "created": "2009-12-24T11:57:38.000Z",
+ "lastUpdated": "2021-07-19T12:17:43.387Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charcutière",
+ "hasLocution": true,
+ "plural": "charcutières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "02982212-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 11210,
+ "created": "2009-12-24T11:47:13.000Z",
+ "lastUpdated": "2021-07-19T12:16:33.904Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casserole",
+ "hasLocution": true,
+ "plural": "casseroles"
+ },
+ {
+ "keyword": "marmite",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "marmites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building"
+ ],
+ "synsets": [
+ "03971750-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade"
+ ],
+ "_id": 11211,
+ "created": "2009-12-24T11:50:23.000Z",
+ "lastUpdated": "2021-07-19T12:16:46.883Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "centre commercial",
+ "hasLocution": true,
+ "plural": "centres commerciaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "chemistry",
+ "biology"
+ ],
+ "synsets": [
+ "10580065-n",
+ "10542669-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "chemistry",
+ "biology"
+ ],
+ "_id": 11217,
+ "created": "2009-12-24T12:00:18.000Z",
+ "lastUpdated": "2021-07-19T12:18:28.713Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scientifique",
+ "hasLocution": true,
+ "plural": "scientifiques"
+ },
+ {
+ "keyword": "chercheuse",
+ "plural": "chercheuses",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10698621-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 11220,
+ "created": "2009-12-24T12:05:58.000Z",
+ "lastUpdated": "2021-07-19T12:31:21.918Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chirurgienne",
+ "hasLocution": true,
+ "plural": "chirurgiennes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "04541815-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 11219,
+ "created": "2009-12-24T12:03:40.000Z",
+ "lastUpdated": "2021-07-19T14:27:57.298Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cassette vidéo",
+ "hasLocution": true,
+ "plural": "cassettes vidéo"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "entertainment facility",
+ "summer"
+ ],
+ "synsets": [
+ "02949049-n",
+ "03546876-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "leisure",
+ "facility",
+ "recreational facility",
+ "summer"
+ ],
+ "_id": 11222,
+ "created": "2009-12-24T12:10:52.000Z",
+ "lastUpdated": "2024-12-06T06:28:34.762Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "colonie de vacances",
+ "hasLocution": true,
+ "plural": "colonies de vacances"
+ },
+ {
+ "type": 2,
+ "keyword": "hébergement",
+ "hasLocution": true,
+ "plural": "hébergements"
+ },
+ {
+ "keyword": "refuge",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "refuges"
+ },
+ {
+ "keyword": "auberge de jeunesse",
+ "hasLocution": false,
+ "plural": "auberges de jeunesse",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01244772-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11216,
+ "created": "2009-12-24T11:58:59.000Z",
+ "lastUpdated": "2021-07-19T12:18:02.442Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "claquer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "claquer des doigts",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "road safety",
+ "land transport"
+ ],
+ "synsets": [
+ "10054631-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 11223,
+ "created": "2009-12-24T12:17:17.000Z",
+ "lastUpdated": "2021-07-21T12:52:09.394Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conductrice",
+ "hasLocution": true,
+ "plural": "conductrices"
+ },
+ {
+ "keyword": "chauffeuse",
+ "hasLocution": false,
+ "plural": "chauffeuses",
+ "type": 2
+ },
+ {
+ "keyword": "chauffeur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chauffeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03443988-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 11224,
+ "created": "2009-12-24T12:18:35.000Z",
+ "lastUpdated": "2024-12-11T17:33:11.273Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "verrerie",
+ "hasLocution": true,
+ "plural": "verreries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular festival"
+ ],
+ "synsets": [
+ "04240011-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "popular festival"
+ ],
+ "_id": 11221,
+ "created": "2009-12-24T12:09:05.000Z",
+ "lastUpdated": "2021-07-19T12:31:35.652Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fusée",
+ "hasLocution": true,
+ "plural": "fusées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "musical art"
+ ],
+ "synsets": [
+ "02189819-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "music"
+ ],
+ "_id": 11225,
+ "created": "2009-12-24T12:20:19.000Z",
+ "lastUpdated": "2021-07-19T12:36:31.695Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frapper des pieds",
+ "hasLocution": true
+ },
+ {
+ "keyword": "taper du pied",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "03401677-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 11218,
+ "created": "2009-12-24T12:01:49.000Z",
+ "lastUpdated": "2021-07-19T12:18:43.380Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ruban adhésif",
+ "hasLocution": true,
+ "plural": "rubans adhésifs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical art"
+ ],
+ "synsets": [
+ "01235591-v",
+ "01884666-v",
+ "01730756-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music"
+ ],
+ "_id": 11226,
+ "created": "2009-12-24T12:21:52.000Z",
+ "lastUpdated": "2021-07-19T12:37:01.762Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "claquer des paumes sur ses genoux ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "taper des mains sur les cuisses",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "construction",
+ "worksite"
+ ],
+ "synsets": [
+ "01660001-v",
+ "00336968-v",
+ "01415000-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "construction",
+ "place"
+ ],
+ "_id": 11230,
+ "created": "2009-12-24T12:39:31.000Z",
+ "lastUpdated": "2022-03-28T05:03:16.621Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "démolir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "03044572-n",
+ "14803709-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 11231,
+ "created": "2009-12-24T12:43:36.000Z",
+ "lastUpdated": "2021-07-19T12:45:02.450Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nettoyeur",
+ "hasLocution": true,
+ "plural": "nettoyeurs"
+ },
+ {
+ "type": 4,
+ "keyword": "déboucheur",
+ "hasLocution": true,
+ "plural": "déboucheurs"
+ },
+ {
+ "type": 2,
+ "keyword": "déboucheur chimique",
+ "hasLocution": true,
+ "plural": "déboucheurs chimiques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "odontology"
+ ],
+ "synsets": [
+ "10023944-n",
+ "10023833-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "odontology"
+ ],
+ "_id": 11229,
+ "created": "2009-12-24T12:32:09.000Z",
+ "lastUpdated": "2021-07-19T12:37:29.544Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dentiste",
+ "hasLocution": true,
+ "plural": "dentistes"
+ },
+ {
+ "type": 2,
+ "keyword": "odontologiste",
+ "hasLocution": true,
+ "plural": "odontologistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00177253-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 11232,
+ "created": "2009-12-24T12:47:14.000Z",
+ "lastUpdated": "2021-07-19T12:45:20.544Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "déshabiller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se déshabiller",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "basic needs",
+ "routine",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "00177253-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "person",
+ "basic needs",
+ "routine",
+ "core vocabulary"
+ ],
+ "_id": 11233,
+ "created": "2009-12-24T12:48:08.000Z",
+ "lastUpdated": "2021-07-19T12:45:34.136Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "déshabiller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se déshabiller",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult",
+ "routine"
+ ],
+ "synsets": [
+ "00460031-s"
+ ],
+ "tags": [
+ "person",
+ "adult",
+ "routine"
+ ],
+ "_id": 11234,
+ "created": "2009-12-24T12:49:40.000Z",
+ "lastUpdated": "2021-07-19T12:45:40.149Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "nu",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "routine"
+ ],
+ "synsets": [
+ "00188104-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "person",
+ "routine"
+ ],
+ "_id": 11235,
+ "created": "2009-12-24T12:51:41.000Z",
+ "lastUpdated": "2021-07-19T12:45:45.748Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "réveillé",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07781049-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit",
+ "core vocabulary"
+ ],
+ "_id": 11227,
+ "created": "2009-12-24T12:23:22.000Z",
+ "lastUpdated": "2021-07-19T12:37:07.257Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dattes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "sport material"
+ ],
+ "synsets": [
+ "07276776-n",
+ "04401354-n",
+ "03167606-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "sport material"
+ ],
+ "_id": 11236,
+ "created": "2009-12-24T12:53:15.000Z",
+ "lastUpdated": "2021-07-19T12:46:18.984Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cible",
+ "hasLocution": true,
+ "plural": "cibles"
+ },
+ {
+ "type": 2,
+ "keyword": "jeu de fléchettes",
+ "hasLocution": false,
+ "plural": "jeux de fléchettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "00730406-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "core vocabulary"
+ ],
+ "_id": 11228,
+ "created": "2009-12-24T12:28:11.000Z",
+ "lastUpdated": "2021-07-19T12:37:14.261Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "devoirs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "musical artist",
+ "professional artist",
+ "musical notation"
+ ],
+ "synsets": [
+ "09972018-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "music",
+ "visual art",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 11240,
+ "created": "2009-12-24T13:00:22.000Z",
+ "lastUpdated": "2021-07-19T12:47:22.474Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chef d'orchestre",
+ "hasLocution": true,
+ "plural": "chefs d'orchestre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14349311-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 11241,
+ "created": "2009-12-24T13:05:49.000Z",
+ "lastUpdated": "2021-07-19T12:47:35.871Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "douleur de poitrine",
+ "hasLocution": true,
+ "plural": "douleurs de poitrine"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "drawing",
+ "professional artist"
+ ],
+ "synsets": [
+ "10048793-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "visual art",
+ "drawing",
+ "artist"
+ ],
+ "_id": 11237,
+ "created": "2009-12-24T12:55:10.000Z",
+ "lastUpdated": "2022-02-03T09:14:07.034Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dessinatrice",
+ "hasLocution": false,
+ "plural": "dessinatrices"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14346126-n",
+ "05732639-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 11242,
+ "created": "2009-12-24T13:12:18.000Z",
+ "lastUpdated": "2021-07-26T14:06:45.732Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal au cul",
+ "hasLocution": true,
+ "plural": "maux au cul"
+ },
+ {
+ "type": 2,
+ "keyword": "mal aux fesses",
+ "hasLocution": true,
+ "plural": "maux aux fesses"
+ },
+ {
+ "keyword": "mal au derrière",
+ "hasLocution": false,
+ "plural": "maux au derrière",
+ "type": 2
+ },
+ {
+ "keyword": "douleur aux fesses",
+ "hasLocution": false,
+ "plural": "douleurs aux fesses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "residential building",
+ "corporal hygiene"
+ ],
+ "synsets": [
+ "04216003-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "home",
+ "human body",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 11244,
+ "created": "2009-12-24T13:16:27.000Z",
+ "lastUpdated": "2024-12-12T06:59:13.721Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "douche",
+ "hasLocution": true,
+ "plural": "douches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task",
+ "drawing",
+ "core vocabulary-education",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "03239009-n"
+ ],
+ "tags": [
+ "education",
+ "educational task",
+ "visual art",
+ "drawing",
+ "core vocabulary"
+ ],
+ "_id": 11238,
+ "created": "2009-12-24T12:56:56.000Z",
+ "lastUpdated": "2021-07-19T12:46:39.617Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dessin",
+ "hasLocution": true,
+ "plural": "dessins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "circus"
+ ],
+ "synsets": [
+ "10710034-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "circus",
+ "show"
+ ],
+ "_id": 11243,
+ "created": "2009-12-24T13:13:29.000Z",
+ "lastUpdated": "2021-07-19T12:47:54.502Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dompteuse",
+ "hasLocution": true,
+ "plural": "dompteuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00887135-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 11245,
+ "created": "2009-12-24T13:21:01.000Z",
+ "lastUpdated": "2021-07-11T09:40:05.638Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éducation artistique",
+ "hasLocution": true,
+ "plural": "éducations artistiques"
+ },
+ {
+ "type": 2,
+ "keyword": "cours d'éducation artistique",
+ "hasLocution": false,
+ "plural": "cours d'éducation artistique"
+ },
+ {
+ "keyword": "cours d'arts plastiques",
+ "hasLocution": false,
+ "plural": "cours d'arts plastiques",
+ "type": 2
+ },
+ {
+ "keyword": "enseignement artistique",
+ "hasLocution": false,
+ "plural": "enseignements artistiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "dietetics",
+ "healthy habit"
+ ],
+ "synsets": [
+ "07576677-n",
+ "01072111-n",
+ "01192545-v",
+ "01191757-v"
+ ],
+ "tags": [
+ "health",
+ "dietetics",
+ "lifestyle",
+ "healthy habit"
+ ],
+ "_id": 11239,
+ "created": "2009-12-24T12:58:36.000Z",
+ "lastUpdated": "2021-07-19T12:46:49.847Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "régime",
+ "hasLocution": true,
+ "plural": "régimes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00478809-a",
+ "00156153-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 11248,
+ "created": "2009-12-24T13:46:30.000Z",
+ "lastUpdated": "2021-07-19T12:48:18.316Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "confortable",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "10069171-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 11249,
+ "created": "2009-12-24T13:50:15.000Z",
+ "lastUpdated": "2021-07-21T12:52:18.204Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "électricienne",
+ "hasLocution": false,
+ "plural": "électriciennes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "law",
+ "law and justice"
+ ],
+ "synsets": [
+ "05182180-n"
+ ],
+ "tags": [
+ "law",
+ "work",
+ "tertiary sector",
+ "justice"
+ ],
+ "_id": 11247,
+ "created": "2009-12-24T13:44:21.000Z",
+ "lastUpdated": "2021-07-19T14:28:06.401Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "droits",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00754499-v",
+ "00748704-v",
+ "02397742-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11251,
+ "created": "2009-12-24T13:54:51.000Z",
+ "lastUpdated": "2021-07-19T12:49:13.173Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "demander",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "commande",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "commander",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human reproduction"
+ ],
+ "synsets": [
+ "14069684-n"
+ ],
+ "tags": [
+ "human body",
+ "human reproduction"
+ ],
+ "_id": 11250,
+ "created": "2009-12-24T13:52:01.000Z",
+ "lastUpdated": "2021-07-19T14:28:11.726Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grossesse",
+ "hasLocution": true,
+ "plural": "grossesses"
+ },
+ {
+ "type": 2,
+ "keyword": "gestation",
+ "hasLocution": false,
+ "plural": "gestations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14085287-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 11252,
+ "created": "2009-12-24T13:57:20.000Z",
+ "lastUpdated": "2021-07-19T12:49:18.574Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maladies",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "maladie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07638317-n",
+ "07638745-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "core vocabulary"
+ ],
+ "_id": 11253,
+ "created": "2009-12-24T13:58:34.000Z",
+ "lastUpdated": "2021-07-21T12:52:21.810Z",
+ "keywords": [
+ {
+ "keyword": "galette spirale",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "building facility"
+ ],
+ "synsets": [
+ "03295682-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "building facility"
+ ],
+ "_id": 11254,
+ "created": "2009-12-24T14:01:13.000Z",
+ "lastUpdated": "2024-12-09T18:28:17.120Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entrée",
+ "hasLocution": true,
+ "plural": "entrées"
+ },
+ {
+ "type": 2,
+ "keyword": "hall",
+ "hasLocution": true,
+ "plural": "halls"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "cinema",
+ "theater",
+ "social event"
+ ],
+ "synsets": [
+ "06530710-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "scenic art",
+ "cinema",
+ "show",
+ "theater",
+ "event",
+ "social event"
+ ],
+ "_id": 11255,
+ "created": "2009-12-24T14:03:36.000Z",
+ "lastUpdated": "2024-12-09T18:28:05.684Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "place",
+ "hasLocution": true,
+ "plural": "places"
+ },
+ {
+ "type": 2,
+ "keyword": "ticket",
+ "hasLocution": true,
+ "plural": "tickets"
+ },
+ {
+ "type": 2,
+ "keyword": "billet",
+ "hasLocution": true,
+ "plural": "billets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "security and defense",
+ "group",
+ "war"
+ ],
+ "synsets": [
+ "08208160-n",
+ "08215965-n",
+ "08235043-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "person",
+ "group",
+ "event",
+ "war"
+ ],
+ "_id": 11246,
+ "created": "2009-12-24T13:42:02.000Z",
+ "lastUpdated": "2021-07-19T12:48:10.027Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "armée",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "militaires",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "soldats",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "14025764-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 11256,
+ "created": "2009-12-24T14:07:29.000Z",
+ "lastUpdated": "2021-07-19T12:51:51.902Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "équilibre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "07478907-n",
+ "00813037-v",
+ "02054612-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 11259,
+ "created": "2009-12-24T15:58:31.000Z",
+ "lastUpdated": "2021-07-19T12:52:39.329Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "slalom",
+ "hasLocution": true,
+ "plural": "slaloms"
+ },
+ {
+ "type": 3,
+ "keyword": "éviter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "contourner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport rules",
+ "football"
+ ],
+ "synsets": [
+ "02507387-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport rules",
+ "football"
+ ],
+ "_id": 11260,
+ "created": "2009-12-24T16:00:01.000Z",
+ "lastUpdated": "2021-07-19T13:15:52.992Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "expulser",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "expulsion",
+ "hasLocution": true,
+ "plural": "expulsions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sanitary professional",
+ "health personnel",
+ "medicament"
+ ],
+ "synsets": [
+ "10441215-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "medicine",
+ "health",
+ "medicament"
+ ],
+ "_id": 11261,
+ "created": "2009-12-24T16:01:34.000Z",
+ "lastUpdated": "2021-07-19T12:53:04.525Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pharmacien",
+ "hasLocution": true,
+ "plural": "pharmaciens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work tool"
+ ],
+ "synsets": [
+ "10236360-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tool"
+ ],
+ "_id": 11262,
+ "created": "2009-12-24T16:03:16.000Z",
+ "lastUpdated": "2021-07-19T12:53:24.251Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quincaillère",
+ "hasLocution": true,
+ "plural": "quincaillères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "literature"
+ ],
+ "synsets": [
+ "10813654-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "literature"
+ ],
+ "_id": 11258,
+ "created": "2009-12-24T15:55:35.000Z",
+ "lastUpdated": "2021-07-19T12:52:10.175Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écrivain",
+ "hasLocution": true,
+ "plural": "écrivains"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "00731217-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 11263,
+ "created": "2009-12-24T16:10:30.000Z",
+ "lastUpdated": "2021-07-19T12:53:59.681Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "exercice",
+ "hasLocution": true,
+ "plural": "exercices"
+ },
+ {
+ "type": 2,
+ "keyword": "tâche",
+ "hasLocution": true,
+ "plural": "tâches"
+ },
+ {
+ "keyword": "consigne",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "consignes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "flower",
+ "gardening"
+ ],
+ "synsets": [
+ "10117474-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "plant",
+ "flower",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 11265,
+ "created": "2009-12-24T16:12:30.000Z",
+ "lastUpdated": "2021-07-19T12:54:14.913Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fleuriste",
+ "hasLocution": true,
+ "plural": "fleuristes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "pattern",
+ "core vocabulary-communication",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "01793214-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "pattern",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 11264,
+ "created": "2009-12-24T16:11:29.000Z",
+ "lastUpdated": "2021-07-19T12:54:06.666Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fleuri",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "10462606-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 11266,
+ "created": "2009-12-24T16:13:53.000Z",
+ "lastUpdated": "2021-07-21T12:52:36.747Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plombière",
+ "hasLocution": true,
+ "plural": "plombières"
+ },
+ {
+ "keyword": "plombier",
+ "hasLocution": true,
+ "plural": "plombiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "circus"
+ ],
+ "synsets": [
+ "10135603-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "circus",
+ "show"
+ ],
+ "_id": 11257,
+ "created": "2009-12-24T15:53:37.000Z",
+ "lastUpdated": "2021-07-19T12:52:02.081Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "équilibriste",
+ "hasLocution": true,
+ "plural": "équilibristes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "visual artist",
+ "professional artist",
+ "photography"
+ ],
+ "synsets": [
+ "10446513-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "visual art",
+ "photography"
+ ],
+ "_id": 11267,
+ "created": "2009-12-24T16:15:55.000Z",
+ "lastUpdated": "2021-07-19T12:54:48.411Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "photographe",
+ "hasLocution": true,
+ "plural": "photographes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport event"
+ ],
+ "synsets": [
+ "10802616-n",
+ "09926157-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event"
+ ],
+ "_id": 11271,
+ "created": "2009-12-24T16:26:19.000Z",
+ "lastUpdated": "2021-07-19T12:57:34.931Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gagnante",
+ "hasLocution": true,
+ "plural": "gagnantes"
+ },
+ {
+ "keyword": "championne",
+ "hasLocution": false,
+ "plural": "championnes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "baking",
+ "aragon"
+ ],
+ "synsets": [
+ "07618025-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "Aragon"
+ ],
+ "_id": 11268,
+ "created": "2009-12-24T16:17:47.000Z",
+ "lastUpdated": "2021-07-19T12:54:59.354Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fruits d'Aragon",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "12706192-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "hervaceouos plant"
+ ],
+ "_id": 11272,
+ "created": "2009-12-24T16:28:36.000Z",
+ "lastUpdated": "2021-07-19T12:57:47.460Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "géranium",
+ "hasLocution": true,
+ "plural": "géraniums"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "09511841-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 11273,
+ "created": "2009-12-24T16:31:48.000Z",
+ "lastUpdated": "2021-07-19T12:57:54.157Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "géant",
+ "hasLocution": true,
+ "plural": "géants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "11998702-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "hervaceouos plant"
+ ],
+ "_id": 11274,
+ "created": "2009-12-24T16:32:55.000Z",
+ "lastUpdated": "2021-07-19T12:58:02.310Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tournesol",
+ "hasLocution": true,
+ "plural": "tournesols"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "cattle farming",
+ "professional"
+ ],
+ "synsets": [
+ "10098586-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "cattle farming",
+ "professional"
+ ],
+ "_id": 11276,
+ "created": "2009-12-24T16:36:12.000Z",
+ "lastUpdated": "2021-07-19T12:58:42.450Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fermière",
+ "hasLocution": true,
+ "plural": "fermières"
+ },
+ {
+ "keyword": "agricultrice",
+ "hasLocution": true,
+ "plural": "agricultrices",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "00347358-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 11275,
+ "created": "2009-12-24T16:34:53.000Z",
+ "lastUpdated": "2021-07-19T12:58:13.381Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "tour",
+ "hasLocution": true,
+ "plural": "tours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "theater",
+ "show",
+ "playground"
+ ],
+ "synsets": [
+ "04031744-n",
+ "07032747-n"
+ ],
+ "tags": [
+ "scenic art",
+ "theater",
+ "show",
+ "leisure",
+ "work",
+ "place",
+ "facility",
+ "recreational facility",
+ "playground"
+ ],
+ "_id": 11270,
+ "created": "2009-12-24T16:25:04.000Z",
+ "lastUpdated": "2021-07-19T12:57:05.270Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "théâtre de marionnettes",
+ "hasLocution": true,
+ "plural": "théâtres de marionnettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "security and defense",
+ "professional"
+ ],
+ "synsets": [
+ "10789727-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "professional"
+ ],
+ "_id": 11278,
+ "created": "2009-12-24T16:38:38.000Z",
+ "lastUpdated": "2021-07-21T12:52:41.359Z",
+ "keywords": [
+ {
+ "keyword": "gardienne de sécurité",
+ "hasLocution": false,
+ "plural": "gardiennes de sécurité",
+ "type": 2
+ },
+ {
+ "keyword": "agent de sécurité",
+ "hasLocution": true,
+ "plural": "agents de sécurité",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational material"
+ ],
+ "synsets": [
+ "01369772-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational material"
+ ],
+ "_id": 11277,
+ "created": "2009-12-24T16:37:21.000Z",
+ "lastUpdated": "2021-07-19T12:58:45.870Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "agrafer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "security and defense",
+ "professional"
+ ],
+ "synsets": [
+ "10169591-n",
+ "10468557-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "professional"
+ ],
+ "_id": 11279,
+ "created": "2009-12-24T16:40:10.000Z",
+ "lastUpdated": "2021-07-19T12:59:55.720Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "garde civile",
+ "hasLocution": false,
+ "plural": "gardes civiles"
+ },
+ {
+ "type": 2,
+ "keyword": "garde",
+ "hasLocution": true,
+ "plural": "gardes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07575758-n",
+ "04088393-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 11281,
+ "created": "2009-12-24T16:44:26.000Z",
+ "lastUpdated": "2021-07-19T13:00:53.828Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fast food",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense",
+ "road safety"
+ ],
+ "synsets": [
+ "10468557-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security",
+ "movement",
+ "traffic",
+ "road safety"
+ ],
+ "_id": 11280,
+ "created": "2009-12-24T16:42:03.000Z",
+ "lastUpdated": "2021-07-19T13:00:48.257Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "police",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "agent de police municipale",
+ "hasLocution": true,
+ "plural": "agents de police municipale"
+ },
+ {
+ "type": 2,
+ "keyword": "police municipale",
+ "hasLocution": true,
+ "plural": "polices municipales"
+ },
+ {
+ "type": 2,
+ "keyword": "garde",
+ "hasLocution": true,
+ "plural": "gardes"
+ },
+ {
+ "keyword": "policière",
+ "hasLocution": false,
+ "plural": "policières",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "fruit",
+ "trade"
+ ],
+ "synsets": [
+ "10166079-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 11269,
+ "created": "2009-12-24T16:19:31.000Z",
+ "lastUpdated": "2024-12-12T07:19:57.171Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marchand de fruits",
+ "hasLocution": false,
+ "plural": "marchands de fruits"
+ },
+ {
+ "keyword": "primeur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "primeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "dessert"
+ ],
+ "synsets": [
+ "10568094-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert"
+ ],
+ "_id": 11282,
+ "created": "2009-12-24T16:45:52.000Z",
+ "lastUpdated": "2021-07-26T21:04:56.823Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "glacière",
+ "hasLocution": true,
+ "plural": "glacières"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "vendeuse de glaces",
+ "plural": "vendeuses de glaces"
+ },
+ {
+ "keyword": "marchande de crème glacée",
+ "hasLocution": false,
+ "plural": "marchandes de crème glacée",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "01204905-n",
+ "00373938-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 11286,
+ "created": "2009-12-24T16:55:22.000Z",
+ "lastUpdated": "2021-07-19T13:03:14.336Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "intégration",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "02389828-v",
+ "01065717-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 11287,
+ "created": "2009-12-24T16:58:20.000Z",
+ "lastUpdated": "2021-07-19T13:03:17.925Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "inviter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "engineering",
+ "professional services",
+ "industry",
+ "construction"
+ ],
+ "synsets": [
+ "09638837-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "engineering",
+ "tertiary sector",
+ "professional services",
+ "secondary sector",
+ "industry",
+ "manufacturing industry",
+ "construction"
+ ],
+ "_id": 11285,
+ "created": "2009-12-24T16:53:12.000Z",
+ "lastUpdated": "2021-07-21T12:53:23.560Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ingénieure",
+ "hasLocution": true,
+ "plural": "ingénieure"
+ },
+ {
+ "keyword": "ingénieur",
+ "type": 2,
+ "plural": "ingénieurs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "gardening"
+ ],
+ "synsets": [
+ "10140328-n",
+ "10140190-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 11288,
+ "created": "2009-12-24T16:59:29.000Z",
+ "lastUpdated": "2021-07-19T13:03:28.902Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jardinier",
+ "hasLocution": true,
+ "plural": "jardinier"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "craftsmanship",
+ "construction"
+ ],
+ "synsets": [
+ "09878558-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "craftsmanship",
+ "construction"
+ ],
+ "_id": 11283,
+ "created": "2009-12-24T16:47:16.000Z",
+ "lastUpdated": "2021-07-21T12:53:10.334Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "forgeronne",
+ "hasLocution": true,
+ "plural": "forgeronnes"
+ },
+ {
+ "keyword": "forgeron",
+ "type": 2,
+ "plural": "forgerons",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "computing",
+ "information technology"
+ ],
+ "synsets": [
+ "09970396-n",
+ "10500853-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "computing",
+ "tertiary sector"
+ ],
+ "_id": 11284,
+ "created": "2009-12-24T16:50:27.000Z",
+ "lastUpdated": "2021-07-19T13:02:59.236Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "informaticienne",
+ "hasLocution": true,
+ "plural": "informaticienne"
+ },
+ {
+ "keyword": "programmeuse",
+ "hasLocution": false,
+ "plural": "programmeuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "jewelry"
+ ],
+ "synsets": [
+ "10241447-n",
+ "10241626-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "object",
+ "fashion",
+ "jewelry"
+ ],
+ "_id": 11289,
+ "created": "2009-12-24T17:01:00.000Z",
+ "lastUpdated": "2021-07-21T23:03:47.700Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bijoutière",
+ "hasLocution": true,
+ "plural": "bijoutière"
+ },
+ {
+ "type": 2,
+ "keyword": "joaillère",
+ "hasLocution": false,
+ "plural": "joaillères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 11290,
+ "created": "2009-12-24T17:05:57.000Z",
+ "lastUpdated": "2021-07-19T13:03:41.235Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jeu du mouchoir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "law and justice",
+ "law",
+ "professional"
+ ],
+ "synsets": [
+ "10244889-n",
+ "10300642-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice",
+ "professional"
+ ],
+ "_id": 11291,
+ "created": "2009-12-24T17:08:08.000Z",
+ "lastUpdated": "2021-07-19T13:04:03.081Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "juge",
+ "hasLocution": true,
+ "plural": "juges"
+ },
+ {
+ "keyword": "magistrat",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "magistrats"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "forestry",
+ "professional"
+ ],
+ "synsets": [
+ "10809717-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "forestry",
+ "professional"
+ ],
+ "_id": 11293,
+ "created": "2009-12-24T17:13:16.000Z",
+ "lastUpdated": "2021-07-24T14:15:07.302Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bûcheronne",
+ "hasLocution": true,
+ "plural": "bûcheronnes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "10727453-n",
+ "09856476-n",
+ "09857683-n"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 11292,
+ "created": "2009-12-24T17:10:16.000Z",
+ "lastUpdated": "2021-09-03T15:57:42.120Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voleuse",
+ "hasLocution": true,
+ "plural": "voleuses"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "cambrioleuse",
+ "plural": "cambrioleuses"
+ },
+ {
+ "type": 2,
+ "keyword": "voleuse",
+ "hasLocution": true,
+ "plural": "voleuses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "measurement unit"
+ ],
+ "synsets": [
+ "05136466-n",
+ "00998911-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "mathematics",
+ "measurement unit"
+ ],
+ "_id": 11294,
+ "created": "2009-12-24T17:15:59.000Z",
+ "lastUpdated": "2021-07-19T13:16:02.433Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "longueur",
+ "hasLocution": true,
+ "plural": "longueurs"
+ },
+ {
+ "type": 2,
+ "keyword": "mesure",
+ "hasLocution": true,
+ "plural": "mesures"
+ },
+ {
+ "type": 5,
+ "keyword": "combien ça mesure?",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "educational material"
+ ],
+ "synsets": [
+ "00505671-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "education",
+ "educational material"
+ ],
+ "_id": 11295,
+ "created": "2009-12-24T17:17:59.000Z",
+ "lastUpdated": "2021-07-19T13:05:31.019Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "loto",
+ "hasLocution": true,
+ "plural": "lotos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "02776843-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 11297,
+ "created": "2009-12-24T17:20:42.000Z",
+ "lastUpdated": "2021-07-19T13:06:52.944Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "valise",
+ "hasLocution": true,
+ "plural": "valises"
+ },
+ {
+ "keyword": "malette",
+ "hasLocution": false,
+ "plural": "malettes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "movie character",
+ "tale character"
+ ],
+ "synsets": [
+ "10300371-n",
+ "00100771-n"
+ ],
+ "tags": [
+ "character",
+ "movie character",
+ "cinema",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 11296,
+ "created": "2009-12-24T17:19:21.000Z",
+ "lastUpdated": "2021-07-19T13:05:59.109Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magicienne",
+ "hasLocution": true,
+ "plural": "magiciennes"
+ },
+ {
+ "keyword": "illusionniste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "illusionniste"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "water transport",
+ "security and defense"
+ ],
+ "synsets": [
+ "09880801-n",
+ "10314263-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 11300,
+ "created": "2009-12-24T17:32:55.000Z",
+ "lastUpdated": "2024-12-12T15:43:36.482Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marin",
+ "hasLocution": true,
+ "plural": "marins"
+ },
+ {
+ "keyword": "navigatrice",
+ "hasLocution": false,
+ "plural": "navigatrices",
+ "type": 2
+ },
+ {
+ "keyword": "matelote",
+ "hasLocution": false,
+ "plural": "matelotes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "land transport"
+ ],
+ "synsets": [
+ "09845152-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 11301,
+ "created": "2009-12-24T18:12:18.000Z",
+ "lastUpdated": "2021-07-26T14:03:20.623Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mécanicienne",
+ "hasLocution": true,
+ "plural": "mécanniciennes"
+ },
+ {
+ "keyword": "mécanicienne auto",
+ "hasLocution": false,
+ "plural": "mécaniciennes autos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance"
+ ],
+ "synsets": [
+ "04082075-n"
+ ],
+ "tags": [
+ "object",
+ "appliance"
+ ],
+ "_id": 11299,
+ "created": "2009-12-24T17:24:33.000Z",
+ "lastUpdated": "2021-07-19T13:07:15.337Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "télécommande",
+ "hasLocution": true,
+ "plural": "télécommandes"
+ },
+ {
+ "type": 2,
+ "keyword": "commande",
+ "hasLocution": true,
+ "plural": "commandes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational equipment",
+ "furniture"
+ ],
+ "synsets": [
+ "04386330-n",
+ "04611087-n"
+ ],
+ "tags": [
+ "education",
+ "educational equipment",
+ "object",
+ "furniture"
+ ],
+ "_id": 11302,
+ "created": "2009-12-24T18:15:00.000Z",
+ "lastUpdated": "2021-07-19T13:08:11.265Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bureau d'écolier",
+ "hasLocution": true,
+ "plural": "bureaux d'écolier"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "mining industry",
+ "professional"
+ ],
+ "synsets": [
+ "10339454-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "mining",
+ "professional"
+ ],
+ "_id": 11303,
+ "created": "2009-12-24T18:18:00.000Z",
+ "lastUpdated": "2021-07-26T22:11:21.818Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "travailleuse de la mine",
+ "plural": "travailleuses de la mine"
+ },
+ {
+ "keyword": "mineuse",
+ "hasLocution": true,
+ "plural": "mineuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious person",
+ "christianity"
+ ],
+ "synsets": [
+ "10387708-n"
+ ],
+ "tags": [
+ "religion",
+ "person",
+ "christianity"
+ ],
+ "_id": 11305,
+ "created": "2009-12-24T18:21:33.000Z",
+ "lastUpdated": "2021-08-04T09:04:51.226Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "soeur",
+ "hasLocution": false,
+ "plural": "soeurs"
+ },
+ {
+ "keyword": "religieuse",
+ "hasLocution": true,
+ "plural": "religieuse",
+ "type": 2
+ },
+ {
+ "keyword": "sœur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sœurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character",
+ "halloween",
+ "costume",
+ "core vocabulary-living being",
+ "core vocabulary-time",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "09515097-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature",
+ "event",
+ "popular event",
+ "halloween",
+ "object",
+ "fashion",
+ "clothes",
+ "costume",
+ "core vocabulary"
+ ],
+ "_id": 11306,
+ "created": "2009-12-24T18:23:32.000Z",
+ "lastUpdated": "2021-07-19T13:08:52.789Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "monstre",
+ "hasLocution": true,
+ "plural": "monstres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sweets"
+ ],
+ "synsets": [
+ "07857883-n",
+ "07858020-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 11304,
+ "created": "2009-12-24T18:19:52.000Z",
+ "lastUpdated": "2021-03-25T21:51:30.723Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oeuf en chocolat",
+ "hasLocution": false,
+ "plural": "oeufs en chocolat"
+ },
+ {
+ "keyword": "oeuf de Pâques",
+ "hasLocution": false,
+ "plural": "oeufs de Pâques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07764392-n",
+ "07763927-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 11298,
+ "created": "2009-12-24T17:23:22.000Z",
+ "lastUpdated": "2021-07-19T13:07:02.556Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mandarine",
+ "hasLocution": true,
+ "plural": "mandarines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "food"
+ ],
+ "synsets": [
+ "01448551-v",
+ "00840477-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food"
+ ],
+ "_id": 11307,
+ "created": "2009-12-24T18:24:56.000Z",
+ "lastUpdated": "2021-07-19T13:09:05.526Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mordre",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bouchée",
+ "hasLocution": false,
+ "plural": "bouchées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02153218-v",
+ "02141597-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11308,
+ "created": "2009-12-24T18:27:37.000Z",
+ "lastUpdated": "2021-07-19T13:09:11.143Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "montrer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "indiquer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "présenter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "musical art"
+ ],
+ "synsets": [
+ "10360025-n",
+ "09922954-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "music"
+ ],
+ "_id": 11311,
+ "created": "2009-12-24T18:32:37.000Z",
+ "lastUpdated": "2021-07-26T14:00:49.775Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "musicienne",
+ "hasLocution": false,
+ "plural": "musiciennes"
+ },
+ {
+ "keyword": "violoncelliste",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "violoncellistes"
+ },
+ {
+ "keyword": "instrumentiste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "instrumentistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "02465209-s",
+ "14399166-n",
+ "14398981-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 11312,
+ "created": "2009-12-24T18:34:29.000Z",
+ "lastUpdated": "2021-07-27T22:09:30.482Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nerfs",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "nerveux",
+ "hasLocution": true,
+ "plural": "nerveux"
+ },
+ {
+ "keyword": "stressé",
+ "hasLocution": false,
+ "plural": "stressés",
+ "type": 4
+ },
+ {
+ "keyword": "trouille",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "inquiet",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "inquiets"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "conjunction",
+ "copulative conjunction"
+ ],
+ "synsets": [
+ "00526784-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "conjunction",
+ "copulative conjunction"
+ ],
+ "_id": 11313,
+ "created": "2009-12-24T18:35:31.000Z",
+ "lastUpdated": "2024-11-19T06:15:31.284Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "ni",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "00806464-v",
+ "07195447-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 11315,
+ "created": "2009-12-24T19:02:16.000Z",
+ "lastUpdated": "2021-07-19T13:13:54.656Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "nous ne nous comprenons pas",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nosu ne sommes pas d'accord",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indefinite adjective",
+ "core vocabulary-communication",
+ "indefinite pronoun",
+ "basic concepts"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "indefinite adjective",
+ "core vocabulary",
+ "pronoun",
+ "indefinite pronoun",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 11314,
+ "created": "2009-12-24T18:36:58.000Z",
+ "lastUpdated": "2024-10-13T05:07:24.634Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "aucun",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "aucune",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "personne",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower"
+ ],
+ "synsets": [
+ "12760092-n"
+ ],
+ "tags": [
+ "plant",
+ "flower"
+ ],
+ "_id": 11309,
+ "created": "2009-12-24T18:28:50.000Z",
+ "lastUpdated": "2021-07-19T13:09:20.117Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gui",
+ "hasLocution": true,
+ "plural": "guis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "plant physiology",
+ "gardening"
+ ],
+ "synsets": [
+ "02564004-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "plant",
+ "plant physiology",
+ "work",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 11310,
+ "created": "2009-12-24T18:30:50.000Z",
+ "lastUpdated": "2021-07-19T13:09:23.725Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fané",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "conjunction",
+ "disjunctive conjunction"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "conjunction",
+ "copulative conjunction",
+ "disjunctive conjunction"
+ ],
+ "_id": 11317,
+ "created": "2009-12-24T19:19:36.000Z",
+ "lastUpdated": "2024-11-19T06:19:00.113Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "ou",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02595137-a",
+ "01645077-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary"
+ ],
+ "_id": 11316,
+ "created": "2009-12-24T19:15:55.000Z",
+ "lastUpdated": "2021-07-19T13:16:14.673Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "nouveau",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "nouvelle",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "theater",
+ "show"
+ ],
+ "synsets": [
+ "07019235-n",
+ "07021061-n"
+ ],
+ "tags": [
+ "scenic art",
+ "theater",
+ "show",
+ "leisure",
+ "work"
+ ],
+ "_id": 11319,
+ "created": "2009-12-24T19:25:03.000Z",
+ "lastUpdated": "2021-07-19T13:16:52.142Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pièce de théâtre",
+ "hasLocution": true,
+ "plural": "pièce de théâtre"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "object",
+ "categorization"
+ ],
+ "synsets": [
+ "06736657-n",
+ "04431353-n",
+ "00002684-n"
+ ],
+ "tags": [
+ "object",
+ "categorization"
+ ],
+ "_id": 11318,
+ "created": "2009-12-24T19:23:18.000Z",
+ "lastUpdated": "2021-07-19T13:16:25.344Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "choses",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "objet",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "objets",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "10399699-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "ophthalmology"
+ ],
+ "_id": 11320,
+ "created": "2009-12-24T19:29:28.000Z",
+ "lastUpdated": "2021-07-19T14:28:39.466Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "opticien",
+ "hasLocution": true,
+ "plural": "opticiens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy",
+ "vegetal origin material",
+ "carpentry",
+ "core vocabulary-living being",
+ "core vocabulary-object",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "04324558-n",
+ "03983015-n",
+ "04107268-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy",
+ "material",
+ "raw material",
+ "vegetal origin material",
+ "work",
+ "secondary sector",
+ "carpentry",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 11322,
+ "created": "2009-12-24T19:35:11.000Z",
+ "lastUpdated": "2021-07-19T14:28:58.030Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bâton",
+ "hasLocution": true,
+ "plural": "bâtons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "professional"
+ ],
+ "synsets": [
+ "08494318-n",
+ "10757517-n",
+ "00867880-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "work",
+ "professional"
+ ],
+ "_id": 11325,
+ "created": "2009-12-24T19:42:54.000Z",
+ "lastUpdated": "2021-07-19T14:29:34.519Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chômeur",
+ "hasLocution": true,
+ "plural": "chômeurs"
+ },
+ {
+ "type": 2,
+ "keyword": "sans emploi",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "baking"
+ ],
+ "synsets": [
+ "09852896-n",
+ "09853011-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 11324,
+ "created": "2009-12-24T19:38:10.000Z",
+ "lastUpdated": "2021-07-19T14:29:20.030Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boulanger",
+ "hasLocution": true,
+ "plural": "boulangers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work organization"
+ ],
+ "synsets": [
+ "13991755-n"
+ ],
+ "tags": [
+ "work",
+ "organization"
+ ],
+ "_id": 11326,
+ "created": "2009-12-24T19:44:36.000Z",
+ "lastUpdated": "2021-07-19T14:29:45.584Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chomage",
+ "hasLocution": true,
+ "plural": "chômages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "students"
+ ],
+ "synsets": [
+ "06501061-n",
+ "01013825-n",
+ "00663742-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "students"
+ ],
+ "_id": 11327,
+ "created": "2009-12-24T19:47:02.000Z",
+ "lastUpdated": "2021-07-26T14:01:17.511Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire la liste",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire l'appel",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "students"
+ ],
+ "synsets": [
+ "06501061-n",
+ "01013825-n",
+ "00663742-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "students"
+ ],
+ "_id": 11328,
+ "created": "2009-12-24T19:47:43.000Z",
+ "lastUpdated": "2021-07-26T14:01:06.283Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire la liste",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire l'appel",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "baking"
+ ],
+ "synsets": [
+ "10425065-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 11329,
+ "created": "2009-12-24T19:49:00.000Z",
+ "lastUpdated": "2021-07-26T14:25:09.674Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pâtissière",
+ "hasLocution": true,
+ "plural": "pâtissières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "baking"
+ ],
+ "synsets": [
+ "10425065-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 11330,
+ "created": "2009-12-24T19:51:20.000Z",
+ "lastUpdated": "2021-07-21T12:53:50.619Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pâtissier",
+ "hasLocution": true,
+ "plural": "pâtissièrs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "baking"
+ ],
+ "synsets": [
+ "09852896-n",
+ "09853011-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 11323,
+ "created": "2009-12-24T19:36:27.000Z",
+ "lastUpdated": "2021-07-19T14:29:16.975Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boulangère",
+ "hasLocution": true,
+ "plural": "boulangères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower"
+ ],
+ "synsets": [
+ "12061915-n"
+ ],
+ "tags": [
+ "plant",
+ "flower"
+ ],
+ "_id": 11321,
+ "created": "2009-12-24T19:33:00.000Z",
+ "lastUpdated": "2021-07-19T14:58:24.634Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "orchidée",
+ "hasLocution": true,
+ "plural": "orchidées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hairdresser"
+ ],
+ "synsets": [
+ "10175409-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 11333,
+ "created": "2009-12-24T19:55:44.000Z",
+ "lastUpdated": "2021-07-21T12:53:54.450Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coiffeuse",
+ "hasLocution": true,
+ "plural": "coiffeuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "mass media"
+ ],
+ "synsets": [
+ "10244248-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "communication",
+ "mass media"
+ ],
+ "_id": 11335,
+ "created": "2009-12-24T20:02:16.000Z",
+ "lastUpdated": "2021-07-19T14:32:04.055Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "journaliste",
+ "hasLocution": true,
+ "plural": "journalistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aromatic plant",
+ "aromatic herb",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "12963155-n",
+ "07835872-n"
+ ],
+ "tags": [
+ "plant",
+ "aromatic plant",
+ "feeding",
+ "food",
+ "plant-based food",
+ "hervaceouos plant"
+ ],
+ "_id": 11334,
+ "created": "2009-12-24T20:00:04.000Z",
+ "lastUpdated": "2021-07-21T12:53:57.875Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "persil",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "fishing"
+ ],
+ "synsets": [
+ "10113427-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 11337,
+ "created": "2009-12-24T20:06:37.000Z",
+ "lastUpdated": "2021-07-19T14:32:35.342Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pêcheuse",
+ "hasLocution": true,
+ "plural": "pêcheuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "fish"
+ ],
+ "synsets": [
+ "10113587-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 11336,
+ "created": "2009-12-24T20:04:21.000Z",
+ "lastUpdated": "2021-07-19T14:32:27.036Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marchand de poisson",
+ "hasLocution": true,
+ "plural": "marchands de poisson"
+ },
+ {
+ "keyword": "poissonnier",
+ "hasLocution": false,
+ "plural": "poissonniers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "09848006-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 11331,
+ "created": "2009-12-24T19:53:06.000Z",
+ "lastUpdated": "2021-07-19T14:31:19.999Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pédiatre",
+ "hasLocution": true,
+ "plural": "pédiatres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "water transport",
+ "fishing"
+ ],
+ "synsets": [
+ "10113427-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 11338,
+ "created": "2009-12-24T20:08:29.000Z",
+ "lastUpdated": "2021-07-19T14:32:43.068Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pêcheuse",
+ "hasLocution": true,
+ "plural": "pêcheuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical features"
+ ],
+ "synsets": [
+ "02437422-s",
+ "00213765-a"
+ ],
+ "tags": [
+ "human body",
+ "physical features"
+ ],
+ "_id": 11332,
+ "created": "2009-12-24T19:54:23.000Z",
+ "lastUpdated": "2021-07-19T14:31:42.172Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "poilu",
+ "hasLocution": true
+ },
+ {
+ "keyword": "chevelu",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "hirsute",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "aerial transport",
+ "transport services"
+ ],
+ "synsets": [
+ "10452928-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 11340,
+ "created": "2009-12-24T20:14:13.000Z",
+ "lastUpdated": "2021-07-19T14:33:10.455Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pilote",
+ "hasLocution": true,
+ "plural": "pilotes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "02729230-n",
+ "03370837-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 11343,
+ "created": "2009-12-24T20:20:33.000Z",
+ "lastUpdated": "2021-07-19T14:34:10.364Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étage",
+ "hasLocution": true,
+ "plural": "étages"
+ },
+ {
+ "keyword": "niveau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "niveaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07575758-n",
+ "04088393-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 11344,
+ "created": "2009-12-24T20:22:58.000Z",
+ "lastUpdated": "2021-07-19T14:34:18.633Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pizzeria",
+ "hasLocution": true,
+ "plural": "pizzerias"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "security and defense",
+ "professional"
+ ],
+ "synsets": [
+ "08226608-n",
+ "10468557-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "professional"
+ ],
+ "_id": 11345,
+ "created": "2009-12-24T20:25:10.000Z",
+ "lastUpdated": "2021-07-19T14:34:40.098Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "police",
+ "hasLocution": true
+ },
+ {
+ "keyword": "policière",
+ "hasLocution": false,
+ "plural": "policières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "fishing"
+ ],
+ "synsets": [
+ "01143220-v",
+ "00454959-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 11339,
+ "created": "2009-12-24T20:11:43.000Z",
+ "lastUpdated": "2021-07-19T14:33:01.002Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "pêcher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "mordre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pêche",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pêches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "political representation",
+ "professional"
+ ],
+ "synsets": [
+ "10469877-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "professional"
+ ],
+ "_id": 11346,
+ "created": "2009-12-24T20:28:22.000Z",
+ "lastUpdated": "2021-07-19T14:34:50.685Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "politicienne",
+ "hasLocution": true,
+ "plural": "politiciennes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "meat"
+ ],
+ "synsets": [
+ "10480626-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 11347,
+ "created": "2009-12-24T20:29:36.000Z",
+ "lastUpdated": "2021-07-26T14:24:52.007Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "volaillère",
+ "hasLocution": false,
+ "plural": "volaillères"
+ },
+ {
+ "keyword": "marchande de volailles",
+ "hasLocution": false,
+ "plural": "marchandes de volailles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "visual artist",
+ "professional artist",
+ "painting",
+ "art"
+ ],
+ "synsets": [
+ "10411352-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "visual art",
+ "painting"
+ ],
+ "_id": 11342,
+ "created": "2009-12-24T20:18:24.000Z",
+ "lastUpdated": "2024-12-07T08:06:36.695Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peintre",
+ "hasLocution": true,
+ "plural": "peintres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "conjunction",
+ "causal conjunction"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "conjunction",
+ "causal conjunction"
+ ],
+ "_id": 11348,
+ "created": "2009-12-24T20:30:23.000Z",
+ "lastUpdated": "2024-11-19T06:08:42.776Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "parce que",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "10413608-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 11341,
+ "created": "2009-12-24T20:16:54.000Z",
+ "lastUpdated": "2021-07-19T14:33:19.473Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peintre",
+ "hasLocution": true,
+ "plural": "peintre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "literature",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02874508-n"
+ ],
+ "tags": [
+ "literature",
+ "core vocabulary"
+ ],
+ "_id": 11352,
+ "created": "2009-12-24T20:52:44.000Z",
+ "lastUpdated": "2021-07-19T14:36:21.478Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "signet",
+ "hasLocution": true,
+ "plural": "signets"
+ },
+ {
+ "keyword": "marque-page",
+ "hasLocution": false,
+ "plural": "marque-pages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "publication",
+ "mass media"
+ ],
+ "synsets": [
+ "10375912-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "object",
+ "publication",
+ "communication",
+ "mass media"
+ ],
+ "_id": 11353,
+ "created": "2009-12-26T15:40:42.000Z",
+ "lastUpdated": "2021-07-21T12:54:04.536Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marchande de journaux",
+ "hasLocution": true,
+ "plural": "marchandes de journaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "mass media",
+ "mass media device",
+ "appliance"
+ ],
+ "synsets": [
+ "04050813-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "communication",
+ "mass media",
+ "mass media device"
+ ],
+ "_id": 11354,
+ "created": "2009-12-26T15:42:39.000Z",
+ "lastUpdated": "2024-12-08T06:51:32.260Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "radio",
+ "hasLocution": true,
+ "plural": "radios"
+ },
+ {
+ "keyword": "transistor",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "transistors"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00971199-s",
+ "00970318-a",
+ "01682771-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary"
+ ],
+ "_id": 11355,
+ "created": "2009-12-26T15:43:57.000Z",
+ "lastUpdated": "2021-07-19T14:37:38.432Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "bizarre",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "rare",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "étrange",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom",
+ "body sensation"
+ ],
+ "synsets": [
+ "02124339-v",
+ "02125653-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 11356,
+ "created": "2009-12-26T15:45:34.000Z",
+ "lastUpdated": "2021-07-19T14:37:54.553Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "gratter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "démanger",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00609334-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11357,
+ "created": "2009-12-26T15:56:29.000Z",
+ "lastUpdated": "2021-07-19T14:38:04.239Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rappeler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se souvenir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00609334-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11358,
+ "created": "2009-12-26T15:57:10.000Z",
+ "lastUpdated": "2021-07-19T14:38:10.078Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rappeler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se souvenir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "psychology"
+ ],
+ "synsets": [
+ "10508450-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "psychology"
+ ],
+ "_id": 11350,
+ "created": "2009-12-24T20:45:28.000Z",
+ "lastUpdated": "2021-07-19T14:35:54.292Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "psychologue",
+ "hasLocution": true,
+ "plural": "psychologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "10495671-n",
+ "09982445-n"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 11349,
+ "created": "2009-12-24T20:38:46.000Z",
+ "lastUpdated": "2021-07-19T14:35:46.125Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prisonnière",
+ "hasLocution": true,
+ "plural": "prisonnières"
+ },
+ {
+ "keyword": "détenue",
+ "hasLocution": false,
+ "plural": "détenues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chronological device",
+ "chronological instrument"
+ ],
+ "synsets": [
+ "03549323-n",
+ "04141715-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "time",
+ "chronological device"
+ ],
+ "_id": 11359,
+ "created": "2009-12-26T15:59:24.000Z",
+ "lastUpdated": "2021-07-19T14:38:27.892Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sablier",
+ "hasLocution": false,
+ "plural": "sabliers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "04412675-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 11360,
+ "created": "2009-12-26T16:01:06.000Z",
+ "lastUpdated": "2021-07-19T14:38:51.699Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lecteur vidéo",
+ "hasLocution": true,
+ "plural": "lecteurs vidéo"
+ },
+ {
+ "keyword": "magnétoscope",
+ "hasLocution": false,
+ "plural": "magnétoscopes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "gastronomy"
+ ],
+ "synsets": [
+ "04088393-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 11361,
+ "created": "2009-12-26T16:03:03.000Z",
+ "lastUpdated": "2021-04-12T21:22:33.495Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "restaurant",
+ "hasLocution": true,
+ "plural": "restaurants"
+ },
+ {
+ "keyword": "resto",
+ "hasLocution": false,
+ "plural": "restos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gambling"
+ ],
+ "synsets": [
+ "00510410-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "gambling"
+ ],
+ "_id": 11362,
+ "created": "2009-12-26T16:04:20.000Z",
+ "lastUpdated": "2021-07-19T14:38:59.030Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "roulette",
+ "hasLocution": true,
+ "plural": "roulettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "christmas"
+ ],
+ "synsets": [
+ "04469246-n",
+ "02776042-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 11363,
+ "created": "2009-12-26T16:07:01.000Z",
+ "lastUpdated": "2021-07-19T14:58:47.208Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "sac de jouets",
+ "plural": "sacs de jouets"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "conjunction",
+ "copulative conjunction"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "conjunction",
+ "copulative conjunction",
+ "object"
+ ],
+ "_id": 11351,
+ "created": "2009-12-24T20:47:14.000Z",
+ "lastUpdated": "2024-11-19T06:16:22.006Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "que",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room"
+ ],
+ "synsets": [
+ "03308910-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room"
+ ],
+ "_id": 11364,
+ "created": "2009-12-26T16:08:19.000Z",
+ "lastUpdated": "2021-07-19T14:39:25.840Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sortie",
+ "hasLocution": true,
+ "plural": "sorties"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "02099200-v",
+ "02099066-v",
+ "01967949-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 11368,
+ "created": "2009-12-26T16:12:33.000Z",
+ "lastUpdated": "2021-07-19T14:39:41.262Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sauter à pieds joints",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body position"
+ ],
+ "synsets": [
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "position"
+ ],
+ "_id": 11369,
+ "created": "2009-12-26T16:17:53.000Z",
+ "lastUpdated": "2021-08-01T18:44:12.122Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mettre quelqu'un sur son séant en le plaçant sur un siège ou sur une autre chose : Asseoir un jeune enfant sur sa chaise.",
+ "keyword": "assoir",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'assoir par terre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "asseoir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir par terre",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01970868-v",
+ "02099066-v",
+ "01967949-v",
+ "02099200-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 11365,
+ "created": "2009-12-26T16:09:31.000Z",
+ "lastUpdated": "2021-07-19T14:39:31.851Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sauter à cloche-pied",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01970868-v",
+ "02099066-v",
+ "01967949-v",
+ "02099200-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 11366,
+ "created": "2009-12-26T16:10:14.000Z",
+ "lastUpdated": "2021-07-21T12:54:08.795Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sauter à cloche-pied",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "02099200-v",
+ "02099066-v",
+ "01967949-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 11367,
+ "created": "2009-12-26T16:12:01.000Z",
+ "lastUpdated": "2021-07-19T14:39:37.968Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sauter à pieds joints",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "body position",
+ "verb",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "01545905-v",
+ "01242902-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "human body",
+ "position",
+ "education",
+ "core vocabulary"
+ ],
+ "_id": 11370,
+ "created": "2009-12-26T16:19:06.000Z",
+ "lastUpdated": "2024-11-12T06:12:02.336Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'assoir par terre",
+ "hasLocution": false
+ },
+ {
+ "keyword": "assis",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "s'asseoir par terre",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "être assis par terre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01545905-v",
+ "02698724-v",
+ "01242902-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 11372,
+ "created": "2009-12-26T16:30:37.000Z",
+ "lastUpdated": "2021-08-01T18:56:07.697Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'assoir en cercle",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "faire un cercle",
+ "hasLocution": false
+ },
+ {
+ "keyword": "assis",
+ "type": 4,
+ "hasLocution": false,
+ "plural": "assis"
+ },
+ {
+ "keyword": "s'asseoir en cercle",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01545905-v",
+ "02698724-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 11371,
+ "created": "2009-12-26T16:29:27.000Z",
+ "lastUpdated": "2021-08-01T18:57:29.010Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'assoir en cercle",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "faire un cercle",
+ "hasLocution": false
+ },
+ {
+ "keyword": "assis",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'asseoir en cercle",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "street furniture"
+ ],
+ "synsets": [
+ "01988916-v",
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 11373,
+ "created": "2009-12-26T16:45:46.000Z",
+ "lastUpdated": "2021-08-01T18:58:57.944Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mettre quelqu'un sur son séant en le plaçant sur un siège ou sur une autre chose : Asseoir un jeune enfant sur sa chaise.",
+ "keyword": "s'assoir",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'assoir sur un banc",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir sur un banc",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "street furniture"
+ ],
+ "synsets": [
+ "01988916-v",
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 11374,
+ "created": "2009-12-26T16:46:42.000Z",
+ "lastUpdated": "2021-08-01T19:00:24.703Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'assoir",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "s'assoir sur un banc",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'asseoir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir sur un banc",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "10280497-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 11378,
+ "created": "2009-12-26T16:58:08.000Z",
+ "lastUpdated": "2021-07-19T14:43:26.149Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "secouriste",
+ "hasLocution": true,
+ "plural": "secouristes"
+ },
+ {
+ "keyword": "sauveteuse",
+ "plural": "sauveteuses",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense",
+ "war"
+ ],
+ "synsets": [
+ "10641415-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security",
+ "event",
+ "war"
+ ],
+ "_id": 11379,
+ "created": "2009-12-26T16:59:31.000Z",
+ "lastUpdated": "2021-07-21T12:54:13.532Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "militaire",
+ "hasLocution": true,
+ "plural": "militaires"
+ },
+ {
+ "type": 2,
+ "keyword": "soldate",
+ "hasLocution": false,
+ "plural": "soldates"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "02858670-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 11380,
+ "created": "2009-12-26T17:01:02.000Z",
+ "lastUpdated": "2021-07-19T14:43:54.702Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chalumeau",
+ "hasLocution": true,
+ "plural": "chalumeaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "show"
+ ],
+ "synsets": [
+ "02889123-n",
+ "13279066-n",
+ "10567784-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "leisure",
+ "show"
+ ],
+ "_id": 11381,
+ "created": "2009-12-26T17:17:26.000Z",
+ "lastUpdated": "2021-07-19T14:44:02.774Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guichetier",
+ "hasLocution": false,
+ "plural": "guichetiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational equipment",
+ "furniture"
+ ],
+ "synsets": [
+ "03005231-n",
+ "04168419-n",
+ "04169042-n",
+ "04338415-n"
+ ],
+ "tags": [
+ "education",
+ "educational equipment",
+ "object",
+ "furniture"
+ ],
+ "_id": 11376,
+ "created": "2009-12-26T16:55:55.000Z",
+ "lastUpdated": "2021-07-19T14:42:40.294Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaise d'écolier",
+ "hasLocution": true,
+ "plural": "chaises d'écolier"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dessert",
+ "summer"
+ ],
+ "synsets": [
+ "07630109-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "summer"
+ ],
+ "_id": 11382,
+ "created": "2009-12-26T17:19:18.000Z",
+ "lastUpdated": "2025-01-29T12:25:07.723Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pot de glace",
+ "hasLocution": true,
+ "plural": "pots de glace"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "transport services",
+ "professional"
+ ],
+ "synsets": [
+ "10713142-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "transport services",
+ "professional"
+ ],
+ "_id": 11383,
+ "created": "2009-12-26T17:21:34.000Z",
+ "lastUpdated": "2021-07-21T12:54:33.163Z",
+ "keywords": [
+ {
+ "keyword": "chauffeuse de taxi",
+ "hasLocution": false,
+ "plural": "chauffeuse de taxi",
+ "type": 2
+ },
+ {
+ "keyword": "chauffeur de taxi",
+ "hasLocution": true,
+ "plural": "chauffeurs de taxi"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "clothes",
+ "residential building"
+ ],
+ "synsets": [
+ "04418970-n",
+ "04419101-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "object",
+ "fashion",
+ "clothes",
+ "home"
+ ],
+ "_id": 11384,
+ "created": "2009-12-26T17:23:23.000Z",
+ "lastUpdated": "2021-07-19T14:59:01.537Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étendoir",
+ "hasLocution": true,
+ "plural": "étendoirs"
+ },
+ {
+ "keyword": "étendage",
+ "hasLocution": false,
+ "plural": "étendages",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "toy",
+ "signaling system"
+ ],
+ "synsets": [
+ "04469475-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "leisure",
+ "sport",
+ "toy",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 11386,
+ "created": "2009-12-26T17:25:42.000Z",
+ "lastUpdated": "2021-07-19T14:45:25.620Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de jouets",
+ "hasLocution": true,
+ "plural": "magasins de jouets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "toy"
+ ],
+ "synsets": [
+ "04469475-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 11385,
+ "created": "2009-12-26T17:24:54.000Z",
+ "lastUpdated": "2021-07-19T14:45:16.319Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de jouets",
+ "hasLocution": true,
+ "plural": "magasins de jouets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "bullfighting"
+ ],
+ "synsets": [
+ "09855548-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "bullfighting"
+ ],
+ "_id": 11387,
+ "created": "2009-12-26T17:28:30.000Z",
+ "lastUpdated": "2021-07-26T14:47:56.906Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "torera",
+ "hasLocution": false,
+ "plural": "toreras"
+ },
+ {
+ "keyword": "femme toréador",
+ "hasLocution": false,
+ "plural": "femmes toréadors"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "circus"
+ ],
+ "synsets": [
+ "09783804-n",
+ "04482646-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "circus",
+ "show"
+ ],
+ "_id": 11388,
+ "created": "2009-12-26T17:29:34.000Z",
+ "lastUpdated": "2021-07-19T14:46:05.302Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trapéziste",
+ "hasLocution": true,
+ "plural": "trapézistes"
+ },
+ {
+ "type": 2,
+ "keyword": "acrobate",
+ "hasLocution": false,
+ "plural": "acrobates"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena",
+ "verb",
+ "core vocabulary-knowledge",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02776493-v"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena",
+ "communication",
+ "language",
+ "verb",
+ "core vocabulary"
+ ],
+ "_id": 11389,
+ "created": "2009-12-26T17:31:13.000Z",
+ "lastUpdated": "2021-07-19T14:46:08.856Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tonner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery"
+ ],
+ "synsets": [
+ "03206930-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home"
+ ],
+ "_id": 11390,
+ "created": "2009-12-26T17:32:31.000Z",
+ "lastUpdated": "2021-07-19T14:46:26.684Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vaisselle",
+ "hasLocution": true
+ },
+ {
+ "keyword": "service de vaisselle",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "sweets"
+ ],
+ "synsets": [
+ "10567784-n",
+ "10611560-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 11391,
+ "created": "2009-12-26T17:37:29.000Z",
+ "lastUpdated": "2021-07-19T14:46:38.915Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marchande de bonbons",
+ "hasLocution": true,
+ "plural": "marchandes de bonbons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "veterinary medicine"
+ ],
+ "synsets": [
+ "10769383-n",
+ "03140484-a"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "veterinary medicine"
+ ],
+ "_id": 11392,
+ "created": "2009-12-26T17:39:21.000Z",
+ "lastUpdated": "2021-07-19T14:46:47.505Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vétérinaire",
+ "hasLocution": true,
+ "plural": "vétérinaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "conjunction",
+ "adversative conjunction"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "conjunction",
+ "adversative conjunction"
+ ],
+ "_id": 11377,
+ "created": "2009-12-26T16:57:02.000Z",
+ "lastUpdated": "2024-11-19T06:16:41.939Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "mais",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "toutefois",
+ "hasLocution": true
+ },
+ {
+ "keyword": "cependant",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "living being"
+ ],
+ "synsets": [
+ "00004475-n"
+ ],
+ "tags": [],
+ "_id": 11375,
+ "created": "2009-12-26T16:48:17.000Z",
+ "lastUpdated": "2021-07-19T14:42:28.743Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "êtres vivants",
+ "hasLocution": true
+ },
+ {
+ "keyword": "organismes vivants",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01642580-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary"
+ ],
+ "_id": 11394,
+ "created": "2009-12-26T18:04:01.000Z",
+ "lastUpdated": "2021-07-19T14:47:28.916Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "vieux",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "vieille",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "plant physiology",
+ "gardening"
+ ],
+ "synsets": [
+ "00119378-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "plant",
+ "plant physiology",
+ "work",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 11397,
+ "created": "2009-12-26T18:20:54.000Z",
+ "lastUpdated": "2021-07-19T14:59:06.540Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "vivant",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower"
+ ],
+ "synsets": [
+ "12408356-n"
+ ],
+ "tags": [
+ "plant",
+ "flower"
+ ],
+ "_id": 11395,
+ "created": "2009-12-26T18:07:49.000Z",
+ "lastUpdated": "2021-07-19T14:47:38.923Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "violette",
+ "hasLocution": true,
+ "plural": "violette"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "movement",
+ "aerial transport"
+ ],
+ "synsets": [
+ "00309196-n",
+ "05914300-n",
+ "08633886-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 11393,
+ "created": "2009-12-26T17:50:55.000Z",
+ "lastUpdated": "2021-07-19T14:47:24.145Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voyage",
+ "hasLocution": true,
+ "plural": "voyages"
+ },
+ {
+ "type": 2,
+ "keyword": "trajet",
+ "hasLocution": true,
+ "plural": "trajets"
+ },
+ {
+ "type": 2,
+ "keyword": "parcours",
+ "hasLocution": true,
+ "plural": "parcours"
+ },
+ {
+ "type": 2,
+ "keyword": "itinéraire",
+ "hasLocution": true,
+ "plural": "itinéraires"
+ },
+ {
+ "type": 2,
+ "keyword": "route",
+ "hasLocution": true,
+ "plural": "routes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00440424-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 11398,
+ "created": "2009-12-26T18:22:16.000Z",
+ "lastUpdated": "2021-07-19T14:48:29.284Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "galipette",
+ "hasLocution": true,
+ "plural": "galipettes"
+ },
+ {
+ "keyword": "roulade",
+ "hasLocution": false,
+ "plural": "roulades"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "conjunction",
+ "copulative conjunction"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "conjunction",
+ "copulative conjunction"
+ ],
+ "_id": 11399,
+ "created": "2009-12-26T18:27:13.000Z",
+ "lastUpdated": "2024-11-19T06:17:00.115Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "et",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical instrument",
+ "percussion instrument",
+ "christmas"
+ ],
+ "synsets": [
+ "03254272-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 11400,
+ "created": "2009-12-26T18:28:44.000Z",
+ "lastUpdated": "2021-07-21T12:54:39.825Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "zambomba",
+ "hasLocution": false,
+ "plural": "zambombas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "footwear"
+ ],
+ "synsets": [
+ "09952556-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 11401,
+ "created": "2009-12-26T18:30:34.000Z",
+ "lastUpdated": "2021-07-21T12:54:43.772Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cordonnière",
+ "hasLocution": true,
+ "plural": "cordonnières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "03051675-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 11402,
+ "created": "2009-12-26T18:59:22.000Z",
+ "lastUpdated": "2021-07-19T14:49:53.716Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sabots",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "teaching activity"
+ ],
+ "synsets": [],
+ "tags": [
+ "education",
+ "teaching activity"
+ ],
+ "_id": 11396,
+ "created": "2009-12-26T18:19:29.000Z",
+ "lastUpdated": "2021-07-19T14:48:00.287Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "visite scolaire",
+ "hasLocution": true,
+ "plural": "visites scolaires"
+ },
+ {
+ "type": 2,
+ "keyword": "visite",
+ "hasLocution": true,
+ "plural": "visites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07939988-n",
+ "07940606-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 11403,
+ "created": "2009-12-26T19:01:22.000Z",
+ "lastUpdated": "2021-07-19T14:49:59.745Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jus de pomme",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07939988-n",
+ "07941740-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 11404,
+ "created": "2009-12-26T19:02:13.000Z",
+ "lastUpdated": "2021-07-19T14:50:02.870Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jus de tomate",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "social movement"
+ ],
+ "synsets": [
+ "05194266-n"
+ ],
+ "tags": [
+ "sociology",
+ "social movement"
+ ],
+ "_id": 11455,
+ "created": "2009-12-28T15:47:57.000Z",
+ "lastUpdated": "2021-07-19T14:50:14.240Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "égalité des chances",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional"
+ ],
+ "synsets": [
+ "08197557-n"
+ ],
+ "tags": [
+ "work",
+ "professional"
+ ],
+ "_id": 11457,
+ "created": "2009-12-28T15:52:03.000Z",
+ "lastUpdated": "2021-07-19T14:50:20.064Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marché du travail",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "emploi",
+ "hasLocution": true,
+ "plural": "emplois"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information technology"
+ ],
+ "synsets": [
+ "03707142-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "computing"
+ ],
+ "_id": 11459,
+ "created": "2009-12-28T15:55:58.000Z",
+ "lastUpdated": "2021-07-19T14:50:32.286Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "technologie",
+ "hasLocution": true,
+ "plural": "technologies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07939988-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "core vocabulary"
+ ],
+ "_id": 11461,
+ "created": "2009-12-28T15:57:52.000Z",
+ "lastUpdated": "2021-07-19T14:50:40.532Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jus",
+ "hasLocution": true,
+ "plural": "jus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07939988-n",
+ "07940800-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 11405,
+ "created": "2009-12-26T19:02:56.000Z",
+ "lastUpdated": "2021-07-19T14:59:14.843Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jus de raisin",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07939988-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 11463,
+ "created": "2009-12-28T15:59:14.000Z",
+ "lastUpdated": "2021-07-19T14:50:48.483Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jus",
+ "hasLocution": true,
+ "plural": "jus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "education"
+ ],
+ "synsets": [
+ "07961512-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "education"
+ ],
+ "_id": 11453,
+ "created": "2009-12-28T15:44:54.000Z",
+ "lastUpdated": "2021-07-19T14:50:09.261Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "communauté éducative",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "special education"
+ ],
+ "synsets": [
+ "00535441-s",
+ "00019387-s",
+ "00019169-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "education",
+ "special education"
+ ],
+ "_id": 11465,
+ "created": "2009-12-28T18:02:11.000Z",
+ "lastUpdated": "2021-07-19T14:50:52.251Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "accessible",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "special education"
+ ],
+ "synsets": [
+ "01452567-v",
+ "02050390-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "special education"
+ ],
+ "_id": 11466,
+ "created": "2009-12-28T18:06:15.000Z",
+ "lastUpdated": "2021-07-24T21:57:07.346Z",
+ "keywords": [
+ {
+ "keyword": "transporter en fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "type": 3,
+ "keyword": "pousser le fauteuil"
+ },
+ {
+ "keyword": "rouler le fauteuil",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "social movement"
+ ],
+ "synsets": [
+ "05194266-n"
+ ],
+ "tags": [
+ "sociology",
+ "social movement"
+ ],
+ "_id": 11468,
+ "created": "2009-12-28T18:08:20.000Z",
+ "lastUpdated": "2021-07-19T14:52:51.839Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "égalité des chances",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "04248522-n",
+ "00529704-n"
+ ],
+ "tags": [],
+ "_id": 11406,
+ "created": "2009-12-26T19:07:20.000Z",
+ "lastUpdated": "2021-03-13T14:33:54.258Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussons de danse",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ballerines",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "special education"
+ ],
+ "synsets": [
+ "10024466-n",
+ "01452567-v",
+ "02050390-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "special education"
+ ],
+ "_id": 11467,
+ "created": "2009-12-28T18:06:52.000Z",
+ "lastUpdated": "2021-07-24T21:56:43.706Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "dépendant",
+ "hasLocution": true,
+ "plural": "dépendants"
+ },
+ {
+ "keyword": "transporter en fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "pousser le fauteuil",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rouler le fauteuil",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "document"
+ ],
+ "synsets": [
+ "02168847-a",
+ "01278672-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "document"
+ ],
+ "_id": 11471,
+ "created": "2009-12-28T18:13:40.000Z",
+ "lastUpdated": "2021-07-19T14:53:42.353Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "important",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "special education"
+ ],
+ "synsets": [
+ "00732883-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "education",
+ "special education"
+ ],
+ "_id": 11472,
+ "created": "2009-12-28T18:17:07.000Z",
+ "lastUpdated": "2021-07-19T14:53:48.301Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "indépendant",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "autonome",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "law",
+ "law and justice"
+ ],
+ "synsets": [
+ "06544321-n",
+ "08458195-n",
+ "02764868-a",
+ "02764969-a"
+ ],
+ "tags": [
+ "law",
+ "work",
+ "tertiary sector",
+ "justice"
+ ],
+ "_id": 11473,
+ "created": "2009-12-28T18:18:35.000Z",
+ "lastUpdated": "2021-07-19T14:53:57.614Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "loi",
+ "hasLocution": true,
+ "plural": "lois"
+ },
+ {
+ "type": 4,
+ "keyword": "légal",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling",
+ "character",
+ "person according to their age"
+ ],
+ "synsets": [
+ "02169125-v",
+ "01831800-v",
+ "00231927-a",
+ "00512379-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion",
+ "character",
+ "person"
+ ],
+ "_id": 11470,
+ "created": "2009-12-28T18:12:05.000Z",
+ "lastUpdated": "2024-12-16T06:38:34.912Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "meilleur",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "important",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "admirer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02426474-v",
+ "01065188-a",
+ "01069383-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 11474,
+ "created": "2009-12-28T18:19:51.000Z",
+ "lastUpdated": "2021-07-19T14:54:04.871Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "libre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "libérer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling",
+ "categorization"
+ ],
+ "synsets": [
+ "07528274-n",
+ "00026390-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion",
+ "categorization"
+ ],
+ "_id": 11476,
+ "created": "2009-12-28T18:25:33.000Z",
+ "lastUpdated": "2021-07-19T14:54:28.144Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sentiments",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "special education"
+ ],
+ "synsets": [
+ "02455121-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "special education"
+ ],
+ "_id": 11475,
+ "created": "2009-12-28T18:21:35.000Z",
+ "lastUpdated": "2021-07-19T14:54:24.470Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prendre part",
+ "hasLocution": true
+ },
+ {
+ "keyword": "participer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation"
+ ],
+ "synsets": [
+ "08187585-n"
+ ],
+ "tags": [
+ "international organization"
+ ],
+ "_id": 11469,
+ "created": "2009-12-28T18:10:52.000Z",
+ "lastUpdated": "2021-07-19T14:53:02.461Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "états membres",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "day time"
+ ],
+ "synsets": [
+ "15193837-n",
+ "00529916-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "time",
+ "calendar"
+ ],
+ "_id": 11477,
+ "created": "2009-12-28T18:27:39.000Z",
+ "lastUpdated": "2021-08-02T21:41:44.813Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "lever du jour",
+ "hasLocution": false,
+ "plural": "levers du jour"
+ },
+ {
+ "type": 2,
+ "keyword": "aurore",
+ "hasLocution": true,
+ "plural": "aurores"
+ },
+ {
+ "keyword": "éclairer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "lever de soleil",
+ "hasLocution": false,
+ "plural": "levers de soleil",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "04663006-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 11478,
+ "created": "2009-12-28T19:16:08.000Z",
+ "lastUpdated": "2021-07-19T14:55:13.401Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accessibilité",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "01241629-n",
+ "13947692-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 11486,
+ "created": "2009-12-28T19:47:00.000Z",
+ "lastUpdated": "2021-07-19T14:56:11.085Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "participation",
+ "hasLocution": true,
+ "plural": "participations"
+ },
+ {
+ "keyword": "implication",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "implications"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human value"
+ ],
+ "synsets": [
+ "14015308-n",
+ "00096322-n"
+ ],
+ "tags": [
+ "psychology",
+ "human value"
+ ],
+ "_id": 11488,
+ "created": "2009-12-28T19:51:14.000Z",
+ "lastUpdated": "2021-07-19T14:56:30.176Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "liberté",
+ "hasLocution": true,
+ "plural": "libertés"
+ },
+ {
+ "type": 2,
+ "keyword": "libération",
+ "hasLocution": true,
+ "plural": "libérations"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "14024833-n"
+ ],
+ "tags": [],
+ "_id": 11481,
+ "created": "2009-12-28T19:21:25.000Z",
+ "lastUpdated": "2021-07-26T14:38:42.799Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dépendance",
+ "hasLocution": true,
+ "plural": "dépendances"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01779456-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11517,
+ "created": "2009-12-30T11:43:45.000Z",
+ "lastUpdated": "2021-07-19T14:56:36.629Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aimer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01779456-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11519,
+ "created": "2009-12-30T11:47:34.000Z",
+ "lastUpdated": "2021-07-19T14:56:39.875Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aimer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human value"
+ ],
+ "synsets": [
+ "14017633-n",
+ "14024516-n"
+ ],
+ "tags": [
+ "psychology",
+ "human value"
+ ],
+ "_id": 11484,
+ "created": "2009-12-28T19:24:42.000Z",
+ "lastUpdated": "2021-07-19T14:55:38.893Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "indépendance",
+ "hasLocution": true,
+ "plural": "indépendances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human response"
+ ],
+ "synsets": [
+ "00139041-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response"
+ ],
+ "_id": 11527,
+ "created": "2009-12-30T11:56:36.000Z",
+ "lastUpdated": "2021-07-19T14:59:48.250Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "embrasser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire un bisou",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "baiser",
+ "hasLocution": false,
+ "plural": "baisers"
+ },
+ {
+ "type": 2,
+ "keyword": "bisou",
+ "hasLocution": false,
+ "plural": "bisous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "sexuality"
+ ],
+ "synsets": [
+ "01468558-s",
+ "09645472-n",
+ "08002070-n",
+ "01779456-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "sexuality"
+ ],
+ "_id": 11529,
+ "created": "2009-12-30T11:59:16.000Z",
+ "lastUpdated": "2021-07-19T14:59:59.050Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "amoureux",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "amoureux",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "tomber amoureux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "sexuality"
+ ],
+ "synsets": [
+ "01468558-s",
+ "00148417-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "sexuality"
+ ],
+ "_id": 11531,
+ "created": "2009-12-30T12:00:53.000Z",
+ "lastUpdated": "2021-07-19T15:00:03.668Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tomber amoureux",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "amoureuses",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "02970122-a"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 11533,
+ "created": "2009-12-30T12:03:27.000Z",
+ "lastUpdated": "2021-07-19T15:00:06.951Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "espagnol",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human response"
+ ],
+ "synsets": [
+ "00139041-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response"
+ ],
+ "_id": 11525,
+ "created": "2009-12-30T11:55:01.000Z",
+ "lastUpdated": "2021-07-19T14:59:29.549Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "embrasser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire un bisou",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "bisou",
+ "hasLocution": false,
+ "plural": "bisous"
+ },
+ {
+ "keyword": "baiser",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "baisers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 11534,
+ "created": "2009-12-30T12:03:56.000Z",
+ "lastUpdated": "2021-07-19T15:34:44.983Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "espagnol",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "02970122-a"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 11535,
+ "created": "2009-12-30T12:04:28.000Z",
+ "lastUpdated": "2021-07-19T15:00:12.369Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "espagnole",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "sexuality"
+ ],
+ "synsets": [
+ "01468558-s",
+ "09645472-n",
+ "08002070-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "sexuality"
+ ],
+ "_id": 11521,
+ "created": "2009-12-30T11:50:34.000Z",
+ "lastUpdated": "2021-07-19T14:56:43.693Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "amoureux",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "amoureux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "movement",
+ "land transport"
+ ],
+ "synsets": [
+ "02106280-v",
+ "01846997-v",
+ "01849662-v",
+ "01845021-v",
+ "01839438-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 11540,
+ "created": "2009-12-30T12:12:50.000Z",
+ "lastUpdated": "2021-07-19T15:00:55.526Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voyager",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "parcourir ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "sexuality"
+ ],
+ "synsets": [
+ "01468558-s",
+ "09645472-n",
+ "08002070-n",
+ "01779456-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "sexuality"
+ ],
+ "_id": 11523,
+ "created": "2009-12-30T11:52:14.000Z",
+ "lastUpdated": "2021-07-19T14:59:19.867Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "amoureuses",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "movement",
+ "land transport"
+ ],
+ "synsets": [
+ "01839438-v",
+ "01939335-v",
+ "01849171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 11542,
+ "created": "2009-12-30T12:17:26.000Z",
+ "lastUpdated": "2021-07-19T15:34:48.158Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voyager",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "parcourir ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "movement",
+ "aerial transport",
+ "route"
+ ],
+ "synsets": [
+ "01850858-v",
+ "01849662-v",
+ "01845021-v",
+ "01839438-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport",
+ "route"
+ ],
+ "_id": 11544,
+ "created": "2009-12-30T12:19:11.000Z",
+ "lastUpdated": "2021-07-19T15:01:02.095Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voyager",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "parcourir ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status",
+ "wedding"
+ ],
+ "synsets": [
+ "08005815-n",
+ "13987306-n",
+ "01039028-n"
+ ],
+ "tags": [
+ "person",
+ "marital status",
+ "event",
+ "social event",
+ "wedding"
+ ],
+ "_id": 11546,
+ "created": "2010-01-09T22:10:00.000Z",
+ "lastUpdated": "2021-07-19T15:34:51.025Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fiancés",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mariage",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mariés",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "core vocabulary-communication",
+ "person according to their age"
+ ],
+ "synsets": [
+ "01779456-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "core vocabulary",
+ "person"
+ ],
+ "_id": 11536,
+ "created": "2009-12-30T12:06:42.000Z",
+ "lastUpdated": "2025-01-11T07:54:10.430Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aimer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status",
+ "wedding"
+ ],
+ "synsets": [
+ "10213586-n"
+ ],
+ "tags": [
+ "person",
+ "marital status",
+ "event",
+ "social event",
+ "wedding"
+ ],
+ "_id": 11550,
+ "created": "2010-01-09T22:18:33.000Z",
+ "lastUpdated": "2021-07-19T15:01:55.103Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mari",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status",
+ "wedding"
+ ],
+ "synsets": [
+ "08005815-n",
+ "13987306-n",
+ "01039028-n"
+ ],
+ "tags": [
+ "person",
+ "marital status",
+ "event",
+ "social event",
+ "wedding"
+ ],
+ "_id": 11548,
+ "created": "2010-01-09T22:13:56.000Z",
+ "lastUpdated": "2021-07-19T15:34:54.258Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mariage",
+ "hasLocution": true,
+ "plural": "mariages"
+ },
+ {
+ "type": 2,
+ "keyword": "cérémonie",
+ "hasLocution": false,
+ "plural": "cérémonies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "core vocabulary-communication",
+ "person according to their age"
+ ],
+ "synsets": [
+ "01779456-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "core vocabulary",
+ "person"
+ ],
+ "_id": 11538,
+ "created": "2009-12-30T12:10:56.000Z",
+ "lastUpdated": "2025-01-11T07:54:22.445Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aimer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual orientation"
+ ],
+ "synsets": [
+ "09876413-n",
+ "01205819-a",
+ "01482214-s",
+ "00858789-n"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual orientation"
+ ],
+ "_id": 11558,
+ "created": "2010-01-10T11:21:22.000Z",
+ "lastUpdated": "2021-07-19T15:02:36.825Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bisexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bisexualité",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual orientation"
+ ],
+ "synsets": [
+ "10202544-n",
+ "01204965-a",
+ "00858476-n"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual orientation"
+ ],
+ "_id": 11554,
+ "created": "2010-01-10T11:12:01.000Z",
+ "lastUpdated": "2021-07-19T15:02:26.914Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "homosexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "homosexualité",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "homosexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "homosexuels",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "gay",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "gays",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual orientation"
+ ],
+ "synsets": [
+ "09876413-n",
+ "01205819-a",
+ "01482214-s",
+ "00858789-n"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual orientation"
+ ],
+ "_id": 11559,
+ "created": "2010-01-10T11:22:11.000Z",
+ "lastUpdated": "2021-07-19T15:02:41.335Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bisexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bisexualité",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual orientation"
+ ],
+ "synsets": [
+ "09876413-n",
+ "01205819-a",
+ "01482214-s",
+ "00858789-n"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual orientation"
+ ],
+ "_id": 11562,
+ "created": "2010-01-10T11:27:08.000Z",
+ "lastUpdated": "2021-07-19T15:34:58.377Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bisexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bisexualité",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual orientation"
+ ],
+ "synsets": [
+ "09876413-n",
+ "01205819-a",
+ "01482214-s",
+ "00858789-n"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual orientation"
+ ],
+ "_id": 11563,
+ "created": "2010-01-10T11:29:07.000Z",
+ "lastUpdated": "2021-07-21T12:54:50.580Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bisexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bisexualité",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "gender identity"
+ ],
+ "synsets": [
+ "10745529-n",
+ "02608757-a",
+ "14595655-n"
+ ],
+ "tags": [
+ "sexuality",
+ "gender identity"
+ ],
+ "_id": 11566,
+ "created": "2010-01-10T11:38:47.000Z",
+ "lastUpdated": "2021-07-19T15:02:50.066Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "transexualité",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "transexuels",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual orientation"
+ ],
+ "synsets": [
+ "00859053-n",
+ "10274662-n",
+ "01205665-s"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual orientation"
+ ],
+ "_id": 11556,
+ "created": "2010-01-10T11:15:14.000Z",
+ "lastUpdated": "2021-07-19T15:02:30.844Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "homosexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "homosexualité",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "lesbianisme",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "lesbienne",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "lesbiennes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status",
+ "wedding"
+ ],
+ "synsets": [
+ "10800308-n"
+ ],
+ "tags": [
+ "person",
+ "marital status",
+ "event",
+ "social event",
+ "wedding"
+ ],
+ "_id": 11552,
+ "created": "2010-01-09T22:21:58.000Z",
+ "lastUpdated": "2021-07-19T15:02:11.637Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "femme",
+ "hasLocution": true
+ },
+ {
+ "keyword": "épouse",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "gender identity"
+ ],
+ "synsets": [
+ "10745529-n",
+ "02608757-a",
+ "14595655-n"
+ ],
+ "tags": [
+ "sexuality",
+ "gender identity"
+ ],
+ "_id": 11568,
+ "created": "2010-01-10T11:42:02.000Z",
+ "lastUpdated": "2021-07-19T15:02:57.647Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "transexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "transexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "transexualité",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant",
+ "categorization"
+ ],
+ "synsets": [
+ "00017402-n"
+ ],
+ "tags": [
+ "plant",
+ "categorization"
+ ],
+ "_id": 11572,
+ "created": "2010-01-10T11:51:30.000Z",
+ "lastUpdated": "2021-07-19T15:03:03.174Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plantes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport event"
+ ],
+ "synsets": [
+ "10802616-n",
+ "09926157-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event"
+ ],
+ "_id": 11578,
+ "created": "2010-01-10T12:04:57.000Z",
+ "lastUpdated": "2021-07-19T15:04:18.521Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vainqueur",
+ "hasLocution": true,
+ "plural": "vainqueurs"
+ },
+ {
+ "keyword": "champion",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "champions"
+ },
+ {
+ "keyword": "gagnant",
+ "type": 2,
+ "plural": "gagnants",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "election"
+ ],
+ "synsets": [
+ "00182630-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 11580,
+ "created": "2010-01-10T12:11:41.000Z",
+ "lastUpdated": "2021-07-19T15:04:22.689Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "élections",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00876925-v",
+ "05924749-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 11576,
+ "created": "2010-01-10T12:01:36.000Z",
+ "lastUpdated": "2021-07-19T15:03:34.580Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "proposer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "suggérer",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "suggestion",
+ "hasLocution": true,
+ "plural": "suggestions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "trade"
+ ],
+ "synsets": [
+ "01714713-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 11582,
+ "created": "2010-01-10T12:18:07.000Z",
+ "lastUpdated": "2021-07-19T15:04:28.890Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "gratis",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "gratuit",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "show",
+ "musical art"
+ ],
+ "synsets": [
+ "06905814-n"
+ ],
+ "tags": [
+ "leisure",
+ "show",
+ "work",
+ "music"
+ ],
+ "_id": 11584,
+ "created": "2010-01-10T12:23:50.000Z",
+ "lastUpdated": "2021-07-19T15:04:37.276Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "concert",
+ "hasLocution": true,
+ "plural": "concerts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "show",
+ "musical art"
+ ],
+ "synsets": [
+ "06905814-n"
+ ],
+ "tags": [
+ "leisure",
+ "show",
+ "work",
+ "music"
+ ],
+ "_id": 11586,
+ "created": "2010-01-10T12:26:37.000Z",
+ "lastUpdated": "2021-07-19T15:04:46.898Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "concert",
+ "hasLocution": true,
+ "plural": "concerts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "show",
+ "musical art"
+ ],
+ "synsets": [
+ "06905814-n"
+ ],
+ "tags": [
+ "leisure",
+ "show",
+ "work",
+ "music"
+ ],
+ "_id": 11588,
+ "created": "2010-01-10T12:30:03.000Z",
+ "lastUpdated": "2021-07-19T15:05:03.378Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "concert",
+ "hasLocution": true,
+ "plural": "concerts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "02166241-a",
+ "02167384-s",
+ "07960684-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 11574,
+ "created": "2010-01-10T11:55:02.000Z",
+ "lastUpdated": "2021-07-19T15:03:12.578Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "non-voyant",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "aveugle",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication",
+ "adverb of denial"
+ ],
+ "synsets": [
+ "00526784-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary",
+ "adverb",
+ "adverb of denial"
+ ],
+ "_id": 11593,
+ "created": "2010-01-10T12:50:09.000Z",
+ "lastUpdated": "2024-10-19T10:14:42.225Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "moi non plus!",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "12760092-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "core vocabulary"
+ ],
+ "_id": 11590,
+ "created": "2010-01-10T12:32:13.000Z",
+ "lastUpdated": "2021-07-19T15:05:12.279Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gui",
+ "hasLocution": true,
+ "plural": "guis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "gender identity"
+ ],
+ "synsets": [
+ "10745529-n",
+ "02608757-a",
+ "14595655-n"
+ ],
+ "tags": [
+ "sexuality",
+ "gender identity"
+ ],
+ "_id": 11570,
+ "created": "2010-01-10T11:44:04.000Z",
+ "lastUpdated": "2021-07-19T15:03:43.950Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "transexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "transexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "transexualité",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary"
+ ],
+ "_id": 11597,
+ "created": "2010-01-10T13:03:20.000Z",
+ "lastUpdated": "2021-07-19T15:05:49.068Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "comment ça va ?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "ça va?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01765887-s",
+ "00202772-n",
+ "01208316-v",
+ "01208838-v",
+ "02131823-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses",
+ "core vocabulary"
+ ],
+ "_id": 11595,
+ "created": "2010-01-10T12:57:09.000Z",
+ "lastUpdated": "2021-07-19T15:05:43.252Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ne pas toucher",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "ne touche pas !",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "professional"
+ ],
+ "synsets": [
+ "00583425-n",
+ "00585404-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "work",
+ "professional"
+ ],
+ "_id": 11601,
+ "created": "2010-01-10T13:24:35.000Z",
+ "lastUpdated": "2021-07-19T15:06:20.786Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "quel est ton métier?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "dans quoi tu travailles?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "quel est ton travail?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01127641-s",
+ "01681111-s",
+ "02088253-s",
+ "02339254-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary"
+ ],
+ "_id": 11599,
+ "created": "2010-01-10T13:16:26.000Z",
+ "lastUpdated": "2021-07-19T15:06:08.864Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "succès",
+ "hasLocution": true,
+ "plural": "succès"
+ },
+ {
+ "type": 5,
+ "keyword": "très sympa !",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "fantastique !",
+ "hasLocution": false
+ },
+ {
+ "type": 5,
+ "keyword": "génial!",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "génial",
+ "hasLocution": false
+ },
+ {
+ "type": 5,
+ "keyword": "fantastique",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "très bien",
+ "hasLocution": false
+ },
+ {
+ "type": 5,
+ "keyword": "très bien !",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "basic needs",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02654741-v",
+ "02655932-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "person",
+ "basic needs",
+ "core vocabulary"
+ ],
+ "_id": 11605,
+ "created": "2010-01-10T13:47:47.000Z",
+ "lastUpdated": "2021-07-19T15:06:44.644Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "vivre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "résider",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "00608509-v",
+ "00601387-v",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 11607,
+ "created": "2010-01-10T13:53:06.000Z",
+ "lastUpdated": "2021-07-19T15:06:50.504Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "qu'étudies-tu?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "residential building"
+ ],
+ "synsets": [
+ "07211342-n",
+ "08508037-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 11603,
+ "created": "2010-01-10T13:34:27.000Z",
+ "lastUpdated": "2021-07-19T15:06:24.443Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "où habites-tu?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "quelle est ton adresse?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication",
+ "adverb of manner"
+ ],
+ "synsets": [
+ "00048072-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary",
+ "adverb",
+ "adverb of manner"
+ ],
+ "_id": 11591,
+ "created": "2010-01-10T12:46:07.000Z",
+ "lastUpdated": "2024-10-19T10:13:45.405Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "moi aussi!",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "02175483-v",
+ "02174146-v",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 11609,
+ "created": "2010-01-10T14:01:08.000Z",
+ "lastUpdated": "2021-07-19T15:06:55.359Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "l'as-tu entendu?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "tu entends ça?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "tu as entendu ça?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "computing"
+ ],
+ "synsets": [
+ "07211342-n",
+ "06289979-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "computing"
+ ],
+ "_id": 11613,
+ "created": "2010-01-10T14:17:59.000Z",
+ "lastUpdated": "2021-07-19T15:07:10.502Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "quel est ton email?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "quelle est ton adresse électronique?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "02133754-v",
+ "02134989-v",
+ "02134765-v",
+ "02173796-v",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 11617,
+ "created": "2010-01-11T11:27:58.000Z",
+ "lastUpdated": "2021-07-19T15:07:45.698Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "tu vois?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "tu as vu?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human value"
+ ],
+ "synsets": [
+ "02462665-v",
+ "01809949-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human value"
+ ],
+ "_id": 11621,
+ "created": "2010-01-11T15:43:33.000Z",
+ "lastUpdated": "2021-07-19T15:08:02.574Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "respecter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "apprécier",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "02133754-v",
+ "02134989-v",
+ "02134765-v",
+ "02173796-v",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 11619,
+ "created": "2010-01-11T11:32:23.000Z",
+ "lastUpdated": "2021-07-19T15:07:49.290Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "tu vois?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "tu as vu?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "polite set expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression",
+ "core vocabulary"
+ ],
+ "_id": 11627,
+ "created": "2010-01-11T20:22:47.000Z",
+ "lastUpdated": "2021-07-19T15:20:15.709Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "bon appétit !",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "polite set expression",
+ "human value",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01153978-a",
+ "00905339-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression",
+ "psychology",
+ "human value",
+ "core vocabulary"
+ ],
+ "_id": 11625,
+ "created": "2010-01-11T20:11:56.000Z",
+ "lastUpdated": "2022-04-26T08:07:07.876Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "je suis désolé",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "pardonner",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "je regrette !",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "pardon !",
+ "hasLocution": false
+ },
+ {
+ "type": 5,
+ "keyword": "pardon",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status"
+ ],
+ "synsets": [
+ "01485535-a"
+ ],
+ "tags": [
+ "person",
+ "marital status"
+ ],
+ "_id": 11629,
+ "created": "2010-01-11T20:27:31.000Z",
+ "lastUpdated": "2021-07-19T15:20:25.649Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "célibataire",
+ "hasLocution": true,
+ "plural": "célibataires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00980581-v",
+ "01011267-v",
+ "00942415-v",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary"
+ ],
+ "_id": 11611,
+ "created": "2010-01-10T14:10:38.000Z",
+ "lastUpdated": "2021-07-19T15:06:59.613Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "que dis-tu?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "qu'as-tu dit?",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status"
+ ],
+ "synsets": [
+ "01485535-a"
+ ],
+ "tags": [
+ "person",
+ "marital status"
+ ],
+ "_id": 11631,
+ "created": "2010-01-11T20:29:04.000Z",
+ "lastUpdated": "2021-07-19T15:20:37.051Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "célibataire",
+ "hasLocution": true,
+ "plural": "célibataires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status"
+ ],
+ "synsets": [
+ "10799960-n"
+ ],
+ "tags": [
+ "person",
+ "marital status"
+ ],
+ "_id": 11637,
+ "created": "2010-01-11T20:35:32.000Z",
+ "lastUpdated": "2021-07-19T15:21:14.144Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "veuve",
+ "hasLocution": true,
+ "plural": "veuves"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status"
+ ],
+ "synsets": [
+ "10799960-n"
+ ],
+ "tags": [
+ "person",
+ "marital status"
+ ],
+ "_id": 11639,
+ "created": "2010-01-11T20:39:55.000Z",
+ "lastUpdated": "2021-07-19T15:21:19.649Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "veuve",
+ "hasLocution": true,
+ "plural": "veuves"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "02166241-a",
+ "02167384-s",
+ "07960684-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 11615,
+ "created": "2010-01-11T10:58:54.000Z",
+ "lastUpdated": "2021-07-19T15:07:41.619Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "aveugle",
+ "hasLocution": true
+ },
+ {
+ "keyword": "non-voyant",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "non-voyants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status"
+ ],
+ "synsets": [],
+ "tags": [
+ "person",
+ "marital status"
+ ],
+ "_id": 11643,
+ "created": "2010-01-11T20:42:52.000Z",
+ "lastUpdated": "2021-03-26T15:02:26.110Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "veuf",
+ "hasLocution": true,
+ "plural": "veufs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status"
+ ],
+ "synsets": [
+ "10800182-n"
+ ],
+ "tags": [
+ "person",
+ "marital status"
+ ],
+ "_id": 11641,
+ "created": "2010-01-11T20:41:34.000Z",
+ "lastUpdated": "2021-07-19T15:21:23.781Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "veuf",
+ "hasLocution": true,
+ "plural": "veufs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status"
+ ],
+ "synsets": [
+ "01485535-a"
+ ],
+ "tags": [
+ "person",
+ "marital status"
+ ],
+ "_id": 11633,
+ "created": "2010-01-11T20:30:58.000Z",
+ "lastUpdated": "2021-07-19T15:20:46.033Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "célibataire",
+ "hasLocution": true,
+ "plural": "célibataires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "sport material",
+ "physical exercise"
+ ],
+ "synsets": [
+ "05764885-n",
+ "03298959-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "leisure",
+ "sport",
+ "sport material",
+ "physical exercise"
+ ],
+ "_id": 11649,
+ "created": "2010-01-13T17:57:33.000Z",
+ "lastUpdated": "2021-07-11T09:42:07.393Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "matériel d'éducation physique",
+ "hasLocution": true,
+ "plural": "matériels d'éducation physique"
+ },
+ {
+ "keyword": "équipement d'éducation physique",
+ "hasLocution": false,
+ "plural": "équipements d'éducation physique",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals"
+ ],
+ "synsets": [
+ "10713754-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work"
+ ],
+ "_id": 11651,
+ "created": "2010-01-13T18:01:26.000Z",
+ "lastUpdated": "2021-07-19T15:21:38.037Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moniteur",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "moniteur d'atelier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "leisure",
+ "categorization"
+ ],
+ "synsets": [
+ "15162377-n",
+ "01067611-n"
+ ],
+ "tags": [
+ "leisure",
+ "categorization"
+ ],
+ "_id": 11653,
+ "created": "2010-01-13T18:04:47.000Z",
+ "lastUpdated": "2021-07-19T15:21:53.765Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "temps libre",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "loisirs",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "loisir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01268418-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary"
+ ],
+ "_id": 11645,
+ "created": "2010-01-13T17:47:38.000Z",
+ "lastUpdated": "2021-07-19T15:21:27.089Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "c'est drôle!",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "signaling system"
+ ],
+ "synsets": [
+ "04610439-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 11655,
+ "created": "2010-01-13T18:09:42.000Z",
+ "lastUpdated": "2021-07-19T15:22:05.097Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier",
+ "hasLocution": true,
+ "plural": "ateliers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "signaling system"
+ ],
+ "synsets": [],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 11657,
+ "created": "2010-01-13T18:16:05.000Z",
+ "lastUpdated": "2021-07-19T15:22:17.643Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Service d'Occupation",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "Service d'Insertion Professionnelle",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "occupational therapy",
+ "building"
+ ],
+ "synsets": [
+ "00665820-n"
+ ],
+ "tags": [
+ "health",
+ "occupational therapy",
+ "place",
+ "building"
+ ],
+ "_id": 11659,
+ "created": "2010-01-13T18:21:15.000Z",
+ "lastUpdated": "2021-07-29T00:15:08.599Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "services d'ergothérapie"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status"
+ ],
+ "synsets": [
+ "01485535-a"
+ ],
+ "tags": [
+ "person",
+ "marital status"
+ ],
+ "_id": 11635,
+ "created": "2010-01-11T20:32:16.000Z",
+ "lastUpdated": "2021-07-19T15:20:52.405Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "célibataire",
+ "hasLocution": true,
+ "plural": "célibataires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "signaling system"
+ ],
+ "synsets": [
+ "15162377-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 11647,
+ "created": "2010-01-13T17:53:29.000Z",
+ "lastUpdated": "2021-07-19T15:21:33.684Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "esplai",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "miscellaneous"
+ ],
+ "synsets": [
+ "00684847-v",
+ "00319840-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11688,
+ "created": "2010-01-21T20:47:25.000Z",
+ "lastUpdated": "2021-07-19T15:23:03.520Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "censurer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "special education",
+ "toy"
+ ],
+ "synsets": [
+ "00300361-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "special education",
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 11687,
+ "created": "2010-01-21T20:44:52.000Z",
+ "lastUpdated": "2021-07-19T15:22:58.527Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "adapter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human value"
+ ],
+ "synsets": [
+ "05632483-n"
+ ],
+ "tags": [
+ "psychology",
+ "human value"
+ ],
+ "_id": 11690,
+ "created": "2010-01-21T20:52:44.000Z",
+ "lastUpdated": "2021-07-19T15:23:17.142Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "créativité",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disease"
+ ],
+ "synsets": [
+ "00078513-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 11691,
+ "created": "2010-01-21T20:54:06.000Z",
+ "lastUpdated": "2021-07-19T15:23:31.288Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "soigner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prendre soin",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disease"
+ ],
+ "synsets": [
+ "00078513-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 11692,
+ "created": "2010-01-21T20:54:45.000Z",
+ "lastUpdated": "2021-07-19T15:23:52.586Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "soigner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prendre soin",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physiology"
+ ],
+ "synsets": [
+ "00544490-v",
+ "00251067-v",
+ "00231983-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology"
+ ],
+ "_id": 11683,
+ "created": "2010-01-17T11:50:04.000Z",
+ "lastUpdated": "2021-07-19T15:22:35.426Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "grandir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se développer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "culture"
+ ],
+ "synsets": [
+ "05759791-n",
+ "05993821-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "culture"
+ ],
+ "_id": 11693,
+ "created": "2010-01-21T20:57:03.000Z",
+ "lastUpdated": "2021-07-19T15:23:57.693Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "culture",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid"
+ ],
+ "synsets": [
+ "07125165-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 11685,
+ "created": "2010-01-18T22:28:05.000Z",
+ "lastUpdated": "2021-07-19T15:22:52.403Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voix digitalisée",
+ "hasLocution": true
+ },
+ {
+ "keyword": "voix de synthèse",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "international organziation"
+ ],
+ "synsets": [
+ "01234384-n",
+ "06787117-n"
+ ],
+ "tags": [
+ "international organization"
+ ],
+ "_id": 11689,
+ "created": "2010-01-21T20:49:48.000Z",
+ "lastUpdated": "2021-07-19T15:23:11.234Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "convention",
+ "hasLocution": true,
+ "plural": "conventions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human value"
+ ],
+ "synsets": [
+ "04894076-n"
+ ],
+ "tags": [
+ "psychology",
+ "human value"
+ ],
+ "_id": 11695,
+ "created": "2010-01-21T21:04:56.000Z",
+ "lastUpdated": "2021-07-19T15:24:09.006Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dignité",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00595247-v",
+ "00535672-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 11697,
+ "created": "2010-01-21T21:08:55.000Z",
+ "lastUpdated": "2021-07-19T15:24:53.928Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "comprendre",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "compréhensible",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "intelligible",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human response",
+ "verb"
+ ],
+ "synsets": [
+ "05706212-n",
+ "00689424-v",
+ "02646524-v"
+ ],
+ "tags": [
+ "psychology",
+ "human response",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11696,
+ "created": "2010-01-21T21:07:28.000Z",
+ "lastUpdated": "2024-12-05T10:30:48.181Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "doute",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "douter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "hésiter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "trade",
+ "money"
+ ],
+ "synsets": [
+ "01714713-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "work",
+ "tertiary sector",
+ "trade",
+ "economy",
+ "money"
+ ],
+ "_id": 11699,
+ "created": "2010-01-21T21:13:20.000Z",
+ "lastUpdated": "2021-07-19T15:25:03.413Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "gratis",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "gratuit",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "social movement"
+ ],
+ "synsets": [
+ "05194266-n"
+ ],
+ "tags": [
+ "sociology",
+ "social movement"
+ ],
+ "_id": 11701,
+ "created": "2010-01-21T21:16:58.000Z",
+ "lastUpdated": "2021-07-19T15:25:17.969Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "égalité des chances",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "death"
+ ],
+ "synsets": [
+ "02320505-v",
+ "13283812-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 11700,
+ "created": "2010-01-21T21:15:19.000Z",
+ "lastUpdated": "2021-07-19T15:25:11.089Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "hériter",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "héritage",
+ "hasLocution": true,
+ "plural": "héritages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "industry"
+ ],
+ "synsets": [
+ "01624592-v",
+ "01656984-v",
+ "01660471-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "industry",
+ "manufacturing industry"
+ ],
+ "_id": 11698,
+ "created": "2010-01-21T21:10:40.000Z",
+ "lastUpdated": "2021-07-19T15:24:58.527Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "produire",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "créer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "élaborer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "fabriquer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "monter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "special education"
+ ],
+ "synsets": [
+ "02454712-v",
+ "00467564-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "special education"
+ ],
+ "_id": 11702,
+ "created": "2010-01-21T21:19:31.000Z",
+ "lastUpdated": "2021-07-19T15:25:21.988Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "inclure",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "intégrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00681308-v",
+ "00676526-v",
+ "00699355-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 11694,
+ "created": "2010-01-21T20:59:55.000Z",
+ "lastUpdated": "2021-07-19T15:24:03.105Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "choisir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "sélectionner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "décider",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "préférer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "educational organization"
+ ],
+ "synsets": [
+ "01643256-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "organization"
+ ],
+ "_id": 11706,
+ "created": "2010-01-21T21:26:56.000Z",
+ "lastUpdated": "2021-07-19T15:26:03.737Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "planifier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physiotherapy"
+ ],
+ "synsets": [
+ "02557860-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "physiotherapy"
+ ],
+ "_id": 11707,
+ "created": "2010-01-21T21:31:44.000Z",
+ "lastUpdated": "2021-07-19T15:26:19.587Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réhabiliter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rééduquer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01853188-v",
+ "02009962-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11708,
+ "created": "2010-01-21T21:32:47.000Z",
+ "lastUpdated": "2021-07-19T15:26:34.476Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se rendre jusqu'où se trouve celui qui parle ou à qui l'on parle ou se diriger vers lui",
+ "keyword": "venir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "arriver",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition",
+ "article"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "article"
+ ],
+ "_id": 11709,
+ "created": "2010-01-21T21:35:01.000Z",
+ "lastUpdated": "2024-10-13T05:10:40.454Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "au",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "en",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "economy"
+ ],
+ "synsets": [
+ "00205454-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "economy"
+ ],
+ "_id": 11705,
+ "created": "2010-01-21T21:24:57.000Z",
+ "lastUpdated": "2021-07-19T15:25:58.668Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "améliorer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "article",
+ "preposition"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "preposition",
+ "article"
+ ],
+ "_id": 11712,
+ "created": "2010-01-21T21:37:21.000Z",
+ "lastUpdated": "2024-10-13T05:18:22.037Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "du",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "de",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "02384895-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 11704,
+ "created": "2010-01-21T21:23:40.000Z",
+ "lastUpdated": "2021-07-19T15:25:53.786Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mettre à la retraite",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "prendre sa retraite",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "07216025-n",
+ "06737512-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 11713,
+ "created": "2010-01-21T21:39:38.000Z",
+ "lastUpdated": "2021-07-19T15:26:57.469Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "description",
+ "hasLocution": true,
+ "plural": "desriptions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "special education"
+ ],
+ "synsets": [
+ "00731008-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "education",
+ "special education"
+ ],
+ "_id": 11703,
+ "created": "2010-01-21T21:20:31.000Z",
+ "lastUpdated": "2021-07-19T15:25:34.720Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "indépendant",
+ "hasLocution": true
+ },
+ {
+ "keyword": "autonome",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "14571935-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 11721,
+ "created": "2010-01-21T21:45:39.000Z",
+ "lastUpdated": "2021-07-19T15:28:02.707Z",
+ "keywords": [
+ {
+ "keyword": "handicap",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "handicaps"
+ },
+ {
+ "keyword": "invalidité",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "invalidités"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "economy",
+ "money",
+ "trade"
+ ],
+ "synsets": [
+ "08383680-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 11723,
+ "created": "2010-01-21T21:48:36.000Z",
+ "lastUpdated": "2024-12-12T07:00:20.911Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "économie ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "07216025-n",
+ "06737512-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 11715,
+ "created": "2010-01-21T21:40:41.000Z",
+ "lastUpdated": "2021-07-19T15:27:07.587Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "description",
+ "hasLocution": true,
+ "plural": "descriptions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "07216025-n",
+ "06737512-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 11717,
+ "created": "2010-01-21T21:41:42.000Z",
+ "lastUpdated": "2021-07-19T15:27:15.946Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "description",
+ "hasLocution": true,
+ "plural": "descriptions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "political representation"
+ ],
+ "synsets": [
+ "06157599-n",
+ "00613259-n",
+ "01126829-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 11725,
+ "created": "2010-01-21T21:51:24.000Z",
+ "lastUpdated": "2021-07-19T15:28:36.644Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "politique",
+ "hasLocution": true,
+ "plural": "politiques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09791871-n",
+ "01409235-a",
+ "07986853-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 11728,
+ "created": "2010-01-21T22:00:23.000Z",
+ "lastUpdated": "2021-07-19T15:28:53.435Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille",
+ "hasLocution": true,
+ "plural": "familles"
+ },
+ {
+ "type": 2,
+ "keyword": "famille adoptive",
+ "hasLocution": true,
+ "plural": "familles adoptives"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "07986853-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 11729,
+ "created": "2010-01-21T22:02:12.000Z",
+ "lastUpdated": "2021-07-19T15:29:27.654Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille",
+ "hasLocution": true,
+ "plural": "familles"
+ },
+ {
+ "type": 2,
+ "keyword": "famille monoparentale",
+ "hasLocution": true,
+ "plural": "familles monoparentales"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "07216025-n",
+ "06737512-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 11719,
+ "created": "2010-01-21T21:43:19.000Z",
+ "lastUpdated": "2021-07-19T15:27:22.807Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "description",
+ "hasLocution": true,
+ "plural": "descriptions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "07986853-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 11731,
+ "created": "2010-01-21T22:03:46.000Z",
+ "lastUpdated": "2021-07-19T15:29:39.074Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille",
+ "hasLocution": true,
+ "plural": "familles"
+ },
+ {
+ "type": 2,
+ "keyword": "famille monoparentale",
+ "hasLocution": true,
+ "plural": "familles monoparentales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "07986853-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 11733,
+ "created": "2010-01-21T22:05:57.000Z",
+ "lastUpdated": "2021-07-19T15:30:24.016Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille",
+ "hasLocution": true,
+ "plural": "famille"
+ },
+ {
+ "keyword": "famille homoparentale",
+ "hasLocution": false,
+ "plural": "familles homoparentales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "07986853-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 11735,
+ "created": "2010-01-21T22:07:16.000Z",
+ "lastUpdated": "2021-07-19T15:30:48.259Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille",
+ "hasLocution": true,
+ "plural": "familles"
+ },
+ {
+ "keyword": "famille homoparentale",
+ "hasLocution": false,
+ "plural": "familles homoparentales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01513031-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 11737,
+ "created": "2010-01-22T13:22:06.000Z",
+ "lastUpdated": "2021-07-19T15:30:53.530Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir le robinet",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01513208-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 11739,
+ "created": "2010-01-22T13:25:02.000Z",
+ "lastUpdated": "2021-07-19T15:30:55.819Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fermer le robinet",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01496967-v",
+ "01516062-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11748,
+ "created": "2010-01-22T13:52:56.000Z",
+ "lastUpdated": "2021-07-19T15:31:48.324Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "lâcher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "laisser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01622033-v",
+ "02566500-v",
+ "01624592-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 11749,
+ "created": "2010-01-25T10:46:51.000Z",
+ "lastUpdated": "2021-07-19T15:32:05.130Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "créer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "fabriquer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs"
+ ],
+ "_id": 11750,
+ "created": "2010-01-25T10:48:12.000Z",
+ "lastUpdated": "2021-07-19T15:32:08.621Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "pouvoir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02410046-v",
+ "01353852-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11751,
+ "created": "2010-01-25T10:50:09.000Z",
+ "lastUpdated": "2021-07-19T15:32:13.002Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "enlever",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "retirer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "extraire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01738383-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11752,
+ "created": "2010-01-25T10:51:14.000Z",
+ "lastUpdated": "2021-10-01T10:28:26.514Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "refaire",
+ "hasLocution": false
+ },
+ {
+ "keyword": "dupliquer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "copier",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "01496967-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 11744,
+ "created": "2010-01-22T13:48:26.000Z",
+ "lastUpdated": "2021-07-19T15:31:20.421Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Faire passer quelque chose d'un endroit en un autre : Mettre la voiture au garage, une nappe sur la table, de l'argent à la banque.",
+ "keyword": "mettre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "placer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mettre la brosse à dent",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "communication system"
+ ],
+ "synsets": [
+ "06374199-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication system"
+ ],
+ "_id": 11753,
+ "created": "2010-01-25T10:55:57.000Z",
+ "lastUpdated": "2021-07-19T15:32:23.028Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "braille",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "communication system"
+ ],
+ "synsets": [
+ "06888747-n",
+ "00931122-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "augmentative communication",
+ "communication system"
+ ],
+ "_id": 11754,
+ "created": "2010-01-25T11:05:05.000Z",
+ "lastUpdated": "2021-08-26T09:14:08.443Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "langue des signes",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "signer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "communiquer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00080219-s",
+ "01783082-v",
+ "00080947-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 11951,
+ "created": "2010-01-28T21:26:13.000Z",
+ "lastUpdated": "2021-07-19T15:32:43.754Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "apeurée",
+ "hasLocution": true
+ },
+ {
+ "keyword": "effrayée",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeding"
+ ],
+ "synsets": [
+ "07501195-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "feeding"
+ ],
+ "_id": 11955,
+ "created": "2010-01-28T21:33:17.000Z",
+ "lastUpdated": "2021-07-19T15:33:13.539Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "gourmande",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00155165-a",
+ "00533833-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 11953,
+ "created": "2010-01-28T21:30:32.000Z",
+ "lastUpdated": "2021-07-19T15:33:09.314Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "honte",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire honte ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "expression",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "honteuse",
+ "hasLocution": true
+ },
+ {
+ "keyword": "avoir honte",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01496967-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 11745,
+ "created": "2010-01-22T13:50:09.000Z",
+ "lastUpdated": "2021-07-19T15:31:34.897Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Faire passer quelque chose d'un endroit en un autre : Mettre la voiture au garage, une nappe sur la table, de l'argent à la banque.",
+ "keyword": "mettre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "placer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mettre la serviette",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01468558-s",
+ "01468104-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 11957,
+ "created": "2010-01-28T21:35:42.000Z",
+ "lastUpdated": "2021-07-19T15:33:27.448Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "romantique",
+ "hasLocution": true
+ },
+ {
+ "keyword": "amoureuse",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01364779-a",
+ "00155165-a",
+ "00707060-s",
+ "00912446-a",
+ "01152997-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 11959,
+ "created": "2010-01-28T21:40:29.000Z",
+ "lastUpdated": "2021-07-19T15:33:42.055Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "triste",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déprimée",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "01535222-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 11963,
+ "created": "2010-01-28T21:50:23.000Z",
+ "lastUpdated": "2021-07-20T08:04:48.127Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "nettoyer sa brosse à dents",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "01450487-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 11961,
+ "created": "2010-01-28T21:47:06.000Z",
+ "lastUpdated": "2021-07-19T15:35:07.197Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étaler du dentifrice",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mettre du dentifrice",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01216829-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 11741,
+ "created": "2010-01-22T13:42:43.000Z",
+ "lastUpdated": "2021-07-19T15:30:57.941Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Saisir, attraper",
+ "keyword": "prendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human response",
+ "core vocabulary-education",
+ "special education",
+ "basic needs"
+ ],
+ "synsets": [
+ "01218392-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response",
+ "education",
+ "core vocabulary",
+ "special education",
+ "person",
+ "basic needs"
+ ],
+ "_id": 12252,
+ "created": "2010-02-04T11:49:18.000Z",
+ "lastUpdated": "2024-12-11T06:28:59.773Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "appui",
+ "hasLocution": true
+ },
+ {
+ "keyword": "aide",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "aides"
+ },
+ {
+ "type": 2,
+ "keyword": "collaboration",
+ "hasLocution": false,
+ "plural": "collaborations"
+ },
+ {
+ "type": 2,
+ "keyword": "coopération",
+ "hasLocution": false,
+ "plural": "coopérations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "war"
+ ],
+ "synsets": [
+ "00975181-n",
+ "14004888-n"
+ ],
+ "tags": [
+ "event",
+ "war"
+ ],
+ "_id": 12256,
+ "created": "2010-02-04T11:52:46.000Z",
+ "lastUpdated": "2021-07-19T15:36:38.084Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guerre",
+ "hasLocution": true,
+ "plural": "guerres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human response"
+ ],
+ "synsets": [
+ "14563562-n",
+ "14562870-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response"
+ ],
+ "_id": 12260,
+ "created": "2010-02-04T12:20:23.000Z",
+ "lastUpdated": "2021-07-19T15:36:45.044Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "protection",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "sécurité",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human value"
+ ],
+ "synsets": [
+ "14563562-n",
+ "14562870-n"
+ ],
+ "tags": [
+ "psychology",
+ "human value"
+ ],
+ "_id": 12261,
+ "created": "2010-02-04T12:35:14.000Z",
+ "lastUpdated": "2021-07-20T08:04:54.527Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "protection",
+ "hasLocution": true,
+ "plural": "protections"
+ },
+ {
+ "type": 2,
+ "keyword": "sécurité",
+ "hasLocution": true,
+ "plural": "sécurités"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "possessive adjective",
+ "possessive pronoun",
+ "core vocabulary-communication"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "possessive adjective",
+ "pronoun",
+ "possessive pronoun",
+ "core vocabulary"
+ ],
+ "_id": 12264,
+ "created": "2010-02-09T09:58:24.000Z",
+ "lastUpdated": "2021-07-19T15:37:13.697Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "le mien",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "mon",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "à moi",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "ma",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "mienne",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adjective",
+ "possessive adjective",
+ "pronoun",
+ "possessive pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "possessive adjective",
+ "possessive pronoun"
+ ],
+ "_id": 12266,
+ "created": "2010-02-09T10:00:33.000Z",
+ "lastUpdated": "2024-10-18T05:37:29.736Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mes",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "à moi",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "les miens",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "miennes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "00281976-n"
+ ],
+ "tags": [],
+ "_id": 12246,
+ "created": "2010-02-04T11:25:00.000Z",
+ "lastUpdated": "2021-07-19T15:35:44.533Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accès",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "13448251-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 12242,
+ "created": "2010-02-04T11:00:54.000Z",
+ "lastUpdated": "2021-07-19T15:35:23.958Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "adaptation",
+ "hasLocution": true,
+ "plural": "adaptations"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "possessive adjective",
+ "possessive pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "possessive adjective",
+ "pronoun",
+ "possessive pronoun"
+ ],
+ "_id": 12270,
+ "created": "2010-02-09T10:07:30.000Z",
+ "lastUpdated": "2021-07-28T17:22:42.864Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "nos",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "les nôtres",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "possessive adjective",
+ "possessive pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "possessive adjective",
+ "pronoun",
+ "possessive pronoun"
+ ],
+ "_id": 12276,
+ "created": "2010-02-09T10:20:06.000Z",
+ "lastUpdated": "2021-07-28T17:25:22.445Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ses",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "les siens",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "les siennes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "possessive adjective",
+ "possessive pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "possessive adjective",
+ "pronoun",
+ "possessive pronoun"
+ ],
+ "_id": 12268,
+ "created": "2010-02-09T10:03:32.000Z",
+ "lastUpdated": "2021-07-28T17:21:59.801Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "notre",
+ "hasLocution": true,
+ "plural": "nos"
+ },
+ {
+ "type": 6,
+ "keyword": "la nôtre",
+ "hasLocution": true,
+ "plural": "les nôtres"
+ },
+ {
+ "keyword": "le nôtre",
+ "hasLocution": false,
+ "type": 6,
+ "plural": "les nôtres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "possessive adjective",
+ "possessive pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "possessive adjective",
+ "pronoun",
+ "possessive pronoun"
+ ],
+ "_id": 12278,
+ "created": "2010-02-09T10:23:26.000Z",
+ "lastUpdated": "2021-07-28T17:26:37.900Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "leurs",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "les leurs",
+ "hasLocution": false
+ },
+ {
+ "type": 6,
+ "keyword": "les leurs",
+ "hasLocution": false
+ },
+ {
+ "keyword": "leurs",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "possessive adjective",
+ "possessive pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "possessive adjective",
+ "pronoun",
+ "possessive pronoun"
+ ],
+ "_id": 12274,
+ "created": "2010-02-09T10:16:11.000Z",
+ "lastUpdated": "2021-07-29T23:44:15.635Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "leur",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "le leur",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "la leur",
+ "hasLocution": false
+ },
+ {
+ "keyword": "leur",
+ "hasLocution": true,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "possessive adjective",
+ "possessive pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "possessive adjective",
+ "possessive pronoun"
+ ],
+ "_id": 12283,
+ "created": "2010-02-09T10:29:10.000Z",
+ "lastUpdated": "2024-10-18T06:55:34.520Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "tes",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "les tiens",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "les tiennes",
+ "hasLocution": false
+ },
+ {
+ "keyword": "vos",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "les vôtres",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "tes",
+ "hasLocution": true,
+ "type": 6
+ },
+ {
+ "keyword": "vos",
+ "hasLocution": true,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "possessive adjective",
+ "possessive pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "possessive adjective",
+ "pronoun",
+ "possessive pronoun"
+ ],
+ "_id": 12285,
+ "created": "2010-02-09T10:31:24.000Z",
+ "lastUpdated": "2024-12-13T14:16:22.383Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "votre",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "la vôtre",
+ "hasLocution": false
+ },
+ {
+ "keyword": "le vôtre",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "possessive adjective",
+ "possessive pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "possessive adjective",
+ "pronoun",
+ "possessive pronoun"
+ ],
+ "_id": 12287,
+ "created": "2010-02-09T10:33:05.000Z",
+ "lastUpdated": "2021-07-28T17:29:28.573Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "vos",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "les vôtres",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work organization"
+ ],
+ "synsets": [
+ "01233454-n",
+ "08327319-n"
+ ],
+ "tags": [
+ "work",
+ "organization"
+ ],
+ "_id": 12289,
+ "created": "2010-02-09T10:38:19.000Z",
+ "lastUpdated": "2021-07-20T08:05:09.206Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "réunion",
+ "hasLocution": true,
+ "plural": "réunions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "possessive adjective",
+ "possessive pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "possessive adjective",
+ "pronoun",
+ "possessive pronoun"
+ ],
+ "_id": 12272,
+ "created": "2010-02-09T10:10:21.000Z",
+ "lastUpdated": "2021-07-28T17:22:54.921Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "son",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "le sien",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "sa",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "la sienne",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "possessive adjective",
+ "possessive pronoun",
+ "core vocabulary-communication"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "possessive adjective",
+ "possessive pronoun",
+ "core vocabulary"
+ ],
+ "_id": 12281,
+ "created": "2010-02-09T10:26:57.000Z",
+ "lastUpdated": "2024-10-17T05:34:16.847Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ton",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "le tien",
+ "hasLocution": false
+ },
+ {
+ "type": 6,
+ "keyword": "la tienne",
+ "hasLocution": false
+ },
+ {
+ "hasLocution": false,
+ "keyword": "ta",
+ "type": 4
+ },
+ {
+ "keyword": "votre",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "le vôtre",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "la vôtre",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "communication system"
+ ],
+ "synsets": [
+ "00626756-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "augmentative communication",
+ "communication system"
+ ],
+ "_id": 12297,
+ "created": "2010-02-09T11:33:32.000Z",
+ "lastUpdated": "2021-07-19T15:41:28.704Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Reconnaître les signes graphiques d'une langue, former mentalement ou à voix haute les sons que ces signes ou leurs combinaisons représentent et leur associer un sens",
+ "keyword": "lire le braille",
+ "hasLocution": false
+ },
+ {
+ "keyword": "lire en braille",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disease",
+ "patient",
+ "covid-19"
+ ],
+ "synsets": [
+ "01173787-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "medicine",
+ "disease",
+ "person",
+ "patient",
+ "covid-19"
+ ],
+ "_id": 12293,
+ "created": "2010-02-09T10:45:58.000Z",
+ "lastUpdated": "2021-07-19T15:40:32.695Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sain",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "baking"
+ ],
+ "synsets": [],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 12299,
+ "created": "2010-02-09T11:39:01.000Z",
+ "lastUpdated": "2021-07-20T08:06:11.284Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "panellets",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "character",
+ "christmas"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 12301,
+ "created": "2010-02-09T11:43:33.000Z",
+ "lastUpdated": "2021-07-19T15:42:08.474Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caganer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas",
+ "core vocabulary-object",
+ "core vocabulary-time"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas",
+ "core vocabulary"
+ ],
+ "_id": 12305,
+ "created": "2010-02-09T12:18:22.000Z",
+ "lastUpdated": "2021-07-20T08:06:42.017Z",
+ "keywords": [
+ {
+ "keyword": "Tronc de Noël",
+ "hasLocution": true,
+ "type": 1
+ },
+ {
+ "keyword": "tronc",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "troncs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 12303,
+ "created": "2010-02-09T11:50:44.000Z",
+ "lastUpdated": "2021-07-19T15:42:21.493Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Oncle de Noël",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Tronc de Noël",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "07341157-n",
+ "06753097-n",
+ "13580380-n",
+ "07338522-n"
+ ],
+ "tags": [],
+ "_id": 12295,
+ "created": "2010-02-09T11:30:30.000Z",
+ "lastUpdated": "2021-07-19T15:41:05.177Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cause",
+ "hasLocution": true,
+ "plural": "causes"
+ },
+ {
+ "type": 2,
+ "keyword": "origine",
+ "hasLocution": true,
+ "plural": "origines"
+ },
+ {
+ "type": 2,
+ "keyword": "raison",
+ "hasLocution": true,
+ "plural": "raisons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07857883-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 12307,
+ "created": "2010-02-09T12:24:28.000Z",
+ "lastUpdated": "2021-03-25T21:50:43.529Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gâteau de Pâques",
+ "hasLocution": false,
+ "plural": "gâteaux de Pâques"
+ },
+ {
+ "keyword": "gâteau au chocolat",
+ "hasLocution": true,
+ "plural": "gâteaux au chocolat",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular event"
+ ],
+ "synsets": [
+ "11016281-n"
+ ],
+ "tags": [
+ "event",
+ "popular event"
+ ],
+ "_id": 12309,
+ "created": "2010-02-09T12:27:52.000Z",
+ "lastUpdated": "2021-07-19T15:42:37.927Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saint Georges",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00917783-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 12291,
+ "created": "2010-02-09T10:42:18.000Z",
+ "lastUpdated": "2021-07-19T15:40:29.545Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chuchoter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "document"
+ ],
+ "synsets": [
+ "01644397-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "document"
+ ],
+ "_id": 12315,
+ "created": "2010-02-09T13:36:41.000Z",
+ "lastUpdated": "2021-07-19T15:43:20.430Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "accomplir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "remplir",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "document"
+ ],
+ "synsets": [
+ "00998530-v",
+ "02470289-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "document"
+ ],
+ "_id": 12317,
+ "created": "2010-02-09T13:39:53.000Z",
+ "lastUpdated": "2021-07-19T15:43:26.373Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "signer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "baking"
+ ],
+ "synsets": [],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 12311,
+ "created": "2010-02-09T12:39:27.000Z",
+ "lastUpdated": "2021-07-19T15:42:43.978Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coca",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human value"
+ ],
+ "synsets": [
+ "04855723-n",
+ "05683749-n"
+ ],
+ "tags": [
+ "psychology",
+ "human value"
+ ],
+ "_id": 12319,
+ "created": "2010-02-09T13:42:43.000Z",
+ "lastUpdated": "2021-07-19T15:43:28.682Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conscience",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "miscellaneous"
+ ],
+ "synsets": [
+ "02517971-v",
+ "01471205-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 12321,
+ "created": "2010-02-09T13:47:01.000Z",
+ "lastUpdated": "2021-07-19T15:43:32.600Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "discriminer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "exclure",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "01156043-n"
+ ],
+ "tags": [],
+ "_id": 12323,
+ "created": "2010-02-09T13:49:30.000Z",
+ "lastUpdated": "2021-07-19T15:43:43.371Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "discrimination",
+ "hasLocution": true,
+ "plural": "discriminations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document",
+ "scenic art",
+ "show",
+ "popular event"
+ ],
+ "synsets": [
+ "07263469-n",
+ "00029677-n"
+ ],
+ "tags": [
+ "document",
+ "information document",
+ "scenic art",
+ "leisure",
+ "show",
+ "work",
+ "event",
+ "popular event"
+ ],
+ "_id": 12325,
+ "created": "2010-02-09T16:26:06.000Z",
+ "lastUpdated": "2024-12-10T06:42:34.199Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "affiche",
+ "hasLocution": true,
+ "plural": "affiches"
+ },
+ {
+ "type": 2,
+ "keyword": "annonce",
+ "hasLocution": true,
+ "plural": "annonces"
+ },
+ {
+ "type": 2,
+ "keyword": "évènement",
+ "hasLocution": true,
+ "plural": "évènements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document",
+ "scenic art",
+ "show",
+ "theater",
+ "musical art"
+ ],
+ "synsets": [
+ "07263469-n",
+ "00029677-n"
+ ],
+ "tags": [
+ "document",
+ "information document",
+ "scenic art",
+ "leisure",
+ "show",
+ "work",
+ "theater",
+ "music"
+ ],
+ "_id": 12326,
+ "created": "2010-02-09T16:26:54.000Z",
+ "lastUpdated": "2024-12-10T06:42:21.146Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "affiche",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "annonce",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "évènement",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "08024893-n",
+ "08181484-n",
+ "08066153-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 12333,
+ "created": "2010-02-09T16:51:50.000Z",
+ "lastUpdated": "2021-07-20T08:06:51.231Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "organisation",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "association",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "13977005-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 12338,
+ "created": "2010-02-09T16:57:30.000Z",
+ "lastUpdated": "2021-07-20T08:07:00.281Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nationalité",
+ "hasLocution": true,
+ "plural": "nationalités"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "law and justice"
+ ],
+ "synsets": [
+ "10806193-n",
+ "10805709-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 12339,
+ "created": "2010-02-09T17:01:58.000Z",
+ "lastUpdated": "2021-07-20T08:07:09.568Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "témoin",
+ "hasLocution": true,
+ "plural": "témoins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "06804229-n"
+ ],
+ "tags": [],
+ "_id": 12345,
+ "created": "2010-02-09T17:16:43.000Z",
+ "lastUpdated": "2021-07-26T20:53:19.979Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "signalisation",
+ "hasLocution": true,
+ "plural": "signalisations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media"
+ ],
+ "synsets": [
+ "06272239-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media"
+ ],
+ "_id": 12347,
+ "created": "2010-02-09T17:28:05.000Z",
+ "lastUpdated": "2021-07-23T21:13:38.685Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moyens de communication ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "medias",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "medias"
+ },
+ {
+ "keyword": "presse",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "presses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human value"
+ ],
+ "synsets": [
+ "00592510-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human value"
+ ],
+ "_id": 12351,
+ "created": "2010-02-09T17:37:32.000Z",
+ "lastUpdated": "2021-07-20T08:09:23.699Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prendre conscience",
+ "hasLocution": true
+ },
+ {
+ "keyword": "réaliser",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02170904-v",
+ "02134765-v",
+ "00814706-v",
+ "00725507-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 12349,
+ "created": "2010-02-09T17:31:19.000Z",
+ "lastUpdated": "2021-07-20T08:09:08.564Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "considérer ",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "tenir compte",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense"
+ ],
+ "synsets": [
+ "10169387-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 12353,
+ "created": "2010-02-09T17:55:59.000Z",
+ "lastUpdated": "2021-07-20T08:10:18.329Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "police",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "surveillant pénitencier",
+ "hasLocution": true,
+ "plural": "surveillants pénitenciers"
+ },
+ {
+ "keyword": "policier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "policiers"
+ },
+ {
+ "keyword": "gardien de prison",
+ "hasLocution": false,
+ "plural": "gardiens de prison",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "conjunction",
+ "comparative conjunction",
+ "adverb",
+ "adverb of manner"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of manner",
+ "conjunction",
+ "comparative conjunction"
+ ],
+ "_id": 12313,
+ "created": "2010-02-09T13:34:07.000Z",
+ "lastUpdated": "2024-10-20T05:50:57.504Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "comme",
+ "hasLocution": true
+ },
+ {
+ "keyword": "comment",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "05162155-n",
+ "04780590-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 12355,
+ "created": "2010-02-10T09:53:25.000Z",
+ "lastUpdated": "2021-07-20T08:10:25.306Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aides à la mobilité",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling"
+ ],
+ "synsets": [
+ "00026390-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 12359,
+ "created": "2010-02-10T09:59:02.000Z",
+ "lastUpdated": "2021-07-20T08:10:44.154Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sentiment",
+ "hasLocution": true,
+ "plural": "sentiments"
+ },
+ {
+ "keyword": "émotions",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "03511871-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 12361,
+ "created": "2010-02-10T10:01:38.000Z",
+ "lastUpdated": "2021-07-20T08:10:48.871Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "appareils auditifs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "social movement"
+ ],
+ "synsets": [
+ "00273190-v",
+ "02120261-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "sociology",
+ "social movement"
+ ],
+ "_id": 12364,
+ "created": "2010-02-11T18:17:49.000Z",
+ "lastUpdated": "2021-07-20T08:10:54.847Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sensibiliser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "social movement"
+ ],
+ "synsets": [
+ "13575546-n"
+ ],
+ "tags": [
+ "sociology",
+ "social movement"
+ ],
+ "_id": 12366,
+ "created": "2010-02-11T18:19:24.000Z",
+ "lastUpdated": "2021-07-20T08:11:04.315Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sensibilisation",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "06705943-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary"
+ ],
+ "_id": 13018,
+ "created": "2010-02-18T12:31:25.000Z",
+ "lastUpdated": "2021-07-20T08:11:08.900Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "félicitations",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "Félicitations !",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "00503838-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 13020,
+ "created": "2010-02-18T12:38:34.000Z",
+ "lastUpdated": "2021-07-20T08:11:19.421Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "amender",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "fertiliser",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01832510-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 13022,
+ "created": "2010-02-18T12:43:50.000Z",
+ "lastUpdated": "2021-07-20T08:11:34.101Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "huppe fasciée",
+ "hasLocution": false,
+ "plural": "huppes fasciées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01219234-v",
+ "02004165-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response",
+ "core vocabulary"
+ ],
+ "_id": 13024,
+ "created": "2010-02-18T12:49:16.000Z",
+ "lastUpdated": "2021-07-28T10:09:34.554Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Saisir, attraper",
+ "keyword": "prendre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "prendre par la main",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "saisir la main",
+ "hasLocution": false
+ },
+ {
+ "keyword": "poignée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "poignées"
+ },
+ {
+ "keyword": "se tenir la main",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of time",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00061477-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 13028,
+ "created": "2010-02-18T13:12:39.000Z",
+ "lastUpdated": "2021-07-20T08:12:44.777Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "avant",
+ "hasLocution": true
+ },
+ {
+ "keyword": "plus tôt",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07759520-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 13034,
+ "created": "2010-02-18T13:26:22.000Z",
+ "lastUpdated": "2021-07-20T08:15:15.841Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "myrtilles",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "construction"
+ ],
+ "synsets": [
+ "01596858-v",
+ "01392732-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 13032,
+ "created": "2010-02-18T13:17:09.000Z",
+ "lastUpdated": "2024-12-05T11:26:12.789Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aplatir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "murer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "écraser",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00099475-v",
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13036,
+ "created": "2010-02-19T10:44:06.000Z",
+ "lastUpdated": "2021-07-20T08:15:19.910Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bras en croix",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13038,
+ "created": "2010-02-19T10:46:13.000Z",
+ "lastUpdated": "2021-07-20T08:15:31.770Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bras en croix",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "00099475-v",
+ "00625978-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13040,
+ "created": "2010-02-19T10:49:13.000Z",
+ "lastUpdated": "2021-07-20T08:15:35.505Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire de l'exercice",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00099475-v",
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13042,
+ "created": "2010-02-19T10:51:22.000Z",
+ "lastUpdated": "2021-07-20T08:15:53.758Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains sur le ventre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13044,
+ "created": "2010-02-19T10:54:04.000Z",
+ "lastUpdated": "2021-07-20T08:16:10.006Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains à la taille",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance"
+ ],
+ "synsets": [
+ "03187746-n",
+ "03705309-n"
+ ],
+ "tags": [
+ "object",
+ "appliance"
+ ],
+ "_id": 13030,
+ "created": "2010-02-18T13:14:38.000Z",
+ "lastUpdated": "2021-07-20T08:13:10.041Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "appareil",
+ "hasLocution": true,
+ "plural": "appareils"
+ },
+ {
+ "keyword": "machine",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "machines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of time",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00049013-r",
+ "00049758-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 13026,
+ "created": "2010-02-18T13:09:59.000Z",
+ "lastUpdated": "2021-07-20T08:12:27.504Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "maintenant",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00099475-v",
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13046,
+ "created": "2010-02-19T10:56:37.000Z",
+ "lastUpdated": "2021-07-20T08:16:22.204Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains sur le ventre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13054,
+ "created": "2010-02-19T11:07:18.000Z",
+ "lastUpdated": "2021-07-20T08:16:48.203Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains aux épaules",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13048,
+ "created": "2010-02-19T11:00:00.000Z",
+ "lastUpdated": "2021-07-20T08:16:26.762Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains sur le ventre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13050,
+ "created": "2010-02-19T11:02:49.000Z",
+ "lastUpdated": "2021-07-20T08:16:32.940Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains aux épaules",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13056,
+ "created": "2010-02-19T11:09:21.000Z",
+ "lastUpdated": "2021-07-20T08:16:50.076Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains aux épaules",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13058,
+ "created": "2010-02-19T11:11:48.000Z",
+ "lastUpdated": "2021-07-20T08:16:52.894Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains sur les pieds",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13060,
+ "created": "2010-02-19T11:15:12.000Z",
+ "lastUpdated": "2021-07-20T08:17:03.707Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains sur les fesses",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13062,
+ "created": "2010-02-19T11:17:52.000Z",
+ "lastUpdated": "2021-07-20T08:17:19.016Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains en haut",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mains en l'air",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13066,
+ "created": "2010-02-19T11:24:39.000Z",
+ "lastUpdated": "2021-07-20T08:17:35.500Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains derrière la tête",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13064,
+ "created": "2010-02-19T11:19:51.000Z",
+ "lastUpdated": "2021-07-20T08:17:30.960Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains en haut",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mains en l'air",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13068,
+ "created": "2010-02-19T11:27:24.000Z",
+ "lastUpdated": "2021-07-20T08:17:37.663Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains derrière la tête",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13072,
+ "created": "2010-02-19T12:21:42.000Z",
+ "lastUpdated": "2021-07-20T08:17:44.532Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains sur la tête",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13070,
+ "created": "2010-02-19T11:31:00.000Z",
+ "lastUpdated": "2021-07-20T08:17:40.989Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains sur la tête",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07762162-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 13074,
+ "created": "2010-02-19T12:26:32.000Z",
+ "lastUpdated": "2021-07-20T08:17:51.580Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kaki",
+ "hasLocution": true,
+ "plural": "kakis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "03158739-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 13076,
+ "created": "2010-02-19T12:29:46.000Z",
+ "lastUpdated": "2021-07-20T08:18:12.067Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cutter",
+ "hasLocution": false,
+ "plural": "cutters"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01022740-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 13078,
+ "created": "2010-02-19T12:46:23.000Z",
+ "lastUpdated": "2021-07-20T08:18:17.012Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "compléter",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "remplir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of time",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00061741-r",
+ "00118527-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 13080,
+ "created": "2010-02-19T12:48:19.000Z",
+ "lastUpdated": "2021-07-20T08:18:32.512Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "après",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "ensuite",
+ "hasLocution": true
+ },
+ {
+ "keyword": "plus tard",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery"
+ ],
+ "synsets": [
+ "04137340-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home"
+ ],
+ "_id": 13082,
+ "created": "2010-02-19T12:52:25.000Z",
+ "lastUpdated": "2021-07-20T08:18:51.473Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saladier",
+ "hasLocution": false,
+ "plural": "saladiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07761442-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 13084,
+ "created": "2010-02-19T12:56:30.000Z",
+ "lastUpdated": "2021-07-20T08:19:02.745Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "framboises",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "agriculture"
+ ],
+ "synsets": [
+ "04594862-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 13086,
+ "created": "2010-02-19T13:01:12.000Z",
+ "lastUpdated": "2021-07-20T08:19:17.557Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moulin",
+ "hasLocution": false,
+ "plural": "moulins"
+ },
+ {
+ "type": 2,
+ "keyword": "moulin à vent",
+ "hasLocution": false,
+ "plural": "moulins à vent"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00625978-n",
+ "02860617-a",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 13052,
+ "created": "2010-02-19T11:04:37.000Z",
+ "lastUpdated": "2021-07-20T08:16:36.140Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive (E.P.S.)",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mains aux épaules",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "astronomy"
+ ],
+ "synsets": [
+ "03845191-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "astronomy"
+ ],
+ "_id": 13088,
+ "created": "2010-02-19T13:03:41.000Z",
+ "lastUpdated": "2021-07-20T08:19:30.159Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "observatoire",
+ "hasLocution": false,
+ "plural": "observatoires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mammal",
+ "ovoviviparous",
+ "terrestrial animal",
+ "river animal",
+ "carnivorous",
+ "wild animal"
+ ],
+ "synsets": [
+ "01875951-n"
+ ],
+ "tags": [
+ "animal",
+ "vertebrate",
+ "mammal",
+ "ovoviviparous",
+ "terrestrial animal",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "carnivorous",
+ "wild"
+ ],
+ "_id": 13090,
+ "created": "2010-02-19T13:08:35.000Z",
+ "lastUpdated": "2021-07-20T08:19:39.333Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ornithorynque",
+ "hasLocution": false,
+ "plural": "ornithorynques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "orthopedic product"
+ ],
+ "synsets": [
+ "06073656-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 13092,
+ "created": "2010-02-19T13:23:31.000Z",
+ "lastUpdated": "2021-07-23T21:11:25.447Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin d'orthopédie",
+ "hasLocution": false,
+ "plural": "magasins d'orthopédie"
+ },
+ {
+ "keyword": "magasin de matériel paramédical",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "magasins de matériel paramédical"
+ },
+ {
+ "keyword": "magasin de matériel médical",
+ "hasLocution": false,
+ "plural": "magasins de matériel médical",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "baking"
+ ],
+ "synsets": [
+ "07655464-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 13344,
+ "created": "2010-02-23T11:10:49.000Z",
+ "lastUpdated": "2021-07-20T08:22:42.570Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "beignets",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "baking",
+ "christmas"
+ ],
+ "synsets": [
+ "07623854-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 13346,
+ "created": "2010-02-23T11:19:51.000Z",
+ "lastUpdated": "2021-04-02T13:56:54.708Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pâte d'amandes",
+ "hasLocution": false,
+ "plural": "pâtes d'amandes"
+ },
+ {
+ "keyword": "massepain",
+ "hasLocution": false,
+ "plural": "massepains",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01808784-n",
+ "01808442-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "domestic"
+ ],
+ "_id": 13348,
+ "created": "2010-02-23T11:22:38.000Z",
+ "lastUpdated": "2021-07-20T08:22:49.655Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "paon",
+ "hasLocution": true,
+ "plural": "paons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07765945-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 13352,
+ "created": "2010-02-23T12:18:10.000Z",
+ "lastUpdated": "2021-07-20T08:23:06.163Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pamplemousse",
+ "hasLocution": false,
+ "plural": "pamplemousses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "interrogative pronoun",
+ "pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "interrogative pronoun"
+ ],
+ "_id": 13358,
+ "created": "2010-02-23T18:59:01.000Z",
+ "lastUpdated": "2024-10-21T05:12:34.988Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "qui",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "qui ?",
+ "hasLocution": false
+ },
+ {
+ "type": 5,
+ "keyword": "qui sont-ils ?",
+ "hasLocution": false
+ },
+ {
+ "keyword": "à qui ?",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "03394735-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 13360,
+ "created": "2010-02-23T19:04:22.000Z",
+ "lastUpdated": "2021-07-20T08:24:34.158Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quad",
+ "hasLocution": false,
+ "plural": "quads"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "work machine"
+ ],
+ "synsets": [
+ "04259335-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "work machine"
+ ],
+ "_id": 13362,
+ "created": "2010-02-23T19:06:51.000Z",
+ "lastUpdated": "2021-07-20T08:25:08.285Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chasse-neige",
+ "hasLocution": false,
+ "plural": "chasse-neige"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "04449446-n",
+ "03464523-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 13364,
+ "created": "2010-02-23T19:12:04.000Z",
+ "lastUpdated": "2021-07-20T08:25:22.036Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "appareil à croque-monsieur",
+ "hasLocution": false,
+ "plural": "appareils à croque-monsieur"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs"
+ ],
+ "synsets": [
+ "01853188-v",
+ "02009962-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs"
+ ],
+ "_id": 13356,
+ "created": "2010-02-23T12:28:17.000Z",
+ "lastUpdated": "2021-07-20T08:23:32.841Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se rendre jusqu'où se trouve celui qui parle ou à qui l'on parle ou se diriger vers lui",
+ "keyword": "venir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "arriver",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "baking",
+ "easter week"
+ ],
+ "synsets": [
+ "07623854-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "event",
+ "popular event",
+ "easter week"
+ ],
+ "_id": 13366,
+ "created": "2010-02-23T19:15:41.000Z",
+ "lastUpdated": "2021-08-04T08:07:42.263Z",
+ "keywords": [
+ {
+ "keyword": "huesos de santo",
+ "hasLocution": false,
+ "plural": "huesos de santo",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "os de saint",
+ "plural": "os de saint",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body position"
+ ],
+ "synsets": [
+ "01548893-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "position"
+ ],
+ "_id": 13368,
+ "created": "2010-02-23T19:22:11.000Z",
+ "lastUpdated": "2021-07-20T08:25:40.862Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "être debout",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "body position",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01548893-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "human body",
+ "position",
+ "core vocabulary"
+ ],
+ "_id": 13370,
+ "created": "2010-02-23T19:24:38.000Z",
+ "lastUpdated": "2021-07-20T08:25:45.392Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "être debout",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00031813-v",
+ "00028558-v",
+ "06891121-n",
+ "06891454-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response",
+ "core vocabulary"
+ ],
+ "_id": 13354,
+ "created": "2010-02-23T12:25:06.000Z",
+ "lastUpdated": "2021-07-20T08:23:21.235Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Manifester une gaieté soudaine par l'expression du visage et par certains mouvements de la bouche et des muscles faciaux, accompagnés d'expirations plus ou moins saccadées et bruyantes",
+ "keyword": "rire",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "sourire",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "sourire",
+ "hasLocution": true,
+ "plural": "sourires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "01471597-a",
+ "07319470-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 13378,
+ "created": "2010-02-23T19:50:37.000Z",
+ "lastUpdated": "2021-07-20T08:27:03.963Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "malchance",
+ "hasLocution": false,
+ "plural": "malchances"
+ },
+ {
+ "keyword": "malchanceux",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01241074-s",
+ "01242407-s",
+ "01241913-s"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 13372,
+ "created": "2010-02-23T19:27:15.000Z",
+ "lastUpdated": "2021-07-20T08:26:02.996Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "être allongé",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "être étendu",
+ "hasLocution": false
+ },
+ {
+ "keyword": "être couché",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "feeling",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02088253-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "psychology",
+ "feeling",
+ "emotion",
+ "core vocabulary"
+ ],
+ "_id": 13630,
+ "created": "2010-02-25T12:59:15.000Z",
+ "lastUpdated": "2021-07-20T08:27:10.310Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "ça va",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "Ça va !",
+ "hasLocution": false
+ },
+ {
+ "type": 5,
+ "keyword": "Je vais bien !",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product"
+ ],
+ "synsets": [
+ "07863174-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product"
+ ],
+ "_id": 13376,
+ "created": "2010-02-23T19:44:39.000Z",
+ "lastUpdated": "2021-07-20T08:26:26.523Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crème liquide",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "06008975-n",
+ "06008718-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 13632,
+ "created": "2010-02-25T13:02:08.000Z",
+ "lastUpdated": "2021-07-20T08:27:45.167Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "leçon de sciences naturelles",
+ "hasLocution": false
+ },
+ {
+ "keyword": "cours de sciences naturelles",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "04419551-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 13636,
+ "created": "2010-02-25T13:10:12.000Z",
+ "lastUpdated": "2021-07-20T08:29:12.053Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tipi",
+ "hasLocution": false,
+ "plural": "tipis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00887135-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 13634,
+ "created": "2010-02-25T13:04:17.000Z",
+ "lastUpdated": "2021-07-20T08:28:25.951Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éducation plastique et visuelle",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "cours d'arts plastiques",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "04496264-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 13638,
+ "created": "2010-02-25T13:25:51.000Z",
+ "lastUpdated": "2021-07-20T08:31:02.764Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bermuda",
+ "hasLocution": false,
+ "plural": "bermudas"
+ },
+ {
+ "keyword": "short",
+ "plural": "shorts",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04204434-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "core vocabulary"
+ ],
+ "_id": 13640,
+ "created": "2010-02-25T13:28:38.000Z",
+ "lastUpdated": "2021-07-20T08:31:10.028Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chemise",
+ "hasLocution": true,
+ "plural": "chemises"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body position"
+ ],
+ "synsets": [
+ "01549783-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "position"
+ ],
+ "_id": 13374,
+ "created": "2010-02-23T19:29:04.000Z",
+ "lastUpdated": "2021-07-20T08:26:14.572Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "être allongé",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "être étendu",
+ "hasLocution": false
+ },
+ {
+ "keyword": "être couché",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "02858206-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 13642,
+ "created": "2010-02-25T13:30:58.000Z",
+ "lastUpdated": "2021-07-20T08:31:19.004Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blouse",
+ "hasLocution": true,
+ "plural": "blouses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07755101-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 13644,
+ "created": "2010-02-25T16:54:24.000Z",
+ "lastUpdated": "2021-07-20T08:31:26.881Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pomme",
+ "hasLocution": true,
+ "plural": "pommes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "chemistry"
+ ],
+ "synsets": [
+ "02455370-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "chemistry"
+ ],
+ "_id": 14008,
+ "created": "2010-03-11T19:21:52.000Z",
+ "lastUpdated": "2021-07-20T08:34:19.212Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "alerter",
+ "hasLocution": false
+ },
+ {
+ "keyword": "prévenir",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "personal services"
+ ],
+ "synsets": [
+ "03533280-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "personal services"
+ ],
+ "_id": 14010,
+ "created": "2010-03-11T19:26:45.000Z",
+ "lastUpdated": "2021-08-02T22:31:53.376Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "résidence pour personnes handicapées",
+ "hasLocution": false,
+ "plural": "résidences pour personne handicapées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aromatic plant",
+ "aromatic herb"
+ ],
+ "synsets": [
+ "12870477-n"
+ ],
+ "tags": [
+ "plant",
+ "aromatic plant",
+ "feeding",
+ "food",
+ "plant-based food"
+ ],
+ "_id": 14242,
+ "created": "2010-03-12T09:57:17.000Z",
+ "lastUpdated": "2021-07-20T08:34:51.305Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lavande",
+ "hasLocution": false,
+ "plural": "lavandes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aromatic plant",
+ "aromatic herb"
+ ],
+ "synsets": [
+ "12874047-n",
+ "07834971-n"
+ ],
+ "tags": [
+ "plant",
+ "aromatic plant",
+ "feeding",
+ "food",
+ "plant-based food"
+ ],
+ "_id": 14244,
+ "created": "2010-03-12T10:00:57.000Z",
+ "lastUpdated": "2021-07-20T08:35:01.185Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "origan",
+ "hasLocution": false,
+ "plural": "origans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aromatic plant",
+ "aromatic herb"
+ ],
+ "synsets": [
+ "12884920-n",
+ "07836121-n"
+ ],
+ "tags": [
+ "plant",
+ "aromatic plant",
+ "feeding",
+ "food",
+ "plant-based food"
+ ],
+ "_id": 14246,
+ "created": "2010-03-12T10:06:20.000Z",
+ "lastUpdated": "2021-07-20T08:35:44.367Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "romarin",
+ "hasLocution": false,
+ "plural": "romarins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aromatic plant",
+ "aromatic herb"
+ ],
+ "synsets": [
+ "12891295-n",
+ "07837734-n"
+ ],
+ "tags": [
+ "plant",
+ "aromatic plant",
+ "feeding",
+ "food",
+ "plant-based food"
+ ],
+ "_id": 14248,
+ "created": "2010-03-12T10:09:52.000Z",
+ "lastUpdated": "2021-07-20T08:35:53.940Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "thym",
+ "hasLocution": false,
+ "plural": "thyms"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "law and justice"
+ ],
+ "synsets": [
+ "00967422-v",
+ "00967574-v",
+ "07247648-n",
+ "00843259-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 14006,
+ "created": "2010-03-11T19:19:22.000Z",
+ "lastUpdated": "2021-07-20T08:33:57.083Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "dénoncer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "intenter un procès",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "05316575-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 14250,
+ "created": "2010-03-12T10:13:08.000Z",
+ "lastUpdated": "2021-07-20T08:36:05.547Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "angine",
+ "hasLocution": true,
+ "plural": "angines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "excretory system"
+ ],
+ "synsets": [
+ "05412667-n"
+ ],
+ "tags": [
+ "human body",
+ "physiology",
+ "human physiology",
+ "excretory system"
+ ],
+ "_id": 14252,
+ "created": "2010-03-12T10:16:37.000Z",
+ "lastUpdated": "2021-07-20T08:36:13.811Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "larme",
+ "hasLocution": false,
+ "plural": "larmes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "digestive system"
+ ],
+ "synsets": [
+ "05423542-n"
+ ],
+ "tags": [
+ "human body",
+ "human physiology",
+ "physiology",
+ "digestive system"
+ ],
+ "_id": 14254,
+ "created": "2010-03-12T10:21:13.000Z",
+ "lastUpdated": "2021-07-20T08:36:38.060Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salive",
+ "hasLocution": false
+ },
+ {
+ "keyword": "bave",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "04393879-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 14256,
+ "created": "2010-03-12T10:25:05.000Z",
+ "lastUpdated": "2021-07-20T08:36:48.683Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "talc pour bébé",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "talc",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07755101-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 13645,
+ "created": "2010-02-25T16:55:04.000Z",
+ "lastUpdated": "2021-07-20T08:31:33.223Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pomme",
+ "hasLocution": true,
+ "plural": "pommes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "04591493-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 14258,
+ "created": "2010-03-12T10:30:42.000Z",
+ "lastUpdated": "2021-07-20T08:37:06.196Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "perruque",
+ "hasLocution": false,
+ "plural": "perruques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "show",
+ "musical art"
+ ],
+ "synsets": [
+ "06905814-n"
+ ],
+ "tags": [
+ "leisure",
+ "show",
+ "work",
+ "music"
+ ],
+ "_id": 14532,
+ "created": "2010-03-16T20:02:50.000Z",
+ "lastUpdated": "2021-07-20T08:39:14.262Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "concert",
+ "hasLocution": true,
+ "plural": "concerts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "hairdresser"
+ ],
+ "synsets": [
+ "03154898-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 14260,
+ "created": "2010-03-12T11:02:45.000Z",
+ "lastUpdated": "2021-07-20T08:37:27.997Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bigoudi",
+ "hasLocution": false,
+ "plural": "bigoudis"
+ },
+ {
+ "keyword": "rouleau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "rouleaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "footwear",
+ "routine"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "footwear",
+ "person",
+ "routine"
+ ],
+ "_id": 14534,
+ "created": "2010-03-16T20:06:39.000Z",
+ "lastUpdated": "2021-03-13T14:27:47.849Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chausser",
+ "hasLocution": false
+ },
+ {
+ "keyword": "se chausser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enfiler la chaussure",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre la chaussure",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic"
+ ],
+ "synsets": [
+ "03729557-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 14262,
+ "created": "2010-03-12T11:06:06.000Z",
+ "lastUpdated": "2021-07-20T08:37:51.754Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rimmel",
+ "hasLocution": true,
+ "plural": "rimmels"
+ },
+ {
+ "keyword": "mascara",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mascaras"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "health sciences"
+ ],
+ "synsets": [
+ "13946812-n",
+ "14471374-n"
+ ],
+ "tags": [
+ "health"
+ ],
+ "_id": 14264,
+ "created": "2010-03-12T11:09:27.000Z",
+ "lastUpdated": "2021-07-20T08:37:55.586Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "santé",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothing industry",
+ "clothes"
+ ],
+ "synsets": [
+ "03903640-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "clothing industry",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 14538,
+ "created": "2010-03-16T20:15:08.000Z",
+ "lastUpdated": "2021-07-26T14:39:40.600Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "renfort de coude",
+ "hasLocution": false,
+ "plural": "renforts de coude"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "footwear",
+ "routine"
+ ],
+ "synsets": [
+ "00050171-v",
+ "02164101-s",
+ "00279508-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "footwear",
+ "person",
+ "routine"
+ ],
+ "_id": 14536,
+ "created": "2010-03-16T20:08:58.000Z",
+ "lastUpdated": "2021-07-20T08:39:38.212Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "déchausser",
+ "hasLocution": false
+ },
+ {
+ "keyword": "enlever ses chausures",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothing industry",
+ "clothes"
+ ],
+ "synsets": [
+ "03903640-n",
+ "03627907-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "clothing industry",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 14540,
+ "created": "2010-03-16T20:18:01.000Z",
+ "lastUpdated": "2021-07-26T14:40:06.770Z",
+ "keywords": [
+ {
+ "keyword": "renfort de genou",
+ "hasLocution": false,
+ "plural": "renforts de genoux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03265722-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 14542,
+ "created": "2010-03-16T20:34:18.000Z",
+ "lastUpdated": "2021-07-20T08:42:48.720Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oreillettes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "educational material"
+ ],
+ "synsets": [
+ "03149258-n",
+ "13937623-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "education",
+ "educational material"
+ ],
+ "_id": 14544,
+ "created": "2010-03-16T20:39:48.000Z",
+ "lastUpdated": "2021-07-20T08:42:52.071Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cubes empilables",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pattern"
+ ],
+ "synsets": [
+ "05940298-n",
+ "02051149-s"
+ ],
+ "tags": [
+ "pattern"
+ ],
+ "_id": 14546,
+ "created": "2010-03-16T20:44:28.000Z",
+ "lastUpdated": "2021-07-20T08:43:16.178Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quadrillage",
+ "hasLocution": false,
+ "plural": "quadrillages"
+ },
+ {
+ "keyword": "grille",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "grilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "02779830-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 14548,
+ "created": "2010-03-16T20:47:27.000Z",
+ "lastUpdated": "2021-07-20T08:43:54.407Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "passe-montagne",
+ "hasLocution": false,
+ "plural": "passe-montagne"
+ },
+ {
+ "keyword": "cagoule",
+ "hasLocution": true,
+ "plural": "cagoules",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "09915013-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 14662,
+ "created": "2010-03-21T13:00:40.000Z",
+ "lastUpdated": "2021-07-20T08:44:52.619Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "soigneur",
+ "hasLocution": true,
+ "plural": "soigneurs"
+ },
+ {
+ "keyword": "soignant",
+ "hasLocution": false,
+ "plural": "soignants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human value"
+ ],
+ "synsets": [
+ "04876319-n",
+ "06216934-n",
+ "14461591-n",
+ "14461018-n"
+ ],
+ "tags": [
+ "psychology",
+ "human value"
+ ],
+ "_id": 14660,
+ "created": "2010-03-21T12:46:20.000Z",
+ "lastUpdated": "2021-07-20T08:53:13.907Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "honneur",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "respect",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "réputation",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "09915013-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 14663,
+ "created": "2010-03-21T13:01:25.000Z",
+ "lastUpdated": "2021-07-20T08:45:10.574Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "soigneuse",
+ "hasLocution": true,
+ "plural": "soigneuses"
+ },
+ {
+ "keyword": "soignante",
+ "hasLocution": false,
+ "plural": "soignantes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health sciences"
+ ],
+ "synsets": [
+ "14471374-n"
+ ],
+ "tags": [
+ "health"
+ ],
+ "_id": 14664,
+ "created": "2010-03-21T13:04:12.000Z",
+ "lastUpdated": "2021-07-20T08:45:17.069Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "santé",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "13977336-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 14666,
+ "created": "2010-03-21T13:07:38.000Z",
+ "lastUpdated": "2021-07-26T14:28:08.675Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "retraite",
+ "hasLocution": false,
+ "plural": "retraites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "00398155-n"
+ ],
+ "tags": [],
+ "_id": 14668,
+ "created": "2010-03-21T13:10:35.000Z",
+ "lastUpdated": "2021-07-20T08:45:46.919Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "censure",
+ "hasLocution": false,
+ "plural": "censures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "08584764-n",
+ "13957629-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 14552,
+ "created": "2010-03-17T16:30:05.000Z",
+ "lastUpdated": "2021-07-20T08:44:11.542Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "environnement",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy"
+ ],
+ "synsets": [
+ "00701513-n",
+ "05909190-n"
+ ],
+ "tags": [
+ "health",
+ "physiotherapy"
+ ],
+ "_id": 14672,
+ "created": "2010-03-21T13:34:21.000Z",
+ "lastUpdated": "2021-07-26T14:28:32.176Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rééducation",
+ "hasLocution": false,
+ "plural": "rééducations"
+ },
+ {
+ "keyword": "réhabilitation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "réhabilitations"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "00163453-n",
+ "00162063-n",
+ "05799460-n"
+ ],
+ "tags": [],
+ "_id": 14670,
+ "created": "2010-03-21T13:27:12.000Z",
+ "lastUpdated": "2021-07-20T08:53:19.918Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "décision",
+ "hasLocution": true,
+ "plural": "décisions"
+ },
+ {
+ "type": 2,
+ "keyword": "choix",
+ "hasLocution": false,
+ "plural": "choix"
+ },
+ {
+ "type": 2,
+ "keyword": "sélection",
+ "hasLocution": false,
+ "plural": "sélections"
+ },
+ {
+ "type": 2,
+ "keyword": "préférence",
+ "hasLocution": false,
+ "plural": "préférences"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "10427699-n"
+ ],
+ "tags": [],
+ "_id": 14674,
+ "created": "2010-03-21T13:40:05.000Z",
+ "lastUpdated": "2021-07-20T08:46:56.234Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sponsor",
+ "hasLocution": false,
+ "plural": "sponsors"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "05641230-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 14678,
+ "created": "2010-03-21T18:18:34.000Z",
+ "lastUpdated": "2021-08-02T22:52:20.289Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conception universelle",
+ "hasLocution": false
+ },
+ {
+ "keyword": "design universel ",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "09049830-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14680,
+ "created": "2010-03-22T17:35:05.000Z",
+ "lastUpdated": "2021-07-20T08:47:24.416Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Huesca",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "easter week",
+ "christianity",
+ "mythological character"
+ ],
+ "synsets": [
+ "15266840-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "easter week",
+ "religion",
+ "christianity",
+ "character",
+ "mythological character",
+ "mythology"
+ ],
+ "_id": 14550,
+ "created": "2010-03-16T21:00:35.000Z",
+ "lastUpdated": "2021-07-20T08:44:04.054Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Vieille Carême",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "09049830-n",
+ "09050049-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14682,
+ "created": "2010-03-22T17:37:11.000Z",
+ "lastUpdated": "2021-07-20T08:47:29.530Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saragosse",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "08510271-n",
+ "09047821-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14684,
+ "created": "2010-03-22T17:39:02.000Z",
+ "lastUpdated": "2021-07-20T08:47:33.754Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Cadix",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "08510271-n",
+ "09048098-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14685,
+ "created": "2010-03-22T17:39:26.000Z",
+ "lastUpdated": "2021-07-20T08:47:37.462Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Cordoue",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "08510271-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14687,
+ "created": "2010-03-22T17:40:36.000Z",
+ "lastUpdated": "2021-07-20T08:47:42.244Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Huelva",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "08510271-n",
+ "09048233-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14686,
+ "created": "2010-03-22T17:39:58.000Z",
+ "lastUpdated": "2021-07-20T08:47:39.697Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Grenade",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "08510271-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14688,
+ "created": "2010-03-22T17:41:04.000Z",
+ "lastUpdated": "2021-07-20T08:47:44.820Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Jaen",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "08510271-n",
+ "09048984-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14689,
+ "created": "2010-03-22T17:41:31.000Z",
+ "lastUpdated": "2021-07-20T08:48:01.570Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Malaga",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "09049830-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14681,
+ "created": "2010-03-22T17:36:02.000Z",
+ "lastUpdated": "2021-07-20T08:47:26.895Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Teruel",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "08510271-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14683,
+ "created": "2010-03-22T17:38:27.000Z",
+ "lastUpdated": "2021-07-20T08:47:30.994Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Almeria",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03689034-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 14693,
+ "created": "2010-03-22T20:17:04.000Z",
+ "lastUpdated": "2021-07-20T08:48:43.424Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vestiaires",
+ "hasLocution": false
+ },
+ {
+ "keyword": "casier",
+ "hasLocution": true,
+ "plural": "casiers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03689034-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 14695,
+ "created": "2010-03-22T20:18:30.000Z",
+ "lastUpdated": "2021-07-20T08:49:02.105Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vestiaires",
+ "hasLocution": false
+ },
+ {
+ "keyword": "casier",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "casiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03689034-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 14697,
+ "created": "2010-03-22T20:19:58.000Z",
+ "lastUpdated": "2021-07-20T08:49:19.468Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vestiaires",
+ "hasLocution": false
+ },
+ {
+ "keyword": "casier",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "casiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03689034-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 14699,
+ "created": "2010-03-22T20:21:23.000Z",
+ "lastUpdated": "2021-07-20T08:49:33.606Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vestiaires",
+ "hasLocution": false
+ },
+ {
+ "keyword": "casier",
+ "type": 2,
+ "plural": "casiers",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03689034-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 14701,
+ "created": "2010-03-22T20:22:38.000Z",
+ "lastUpdated": "2021-07-20T08:49:46.646Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vestiaires",
+ "hasLocution": false
+ },
+ {
+ "keyword": "casier",
+ "type": 2,
+ "plural": "casiers",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "09050574-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14755,
+ "created": "2010-03-23T18:52:24.000Z",
+ "lastUpdated": "2021-07-20T08:49:50.472Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "La Corogne",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "09050574-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14756,
+ "created": "2010-03-23T18:53:04.000Z",
+ "lastUpdated": "2021-07-20T08:49:53.128Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Lugo",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "09050574-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14757,
+ "created": "2010-03-23T18:53:48.000Z",
+ "lastUpdated": "2021-07-20T08:49:55.698Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Orense",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "08510271-n",
+ "09049459-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14690,
+ "created": "2010-03-22T17:42:01.000Z",
+ "lastUpdated": "2021-07-20T08:47:54.042Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Séville",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03689034-n",
+ "03242834-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 14691,
+ "created": "2010-03-22T20:15:24.000Z",
+ "lastUpdated": "2021-07-20T08:48:19.794Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vestiaires",
+ "hasLocution": false
+ },
+ {
+ "keyword": "casier",
+ "type": 2,
+ "plural": "casiers",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "09050574-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14758,
+ "created": "2010-03-23T18:54:53.000Z",
+ "lastUpdated": "2021-07-20T08:49:57.205Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pontevedra",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14762,
+ "created": "2010-03-23T21:08:22.000Z",
+ "lastUpdated": "2021-07-20T08:50:08.456Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Albacete",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14763,
+ "created": "2010-03-23T21:11:25.000Z",
+ "lastUpdated": "2021-07-20T08:50:10.814Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Ciudad Real",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14761,
+ "created": "2010-03-23T19:19:11.000Z",
+ "lastUpdated": "2021-07-20T08:50:06.311Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Biscaye",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14764,
+ "created": "2010-03-23T21:12:03.000Z",
+ "lastUpdated": "2021-07-20T08:50:13.221Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Cuenca",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14765,
+ "created": "2010-03-23T21:12:50.000Z",
+ "lastUpdated": "2021-07-20T08:50:15.891Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Guadalajara",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09049662-n",
+ "08671935-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14766,
+ "created": "2010-03-23T21:13:20.000Z",
+ "lastUpdated": "2021-07-20T08:50:18.114Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Tolède",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14767,
+ "created": "2010-03-23T21:14:14.000Z",
+ "lastUpdated": "2021-07-20T08:50:19.758Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Alicante",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14768,
+ "created": "2010-03-23T21:14:46.000Z",
+ "lastUpdated": "2021-07-20T08:50:23.454Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Castellon",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14759,
+ "created": "2010-03-23T18:55:44.000Z",
+ "lastUpdated": "2021-07-20T08:50:00.051Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Alava",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14760,
+ "created": "2010-03-23T18:57:00.000Z",
+ "lastUpdated": "2021-07-20T08:50:02.715Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Guipuzcoa",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09050737-n",
+ "08671935-n",
+ "09048730-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14772,
+ "created": "2010-03-23T21:27:40.000Z",
+ "lastUpdated": "2021-07-20T08:50:33.492Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "León",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09050737-n",
+ "08671935-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14771,
+ "created": "2010-03-23T21:25:35.000Z",
+ "lastUpdated": "2021-07-20T08:50:31.078Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Burgos",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09050737-n",
+ "08671935-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14773,
+ "created": "2010-03-23T21:28:46.000Z",
+ "lastUpdated": "2021-07-20T08:50:35.791Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Palencia",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09050737-n",
+ "08671935-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14774,
+ "created": "2010-03-23T21:29:24.000Z",
+ "lastUpdated": "2021-07-20T08:50:37.756Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Salamanque",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09050737-n",
+ "08671935-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14775,
+ "created": "2010-03-23T21:29:57.000Z",
+ "lastUpdated": "2021-07-20T08:50:40.342Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Ségovie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09050737-n",
+ "08671935-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14776,
+ "created": "2010-03-23T21:30:33.000Z",
+ "lastUpdated": "2021-07-20T08:50:44.533Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Soria",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09050737-n",
+ "08671935-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14777,
+ "created": "2010-03-23T21:31:09.000Z",
+ "lastUpdated": "2021-07-20T08:50:46.771Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Valladolid",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 14829,
+ "created": "2010-03-24T13:36:26.000Z",
+ "lastUpdated": "2021-07-20T08:50:50.627Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Asturies",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09050737-n",
+ "08671935-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14778,
+ "created": "2010-03-23T21:31:43.000Z",
+ "lastUpdated": "2021-07-20T08:50:49.134Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Zamora",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "08671935-n",
+ "09050847-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14769,
+ "created": "2010-03-23T21:15:20.000Z",
+ "lastUpdated": "2021-07-20T08:50:25.861Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Valencia",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14830,
+ "created": "2010-03-24T13:38:00.000Z",
+ "lastUpdated": "2021-07-20T08:50:54.053Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Badajoz",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14831,
+ "created": "2010-03-24T13:38:32.000Z",
+ "lastUpdated": "2021-07-20T08:50:55.563Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Caceres",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09050432-n",
+ "08671935-n",
+ "09047559-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14832,
+ "created": "2010-03-24T13:39:18.000Z",
+ "lastUpdated": "2021-07-20T08:50:58.063Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Barcelone",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09050432-n",
+ "08671935-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14834,
+ "created": "2010-03-24T13:41:48.000Z",
+ "lastUpdated": "2021-07-20T08:51:02.776Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Lérida",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09050432-n",
+ "08671935-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14833,
+ "created": "2010-03-24T13:39:55.000Z",
+ "lastUpdated": "2021-07-20T08:51:01.493Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Gérone",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09050737-n",
+ "08671935-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14770,
+ "created": "2010-03-23T21:25:09.000Z",
+ "lastUpdated": "2021-07-20T08:50:28.731Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Avila",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region",
+ "city"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region",
+ "city"
+ ],
+ "_id": 14838,
+ "created": "2010-03-24T13:47:14.000Z",
+ "lastUpdated": "2021-07-20T08:51:13.955Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Melilla",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 14839,
+ "created": "2010-03-24T17:19:38.000Z",
+ "lastUpdated": "2021-07-20T08:51:15.556Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "La Rioja",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 14840,
+ "created": "2010-03-24T17:21:09.000Z",
+ "lastUpdated": "2021-07-20T08:51:18.406Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Madrid",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 14841,
+ "created": "2010-03-24T17:21:55.000Z",
+ "lastUpdated": "2021-07-20T08:51:20.901Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Murcie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 14842,
+ "created": "2010-03-24T17:22:47.000Z",
+ "lastUpdated": "2021-07-20T08:51:24.149Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Navarre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09047342-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14843,
+ "created": "2010-03-24T17:25:07.000Z",
+ "lastUpdated": "2021-07-20T08:51:26.409Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "El Hierro",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 14836,
+ "created": "2010-03-24T13:43:20.000Z",
+ "lastUpdated": "2021-07-20T08:51:08.161Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Cantabrie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09047342-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14845,
+ "created": "2010-03-24T17:29:11.000Z",
+ "lastUpdated": "2021-07-20T08:51:28.810Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "La Gomera",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09050432-n",
+ "08671935-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14835,
+ "created": "2010-03-24T13:42:45.000Z",
+ "lastUpdated": "2021-07-20T08:51:06.386Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Tarragone",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region",
+ "city"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region",
+ "city"
+ ],
+ "_id": 14837,
+ "created": "2010-03-24T13:46:10.000Z",
+ "lastUpdated": "2021-07-20T08:51:11.506Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Ceuta",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09047342-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14846,
+ "created": "2010-03-24T17:30:24.000Z",
+ "lastUpdated": "2021-07-20T08:51:31.196Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "La Palma",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09047342-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14847,
+ "created": "2010-03-24T17:31:56.000Z",
+ "lastUpdated": "2021-07-20T08:51:33.461Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Lanzarote",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09047038-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14850,
+ "created": "2010-03-24T17:35:46.000Z",
+ "lastUpdated": "2021-07-20T08:51:40.080Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Ibiza",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09047038-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14848,
+ "created": "2010-03-24T17:33:38.000Z",
+ "lastUpdated": "2021-07-20T08:51:35.629Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Formentera",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09047038-n",
+ "09047214-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14851,
+ "created": "2010-03-24T17:37:35.000Z",
+ "lastUpdated": "2021-07-20T08:51:42.410Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Majorque",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09047038-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14852,
+ "created": "2010-03-24T17:38:55.000Z",
+ "lastUpdated": "2021-07-20T08:51:44.391Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Minorque",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human reproduction"
+ ],
+ "synsets": [
+ "00231191-n"
+ ],
+ "tags": [
+ "human body",
+ "human reproduction"
+ ],
+ "_id": 14974,
+ "created": "2010-03-27T13:04:38.000Z",
+ "lastUpdated": "2021-07-20T08:52:19.596Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "avortement",
+ "hasLocution": true,
+ "plural": "avortements"
+ },
+ {
+ "keyword": "interruption de grossesse",
+ "hasLocution": false,
+ "plural": "interruptions de grossesse",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "reproductive system"
+ ],
+ "synsets": [
+ "05531071-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "reproductive system"
+ ],
+ "_id": 14976,
+ "created": "2010-03-27T13:07:13.000Z",
+ "lastUpdated": "2021-07-20T10:24:06.250Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clitoris",
+ "hasLocution": false,
+ "plural": "clitoris"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human reproduction"
+ ],
+ "synsets": [
+ "01461483-n"
+ ],
+ "tags": [
+ "human body",
+ "human reproduction"
+ ],
+ "_id": 14980,
+ "created": "2010-03-27T13:14:34.000Z",
+ "lastUpdated": "2021-07-20T08:53:48.913Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "embryon",
+ "hasLocution": false,
+ "plural": "embryons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human reproduction"
+ ],
+ "synsets": [
+ "13116302-n"
+ ],
+ "tags": [
+ "human body",
+ "human reproduction"
+ ],
+ "_id": 14982,
+ "created": "2010-03-27T13:16:56.000Z",
+ "lastUpdated": "2021-07-20T08:53:59.219Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "spermatozoïde",
+ "hasLocution": false,
+ "plural": "spermatozoïdes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human reproduction"
+ ],
+ "synsets": [
+ "07451586-n"
+ ],
+ "tags": [
+ "human body",
+ "human reproduction"
+ ],
+ "_id": 14984,
+ "created": "2010-03-27T13:19:55.000Z",
+ "lastUpdated": "2021-07-20T08:54:09.619Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fécondation",
+ "hasLocution": false,
+ "plural": "fécondations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human reproduction"
+ ],
+ "synsets": [
+ "00516462-r",
+ "01362125-a",
+ "07451586-n"
+ ],
+ "tags": [
+ "human body",
+ "human reproduction"
+ ],
+ "_id": 14986,
+ "created": "2010-03-27T13:24:05.000Z",
+ "lastUpdated": "2021-07-20T08:54:29.423Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fécondation in vitro",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "FIV",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "reproduction assistée",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual practice"
+ ],
+ "synsets": [
+ "00847184-n",
+ "01429048-v"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual practice"
+ ],
+ "_id": 14991,
+ "created": "2010-03-27T13:34:30.000Z",
+ "lastUpdated": "2021-07-20T08:55:46.050Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coït",
+ "hasLocution": false,
+ "plural": "coïts"
+ },
+ {
+ "keyword": "rapport sexuel",
+ "hasLocution": false,
+ "plural": "rapports sexuels",
+ "type": 2
+ },
+ {
+ "keyword": "relation sexuelle",
+ "hasLocution": false,
+ "plural": "relations sexuelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual practice"
+ ],
+ "synsets": [
+ "00847184-n",
+ "01429048-v"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual practice"
+ ],
+ "_id": 14992,
+ "created": "2010-03-27T13:35:33.000Z",
+ "lastUpdated": "2021-07-20T08:56:33.886Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coït",
+ "hasLocution": false,
+ "plural": "coïts"
+ },
+ {
+ "keyword": "rapport sexuel",
+ "hasLocution": false,
+ "plural": "rapports sexuels",
+ "type": 2
+ },
+ {
+ "keyword": "relation sexuelle",
+ "hasLocution": false,
+ "plural": "relations sexuelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual practice"
+ ],
+ "synsets": [
+ "00847184-n",
+ "01429048-v"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual practice"
+ ],
+ "_id": 14994,
+ "created": "2010-03-27T13:37:23.000Z",
+ "lastUpdated": "2021-07-20T10:24:09.942Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coït",
+ "hasLocution": false,
+ "plural": "coïts"
+ },
+ {
+ "keyword": "rapport sexuel",
+ "hasLocution": false,
+ "plural": "rapports sexuels",
+ "type": 2
+ },
+ {
+ "keyword": "relation sexuelle",
+ "hasLocution": false,
+ "plural": "relations sexuelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "reproductive system"
+ ],
+ "synsets": [
+ "05522938-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "reproductive system"
+ ],
+ "_id": 14996,
+ "created": "2010-03-27T13:40:36.000Z",
+ "lastUpdated": "2021-07-21T12:55:32.627Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ovaires",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human reproduction"
+ ],
+ "synsets": [
+ "05465549-n"
+ ],
+ "tags": [
+ "human body",
+ "human reproduction"
+ ],
+ "_id": 14999,
+ "created": "2010-03-27T13:44:03.000Z",
+ "lastUpdated": "2021-07-20T08:57:27.340Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ovule",
+ "hasLocution": false,
+ "plural": "ovules"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "contraceptive method"
+ ],
+ "synsets": [
+ "03943171-n"
+ ],
+ "tags": [
+ "sexuality",
+ "contraceptive method"
+ ],
+ "_id": 15000,
+ "created": "2010-03-27T13:46:30.000Z",
+ "lastUpdated": "2021-07-20T08:58:05.757Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pilule",
+ "hasLocution": true,
+ "plural": "pilules"
+ },
+ {
+ "keyword": "pilule contraceptive",
+ "hasLocution": false,
+ "plural": "pilules contraceptive",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human reproduction"
+ ],
+ "synsets": [
+ "01462432-n"
+ ],
+ "tags": [
+ "human body",
+ "human reproduction"
+ ],
+ "_id": 14988,
+ "created": "2010-03-27T13:28:27.000Z",
+ "lastUpdated": "2021-07-20T08:54:39.736Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fœtus",
+ "hasLocution": false,
+ "plural": "fœtus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "marital status"
+ ],
+ "synsets": [
+ "02496283-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "marital status"
+ ],
+ "_id": 15006,
+ "created": "2010-03-27T18:34:03.000Z",
+ "lastUpdated": "2021-07-20T08:58:12.612Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "divorcer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ "09047342-n",
+ "09051013-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 14849,
+ "created": "2010-03-24T17:34:49.000Z",
+ "lastUpdated": "2021-07-20T08:51:38.068Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Tenerife",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "marital status"
+ ],
+ "synsets": [
+ "02496283-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "marital status"
+ ],
+ "_id": 15008,
+ "created": "2010-03-27T18:35:54.000Z",
+ "lastUpdated": "2021-07-20T08:58:20.560Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "divorcer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "marital status"
+ ],
+ "synsets": [
+ "02496283-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "marital status"
+ ],
+ "_id": 15010,
+ "created": "2010-03-27T18:40:06.000Z",
+ "lastUpdated": "2021-07-20T08:58:25.506Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "divorcer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "communication system"
+ ],
+ "synsets": [
+ "05773412-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication system"
+ ],
+ "_id": 15018,
+ "created": "2010-03-27T18:49:50.000Z",
+ "lastUpdated": "2021-07-20T08:59:01.982Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pictogrammes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 15020,
+ "created": "2010-03-27T18:56:36.000Z",
+ "lastUpdated": "2021-07-26T13:57:55.045Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "ajustement raisonnable",
+ "plural": "ajustements raisonnables"
+ },
+ {
+ "keyword": "ajustement concerté ",
+ "hasLocution": false,
+ "plural": "ajustements concertés ",
+ "type": 2
+ },
+ {
+ "keyword": "aménagement raisonnable",
+ "hasLocution": false,
+ "plural": "aménagements raisonnables",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "court document",
+ "law and justice"
+ ],
+ "synsets": [
+ "08348887-n",
+ "01203761-n"
+ ],
+ "tags": [
+ "document",
+ "justice",
+ "work",
+ "tertiary sector",
+ "law"
+ ],
+ "_id": 15024,
+ "created": "2010-03-27T19:04:48.000Z",
+ "lastUpdated": "2021-07-20T08:59:20.738Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jugement de divorce",
+ "hasLocution": false,
+ "plural": "jugements de divorce"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status"
+ ],
+ "synsets": [
+ "01203761-n"
+ ],
+ "tags": [
+ "person",
+ "marital status"
+ ],
+ "_id": 15016,
+ "created": "2010-03-27T18:45:07.000Z",
+ "lastUpdated": "2021-07-20T08:58:56.346Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "divorce",
+ "hasLocution": false,
+ "plural": "divorces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "court document",
+ "law and justice"
+ ],
+ "synsets": [
+ "08348887-n",
+ "01203761-n"
+ ],
+ "tags": [
+ "document",
+ "justice",
+ "work",
+ "tertiary sector",
+ "law"
+ ],
+ "_id": 15026,
+ "created": "2010-03-27T19:06:35.000Z",
+ "lastUpdated": "2021-07-20T10:24:17.340Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jugement de divorce",
+ "hasLocution": false,
+ "plural": "jugements de divorce"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "court document",
+ "law and justice"
+ ],
+ "synsets": [
+ "08348887-n",
+ "01203761-n"
+ ],
+ "tags": [
+ "document",
+ "justice",
+ "work",
+ "tertiary sector",
+ "law"
+ ],
+ "_id": 15028,
+ "created": "2010-03-27T19:10:48.000Z",
+ "lastUpdated": "2021-07-20T08:59:35.945Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jugement de divorce",
+ "hasLocution": false,
+ "plural": "jugements de divorce"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "court document",
+ "law and justice"
+ ],
+ "synsets": [
+ "08348887-n",
+ "01185144-n",
+ "01203761-n"
+ ],
+ "tags": [
+ "document",
+ "justice",
+ "work",
+ "tertiary sector",
+ "law"
+ ],
+ "_id": 15030,
+ "created": "2010-03-27T19:15:30.000Z",
+ "lastUpdated": "2021-07-20T08:59:48.643Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "demande de divorce",
+ "hasLocution": false,
+ "plural": "demandes de divorce"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "court document",
+ "law and justice"
+ ],
+ "synsets": [
+ "08348887-n",
+ "01185144-n",
+ "01203761-n"
+ ],
+ "tags": [
+ "document",
+ "justice",
+ "work",
+ "tertiary sector",
+ "law"
+ ],
+ "_id": 15032,
+ "created": "2010-03-27T19:16:38.000Z",
+ "lastUpdated": "2021-07-20T10:24:21.103Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "demande de divorce",
+ "hasLocution": false,
+ "plural": "demandes de divorce"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "court document",
+ "law and justice"
+ ],
+ "synsets": [
+ "08348887-n",
+ "01185144-n",
+ "01203761-n"
+ ],
+ "tags": [
+ "document",
+ "justice",
+ "work",
+ "tertiary sector",
+ "law"
+ ],
+ "_id": 15034,
+ "created": "2010-03-27T19:17:49.000Z",
+ "lastUpdated": "2021-07-20T09:00:17.507Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "demande de divorce",
+ "hasLocution": false,
+ "plural": "demandes de divorce"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status"
+ ],
+ "synsets": [
+ "01203761-n"
+ ],
+ "tags": [
+ "person",
+ "marital status"
+ ],
+ "_id": 15012,
+ "created": "2010-03-27T18:42:03.000Z",
+ "lastUpdated": "2021-07-20T08:58:37.573Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "divorce",
+ "hasLocution": false,
+ "plural": "divorces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "marital status"
+ ],
+ "synsets": [
+ "01203761-n"
+ ],
+ "tags": [
+ "person",
+ "marital status"
+ ],
+ "_id": 15014,
+ "created": "2010-03-27T18:43:48.000Z",
+ "lastUpdated": "2021-07-20T08:58:49.565Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "divorce",
+ "hasLocution": false,
+ "plural": "divorces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "11105914-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "event",
+ "religious event",
+ "christianity"
+ ],
+ "_id": 15036,
+ "created": "2010-03-27T19:21:33.000Z",
+ "lastUpdated": "2021-09-03T17:03:13.794Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saint Jean",
+ "hasLocution": false
+ },
+ {
+ "keyword": "jour de la Saint-Jean",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "athlete"
+ ],
+ "synsets": [
+ "08225481-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "leisure",
+ "sport"
+ ],
+ "_id": 15262,
+ "created": "2010-04-07T09:52:09.000Z",
+ "lastUpdated": "2021-07-20T09:00:31.489Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "équipe",
+ "hasLocution": true,
+ "plural": "équipes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "security and defense"
+ ],
+ "synsets": [
+ "05808619-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 15322,
+ "created": "2010-04-08T10:31:11.000Z",
+ "lastUpdated": "2021-07-20T09:01:45.733Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "recherche ",
+ "hasLocution": false,
+ "plural": "recherches"
+ },
+ {
+ "keyword": "enquête",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "enquêtes"
+ },
+ {
+ "keyword": "investigation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "investigations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "leader",
+ "political representation",
+ "historical character",
+ "history"
+ ],
+ "synsets": [
+ "10486745-n"
+ ],
+ "tags": [
+ "person",
+ "leader",
+ "work",
+ "tertiary sector",
+ "political representation",
+ "character",
+ "historical character",
+ "history"
+ ],
+ "_id": 15326,
+ "created": "2010-04-08T10:46:50.000Z",
+ "lastUpdated": "2024-12-08T15:25:11.823Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "président",
+ "hasLocution": true,
+ "plural": "présidents"
+ },
+ {
+ "keyword": "directeur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "directeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00261534-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 15327,
+ "created": "2010-04-08T10:56:15.000Z",
+ "lastUpdated": "2021-07-20T09:03:24.753Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réparer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "athlete"
+ ],
+ "synsets": [
+ "08225481-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "leisure",
+ "sport"
+ ],
+ "_id": 15264,
+ "created": "2010-04-07T10:03:26.000Z",
+ "lastUpdated": "2021-07-21T12:55:37.594Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "équipe",
+ "hasLocution": true,
+ "plural": "équipes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "miscellaneous"
+ ],
+ "synsets": [
+ "00536071-a",
+ "00537516-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 15329,
+ "created": "2010-04-08T11:00:47.000Z",
+ "lastUpdated": "2021-07-20T09:03:32.143Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "incompréhensible",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "inintelligible",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "05813910-n"
+ ],
+ "tags": [],
+ "_id": 15331,
+ "created": "2010-04-08T11:05:00.000Z",
+ "lastUpdated": "2021-07-20T09:03:39.934Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "compréhension",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "05814239-n"
+ ],
+ "tags": [],
+ "_id": 15333,
+ "created": "2010-04-08T11:06:53.000Z",
+ "lastUpdated": "2021-07-20T09:03:46.237Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "incompréhension",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01309314-v",
+ "02522260-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 15335,
+ "created": "2010-04-08T16:59:06.000Z",
+ "lastUpdated": "2021-07-20T09:04:24.072Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "griffer",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "érafler",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "égratigner",
+ "hasLocution": false
+ },
+ {
+ "keyword": "griffure",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "griffures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility"
+ ],
+ "synsets": [
+ "08696353-n",
+ "09328804-n",
+ "00712380-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 15337,
+ "created": "2010-04-08T21:13:08.000Z",
+ "lastUpdated": "2021-07-20T10:24:34.996Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "spa",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "hydrothérapie",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "eaux thermales",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "astronomy"
+ ],
+ "synsets": [
+ "09837748-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "astronomy"
+ ],
+ "_id": 15339,
+ "created": "2010-04-08T21:18:00.000Z",
+ "lastUpdated": "2023-03-01T10:04:12.031Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "astronome",
+ "hasLocution": false,
+ "plural": "astronomes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "financial services",
+ "professional"
+ ],
+ "synsets": [
+ "09857212-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "financial services",
+ "professional"
+ ],
+ "_id": 15341,
+ "created": "2010-04-08T21:20:48.000Z",
+ "lastUpdated": "2021-07-20T09:05:08.333Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": " banquier",
+ "hasLocution": false,
+ "plural": "banquiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03314753-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 15343,
+ "created": "2010-04-08T21:23:18.000Z",
+ "lastUpdated": "2021-07-20T09:05:27.937Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chiffon",
+ "hasLocution": true,
+ "plural": "chiffons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "election"
+ ],
+ "synsets": [
+ "09909143-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 15345,
+ "created": "2010-04-08T22:00:40.000Z",
+ "lastUpdated": "2022-04-10T00:13:40.570Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "candidat",
+ "hasLocution": false,
+ "plural": "candidats"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07610751-n",
+ "02073479-v"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "gastronomy"
+ ],
+ "_id": 15347,
+ "created": "2010-04-08T22:05:30.000Z",
+ "lastUpdated": "2024-12-10T06:34:40.826Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caramel",
+ "hasLocution": false,
+ "plural": "caramels"
+ },
+ {
+ "type": 3,
+ "keyword": "verser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sirop de sucre",
+ "hasLocution": false,
+ "plural": "sirops de sucre",
+ "type": 2
+ },
+ {
+ "keyword": "faire couler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "music device",
+ "musical art",
+ "art"
+ ],
+ "synsets": [
+ "02073479-v"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "music device",
+ "music"
+ ],
+ "_id": 15349,
+ "created": "2010-04-08T22:09:55.000Z",
+ "lastUpdated": "2024-12-09T06:09:15.752Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "CD",
+ "hasLocution": true
+ },
+ {
+ "keyword": "compact disque",
+ "hasLocution": false,
+ "plural": "compacts disques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character",
+ "literature"
+ ],
+ "synsets": [
+ "10908784-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "literature"
+ ],
+ "_id": 15351,
+ "created": "2010-04-08T22:13:36.000Z",
+ "lastUpdated": "2021-07-20T09:07:32.161Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Cervantès",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Miguel de Cervantès",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01171984-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 15353,
+ "created": "2010-04-08T22:32:44.000Z",
+ "lastUpdated": "2021-07-20T09:08:04.148Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sucer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se sucer le doigt",
+ "hasLocution": false
+ },
+ {
+ "keyword": "sucer son pouce",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01171984-v",
+ "01173263-v",
+ "01434809-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 15355,
+ "created": "2010-04-08T22:35:06.000Z",
+ "lastUpdated": "2021-07-20T09:08:17.763Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sucer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "lécher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "security and defense"
+ ],
+ "synsets": [
+ "00787624-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 15320,
+ "created": "2010-04-08T10:29:16.000Z",
+ "lastUpdated": "2021-07-21T12:55:42.452Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire des recherches",
+ "hasLocution": true
+ },
+ {
+ "keyword": "investiguer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "02788021-n"
+ ],
+ "tags": [],
+ "_id": 15357,
+ "created": "2010-04-08T22:38:44.000Z",
+ "lastUpdated": "2021-07-20T09:08:37.732Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ruban",
+ "hasLocution": true,
+ "plural": "rubans"
+ },
+ {
+ "type": 2,
+ "keyword": "bandeau",
+ "hasLocution": true,
+ "plural": "bandeaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "food"
+ ],
+ "synsets": [
+ "00618376-a",
+ "00619441-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "feeding",
+ "food"
+ ],
+ "_id": 15359,
+ "created": "2010-04-08T22:47:00.000Z",
+ "lastUpdated": "2024-12-05T15:25:10.273Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "cuit",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "cuite",
+ "hasLocution": false
+ },
+ {
+ "keyword": "bouilli",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02300169-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 15361,
+ "created": "2010-04-08T22:50:11.000Z",
+ "lastUpdated": "2021-07-20T09:09:40.656Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "partager",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "04207680-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 15363,
+ "created": "2010-04-08T22:53:37.000Z",
+ "lastUpdated": "2021-07-20T09:09:55.274Z",
+ "keywords": [
+ {
+ "keyword": "lacet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "lacets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "food"
+ ],
+ "synsets": [
+ "00622052-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "feeding",
+ "food"
+ ],
+ "_id": 15365,
+ "created": "2010-04-08T23:03:35.000Z",
+ "lastUpdated": "2024-12-05T15:26:21.401Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "cru",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "book character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "book character",
+ "literature"
+ ],
+ "_id": 15373,
+ "created": "2010-04-08T23:14:56.000Z",
+ "lastUpdated": "2021-07-20T09:12:14.631Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Dulcinée",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Dulcinée du Toboso",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01371869-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 15369,
+ "created": "2010-04-08T23:08:21.000Z",
+ "lastUpdated": "2021-07-20T09:10:54.859Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "effilocher",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01242426-v",
+ "01415000-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 15375,
+ "created": "2010-04-08T23:19:21.000Z",
+ "lastUpdated": "2021-07-20T09:12:36.053Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "pousser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "renverser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire tomber",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01582662-v",
+ "05309998-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15379,
+ "created": "2010-04-09T21:38:24.000Z",
+ "lastUpdated": "2021-07-28T23:42:03.850Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00177253-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 15371,
+ "created": "2010-04-08T23:10:30.000Z",
+ "lastUpdated": "2021-07-20T09:12:08.710Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "déshabiller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se déshabiller",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "keyword": "déshabillé",
+ "type": 4
+ },
+ {
+ "keyword": "se dévêtir",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "00747485-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 15377,
+ "created": "2010-04-08T23:23:08.000Z",
+ "lastUpdated": "2021-07-20T09:12:40.070Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "commander",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01433863-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15382,
+ "created": "2010-04-09T21:42:06.000Z",
+ "lastUpdated": "2021-07-28T23:41:35.232Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01433863-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15383,
+ "created": "2010-04-09T21:44:12.000Z",
+ "lastUpdated": "2021-07-28T23:41:09.884Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product"
+ ],
+ "synsets": [
+ "07627342-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product"
+ ],
+ "_id": 15367,
+ "created": "2010-04-08T23:05:43.000Z",
+ "lastUpdated": "2021-07-20T09:10:47.645Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lait caillé",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "02190307-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15389,
+ "created": "2010-04-09T21:54:22.000Z",
+ "lastUpdated": "2021-07-28T23:40:39.336Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00014735-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15393,
+ "created": "2010-04-10T11:08:33.000Z",
+ "lastUpdated": "2021-07-28T23:40:11.495Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00915018-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15391,
+ "created": "2010-04-09T22:02:02.000Z",
+ "lastUpdated": "2021-07-28T23:39:42.724Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00114629-a",
+ "01790725-v",
+ "00708466-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15395,
+ "created": "2010-04-10T11:12:11.000Z",
+ "lastUpdated": "2021-07-28T23:39:07.541Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00008299-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15397,
+ "created": "2010-04-10T11:16:15.000Z",
+ "lastUpdated": "2021-07-28T23:39:18.861Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "praxie bucco-faciale",
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01294544-v",
+ "05309998-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15387,
+ "created": "2010-04-09T21:49:40.000Z",
+ "lastUpdated": "2021-07-28T23:38:03.453Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00264920-v",
+ "05610590-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15399,
+ "created": "2010-04-10T11:20:08.000Z",
+ "lastUpdated": "2021-07-28T23:37:31.403Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00007328-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15385,
+ "created": "2010-04-09T21:46:30.000Z",
+ "lastUpdated": "2021-07-28T23:37:02.404Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00264920-v",
+ "02785352-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15401,
+ "created": "2010-04-10T11:23:22.000Z",
+ "lastUpdated": "2021-07-28T23:36:40.121Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01434809-v",
+ "00151411-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15403,
+ "created": "2010-04-10T11:27:21.000Z",
+ "lastUpdated": "2021-07-28T23:36:16.079Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "praxie bucco-faciale",
+ "plural": "praxies bucco-faciales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01434809-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15405,
+ "created": "2010-04-10T11:29:12.000Z",
+ "lastUpdated": "2021-07-28T23:35:42.899Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "type": 2,
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01434809-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15407,
+ "created": "2010-04-10T11:32:01.000Z",
+ "lastUpdated": "2021-07-28T23:35:09.093Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "praxies bucco-faciales",
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01448551-v",
+ "05313305-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15415,
+ "created": "2010-04-10T11:47:55.000Z",
+ "lastUpdated": "2021-07-28T23:34:09.698Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "type": 2,
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01835473-v",
+ "05553673-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15417,
+ "created": "2010-04-10T11:52:59.000Z",
+ "lastUpdated": "2021-07-28T23:33:41.149Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "praxie bucco-faciale",
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00031813-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15419,
+ "created": "2010-04-10T12:00:02.000Z",
+ "lastUpdated": "2021-07-28T23:32:16.881Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00027698-v",
+ "05308571-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15421,
+ "created": "2010-04-10T12:04:47.000Z",
+ "lastUpdated": "2021-07-28T23:31:53.863Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "praxie bucco-faciale",
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00027698-v",
+ "05308571-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15423,
+ "created": "2010-04-10T12:07:52.000Z",
+ "lastUpdated": "2021-07-26T14:29:11.016Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00027698-v",
+ "05308571-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15425,
+ "created": "2010-04-10T12:11:18.000Z",
+ "lastUpdated": "2021-07-28T23:31:09.348Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01977773-v",
+ "05308571-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15409,
+ "created": "2010-04-10T11:36:37.000Z",
+ "lastUpdated": "2021-07-28T23:30:47.206Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "praxie bucco-faciale",
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00027698-v",
+ "05308571-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15427,
+ "created": "2010-04-10T12:13:28.000Z",
+ "lastUpdated": "2021-07-28T23:30:54.896Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "07138578-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15431,
+ "created": "2010-04-10T12:19:41.000Z",
+ "lastUpdated": "2021-07-26T14:33:19.202Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00027698-v",
+ "05308571-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15429,
+ "created": "2010-04-10T12:15:28.000Z",
+ "lastUpdated": "2021-07-26T14:33:02.919Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "plural": "praxies bucco-faciales",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00065962-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15411,
+ "created": "2010-04-10T11:40:19.000Z",
+ "lastUpdated": "2021-07-28T23:30:01.100Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00028558-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15435,
+ "created": "2010-04-10T12:25:27.000Z",
+ "lastUpdated": "2021-07-26T14:33:50.765Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "00028558-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15433,
+ "created": "2010-04-10T12:23:28.000Z",
+ "lastUpdated": "2021-07-26T14:33:35.243Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "plural": "praxies bucco-faciales",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01774173-v",
+ "00726794-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15437,
+ "created": "2010-04-10T12:29:47.000Z",
+ "lastUpdated": "2021-07-26T14:34:04.945Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "plural": "praxies bucco-faciales",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01448551-v",
+ "05313305-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15413,
+ "created": "2010-04-10T11:45:47.000Z",
+ "lastUpdated": "2021-07-28T23:29:20.824Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01171984-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15439,
+ "created": "2010-04-10T12:34:05.000Z",
+ "lastUpdated": "2021-07-26T14:34:22.169Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00101710-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 15447,
+ "created": "2010-04-10T13:17:40.000Z",
+ "lastUpdated": "2021-07-20T09:14:13.098Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "cracher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01047931-v",
+ "01895242-v"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15441,
+ "created": "2010-04-10T12:38:25.000Z",
+ "lastUpdated": "2021-07-26T14:34:42.915Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "construction"
+ ],
+ "synsets": [
+ "01365271-v",
+ "01363602-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 15445,
+ "created": "2010-04-10T13:15:18.000Z",
+ "lastUpdated": "2021-07-20T09:14:08.615Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "plâtrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "food"
+ ],
+ "synsets": [
+ "07765707-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 15453,
+ "created": "2010-04-10T13:28:27.000Z",
+ "lastUpdated": "2024-12-09T18:39:28.862Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "citron vert",
+ "hasLocution": true,
+ "plural": "citrons verts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "02741454-n",
+ "09304683-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 15455,
+ "created": "2010-04-10T13:33:57.000Z",
+ "lastUpdated": "2021-07-20T09:16:20.283Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brassards",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n",
+ "01835473-v",
+ "05553673-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 15443,
+ "created": "2010-04-10T12:56:27.000Z",
+ "lastUpdated": "2021-07-26T14:34:57.647Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "07954834-n",
+ "03784903-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 15457,
+ "created": "2010-04-10T13:36:42.000Z",
+ "lastUpdated": "2021-07-20T09:17:25.293Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moule",
+ "hasLocution": true,
+ "plural": "moules"
+ },
+ {
+ "keyword": "moule à gâteau",
+ "plural": "moules à gâteau",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "moule à cake",
+ "hasLocution": false,
+ "plural": "moules à cake",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "07954834-n",
+ "03784903-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 15459,
+ "created": "2010-04-10T13:38:00.000Z",
+ "lastUpdated": "2021-07-20T09:20:21.501Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moule",
+ "hasLocution": true,
+ "plural": "moules"
+ },
+ {
+ "keyword": "moule à gâteau",
+ "hasLocution": false,
+ "plural": "moules à gâteaux",
+ "type": 2
+ },
+ {
+ "keyword": "moule à savarin",
+ "hasLocution": false,
+ "plural": "moules à savarin",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01165162-n",
+ "00102340-v"
+ ],
+ "tags": [
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 15449,
+ "created": "2010-04-10T13:21:28.000Z",
+ "lastUpdated": "2021-07-20T09:15:17.076Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "automutilation",
+ "hasLocution": false,
+ "plural": "automutilations"
+ },
+ {
+ "keyword": "autopunition",
+ "hasLocution": false,
+ "plural": "autopunitions",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "food"
+ ],
+ "synsets": [
+ "00620041-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "feeding",
+ "food"
+ ],
+ "_id": 15451,
+ "created": "2010-04-10T13:25:22.000Z",
+ "lastUpdated": "2024-12-05T15:26:55.248Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "frit",
+ "hasLocution": false
+ },
+ {
+ "keyword": "friture",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fritures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00505100-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 15465,
+ "created": "2010-04-10T13:46:28.000Z",
+ "lastUpdated": "2021-07-20T09:21:06.925Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "pincer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "bullying"
+ ],
+ "synsets": [
+ "01373226-v",
+ "01122487-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "bullying"
+ ],
+ "_id": 15463,
+ "created": "2010-04-10T13:43:24.000Z",
+ "lastUpdated": "2021-07-20T09:21:00.843Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frapper",
+ "hasLocution": false
+ },
+ {
+ "keyword": "cogner",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "donner un coup de pied",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01448551-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 15461,
+ "created": "2010-04-10T13:40:02.000Z",
+ "lastUpdated": "2021-07-20T09:20:26.168Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mordre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "00263589-v",
+ "00262200-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 15473,
+ "created": "2010-04-10T13:56:50.000Z",
+ "lastUpdated": "2021-07-20T10:24:54.217Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rapiécer",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "raccommoder",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01442364-v",
+ "02309628-v",
+ "02211401-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 15471,
+ "created": "2010-04-10T13:53:42.000Z",
+ "lastUpdated": "2021-07-20T10:25:12.610Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "enlever",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prendre",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "voler",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01585566-v",
+ "01698271-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 15475,
+ "created": "2010-04-10T14:02:45.000Z",
+ "lastUpdated": "2021-07-20T10:25:51.196Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tracer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "repasser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "04410773-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 15477,
+ "created": "2010-04-10T14:05:12.000Z",
+ "lastUpdated": "2021-07-20T10:26:05.149Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "télescope",
+ "hasLocution": true,
+ "plural": "téléscopes"
+ },
+ {
+ "keyword": "lunette",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00116320-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 15481,
+ "created": "2010-04-10T15:46:38.000Z",
+ "lastUpdated": "2021-07-26T14:36:18.213Z",
+ "keywords": [
+ {
+ "keyword": "tirage de cheveux",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tirages de cheveux"
+ },
+ {
+ "keyword": "tiraillement de cheveux",
+ "hasLocution": false,
+ "plural": "tiraillements de cheveux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "06619692-n",
+ "01250622-n",
+ "05655001-n"
+ ],
+ "tags": [
+ "core vocabulary"
+ ],
+ "_id": 15483,
+ "created": "2010-04-10T15:50:05.000Z",
+ "lastUpdated": "2021-07-26T20:47:41.929Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bêtise",
+ "hasLocution": false,
+ "plural": "bêtises"
+ },
+ {
+ "keyword": "ânerie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "âneries"
+ },
+ {
+ "keyword": "sottise",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sottises"
+ },
+ {
+ "keyword": "idiotie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "idioties"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recycling"
+ ],
+ "synsets": [
+ "01516062-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "environmental science",
+ "recycling"
+ ],
+ "_id": 15479,
+ "created": "2010-04-10T14:07:56.000Z",
+ "lastUpdated": "2021-07-20T10:26:34.044Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Envoyer quelque chose à travers l'espace ou le lancer dans une direction pour qu'il retombe quelque part : Jeter son chapeau en l'air. Jeter des cailloux dans l'eau.",
+ "keyword": "jeter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01161188-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 15485,
+ "created": "2010-04-10T15:51:35.000Z",
+ "lastUpdated": "2021-07-20T10:27:59.220Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "utiliser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "container"
+ ],
+ "synsets": [
+ "00450647-v",
+ "01355093-v",
+ "01516062-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "container"
+ ],
+ "_id": 15487,
+ "created": "2010-04-10T15:55:04.000Z",
+ "lastUpdated": "2021-07-20T10:28:05.611Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "vider",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "social movement"
+ ],
+ "synsets": [
+ "02560630-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "sociology",
+ "social movement"
+ ],
+ "_id": 15467,
+ "created": "2010-04-10T13:49:06.000Z",
+ "lastUpdated": "2021-07-20T09:21:21.223Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "promouvoir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "impulser",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01442364-v",
+ "02309628-v",
+ "02211401-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 15469,
+ "created": "2010-04-10T13:51:38.000Z",
+ "lastUpdated": "2021-07-20T09:22:08.402Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "enlever",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prendre",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "piquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character",
+ "painting"
+ ],
+ "synsets": [
+ "11029769-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "visual art",
+ "painting"
+ ],
+ "_id": 15493,
+ "created": "2010-04-10T16:13:22.000Z",
+ "lastUpdated": "2021-07-20T10:29:06.423Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Goya",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Francisco de Goya y Lucientes",
+ "hasLocution": false
+ },
+ {
+ "hasLocution": false,
+ "keyword": "Francisco de Goya",
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "accessories",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "10399699-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "object",
+ "fashion",
+ "accessories",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 15489,
+ "created": "2010-04-10T16:05:14.000Z",
+ "lastUpdated": "2021-07-26T14:36:58.593Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "opticienne",
+ "hasLocution": false,
+ "plural": "opticiennes"
+ },
+ {
+ "keyword": "marchande de lunettes",
+ "hasLocution": false,
+ "plural": "marchandes de lunettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "02896008-n",
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 15499,
+ "created": "2010-04-10T16:44:07.000Z",
+ "lastUpdated": "2021-07-20T10:29:51.182Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "enlever son soutien-gorge",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes"
+ ],
+ "synsets": [
+ "01346574-v",
+ "01343121-v",
+ "02896008-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 15497,
+ "created": "2010-04-10T16:38:09.000Z",
+ "lastUpdated": "2021-07-20T10:29:55.858Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mettre un soutien-gorge",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "dried fruit",
+ "popular festival"
+ ],
+ "synsets": [
+ "10596736-n",
+ "07788250-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit",
+ "event",
+ "popular event",
+ "popular festival"
+ ],
+ "_id": 15501,
+ "created": "2010-04-10T16:50:47.000Z",
+ "lastUpdated": "2021-07-20T10:30:13.937Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Fête de la châtaigne ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "vendeuse de châtaignes",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Fête de la châtaigne en Galice",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeding"
+ ],
+ "synsets": [
+ "15185465-n"
+ ],
+ "tags": [
+ "feeding"
+ ],
+ "_id": 15503,
+ "created": "2010-04-10T16:55:28.000Z",
+ "lastUpdated": "2021-07-20T10:30:36.560Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "péremption",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "date de péremption",
+ "hasLocution": false,
+ "plural": "dates de péremption"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07867274-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 15505,
+ "created": "2010-04-10T16:58:59.000Z",
+ "lastUpdated": "2021-04-21T21:35:36.518Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fromage à tartiner",
+ "hasLocution": false,
+ "plural": "fromages à tartiner"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "swimming"
+ ],
+ "synsets": [
+ "09304683-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "swimming"
+ ],
+ "_id": 15509,
+ "created": "2010-04-10T17:10:25.000Z",
+ "lastUpdated": "2021-07-20T10:31:19.459Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "planche de natation",
+ "hasLocution": true,
+ "plural": "planches de natation"
+ },
+ {
+ "keyword": "plache",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "planches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "02424713-v",
+ "02811860-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 15507,
+ "created": "2010-04-10T17:05:47.000Z",
+ "lastUpdated": "2021-07-20T10:30:49.178Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "jouer avec l'eau",
+ "hasLocution": false
+ },
+ {
+ "keyword": "éclabousser",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 15511,
+ "created": "2010-04-10T17:14:40.000Z",
+ "lastUpdated": "2021-07-20T10:31:28.773Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "remonter sa culotte",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 15513,
+ "created": "2010-04-10T17:16:18.000Z",
+ "lastUpdated": "2021-07-20T10:31:33.447Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "remonter sa jupe",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "educational institution"
+ ],
+ "synsets": [
+ "08426574-n",
+ "08301402-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "educational institution"
+ ],
+ "_id": 15515,
+ "created": "2010-04-10T17:19:41.000Z",
+ "lastUpdated": "2021-07-20T10:31:43.914Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lycée",
+ "hasLocution": true,
+ "plural": "lycées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "economy"
+ ],
+ "synsets": [
+ "14516729-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "economy"
+ ],
+ "_id": 15519,
+ "created": "2010-04-10T17:27:18.000Z",
+ "lastUpdated": "2021-07-21T12:55:59.419Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pauvreté",
+ "hasLocution": false
+ },
+ {
+ "keyword": "misère",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "hospitality industry",
+ "trade"
+ ],
+ "synsets": [
+ "06528946-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "work",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 15517,
+ "created": "2010-04-10T17:23:53.000Z",
+ "lastUpdated": "2024-12-11T06:49:38.849Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "facture",
+ "hasLocution": true,
+ "plural": "factures"
+ },
+ {
+ "type": 2,
+ "keyword": "ticket",
+ "hasLocution": true,
+ "plural": "tickets"
+ },
+ {
+ "keyword": "note",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "notes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traffic signal"
+ ],
+ "synsets": [
+ "02512195-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 15525,
+ "created": "2010-04-10T17:34:55.000Z",
+ "lastUpdated": "2021-07-26T20:44:22.236Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "obliger",
+ "hasLocution": true
+ },
+ {
+ "keyword": "forcer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "pousser",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "imposer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "01132241-n"
+ ],
+ "tags": [],
+ "_id": 15523,
+ "created": "2010-04-10T17:32:57.000Z",
+ "lastUpdated": "2021-07-20T10:33:12.660Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "obligation",
+ "hasLocution": false,
+ "plural": "obligations"
+ },
+ {
+ "keyword": "devoir",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "devoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "book character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "book character",
+ "literature"
+ ],
+ "_id": 15495,
+ "created": "2010-04-10T16:16:34.000Z",
+ "lastUpdated": "2021-07-20T10:29:37.269Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Sancho Panza",
+ "hasLocution": false
+ },
+ {
+ "keyword": "Sancho Pança",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "accessories",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "10399699-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "object",
+ "fashion",
+ "accessories",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 15491,
+ "created": "2010-04-10T16:07:30.000Z",
+ "lastUpdated": "2021-07-20T10:28:43.039Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "opticien",
+ "hasLocution": true,
+ "plural": "opticiens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "road safety"
+ ],
+ "synsets": [
+ "00202772-n",
+ "06554038-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety"
+ ],
+ "_id": 15527,
+ "created": "2010-04-10T17:37:41.000Z",
+ "lastUpdated": "2021-07-26T20:42:17.177Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "interdiction",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "trade"
+ ],
+ "synsets": [
+ "06485611-n",
+ "06742613-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 15529,
+ "created": "2010-04-10T17:41:32.000Z",
+ "lastUpdated": "2021-07-20T10:34:08.282Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "réclamation",
+ "hasLocution": false,
+ "plural": "réclamations"
+ },
+ {
+ "keyword": "plainte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "plaintes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "human value"
+ ],
+ "synsets": [
+ "02003477-a",
+ "00466504-a",
+ "00579031-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "human value"
+ ],
+ "_id": 15531,
+ "created": "2010-04-10T17:44:43.000Z",
+ "lastUpdated": "2021-09-11T22:16:58.582Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "cohérent",
+ "hasLocution": false,
+ "plural": "cohérents"
+ },
+ {
+ "keyword": "constant",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "constants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03689034-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "health",
+ "medicine",
+ "medical center",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 15533,
+ "created": "2010-04-10T17:47:57.000Z",
+ "lastUpdated": "2021-07-20T10:34:56.328Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vestiaires",
+ "hasLocution": false
+ },
+ {
+ "keyword": "casier",
+ "type": 2,
+ "plural": "casiers",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "water transport"
+ ],
+ "synsets": [
+ "08656633-n",
+ "08651532-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 15535,
+ "created": "2010-04-10T17:51:05.000Z",
+ "lastUpdated": "2021-07-20T10:35:04.790Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "port",
+ "hasLocution": true,
+ "plural": "ports"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "educational institution"
+ ],
+ "synsets": [
+ "04518297-n",
+ "08303490-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "educational institution"
+ ],
+ "_id": 15537,
+ "created": "2010-04-10T17:53:42.000Z",
+ "lastUpdated": "2021-07-20T10:35:16.509Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "université",
+ "hasLocution": true,
+ "plural": "universités"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective"
+ ],
+ "synsets": [
+ "00103431-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective"
+ ],
+ "_id": 15539,
+ "created": "2010-04-10T17:57:28.000Z",
+ "lastUpdated": "2021-07-20T10:35:46.650Z",
+ "keywords": [
+ {
+ "keyword": "deuxième",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "second",
+ "type": 2,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective"
+ ],
+ "synsets": [
+ "00103431-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective"
+ ],
+ "_id": 15541,
+ "created": "2010-04-10T17:59:09.000Z",
+ "lastUpdated": "2021-07-20T10:35:59.528Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "seconde",
+ "hasLocution": true
+ },
+ {
+ "keyword": "deuxième",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective"
+ ],
+ "synsets": [
+ "02209976-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective"
+ ],
+ "_id": 15543,
+ "created": "2010-04-10T18:04:49.000Z",
+ "lastUpdated": "2021-07-21T09:55:56.586Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "troisième",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective"
+ ],
+ "synsets": [
+ "02209976-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective"
+ ],
+ "_id": 15545,
+ "created": "2010-04-10T18:06:28.000Z",
+ "lastUpdated": "2021-07-20T10:36:12.478Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "troisième",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective"
+ ],
+ "synsets": [
+ "00346567-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective"
+ ],
+ "_id": 15547,
+ "created": "2010-04-10T18:08:07.000Z",
+ "lastUpdated": "2021-07-20T10:36:18.226Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quatrième",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual practice"
+ ],
+ "synsets": [
+ "00749453-n"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual practice"
+ ],
+ "_id": 15553,
+ "created": "2010-04-10T18:15:09.000Z",
+ "lastUpdated": "2021-07-20T10:37:06.357Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prostitution",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual practice"
+ ],
+ "synsets": [
+ "00749453-n"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual practice"
+ ],
+ "_id": 15557,
+ "created": "2010-04-10T18:18:27.000Z",
+ "lastUpdated": "2021-07-20T10:37:13.366Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prostitution",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual practice"
+ ],
+ "synsets": [
+ "00749453-n"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual practice"
+ ],
+ "_id": 15555,
+ "created": "2010-04-10T18:16:59.000Z",
+ "lastUpdated": "2021-07-20T10:37:09.603Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prostitution",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "financial services",
+ "professional"
+ ],
+ "synsets": [
+ "09857212-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "financial services",
+ "professional"
+ ],
+ "_id": 15714,
+ "created": "2010-04-12T20:27:33.000Z",
+ "lastUpdated": "2021-07-26T20:35:55.036Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "banquière",
+ "hasLocution": false,
+ "plural": "banquières"
+ },
+ {
+ "keyword": "employée de banque",
+ "hasLocution": false,
+ "plural": "employées de banque",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "cookery"
+ ],
+ "synsets": [
+ "09983053-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 15712,
+ "created": "2010-04-12T20:25:02.000Z",
+ "lastUpdated": "2021-07-26T20:38:36.093Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "cheffe de cuisine",
+ "plural": "cheffes de cuisine"
+ },
+ {
+ "keyword": "cheffe",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cheffes"
+ },
+ {
+ "keyword": "cheffe cuisinière",
+ "hasLocution": false,
+ "plural": "cheffes cuisinières",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "election"
+ ],
+ "synsets": [
+ "09909143-n",
+ "09910201-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 15716,
+ "created": "2010-04-12T20:30:55.000Z",
+ "lastUpdated": "2021-07-20T10:38:09.016Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "candidate",
+ "hasLocution": false,
+ "plural": "candidates"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective"
+ ],
+ "synsets": [
+ "00346567-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective"
+ ],
+ "_id": 15549,
+ "created": "2010-04-10T18:09:40.000Z",
+ "lastUpdated": "2021-07-20T10:36:29.238Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "quatrième",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00177724-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 15722,
+ "created": "2010-04-12T20:48:27.000Z",
+ "lastUpdated": "2021-07-20T10:38:48.605Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se curer le nez",
+ "hasLocution": false
+ },
+ {
+ "keyword": "mettre son doigt dans le nez",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "election"
+ ],
+ "synsets": [
+ "09909143-n",
+ "09910201-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 15718,
+ "created": "2010-04-12T20:32:05.000Z",
+ "lastUpdated": "2021-07-20T10:38:17.554Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "candidat",
+ "hasLocution": false,
+ "plural": "candidats"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "09304683-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 15724,
+ "created": "2010-04-12T20:50:37.000Z",
+ "lastUpdated": "2021-07-20T10:41:38.634Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "frite",
+ "hasLocution": true,
+ "plural": "frites"
+ },
+ {
+ "keyword": "frite de piscine",
+ "hasLocution": true,
+ "plural": "frites de piscine"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "recycling",
+ "signaling system"
+ ],
+ "synsets": [
+ "08577564-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "environmental science",
+ "recycling",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 15726,
+ "created": "2010-04-12T20:56:26.000Z",
+ "lastUpdated": "2021-07-20T10:42:14.617Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dépotoir",
+ "hasLocution": false,
+ "plural": "dépotoirs"
+ },
+ {
+ "keyword": "décharge",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "décharges"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "hospitality industry",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-work",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "03547513-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "hospitality industry",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 15730,
+ "created": "2010-04-12T20:59:57.000Z",
+ "lastUpdated": "2021-07-26T20:33:08.317Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hôtel",
+ "hasLocution": true,
+ "plural": "hôtels"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "02824762-n",
+ "03548040-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system",
+ "work",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 15732,
+ "created": "2010-04-12T21:02:13.000Z",
+ "lastUpdated": "2024-12-13T18:18:40.472Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chambre",
+ "hasLocution": false,
+ "plural": "chambres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "election"
+ ],
+ "synsets": [
+ "09909143-n",
+ "09910201-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 15720,
+ "created": "2010-04-12T20:34:32.000Z",
+ "lastUpdated": "2022-04-10T00:14:13.933Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "candidats",
+ "hasLocution": false,
+ "plural": "candidats"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "trade"
+ ],
+ "synsets": [
+ "03971750-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 15551,
+ "created": "2010-04-10T18:12:29.000Z",
+ "lastUpdated": "2021-07-20T10:36:43.981Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "centre commercial",
+ "hasLocution": true,
+ "plural": "centres commerciaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "03547513-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 15728,
+ "created": "2010-04-12T20:58:27.000Z",
+ "lastUpdated": "2021-07-20T10:42:23.724Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hôtel",
+ "hasLocution": true,
+ "plural": "hôtels"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03653380-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "home",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 15736,
+ "created": "2010-04-12T21:06:47.000Z",
+ "lastUpdated": "2021-07-20T10:43:41.533Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blanchisserie",
+ "hasLocution": true,
+ "plural": "blanchisseries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "10109548-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 15742,
+ "created": "2010-04-12T21:14:45.000Z",
+ "lastUpdated": "2021-07-20T10:44:11.035Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "finalistes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "waste disposal"
+ ],
+ "synsets": [
+ "09946547-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "waste disposal"
+ ],
+ "_id": 15744,
+ "created": "2010-04-12T21:43:09.000Z",
+ "lastUpdated": "2021-07-26T20:34:22.149Z",
+ "keywords": [
+ {
+ "keyword": "agent de propreté",
+ "hasLocution": false,
+ "plural": "agents de propreté",
+ "type": 2
+ },
+ {
+ "keyword": "homme de ménage",
+ "hasLocution": false,
+ "plural": "hommes de ménage",
+ "type": 2
+ },
+ {
+ "keyword": "agent d'entretien",
+ "hasLocution": false,
+ "plural": "agents d'entretien",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "10109548-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 15740,
+ "created": "2010-04-12T21:13:11.000Z",
+ "lastUpdated": "2021-07-20T10:44:04.460Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "finaliste",
+ "hasLocution": false,
+ "plural": "finalistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "10109548-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 15738,
+ "created": "2010-04-12T21:11:56.000Z",
+ "lastUpdated": "2021-07-20T10:43:55.791Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "finaliste",
+ "hasLocution": false,
+ "plural": "finalistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00663924-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 15746,
+ "created": "2010-04-12T21:56:07.000Z",
+ "lastUpdated": "2021-07-20T10:45:46.949Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "électrothérapie",
+ "hasLocution": false,
+ "plural": "électrothérapies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "urban area"
+ ],
+ "synsets": [
+ "08541617-n"
+ ],
+ "tags": [
+ "place",
+ "urban area"
+ ],
+ "_id": 15748,
+ "created": "2010-04-12T21:59:40.000Z",
+ "lastUpdated": "2021-07-20T10:46:09.603Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "centre",
+ "hasLocution": true,
+ "plural": "centres"
+ },
+ {
+ "keyword": "centre-ville",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00049617-v",
+ "00177253-v",
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 15808,
+ "created": "2010-04-13T17:54:18.000Z",
+ "lastUpdated": "2021-07-20T10:46:19.872Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baisser sa jupe",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00049617-v",
+ "00177253-v",
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 15806,
+ "created": "2010-04-13T17:50:34.000Z",
+ "lastUpdated": "2021-07-20T10:46:15.783Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baisser sa culotte",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04453410-n",
+ "04025061-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "health",
+ "medicine",
+ "medical center",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 15810,
+ "created": "2010-04-13T18:03:46.000Z",
+ "lastUpdated": "2021-07-26T21:43:43.649Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toilettes",
+ "hasLocution": true,
+ "plural": "toilettes"
+ },
+ {
+ "type": 2,
+ "keyword": "toilettes adaptées",
+ "hasLocution": false,
+ "plural": "toilettes adaptées"
+ },
+ {
+ "hasLocution": true,
+ "keyword": "WC",
+ "type": 2,
+ "plural": "WCs"
+ },
+ {
+ "keyword": "toilettes accessibles",
+ "hasLocution": false,
+ "plural": "toilettes accessibles",
+ "type": 2
+ },
+ {
+ "keyword": "toilettes PMR",
+ "hasLocution": false,
+ "plural": "toilettes PMR",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03042670-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 15734,
+ "created": "2010-04-12T21:04:34.000Z",
+ "lastUpdated": "2021-07-20T10:43:13.090Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de classe",
+ "hasLocution": true,
+ "plural": "salles de classe"
+ },
+ {
+ "type": 2,
+ "keyword": "salle de cours",
+ "hasLocution": true,
+ "plural": "salles de cours"
+ },
+ {
+ "keyword": "classe",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "classes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04453410-n",
+ "04025061-n",
+ "03751977-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 15812,
+ "created": "2010-04-13T18:06:15.000Z",
+ "lastUpdated": "2021-07-26T21:42:14.031Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toilettes pour hommes",
+ "hasLocution": true,
+ "plural": "toilettes pour hommes"
+ },
+ {
+ "type": 2,
+ "keyword": "toilettes",
+ "hasLocution": true,
+ "plural": "toilettes"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "toilettes accessibles",
+ "plural": "toilettes accessibles"
+ },
+ {
+ "type": 2,
+ "keyword": "toilettes adaptées",
+ "hasLocution": false,
+ "plural": "toilettes adaptées"
+ },
+ {
+ "hasLocution": true,
+ "keyword": "WC",
+ "type": 2,
+ "plural": "WCs"
+ },
+ {
+ "keyword": "toilettes PMR",
+ "hasLocution": false,
+ "plural": "toilettes PMR",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04453410-n",
+ "04025061-n",
+ "03638254-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 15814,
+ "created": "2010-04-13T18:08:56.000Z",
+ "lastUpdated": "2021-07-26T21:41:46.676Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toilettes pour femmes",
+ "hasLocution": true,
+ "plural": "toilettes pour femmes"
+ },
+ {
+ "type": 2,
+ "keyword": "toilettes",
+ "hasLocution": true,
+ "plural": "toilettes"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "toilettes accessibles",
+ "plural": "toilettes accessibles"
+ },
+ {
+ "type": 2,
+ "keyword": "toilettes adaptées",
+ "hasLocution": false,
+ "plural": "toilettes adaptées"
+ },
+ {
+ "keyword": "WC",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "WCs"
+ },
+ {
+ "keyword": "toilettes PMR",
+ "hasLocution": false,
+ "plural": "toilettes PMR",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport",
+ "traffic accident"
+ ],
+ "synsets": [
+ "07367675-n",
+ "04204153-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "traffic accident"
+ ],
+ "_id": 15820,
+ "created": "2010-04-13T18:30:25.000Z",
+ "lastUpdated": "2021-07-20T10:48:16.163Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "naufrage",
+ "hasLocution": true,
+ "plural": "naufrages"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "08474987-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 15818,
+ "created": "2010-04-13T18:25:15.000Z",
+ "lastUpdated": "2021-07-20T10:48:10.486Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "série",
+ "hasLocution": true,
+ "plural": "séries"
+ },
+ {
+ "keyword": "algorithme",
+ "hasLocution": false,
+ "plural": "algorithmes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dietetics"
+ ],
+ "synsets": [
+ "10766787-n"
+ ],
+ "tags": [
+ "health",
+ "dietetics"
+ ],
+ "_id": 15822,
+ "created": "2010-04-13T18:35:02.000Z",
+ "lastUpdated": "2021-07-20T10:48:30.117Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "végétarien",
+ "hasLocution": false,
+ "plural": "végétariens"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dietetics"
+ ],
+ "synsets": [
+ "10766787-n"
+ ],
+ "tags": [
+ "health",
+ "dietetics"
+ ],
+ "_id": 15824,
+ "created": "2010-04-13T18:37:15.000Z",
+ "lastUpdated": "2021-07-20T10:48:45.824Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "végétarienne",
+ "hasLocution": false,
+ "plural": "végétariennes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "hospital room"
+ ],
+ "synsets": [
+ "03286056-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "health",
+ "medicine",
+ "medical center",
+ "room"
+ ],
+ "_id": 15826,
+ "created": "2010-04-13T18:42:28.000Z",
+ "lastUpdated": "2021-07-20T10:49:53.375Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ascenseur",
+ "hasLocution": true,
+ "plural": "ascenseurs"
+ },
+ {
+ "type": 2,
+ "keyword": "monte-charge",
+ "hasLocution": false,
+ "plural": "monte-charges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic accident"
+ ],
+ "synsets": [
+ "07315954-n",
+ "07316568-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "traffic accident"
+ ],
+ "_id": 15828,
+ "created": "2010-04-13T18:47:03.000Z",
+ "lastUpdated": "2021-07-20T10:50:18.564Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accident",
+ "hasLocution": true,
+ "plural": "accidents"
+ },
+ {
+ "type": 2,
+ "keyword": "accident aérien",
+ "hasLocution": false,
+ "plural": "accidents aériens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic accident"
+ ],
+ "synsets": [
+ "07315954-n",
+ "07316568-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "traffic accident"
+ ],
+ "_id": 15830,
+ "created": "2010-04-13T18:51:05.000Z",
+ "lastUpdated": "2021-07-20T10:50:44.801Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accident",
+ "hasLocution": true,
+ "plural": "accidents"
+ },
+ {
+ "type": 2,
+ "keyword": "accident ferroviaire",
+ "hasLocution": false,
+ "plural": "accidents ferroviaires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00456705-v",
+ "00485097-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 15816,
+ "created": "2010-04-13T18:15:49.000Z",
+ "lastUpdated": "2021-07-20T10:47:39.640Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "compléter",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "04558341-n",
+ "04336615-n",
+ "04331525-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 15838,
+ "created": "2010-04-13T19:05:56.000Z",
+ "lastUpdated": "2021-07-29T23:41:20.457Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "stock de papeterie",
+ "hasLocution": false,
+ "plural": "stocks de papeterie"
+ },
+ {
+ "keyword": "réserve de papeterie",
+ "hasLocution": false,
+ "plural": "réserves de papeterie",
+ "type": 2
+ },
+ {
+ "keyword": "entrepôt de papeterie",
+ "hasLocution": false,
+ "plural": "entrepôts de papeterie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system",
+ "clothing industry"
+ ],
+ "synsets": [
+ "04187290-n",
+ "03653380-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system",
+ "work",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 15840,
+ "created": "2010-04-13T19:16:21.000Z",
+ "lastUpdated": "2021-07-29T23:41:35.169Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "local de repassage",
+ "hasLocution": false,
+ "plural": "locaux de repassage"
+ },
+ {
+ "keyword": "pièce de repassage",
+ "hasLocution": false,
+ "plural": "pièces de repassage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04558341-n",
+ "04336615-n",
+ "04331525-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "health",
+ "medicine",
+ "medical center",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 15834,
+ "created": "2010-04-13T18:58:04.000Z",
+ "lastUpdated": "2021-07-28T17:31:00.946Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entrepôt de linge",
+ "hasLocution": false,
+ "plural": "entrepôts de linge"
+ },
+ {
+ "keyword": "stock de linge",
+ "hasLocution": false,
+ "plural": "stocks de linge",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04558341-n",
+ "03242834-n",
+ "03054531-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 15842,
+ "created": "2010-04-13T19:30:06.000Z",
+ "lastUpdated": "2021-07-26T21:50:04.662Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dressing",
+ "hasLocution": false,
+ "plural": "dressings"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media device"
+ ],
+ "synsets": [
+ "04380351-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media"
+ ],
+ "_id": 15895,
+ "created": "2010-04-14T21:36:56.000Z",
+ "lastUpdated": "2021-07-20T10:54:42.059Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "standard",
+ "hasLocution": false,
+ "plural": "standards"
+ },
+ {
+ "keyword": "standard téléphonique",
+ "hasLocution": false,
+ "plural": "standards téléphoniques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03103339-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 15897,
+ "created": "2010-04-14T21:42:58.000Z",
+ "lastUpdated": "2021-07-20T10:55:07.523Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "standard",
+ "hasLocution": false,
+ "plural": "standards"
+ },
+ {
+ "keyword": "standard téléphonique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "standard téléphoniques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "sports facility",
+ "recreational facility"
+ ],
+ "synsets": [
+ "04032447-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "recreational facility"
+ ],
+ "_id": 15899,
+ "created": "2010-04-14T21:45:56.000Z",
+ "lastUpdated": "2021-07-26T21:52:02.689Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "système de filtration",
+ "hasLocution": false,
+ "plural": "systèmes de filtration"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "système de filtrage",
+ "plural": "systèmes de filtrage"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04558341-n",
+ "03891232-n",
+ "04336615-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "health",
+ "medicine",
+ "medical center",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 15832,
+ "created": "2010-04-13T18:54:30.000Z",
+ "lastUpdated": "2021-07-28T17:30:54.848Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entrepôt alimentaire",
+ "hasLocution": false,
+ "plural": "entrepôts alimentaires"
+ },
+ {
+ "keyword": "stock alimentaire",
+ "hasLocution": false,
+ "plural": "stocks alimentaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "hospital room",
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "04558341-n",
+ "03043932-n",
+ "04336615-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "health",
+ "medicine",
+ "medical center",
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 15836,
+ "created": "2010-04-13T19:02:09.000Z",
+ "lastUpdated": "2021-07-29T23:44:51.574Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "stock de produits ménagers",
+ "hasLocution": false,
+ "plural": "stocks de produits ménagers"
+ },
+ {
+ "keyword": "entrepôt de produits ménagers",
+ "hasLocution": false,
+ "plural": "entrepôts de produits ménagers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room"
+ ],
+ "synsets": [
+ "02810916-n",
+ "04453410-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room"
+ ],
+ "_id": 15905,
+ "created": "2010-04-14T21:55:43.000Z",
+ "lastUpdated": "2021-07-26T21:54:45.039Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de bain adaptée",
+ "hasLocution": false,
+ "plural": "salles de bain adaptées"
+ },
+ {
+ "type": 2,
+ "keyword": "salle de bain ",
+ "hasLocution": false,
+ "plural": "salles de bain"
+ },
+ {
+ "keyword": "toilettes adaptées",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "toilettes adaptées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media device"
+ ],
+ "synsets": [
+ "03321050-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media"
+ ],
+ "_id": 15909,
+ "created": "2010-04-14T22:02:35.000Z",
+ "lastUpdated": "2021-07-20T10:57:33.694Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fax",
+ "hasLocution": false,
+ "plural": "fax"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "residential building"
+ ],
+ "synsets": [
+ "04216003-n",
+ "04216680-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "home"
+ ],
+ "_id": 15907,
+ "created": "2010-04-14T22:00:05.000Z",
+ "lastUpdated": "2021-07-21T09:56:20.491Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "douche",
+ "hasLocution": true,
+ "plural": "douches"
+ },
+ {
+ "type": 2,
+ "keyword": "douche adaptée",
+ "hasLocution": false,
+ "plural": "douches adaptées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recycling",
+ "street furniture"
+ ],
+ "synsets": [
+ "03260735-n",
+ "04072901-n"
+ ],
+ "tags": [
+ "environmental science",
+ "recycling",
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 15911,
+ "created": "2010-04-14T22:04:26.000Z",
+ "lastUpdated": "2021-07-26T21:56:05.765Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "benne",
+ "hasLocution": true,
+ "plural": "bennes"
+ },
+ {
+ "type": 2,
+ "keyword": "poubelle de recyclage pour le plastique",
+ "hasLocution": true,
+ "plural": "poubelles de recyclage pour le plastique"
+ },
+ {
+ "keyword": "benne à plastique",
+ "hasLocution": false,
+ "plural": "bennes à plastique",
+ "type": 2
+ },
+ {
+ "keyword": "bac à ordures",
+ "hasLocution": false,
+ "plural": "bacs à ordures",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "04029260-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 15913,
+ "created": "2010-04-14T22:09:52.000Z",
+ "lastUpdated": "2021-07-26T21:10:28.211Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "groupe de pression",
+ "hasLocution": false,
+ "plural": "groupes de pression"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "module de maintien de pression",
+ "plural": "modules de maintien de pression",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work machine"
+ ],
+ "synsets": [
+ "03438787-n"
+ ],
+ "tags": [
+ "work",
+ "work machine"
+ ],
+ "_id": 15917,
+ "created": "2010-04-14T22:13:18.000Z",
+ "lastUpdated": "2021-07-20T10:59:41.856Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "générateur",
+ "hasLocution": true,
+ "plural": "générateurs"
+ },
+ {
+ "type": 2,
+ "keyword": "groupe électrogène",
+ "hasLocution": false,
+ "plural": "groupes électrogènes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work machine"
+ ],
+ "synsets": [
+ "03438787-n"
+ ],
+ "tags": [
+ "work",
+ "work machine"
+ ],
+ "_id": 15916,
+ "created": "2010-04-14T22:12:47.000Z",
+ "lastUpdated": "2021-07-20T10:59:20.042Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "générateur",
+ "hasLocution": true,
+ "plural": "générateurs"
+ },
+ {
+ "type": 2,
+ "keyword": "groupe électrogène",
+ "hasLocution": false,
+ "plural": "groupes électrogènes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "03102791-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 15901,
+ "created": "2010-04-14T21:49:34.000Z",
+ "lastUpdated": "2021-07-20T10:56:03.192Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tableau électrique",
+ "hasLocution": false,
+ "plural": "tableaux électriques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "residential building"
+ ],
+ "synsets": [
+ "04216003-n",
+ "04216680-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "home"
+ ],
+ "_id": 15904,
+ "created": "2010-04-14T21:52:16.000Z",
+ "lastUpdated": "2021-07-20T10:56:26.971Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "douche",
+ "hasLocution": true,
+ "plural": "douches"
+ },
+ {
+ "keyword": "cabine de douche",
+ "hasLocution": false,
+ "plural": "cabines de douche",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction",
+ "residential building"
+ ],
+ "synsets": [
+ "04560989-n",
+ "04561206-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "home"
+ ],
+ "_id": 15919,
+ "created": "2010-04-14T22:16:57.000Z",
+ "lastUpdated": "2021-07-20T10:59:59.894Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lavabo",
+ "hasLocution": true,
+ "plural": "lavabos"
+ },
+ {
+ "type": 2,
+ "keyword": "lavabo adapté",
+ "hasLocution": false,
+ "plural": "lavabos adaptés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "security and defense"
+ ],
+ "synsets": [
+ "04084846-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 15921,
+ "created": "2010-04-14T22:22:08.000Z",
+ "lastUpdated": "2021-07-28T08:52:39.047Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gaine d'évacuation verticale",
+ "hasLocution": false,
+ "plural": "gaine d'évacuation verticale"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction",
+ "residential building"
+ ],
+ "synsets": [
+ "04453655-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "home"
+ ],
+ "_id": 15927,
+ "created": "2010-04-14T22:32:48.000Z",
+ "lastUpdated": "2021-07-20T11:09:57.423Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "WC adapté",
+ "hasLocution": false
+ },
+ {
+ "keyword": "toilettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "toilettes adaptées",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "students"
+ ],
+ "synsets": [
+ "10657783-n"
+ ],
+ "tags": [
+ "education",
+ "students"
+ ],
+ "_id": 15929,
+ "created": "2010-04-14T22:37:31.000Z",
+ "lastUpdated": "2021-07-20T11:11:16.383Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "représentante des élèves",
+ "hasLocution": false,
+ "plural": "représentantes des élèves"
+ },
+ {
+ "type": 2,
+ "keyword": "représentante",
+ "hasLocution": false,
+ "plural": "représentantes"
+ },
+ {
+ "keyword": "déléguée",
+ "hasLocution": false,
+ "plural": "déléguées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "students"
+ ],
+ "synsets": [
+ "10657783-n"
+ ],
+ "tags": [
+ "education",
+ "students"
+ ],
+ "_id": 15931,
+ "created": "2010-04-14T22:38:53.000Z",
+ "lastUpdated": "2021-07-20T11:14:06.195Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "représentant des élèves",
+ "hasLocution": false,
+ "plural": "représentants des élèves"
+ },
+ {
+ "type": 2,
+ "keyword": "représentant",
+ "hasLocution": false,
+ "plural": "représentants des élèves"
+ },
+ {
+ "keyword": "délégué",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "délégués"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "law and justice"
+ ],
+ "synsets": [
+ "09781524-n",
+ "09781434-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 15984,
+ "created": "2010-04-16T10:25:35.000Z",
+ "lastUpdated": "2021-07-20T11:15:32.341Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accusé",
+ "hasLocution": false,
+ "plural": "accusés"
+ },
+ {
+ "keyword": "défendeur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "défendeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "trade"
+ ],
+ "synsets": [
+ "02325354-v",
+ "02113108-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 15986,
+ "created": "2010-04-16T10:29:26.000Z",
+ "lastUpdated": "2021-07-20T15:09:42.622Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "percevoir",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade"
+ ],
+ "synsets": [
+ "06525755-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 15988,
+ "created": "2010-04-16T10:30:36.000Z",
+ "lastUpdated": "2021-07-20T15:10:52.492Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "encaissement",
+ "hasLocution": false,
+ "plural": "encaissements"
+ },
+ {
+ "keyword": "collecte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "collectes"
+ },
+ {
+ "keyword": "perception",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "perceptions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "psychology",
+ "therapy"
+ ],
+ "synsets": [
+ "00704941-n"
+ ],
+ "tags": [
+ "psychology",
+ "therapy"
+ ],
+ "_id": 15925,
+ "created": "2010-04-14T22:29:29.000Z",
+ "lastUpdated": "2021-07-20T11:08:41.157Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "thérapie de groupe",
+ "hasLocution": false,
+ "plural": "thérapies de groupe"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "economy"
+ ],
+ "synsets": [
+ "14512697-n"
+ ],
+ "tags": [
+ "economy"
+ ],
+ "_id": 15990,
+ "created": "2010-04-16T10:41:03.000Z",
+ "lastUpdated": "2021-07-20T15:11:26.858Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crise",
+ "hasLocution": true,
+ "plural": "crises"
+ },
+ {
+ "type": 2,
+ "keyword": "crise économique",
+ "hasLocution": false,
+ "plural": "crises économiques"
+ },
+ {
+ "keyword": "dépression",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dépressions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "09915013-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 15992,
+ "created": "2010-04-16T10:44:59.000Z",
+ "lastUpdated": "2021-08-24T15:47:22.867Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "auxiliaire de vie",
+ "plural": "auxiliaires de vie"
+ },
+ {
+ "keyword": "aidant",
+ "hasLocution": false,
+ "plural": "aidants",
+ "type": 2
+ },
+ {
+ "keyword": "moniteur",
+ "hasLocution": true,
+ "plural": "moniteurs",
+ "type": 2
+ },
+ {
+ "keyword": "tierce-personne",
+ "hasLocution": false,
+ "plural": "tierce-personnes",
+ "type": 2
+ },
+ {
+ "keyword": "aide-médicopédagogique",
+ "hasLocution": false,
+ "plural": "aides-médicopédagogiques",
+ "type": 2
+ },
+ {
+ "keyword": "aide-médicopsychologique",
+ "hasLocution": false,
+ "plural": "aide-médicopsychologiques",
+ "type": 2
+ },
+ {
+ "keyword": "AMP",
+ "hasLocution": false,
+ "plural": "AMP",
+ "type": 2
+ },
+ {
+ "keyword": "aide de vie scolaire",
+ "hasLocution": false,
+ "plural": "aides de vie scolaire",
+ "type": 2
+ },
+ {
+ "keyword": "AVS",
+ "plural": "AVS",
+ "type": 2,
+ "hasLocution": false
+ },
+ {
+ "keyword": "accompagnant éducatif et social",
+ "hasLocution": false,
+ "plural": "accompagnants éducatifs et sociaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room"
+ ],
+ "synsets": [
+ "03891232-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room"
+ ],
+ "_id": 15996,
+ "created": "2010-04-16T10:58:39.000Z",
+ "lastUpdated": "2021-07-20T15:13:08.329Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "réserve",
+ "hasLocution": false,
+ "plural": "réserves"
+ },
+ {
+ "keyword": "garde-manger",
+ "hasLocution": false,
+ "plural": "garde-manger"
+ },
+ {
+ "keyword": "cellier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "celliers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "02759740-v",
+ "00809123-v"
+ ],
+ "tags": [],
+ "_id": 16000,
+ "created": "2010-04-16T11:26:57.000Z",
+ "lastUpdated": "2021-07-20T15:13:17.388Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'opposer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "09915013-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 15994,
+ "created": "2010-04-16T10:51:09.000Z",
+ "lastUpdated": "2021-08-24T15:51:23.224Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "auxiliaires de vie",
+ "plural": "auxiliaires de vie"
+ },
+ {
+ "type": 2,
+ "keyword": "moniteurs",
+ "hasLocution": false,
+ "plural": "moniteurs"
+ },
+ {
+ "keyword": "tierce-personnes",
+ "hasLocution": false,
+ "plural": "tierce-personnes",
+ "type": 2
+ },
+ {
+ "keyword": "AMP",
+ "hasLocution": false,
+ "plural": "AMP",
+ "type": 2
+ },
+ {
+ "keyword": "aides médico-psychologiques",
+ "hasLocution": false,
+ "plural": "aides-médico-psychologiques",
+ "type": 2
+ },
+ {
+ "keyword": "aides médico-pédagogiques",
+ "hasLocution": false,
+ "plural": "aides-médico-pédagogiques",
+ "type": 2
+ },
+ {
+ "keyword": "accompagnants éducatifs et sociaux",
+ "hasLocution": false,
+ "plural": "accompagnants éducatifs et sociaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02759740-v",
+ "00809123-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 16004,
+ "created": "2010-04-16T11:31:18.000Z",
+ "lastUpdated": "2021-07-21T07:04:58.111Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'opposer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02759740-v",
+ "00809123-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 16007,
+ "created": "2010-04-16T11:33:20.000Z",
+ "lastUpdated": "2021-07-20T15:13:56.155Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'opposer",
+ "hasLocution": false,
+ "plural": "oppositions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human response",
+ "verb"
+ ],
+ "synsets": [
+ "00203133-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 16009,
+ "created": "2010-04-16T11:37:05.000Z",
+ "lastUpdated": "2024-12-13T06:41:25.682Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "opposition",
+ "hasLocution": true,
+ "plural": "oppositions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human response"
+ ],
+ "synsets": [
+ "00203133-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response"
+ ],
+ "_id": 16013,
+ "created": "2010-04-16T11:41:00.000Z",
+ "lastUpdated": "2021-07-20T15:14:11.612Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "opposition",
+ "hasLocution": true,
+ "plural": "oppositions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02759740-v",
+ "00809123-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 16002,
+ "created": "2010-04-16T11:28:37.000Z",
+ "lastUpdated": "2021-07-21T07:04:54.297Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "S'opposer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media device",
+ "mass media"
+ ],
+ "synsets": [
+ "04051578-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media",
+ "communication"
+ ],
+ "_id": 15923,
+ "created": "2010-04-14T22:26:36.000Z",
+ "lastUpdated": "2021-07-20T11:00:31.285Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "téléphone",
+ "hasLocution": true,
+ "plural": "téléphones"
+ },
+ {
+ "type": 2,
+ "keyword": "téléphone sans fil",
+ "hasLocution": false,
+ "plural": "téléphones sans fil"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade"
+ ],
+ "synsets": [
+ "00079838-n",
+ "13274154-n",
+ "01122769-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 16017,
+ "created": "2010-04-16T11:53:50.000Z",
+ "lastUpdated": "2021-07-20T15:14:41.316Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "achat",
+ "hasLocution": true,
+ "plural": "achats"
+ },
+ {
+ "type": 2,
+ "keyword": "paiement",
+ "hasLocution": false,
+ "plural": "paiements"
+ },
+ {
+ "type": 2,
+ "keyword": "acquisition",
+ "hasLocution": false,
+ "plural": "acquisitions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "trade document"
+ ],
+ "synsets": [
+ "06535632-n",
+ "02255873-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "document",
+ "trade"
+ ],
+ "_id": 16021,
+ "created": "2010-04-17T16:00:01.000Z",
+ "lastUpdated": "2021-07-21T07:04:26.291Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "assurance",
+ "hasLocution": true,
+ "plural": "assurances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "02205200-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 16025,
+ "created": "2010-04-17T16:16:41.000Z",
+ "lastUpdated": "2021-07-20T15:15:26.957Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "offrir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "donner un cadeau",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document"
+ ],
+ "synsets": [
+ "06535632-n"
+ ],
+ "tags": [
+ "document",
+ "trade"
+ ],
+ "_id": 16027,
+ "created": "2010-04-17T16:19:33.000Z",
+ "lastUpdated": "2021-07-20T15:15:37.087Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "assurance",
+ "hasLocution": true,
+ "plural": "assurances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid",
+ "orthopedic product",
+ "categorization"
+ ],
+ "synsets": [
+ "00666719-n",
+ "05162155-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid",
+ "object",
+ "orthopedic product",
+ "categorization"
+ ],
+ "_id": 16023,
+ "created": "2010-04-17T16:04:32.000Z",
+ "lastUpdated": "2021-07-26T14:48:33.591Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aides techniques",
+ "hasLocution": false,
+ "plural": "aides techniques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "death",
+ "work accident",
+ "traffic accident"
+ ],
+ "synsets": [
+ "13368252-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "event",
+ "social event",
+ "death",
+ "work",
+ "work accident",
+ "movement",
+ "traffic",
+ "traffic accident"
+ ],
+ "_id": 16035,
+ "created": "2010-04-17T16:38:12.000Z",
+ "lastUpdated": "2021-07-20T15:16:41.165Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "assurance",
+ "hasLocution": true,
+ "plural": "assurances"
+ },
+ {
+ "type": 2,
+ "keyword": "assurance vie",
+ "hasLocution": false,
+ "plural": "assurances vie"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tourism"
+ ],
+ "synsets": [
+ "05824413-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 16037,
+ "created": "2010-04-17T18:50:11.000Z",
+ "lastUpdated": "2021-07-21T07:05:10.272Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "information",
+ "hasLocution": true,
+ "plural": "informations"
+ },
+ {
+ "type": 2,
+ "keyword": "office de tourisme",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bureau d'informations",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 16039,
+ "created": "2010-04-17T18:54:20.000Z",
+ "lastUpdated": "2021-07-20T15:17:21.691Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gérant",
+ "hasLocution": false,
+ "plural": "gérants"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "residential building"
+ ],
+ "synsets": [
+ "06535632-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 16031,
+ "created": "2010-04-17T16:34:54.000Z",
+ "lastUpdated": "2021-07-21T07:06:03.593Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "assurance",
+ "hasLocution": true,
+ "plural": "assurances"
+ },
+ {
+ "type": 2,
+ "keyword": "assurance habitation",
+ "hasLocution": false,
+ "plural": "assurances habitation"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 16041,
+ "created": "2010-04-17T18:55:50.000Z",
+ "lastUpdated": "2021-07-20T15:17:39.626Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gérante",
+ "hasLocution": false,
+ "plural": "gérantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07598762-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 16043,
+ "created": "2010-04-17T19:02:39.000Z",
+ "lastUpdated": "2021-07-20T15:17:53.495Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouillon de viande",
+ "hasLocution": false,
+ "plural": "bouillons de viande"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07598762-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 16045,
+ "created": "2010-04-17T19:04:30.000Z",
+ "lastUpdated": "2021-07-21T07:05:14.845Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "soupe de fruits de mer",
+ "hasLocution": false,
+ "plural": "soupes de fruits de mer"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "land transport"
+ ],
+ "synsets": [
+ "13366418-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 16029,
+ "created": "2010-04-17T16:32:50.000Z",
+ "lastUpdated": "2021-07-20T15:15:56.730Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "assurance",
+ "hasLocution": true,
+ "plural": "assurances"
+ },
+ {
+ "type": 2,
+ "keyword": "assurance auto",
+ "hasLocution": false,
+ "plural": "assurances auto"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction",
+ "work organization"
+ ],
+ "synsets": [
+ "10696316-n",
+ "00268366-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction",
+ "organization"
+ ],
+ "_id": 16051,
+ "created": "2010-04-17T19:14:27.000Z",
+ "lastUpdated": "2021-07-26T14:49:12.841Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cheffe de maintenance",
+ "hasLocution": false,
+ "plural": "cheffes de maintenance"
+ },
+ {
+ "keyword": "responsable de maintenance",
+ "hasLocution": false,
+ "plural": "responsables de maintenance",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07601128-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 16049,
+ "created": "2010-04-17T19:07:36.000Z",
+ "lastUpdated": "2021-07-21T07:06:12.775Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouillon de volaille",
+ "hasLocution": false,
+ "plural": "bouillons de volaille"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction",
+ "work organization"
+ ],
+ "synsets": [
+ "10696316-n",
+ "00268366-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction",
+ "organization"
+ ],
+ "_id": 16053,
+ "created": "2010-04-17T19:16:02.000Z",
+ "lastUpdated": "2021-07-26T14:49:39.442Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chef de maintenance",
+ "hasLocution": false,
+ "plural": "chefs de maintenance"
+ },
+ {
+ "keyword": "responsable de maintenance",
+ "hasLocution": false,
+ "plural": "responsables de maintenance",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "10787187-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 16055,
+ "created": "2010-04-17T19:22:24.000Z",
+ "lastUpdated": "2021-07-26T14:52:51.226Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gérante",
+ "hasLocution": false,
+ "plural": "gérantes"
+ },
+ {
+ "type": 2,
+ "keyword": "gérante de magasin",
+ "hasLocution": false,
+ "plural": "gérantes de magasin"
+ },
+ {
+ "keyword": "magasinière",
+ "hasLocution": false,
+ "plural": "magasinières",
+ "type": 2
+ },
+ {
+ "keyword": "responsable",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "responsables"
+ },
+ {
+ "keyword": "manager",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "managers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "medicine"
+ ],
+ "synsets": [
+ "13367788-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "health",
+ "medicine"
+ ],
+ "_id": 16033,
+ "created": "2010-04-17T16:36:45.000Z",
+ "lastUpdated": "2021-07-20T15:16:27.170Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "assurance",
+ "hasLocution": true,
+ "plural": "assurances"
+ },
+ {
+ "type": 2,
+ "keyword": "assurance santé",
+ "hasLocution": false,
+ "plural": "assurances santé"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "occupational therapy",
+ "signaling system"
+ ],
+ "synsets": [
+ "00665820-n"
+ ],
+ "tags": [
+ "health",
+ "occupational therapy",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16061,
+ "created": "2010-04-17T19:34:08.000Z",
+ "lastUpdated": "2021-07-26T14:53:14.646Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "service d'ergothérapie",
+ "hasLocution": false,
+ "plural": "services d'ergothérapie"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "10787187-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 16057,
+ "created": "2010-04-17T19:23:50.000Z",
+ "lastUpdated": "2021-07-26T14:51:39.702Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "responsable",
+ "hasLocution": true,
+ "plural": "responsables"
+ },
+ {
+ "type": 2,
+ "keyword": "magasinier",
+ "hasLocution": true,
+ "plural": "magasiniers"
+ },
+ {
+ "type": 2,
+ "keyword": "gérant de magasin",
+ "hasLocution": false,
+ "plural": "gérants de magasin"
+ },
+ {
+ "keyword": "manager",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "managers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07598762-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 16047,
+ "created": "2010-04-17T19:06:01.000Z",
+ "lastUpdated": "2021-07-21T07:05:49.068Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "soupe de poisson",
+ "hasLocution": false,
+ "plural": "soupes de poisson"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "waste disposal"
+ ],
+ "synsets": [
+ "00581998-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "waste disposal"
+ ],
+ "_id": 16059,
+ "created": "2010-04-17T19:30:50.000Z",
+ "lastUpdated": "2021-07-21T07:06:41.984Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "service de nettoyage",
+ "hasLocution": false
+ },
+ {
+ "keyword": "service de ménage",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational organization",
+ "special education",
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "06663446-n",
+ "09988375-n"
+ ],
+ "tags": [
+ "education",
+ "organization",
+ "special education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16063,
+ "created": "2010-04-17T19:44:20.000Z",
+ "lastUpdated": "2021-07-21T07:06:55.195Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "service d'orientation",
+ "hasLocution": false,
+ "plural": "services d'orientation"
+ },
+ {
+ "keyword": "service de conseil",
+ "hasLocution": false,
+ "plural": "services de conseil",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04558341-n",
+ "04389081-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16067,
+ "created": "2010-04-17T20:06:44.000Z",
+ "lastUpdated": "2021-07-30T01:36:28.002Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entrepôt de vaisselle",
+ "hasLocution": false,
+ "plural": "entrepôt de vaisselle"
+ },
+ {
+ "keyword": "stock de vaisselle",
+ "hasLocution": false,
+ "plural": "stocks de vaisselle",
+ "type": 2
+ },
+ {
+ "keyword": "réserve de verres et assiettes",
+ "hasLocution": false,
+ "plural": "réserves de verres et assiettes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 16073,
+ "created": "2010-04-17T21:43:21.000Z",
+ "lastUpdated": "2021-07-21T07:07:15.451Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "responsable",
+ "hasLocution": true,
+ "plural": "responsables"
+ },
+ {
+ "keyword": "gérant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gérants"
+ },
+ {
+ "keyword": "chef de service",
+ "hasLocution": false,
+ "plural": "chefsde services",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 16071,
+ "created": "2010-04-17T21:35:50.000Z",
+ "lastUpdated": "2021-07-21T07:07:18.061Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "responsable",
+ "hasLocution": true,
+ "plural": "responsables"
+ },
+ {
+ "keyword": "gérante",
+ "hasLocution": false,
+ "plural": "gérante",
+ "type": 2
+ },
+ {
+ "keyword": "cheffe de service",
+ "hasLocution": false,
+ "plural": "cheffes de services",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "09789895-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 16074,
+ "created": "2010-04-17T21:44:28.000Z",
+ "lastUpdated": "2021-07-26T14:57:47.725Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "responsable",
+ "hasLocution": true,
+ "plural": "responsables"
+ },
+ {
+ "type": 2,
+ "keyword": "administrateur",
+ "hasLocution": false,
+ "plural": "administrateurs"
+ },
+ {
+ "keyword": "gestionnaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gestionnaires"
+ },
+ {
+ "keyword": "directeur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "directeurs"
+ },
+ {
+ "keyword": "chef",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chefs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "09789895-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 16076,
+ "created": "2010-04-17T21:47:23.000Z",
+ "lastUpdated": "2021-07-26T14:57:21.655Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "responsable",
+ "hasLocution": true,
+ "plural": "responsables"
+ },
+ {
+ "type": 2,
+ "keyword": "administratrice",
+ "hasLocution": false,
+ "plural": "administratrices"
+ },
+ {
+ "keyword": "cheffe",
+ "hasLocution": false,
+ "plural": "cheffes",
+ "type": 2
+ },
+ {
+ "keyword": "directrice",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "directrices"
+ },
+ {
+ "keyword": "gestionnaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gestionnaires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "06605195-n",
+ "02738091-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16078,
+ "created": "2010-04-17T21:55:22.000Z",
+ "lastUpdated": "2021-07-21T07:07:26.728Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "archives générales",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational organization",
+ "special education",
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "06663446-n",
+ "09988375-n"
+ ],
+ "tags": [
+ "education",
+ "organization",
+ "special education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16065,
+ "created": "2010-04-17T19:54:28.000Z",
+ "lastUpdated": "2021-07-21T07:07:03.183Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "service d'orientation",
+ "hasLocution": false,
+ "plural": "services d'orientation"
+ },
+ {
+ "keyword": "service de conseil",
+ "hasLocution": false,
+ "plural": "services de conseil"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "occupational therapy",
+ "professional"
+ ],
+ "synsets": [
+ "00665820-n",
+ "10726882-n"
+ ],
+ "tags": [
+ "health",
+ "occupational therapy",
+ "work",
+ "professional"
+ ],
+ "_id": 16082,
+ "created": "2010-04-17T22:04:03.000Z",
+ "lastUpdated": "2021-07-20T15:26:31.704Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ergothérapeute",
+ "hasLocution": true,
+ "plural": "ergothérapeutes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "work organization"
+ ],
+ "synsets": [
+ "08328863-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "work",
+ "organization"
+ ],
+ "_id": 16080,
+ "created": "2010-04-17T21:59:27.000Z",
+ "lastUpdated": "2021-07-27T20:22:42.440Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "comité d'entreprise",
+ "hasLocution": false,
+ "plural": "comités d'entreprise"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "conseil d'entreprise",
+ "plural": "conseils d'entreprise"
+ },
+ {
+ "keyword": "comité social et économique",
+ "hasLocution": false,
+ "plural": "comités sociaux et économiques",
+ "type": 2
+ },
+ {
+ "hasLocution": true,
+ "keyword": "CE",
+ "type": 2,
+ "plural": "CE"
+ },
+ {
+ "keyword": "CSE",
+ "hasLocution": false,
+ "plural": "CSE",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "event"
+ ],
+ "synsets": [
+ "01065863-n"
+ ],
+ "tags": [
+ "event"
+ ],
+ "_id": 16091,
+ "created": "2010-04-18T12:17:50.000Z",
+ "lastUpdated": "2021-07-20T15:27:54.877Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "attente",
+ "hasLocution": true,
+ "plural": "attentes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "law and justice"
+ ],
+ "synsets": [
+ "09781524-n",
+ "09781434-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 16093,
+ "created": "2010-04-18T15:49:51.000Z",
+ "lastUpdated": "2021-07-26T17:37:35.678Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accusée",
+ "hasLocution": false,
+ "plural": "accusées"
+ },
+ {
+ "keyword": "prévenue",
+ "hasLocution": false,
+ "plural": "prévenues",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human value",
+ "feeling"
+ ],
+ "synsets": [
+ "07523944-n"
+ ],
+ "tags": [
+ "psychology",
+ "human value",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 16095,
+ "created": "2010-04-18T15:52:42.000Z",
+ "lastUpdated": "2021-07-20T15:28:18.786Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "estime de soi",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "02940098-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 16097,
+ "created": "2010-04-18T15:54:57.000Z",
+ "lastUpdated": "2021-07-20T15:28:26.107Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cage",
+ "hasLocution": true,
+ "plural": "cages"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "law and justice",
+ "crime"
+ ],
+ "synsets": [
+ "01404858-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice",
+ "crime"
+ ],
+ "_id": 16100,
+ "created": "2010-04-18T15:59:36.000Z",
+ "lastUpdated": "2021-07-20T15:28:32.331Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "illégal",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "law and justice"
+ ],
+ "synsets": [
+ "02506927-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 16103,
+ "created": "2010-04-18T16:05:02.000Z",
+ "lastUpdated": "2021-07-20T15:29:23.864Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "juger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "occupational therapy",
+ "professional"
+ ],
+ "synsets": [
+ "00665820-n",
+ "10726882-n"
+ ],
+ "tags": [
+ "health",
+ "occupational therapy",
+ "work",
+ "professional"
+ ],
+ "_id": 16084,
+ "created": "2010-04-17T22:06:19.000Z",
+ "lastUpdated": "2021-07-20T15:26:39.297Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ergothérapeute",
+ "hasLocution": true,
+ "plural": "ergothérapeutes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work organization"
+ ],
+ "synsets": [
+ "00583425-n"
+ ],
+ "tags": [
+ "work",
+ "organization"
+ ],
+ "_id": 16087,
+ "created": "2010-04-18T12:14:21.000Z",
+ "lastUpdated": "2021-07-20T15:27:17.857Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "travail",
+ "hasLocution": true,
+ "plural": "travaux"
+ },
+ {
+ "keyword": "emploi",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "emplois"
+ },
+ {
+ "keyword": "occupation",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "occupations"
+ },
+ {
+ "keyword": "professionnalisme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "professionnalismes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "tourism"
+ ],
+ "synsets": [
+ "10423621-n",
+ "09652940-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 16105,
+ "created": "2010-04-18T16:11:05.000Z",
+ "lastUpdated": "2021-07-20T15:29:44.763Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "passagère",
+ "hasLocution": false,
+ "plural": "passagères"
+ },
+ {
+ "type": 2,
+ "keyword": "voyageuse",
+ "hasLocution": false,
+ "plural": "voyageuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tourism",
+ "land transport"
+ ],
+ "synsets": [
+ "10423621-n",
+ "09652940-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "tourism",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 16107,
+ "created": "2010-04-18T16:12:17.000Z",
+ "lastUpdated": "2021-07-20T15:30:01.817Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voyageur",
+ "hasLocution": true,
+ "plural": "voyageurs"
+ },
+ {
+ "type": 2,
+ "keyword": "passager",
+ "hasLocution": false,
+ "plural": "passagers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "00761047-n"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 16109,
+ "created": "2010-04-18T16:16:09.000Z",
+ "lastUpdated": "2022-04-09T05:28:31.589Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "terrorisme",
+ "hasLocution": false,
+ "plural": "terrorismes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "10722430-n"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 16111,
+ "created": "2010-04-18T16:17:27.000Z",
+ "lastUpdated": "2022-04-09T05:28:41.330Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "terroriste",
+ "hasLocution": false,
+ "plural": "terroristes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport",
+ "mode of transport"
+ ],
+ "synsets": [
+ "01844180-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 16113,
+ "created": "2010-04-18T16:19:35.000Z",
+ "lastUpdated": "2024-12-25T16:33:18.176Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03410021-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16115,
+ "created": "2010-04-18T16:25:20.000Z",
+ "lastUpdated": "2021-07-21T07:07:40.887Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaufferie",
+ "hasLocution": false,
+ "plural": "chaufferies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign",
+ "mathematics"
+ ],
+ "synsets": [
+ "01398335-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign",
+ "mathematics"
+ ],
+ "_id": 16119,
+ "created": "2010-04-18T16:33:23.000Z",
+ "lastUpdated": "2024-12-12T15:45:22.660Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "plus grand",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "supérieur",
+ "hasLocution": true
+ },
+ {
+ "keyword": "plus grand que",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "supérieur à",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "polite set expression"
+ ],
+ "synsets": [
+ "01210099-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 16125,
+ "created": "2010-04-18T16:47:23.000Z",
+ "lastUpdated": "2021-07-11T09:31:05.048Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "je peux t'aider?",
+ "hasLocution": false
+ },
+ {
+ "type": 5,
+ "keyword": "as-tu besoin d'aide?",
+ "hasLocution": false
+ },
+ {
+ "keyword": "est-ce que je peux vous aider?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "avez-vous besoin d'aide?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "students"
+ ],
+ "synsets": [
+ "10657783-n"
+ ],
+ "tags": [
+ "education",
+ "students"
+ ],
+ "_id": 16123,
+ "created": "2010-04-18T16:41:08.000Z",
+ "lastUpdated": "2021-07-20T15:32:55.592Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "représentants",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "représentants d'élèves",
+ "hasLocution": false
+ },
+ {
+ "keyword": "délégués",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "worksite",
+ "workplace",
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04610439-n"
+ ],
+ "tags": [
+ "work",
+ "workplace",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16127,
+ "created": "2010-04-18T16:53:18.000Z",
+ "lastUpdated": "2021-07-21T07:08:13.113Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier d'entretien",
+ "hasLocution": false,
+ "plural": "ateliers d'entretien"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "commercial building"
+ ],
+ "synsets": [
+ "08131836-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "trade"
+ ],
+ "_id": 16129,
+ "created": "2010-04-18T16:57:00.000Z",
+ "lastUpdated": "2021-07-26T15:00:10.606Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rayon",
+ "hasLocution": true,
+ "plural": "sectionrayons"
+ },
+ {
+ "keyword": "département",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "départements"
+ },
+ {
+ "keyword": "service",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "services"
+ },
+ {
+ "hasLocution": true,
+ "type": 2,
+ "keyword": "section",
+ "plural": "sections"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "00666240-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16131,
+ "created": "2010-04-18T17:01:20.000Z",
+ "lastUpdated": "2021-03-12T14:04:21.715Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de soins",
+ "hasLocution": false,
+ "plural": "salles de soins"
+ },
+ {
+ "keyword": "infirmerie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "infirmeries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system",
+ "board game"
+ ],
+ "synsets": [
+ "04126572-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system",
+ "leisure",
+ "game",
+ "board game"
+ ],
+ "_id": 16133,
+ "created": "2010-04-18T17:06:03.000Z",
+ "lastUpdated": "2021-03-12T14:05:33.878Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de jeux",
+ "hasLocution": false,
+ "plural": "salles de jeux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign"
+ ],
+ "synsets": [
+ "01397927-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 16121,
+ "created": "2010-04-18T16:35:08.000Z",
+ "lastUpdated": "2021-07-20T15:32:30.229Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "inférieur",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "inférieur à",
+ "hasLocution": false
+ },
+ {
+ "keyword": "plus petit",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "plus petit que",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04413374-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16139,
+ "created": "2010-04-18T17:19:53.000Z",
+ "lastUpdated": "2021-07-20T15:35:06.468Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de télévision",
+ "hasLocution": false,
+ "plural": "salles de télévision"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "00666240-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16141,
+ "created": "2010-04-18T17:24:25.000Z",
+ "lastUpdated": "2021-07-20T15:37:15.852Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de plâtres",
+ "hasLocution": false,
+ "plural": "salles de plâtres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04453410-n",
+ "04025061-n",
+ "03751977-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16143,
+ "created": "2010-04-18T17:30:35.000Z",
+ "lastUpdated": "2021-07-30T05:46:40.205Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toilettes gériatriques",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03477235-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16137,
+ "created": "2010-04-18T17:15:15.000Z",
+ "lastUpdated": "2021-07-20T15:34:25.733Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de rééducation",
+ "hasLocution": false,
+ "plural": "salles de rééducation"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04453410-n",
+ "04025061-n",
+ "03638254-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16145,
+ "created": "2010-04-18T17:32:13.000Z",
+ "lastUpdated": "2021-07-30T05:46:26.841Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toilettes gériatriques",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "catering establishment"
+ ],
+ "synsets": [
+ "03625099-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "catering establishment",
+ "hospitality industry"
+ ],
+ "_id": 16147,
+ "created": "2010-04-18T17:37:21.000Z",
+ "lastUpdated": "2021-07-26T23:58:06.344Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuisine de la cafétéria",
+ "hasLocution": false,
+ "plural": "cuisines de la cafétéria"
+ },
+ {
+ "keyword": "cuisine du café",
+ "hasLocution": false,
+ "plural": "cuisines du café",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "02955921-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "health",
+ "medicine",
+ "medical center",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16149,
+ "created": "2010-04-18T17:41:20.000Z",
+ "lastUpdated": "2021-03-12T13:30:36.939Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle à manger du personnel",
+ "hasLocution": false,
+ "plural": "salles à manger du personnel"
+ },
+ {
+ "keyword": "cantine du personnel",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cantines du personnel"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building"
+ ],
+ "_id": 16151,
+ "created": "2010-04-18T17:47:07.000Z",
+ "lastUpdated": "2021-07-21T07:09:02.993Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "CRMF",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Centre de rééducation",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "signaling system"
+ ],
+ "synsets": [
+ "03477235-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16135,
+ "created": "2010-04-18T17:11:00.000Z",
+ "lastUpdated": "2021-07-20T15:34:12.223Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de musculation",
+ "hasLocution": false,
+ "plural": "salles de musculation"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04336615-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "health",
+ "medicine",
+ "medical center",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16117,
+ "created": "2010-04-18T16:29:50.000Z",
+ "lastUpdated": "2021-07-20T15:30:53.848Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "buanderie",
+ "hasLocution": false,
+ "plural": "buanderies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "03696021-n"
+ ],
+ "tags": [],
+ "_id": 16159,
+ "created": "2010-04-18T18:03:38.000Z",
+ "lastUpdated": "2021-07-20T15:37:34.608Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "objets perdus",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "09915013-n",
+ "04112987-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16153,
+ "created": "2010-04-18T17:52:11.000Z",
+ "lastUpdated": "2021-07-21T07:10:05.515Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle du personnel soignant",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work organization"
+ ],
+ "synsets": [
+ "08328863-n"
+ ],
+ "tags": [
+ "work",
+ "organization"
+ ],
+ "_id": 16161,
+ "created": "2010-04-18T20:44:51.000Z",
+ "lastUpdated": "2021-07-27T20:23:11.562Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "comité d'entreprise",
+ "hasLocution": false,
+ "plural": "comités d'entreprise"
+ },
+ {
+ "keyword": "comité social économique",
+ "hasLocution": false,
+ "plural": "comité sociaux économiques",
+ "type": 2
+ },
+ {
+ "keyword": "CSE",
+ "hasLocution": false,
+ "plural": "CSE",
+ "type": 2
+ },
+ {
+ "keyword": "comité",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "comités"
+ },
+ {
+ "keyword": "CE",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "CE"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "supporting document",
+ "residential building"
+ ],
+ "synsets": [
+ "00654631-n"
+ ],
+ "tags": [
+ "document",
+ "supporting document",
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 16163,
+ "created": "2010-04-18T20:50:44.000Z",
+ "lastUpdated": "2021-07-20T15:44:58.000Z",
+ "keywords": [
+ {
+ "keyword": "recensement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "recensements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "event",
+ "patient"
+ ],
+ "synsets": [
+ "08401740-n"
+ ],
+ "tags": [
+ "event",
+ "health",
+ "medicine",
+ "person",
+ "patient"
+ ],
+ "_id": 16165,
+ "created": "2010-04-18T20:52:54.000Z",
+ "lastUpdated": "2021-07-20T15:45:12.646Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rendez-vous",
+ "hasLocution": true,
+ "plural": "rendez-vous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00792796-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 16167,
+ "created": "2010-04-18T20:54:20.000Z",
+ "lastUpdated": "2021-07-20T15:45:24.530Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "donner un rendez-vous",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "communication aid"
+ ],
+ "synsets": [
+ "00742582-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 16157,
+ "created": "2010-04-18T17:58:41.000Z",
+ "lastUpdated": "2021-03-09T15:44:52.225Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "utiliser le tableau de communication",
+ "hasLocution": false
+ },
+ {
+ "keyword": "pointer une case du code de communication",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "supporting document"
+ ],
+ "synsets": [
+ "06489042-n",
+ "06481744-n"
+ ],
+ "tags": [
+ "document",
+ "supporting document"
+ ],
+ "_id": 16169,
+ "created": "2010-04-18T21:06:07.000Z",
+ "lastUpdated": "2021-07-20T15:46:17.780Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "documents",
+ "hasLocution": false
+ },
+ {
+ "keyword": "papiers d'identité",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "papiers",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "color"
+ ],
+ "synsets": [
+ "02077592-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "color"
+ ],
+ "_id": 16171,
+ "created": "2010-04-18T21:09:14.000Z",
+ "lastUpdated": "2021-07-20T15:46:35.937Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "autre couleur",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room"
+ ],
+ "synsets": [
+ "00712380-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room"
+ ],
+ "_id": 16172,
+ "created": "2010-04-18T21:12:08.000Z",
+ "lastUpdated": "2021-07-20T15:46:50.655Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hydrothérapie",
+ "hasLocution": false,
+ "plural": "hydrothérapies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "communication aid"
+ ],
+ "synsets": [
+ "00742582-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 16155,
+ "created": "2010-04-18T17:57:17.000Z",
+ "lastUpdated": "2021-03-13T10:33:54.182Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "utiliser le cahier de communication",
+ "hasLocution": false
+ },
+ {
+ "keyword": "utiliser le cahier de vie",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "09899893-n",
+ "09885521-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 16174,
+ "created": "2010-04-18T21:21:35.000Z",
+ "lastUpdated": "2021-07-26T22:50:32.016Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "administration",
+ "hasLocution": true,
+ "plural": "administrations"
+ },
+ {
+ "type": 2,
+ "keyword": "technicien en administration",
+ "hasLocution": false,
+ "plural": "techniciens en administration"
+ },
+ {
+ "keyword": "employé administratif",
+ "hasLocution": false,
+ "plural": "employés administratifs",
+ "type": 2
+ },
+ {
+ "keyword": "assistant administratif",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "assistants administratifs"
+ },
+ {
+ "keyword": "management",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "managements"
+ },
+ {
+ "keyword": "direction",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "directions"
+ },
+ {
+ "keyword": "gestion",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gestion"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [],
+ "tags": [],
+ "_id": 16182,
+ "created": "2010-04-18T21:39:22.000Z",
+ "lastUpdated": "2021-07-26T21:38:06.401Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Unité d'Emploi, d'Égalité, de Coopération et de Communication",
+ "hasLocution": false
+ },
+ {
+ "keyword": "Commission européenne - DG Emploi, affaires sociales et égalité de chances ",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "international organziation"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "international organization"
+ ],
+ "_id": 16184,
+ "created": "2010-04-18T21:42:58.000Z",
+ "lastUpdated": "2021-07-26T21:31:38.323Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "UNIFOR",
+ "hasLocution": false
+ },
+ {
+ "keyword": "Université de Fortaleza",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10447528-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 16186,
+ "created": "2010-04-18T22:03:33.000Z",
+ "lastUpdated": "2021-07-21T07:10:24.726Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "médecin",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "médecin rééducateur",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "rééducatrice",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "locomotor system"
+ ],
+ "synsets": [
+ "10447528-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "locomotor system"
+ ],
+ "_id": 16188,
+ "created": "2010-04-18T22:05:32.000Z",
+ "lastUpdated": "2023-03-27T16:40:06.787Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "médecin rééducateur",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "rééducateur",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "students",
+ "signaling system"
+ ],
+ "synsets": [
+ "10541628-n",
+ "04112987-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "students",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16190,
+ "created": "2010-04-18T22:27:15.000Z",
+ "lastUpdated": "2021-07-21T07:10:47.867Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bureau des représentants",
+ "hasLocution": false
+ },
+ {
+ "keyword": "bureau des délégués",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "03018908-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 16281,
+ "created": "2010-04-22T18:09:26.000Z",
+ "lastUpdated": "2021-07-20T15:47:13.182Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "commode",
+ "hasLocution": true,
+ "plural": "commodes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional"
+ ],
+ "synsets": [
+ "02883958-a",
+ "10715747-n"
+ ],
+ "tags": [
+ "work",
+ "professional"
+ ],
+ "_id": 16178,
+ "created": "2010-04-18T21:29:39.000Z",
+ "lastUpdated": "2021-08-01T18:00:27.441Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "animatrice socio-éducative",
+ "plural": "animatrices socio-éducatives"
+ },
+ {
+ "keyword": "animatrice socio-culturelle",
+ "hasLocution": false,
+ "plural": "animatrices socio-culturelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "09899893-n",
+ "09885521-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 16176,
+ "created": "2010-04-18T21:23:08.000Z",
+ "lastUpdated": "2021-07-26T22:48:21.074Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "administration ",
+ "hasLocution": false,
+ "plural": "administration"
+ },
+ {
+ "type": 2,
+ "keyword": "technicienne en administration",
+ "hasLocution": false,
+ "plural": "techniciennes en administration"
+ },
+ {
+ "keyword": "employée administrative",
+ "hasLocution": false,
+ "plural": "employées administratives",
+ "type": 2
+ },
+ {
+ "keyword": "assistante administrative",
+ "hasLocution": false,
+ "plural": "assistantes administratives",
+ "type": 2
+ },
+ {
+ "type": 2,
+ "keyword": "gestion",
+ "hasLocution": false,
+ "plural": "gestions"
+ },
+ {
+ "keyword": "management",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "managements"
+ },
+ {
+ "keyword": "direction",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "directions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "02433993-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 16289,
+ "created": "2010-04-22T18:26:08.000Z",
+ "lastUpdated": "2021-07-20T15:47:50.930Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "décoiffée",
+ "hasLocution": false
+ },
+ {
+ "keyword": "échevelée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "02433993-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 16293,
+ "created": "2010-04-22T18:29:20.000Z",
+ "lastUpdated": "2021-07-20T15:48:06.490Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "décoiffé",
+ "hasLocution": false
+ },
+ {
+ "keyword": "échevelé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional"
+ ],
+ "synsets": [
+ "02883958-a",
+ "10715747-n"
+ ],
+ "tags": [
+ "work",
+ "professional"
+ ],
+ "_id": 16180,
+ "created": "2010-04-18T21:30:56.000Z",
+ "lastUpdated": "2021-08-01T17:54:43.468Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "animateur socio-éducatif",
+ "plural": "animateurs socio-éducatifs"
+ },
+ {
+ "plural": "animateurs socio-culturels",
+ "keyword": "animateur socio-culturel",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "03271660-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 16297,
+ "created": "2010-04-22T23:12:37.000Z",
+ "lastUpdated": "2021-07-20T15:48:25.054Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couette",
+ "hasLocution": true,
+ "plural": "couettes"
+ },
+ {
+ "keyword": "édredon",
+ "type": 2,
+ "plural": "édredons",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool"
+ ],
+ "synsets": [
+ "01338486-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool"
+ ],
+ "_id": 16301,
+ "created": "2010-04-22T23:16:15.000Z",
+ "lastUpdated": "2021-07-20T15:48:37.757Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "relier",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "arts graphiques",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "fruit"
+ ],
+ "synsets": [
+ "02884435-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 16303,
+ "created": "2010-04-22T23:18:39.000Z",
+ "lastUpdated": "2021-07-20T15:48:52.160Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coupe à fruits",
+ "hasLocution": false,
+ "plural": "coupes à fruits"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "10208334-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 16307,
+ "created": "2010-04-22T23:24:52.000Z",
+ "lastUpdated": "2021-07-26T22:57:04.909Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "chef du personnel",
+ "plural": "chefs du personnel"
+ },
+ {
+ "keyword": "responsable du personnel",
+ "hasLocution": false,
+ "plural": "responsables du personnel",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03212662-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 16311,
+ "created": "2010-04-23T11:36:21.000Z",
+ "lastUpdated": "2021-07-21T07:10:53.530Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lave-vaisselle",
+ "hasLocution": true,
+ "plural": "lave-vaisselles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "room"
+ ],
+ "synsets": [
+ "03116750-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "home",
+ "room"
+ ],
+ "_id": 16315,
+ "created": "2010-04-23T11:46:32.000Z",
+ "lastUpdated": "2021-07-20T15:49:51.874Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couloir",
+ "hasLocution": true,
+ "plural": "couloirs"
+ },
+ {
+ "keyword": "corridor",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "corridors"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "circulatory system"
+ ],
+ "synsets": [
+ "09913897-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "circulatory system"
+ ],
+ "_id": 16319,
+ "created": "2010-04-23T11:59:02.000Z",
+ "lastUpdated": "2021-07-20T15:50:02.932Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cardiologue",
+ "hasLocution": false,
+ "plural": "cardiologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "circulatory system"
+ ],
+ "synsets": [
+ "09913897-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "circulatory system"
+ ],
+ "_id": 16321,
+ "created": "2010-04-23T12:00:32.000Z",
+ "lastUpdated": "2021-07-20T15:50:09.493Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cardiologue",
+ "hasLocution": false,
+ "plural": "cardiologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "clothes"
+ ],
+ "synsets": [
+ "01362777-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 16323,
+ "created": "2010-04-23T12:04:17.000Z",
+ "lastUpdated": "2021-07-20T15:50:26.145Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "froissé",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "froissée",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "03039700-n",
+ "04395830-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 16285,
+ "created": "2010-04-22T18:16:36.000Z",
+ "lastUpdated": "2021-07-20T15:47:37.429Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "citerne",
+ "hasLocution": true,
+ "plural": "citernes"
+ },
+ {
+ "type": 2,
+ "keyword": "réservoir",
+ "hasLocution": false,
+ "plural": "réservoirs"
+ },
+ {
+ "type": 2,
+ "keyword": "réservoir d'eau",
+ "hasLocution": false,
+ "plural": "réservoirs d'eau"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "02436224-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 16327,
+ "created": "2010-04-23T12:08:47.000Z",
+ "lastUpdated": "2021-07-20T15:50:32.017Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "coiffée",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "02436224-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 16331,
+ "created": "2010-04-23T12:11:01.000Z",
+ "lastUpdated": "2021-07-20T15:50:34.047Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "coiffé",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03006695-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 16343,
+ "created": "2010-04-23T12:28:53.000Z",
+ "lastUpdated": "2021-07-20T15:51:50.506Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "craie",
+ "hasLocution": true,
+ "plural": "craies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "clothes"
+ ],
+ "synsets": [
+ "01362459-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 16335,
+ "created": "2010-04-23T12:16:03.000Z",
+ "lastUpdated": "2021-07-20T15:50:38.164Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "repassé",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "repassée",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mathematics"
+ ],
+ "synsets": [
+ "00247103-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mathematics"
+ ],
+ "_id": 16345,
+ "created": "2010-04-23T12:34:21.000Z",
+ "lastUpdated": "2021-07-20T15:52:06.017Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "doubler",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "faire un double de",
+ "hasLocution": false
+ },
+ {
+ "keyword": "dupliquer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14403545-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 16347,
+ "created": "2010-04-23T12:43:02.000Z",
+ "lastUpdated": "2021-07-21T07:10:57.669Z",
+ "keywords": [
+ {
+ "keyword": "démence",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "folie",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "02083947-s",
+ "14403545-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 16349,
+ "created": "2010-04-23T12:44:00.000Z",
+ "lastUpdated": "2021-07-20T15:53:05.766Z",
+ "keywords": [
+ {
+ "keyword": "maladie d'Alzheimer",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "Alzeimer",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "00318033-n",
+ "01110658-n"
+ ],
+ "tags": [],
+ "_id": 16351,
+ "created": "2010-04-23T12:46:39.000Z",
+ "lastUpdated": "2021-07-20T15:53:31.581Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "apport",
+ "hasLocution": true,
+ "plural": "apports"
+ },
+ {
+ "keyword": "contribution",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "contributions"
+ },
+ {
+ "type": 2,
+ "keyword": "remise",
+ "hasLocution": false,
+ "plural": "remise"
+ },
+ {
+ "keyword": "livraison",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "livraisons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "00105069-n"
+ ],
+ "tags": [],
+ "_id": 16355,
+ "created": "2010-04-23T12:50:13.000Z",
+ "lastUpdated": "2021-07-26T21:22:11.819Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "impulsion",
+ "hasLocution": false,
+ "plural": "impulsions"
+ },
+ {
+ "keyword": "élan",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "élan"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "death",
+ "verb"
+ ],
+ "synsets": [
+ "13985834-n",
+ "11464213-n",
+ "15168236-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 16359,
+ "created": "2010-04-23T12:59:21.000Z",
+ "lastUpdated": "2024-12-12T15:53:53.274Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mort",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "02849857-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 16341,
+ "created": "2010-04-23T12:26:30.000Z",
+ "lastUpdated": "2021-07-20T15:51:39.465Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tampon effaceur",
+ "hasLocution": false,
+ "plural": "tampons effaceurs"
+ },
+ {
+ "keyword": "brosse à tableau",
+ "hasLocution": false,
+ "plural": "brosses à tableau",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "00220442-n",
+ "00221389-n"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 16363,
+ "created": "2010-04-23T13:13:30.000Z",
+ "lastUpdated": "2021-07-20T15:54:45.708Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mort",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "meurtre",
+ "hasLocution": true,
+ "plural": "meurtres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "10398772-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "ophthalmology"
+ ],
+ "_id": 16365,
+ "created": "2010-04-23T13:28:48.000Z",
+ "lastUpdated": "2021-07-20T15:55:25.932Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "occuliste",
+ "hasLocution": false,
+ "plural": "occulistes"
+ },
+ {
+ "type": 2,
+ "keyword": "ophtalmologue",
+ "hasLocution": true,
+ "plural": "ophtalmologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "10398772-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "ophthalmology"
+ ],
+ "_id": 16367,
+ "created": "2010-04-23T13:30:05.000Z",
+ "lastUpdated": "2021-07-20T15:55:39.364Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "occuliste",
+ "hasLocution": false,
+ "plural": "occulistes"
+ },
+ {
+ "type": 2,
+ "keyword": "ophtalmologue",
+ "hasLocution": true,
+ "plural": "ophtalmologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "craftsmanship",
+ "educational task"
+ ],
+ "synsets": [
+ "00936820-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "craftsmanship",
+ "education",
+ "educational task"
+ ],
+ "_id": 16339,
+ "created": "2010-04-23T12:22:33.000Z",
+ "lastUpdated": "2021-07-20T15:50:46.079Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "travaux manuels",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "travaux manuels ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "arts graphiques",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "financial services",
+ "work organization"
+ ],
+ "synsets": [
+ "10488547-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "financial services",
+ "organization"
+ ],
+ "_id": 16373,
+ "created": "2010-04-23T13:45:05.000Z",
+ "lastUpdated": "2021-07-21T07:11:21.182Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "président",
+ "hasLocution": true,
+ "plural": "présidents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "industry",
+ "work organization"
+ ],
+ "synsets": [
+ "10488547-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "industry",
+ "manufacturing industry",
+ "organization"
+ ],
+ "_id": 16375,
+ "created": "2010-04-23T13:46:55.000Z",
+ "lastUpdated": "2021-07-21T07:11:15.413Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "président",
+ "hasLocution": true,
+ "plural": "présidents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "leader",
+ "political representation",
+ "aragon"
+ ],
+ "synsets": [
+ "10486745-n",
+ "09049830-n"
+ ],
+ "tags": [
+ "person",
+ "leader",
+ "work",
+ "tertiary sector",
+ "political representation",
+ "Aragon"
+ ],
+ "_id": 16377,
+ "created": "2010-04-23T13:51:54.000Z",
+ "lastUpdated": "2021-07-21T07:11:38.033Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "président d'Aragon",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling"
+ ],
+ "synsets": [
+ "07558421-n",
+ "05219242-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 16371,
+ "created": "2010-04-23T13:39:45.000Z",
+ "lastUpdated": "2021-07-20T15:56:01.537Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pessimisme",
+ "hasLocution": false,
+ "plural": "pessimismes"
+ },
+ {
+ "type": 2,
+ "keyword": "tristesse",
+ "hasLocution": true,
+ "plural": "tristesses"
+ },
+ {
+ "keyword": "malheur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "malheurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "leader",
+ "political representation",
+ "historical character",
+ "history"
+ ],
+ "synsets": [
+ "10486745-n"
+ ],
+ "tags": [
+ "person",
+ "leader",
+ "work",
+ "tertiary sector",
+ "political representation",
+ "character",
+ "historical character",
+ "history"
+ ],
+ "_id": 16378,
+ "created": "2010-04-23T13:53:06.000Z",
+ "lastUpdated": "2024-12-08T15:25:30.176Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "président",
+ "hasLocution": true,
+ "plural": "présidents"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday",
+ "christmas"
+ ],
+ "synsets": [
+ "01679858-v",
+ "00263092-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 16435,
+ "created": "2010-04-28T21:30:16.000Z",
+ "lastUpdated": "2021-07-20T15:56:43.761Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "décorer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "orner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "02096306-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 16380,
+ "created": "2010-04-25T21:15:17.000Z",
+ "lastUpdated": "2021-07-21T07:12:00.927Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "piétiner",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "écraser",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "marcher sur le pied",
+ "hasLocution": false
+ },
+ {
+ "keyword": "piétinement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "piétinements"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses"
+ ],
+ "synsets": [
+ "02128571-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 16439,
+ "created": "2010-04-28T21:34:33.000Z",
+ "lastUpdated": "2021-07-20T15:57:44.690Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir mauvais",
+ "hasLocution": true
+ },
+ {
+ "keyword": "puer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01548096-v",
+ "01869189-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 16437,
+ "created": "2010-04-28T21:32:45.000Z",
+ "lastUpdated": "2021-07-20T15:57:12.677Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baisser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se baisser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'accroupir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04192114-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil"
+ ],
+ "_id": 16449,
+ "created": "2010-04-28T21:49:12.000Z",
+ "lastUpdated": "2024-12-09T06:22:54.575Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fusil à aiguiser",
+ "hasLocution": false,
+ "plural": "fusils à aiguiser"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "industrial building",
+ "worksite",
+ "craftsmanship",
+ "signaling system"
+ ],
+ "synsets": [
+ "03999246-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "industry",
+ "work",
+ "workplace",
+ "secondary sector",
+ "craftsmanship",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16453,
+ "created": "2010-04-28T21:54:35.000Z",
+ "lastUpdated": "2021-07-20T15:59:21.705Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poterie",
+ "hasLocution": false,
+ "plural": "poteries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "01247417-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 16443,
+ "created": "2010-04-28T21:37:57.000Z",
+ "lastUpdated": "2021-07-20T15:58:03.050Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aspirer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "passer l'aspirateur",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01910816-v",
+ "01922176-v",
+ "01908923-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "babycare"
+ ],
+ "_id": 16461,
+ "created": "2010-04-28T22:04:51.000Z",
+ "lastUpdated": "2022-12-18T05:37:57.667Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "marcher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07592939-n",
+ "07596911-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 16463,
+ "created": "2010-04-28T22:07:59.000Z",
+ "lastUpdated": "2021-07-28T15:34:34.792Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mini-brochette",
+ "hasLocution": false,
+ "plural": "mini-brochettes"
+ },
+ {
+ "keyword": "amuse-geule",
+ "hasLocution": false,
+ "plural": "amuse-geules",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "bullying"
+ ],
+ "synsets": [
+ "01419525-v",
+ "00134488-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "bullying"
+ ],
+ "_id": 16467,
+ "created": "2010-04-28T22:14:04.000Z",
+ "lastUpdated": "2021-07-20T16:01:11.856Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gifle",
+ "hasLocution": false
+ },
+ {
+ "keyword": "gifler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "industrial building",
+ "carpentry",
+ "signaling system"
+ ],
+ "synsets": [
+ "00608890-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "industry",
+ "work",
+ "secondary sector",
+ "carpentry",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16471,
+ "created": "2010-04-28T22:20:32.000Z",
+ "lastUpdated": "2021-07-20T16:01:19.173Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "menuiserie",
+ "hasLocution": false,
+ "plural": "menuiserie"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01518703-v",
+ "01978076-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "babycare"
+ ],
+ "_id": 16445,
+ "created": "2010-04-28T21:40:36.000Z",
+ "lastUpdated": "2022-12-18T05:38:25.586Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "hisser",
+ "hasLocution": false
+ },
+ {
+ "keyword": "soulever",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01309314-v",
+ "02522260-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 16441,
+ "created": "2010-04-28T21:35:51.000Z",
+ "lastUpdated": "2021-07-20T15:57:59.359Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "Griffer",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "Érafler",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "Égratigner",
+ "hasLocution": false
+ },
+ {
+ "keyword": "griffure",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "griffures"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "popular festival",
+ "birthday",
+ "core vocabulary-communication",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "02496526-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "popular event",
+ "popular festival",
+ "social event",
+ "birthday",
+ "core vocabulary"
+ ],
+ "_id": 16475,
+ "created": "2010-04-28T22:25:59.000Z",
+ "lastUpdated": "2021-07-20T16:01:29.886Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fêter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "célébrer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "computing",
+ "mass media"
+ ],
+ "synsets": [
+ "06413845-n"
+ ],
+ "tags": [
+ "computing",
+ "communication",
+ "mass media"
+ ],
+ "_id": 16577,
+ "created": "2010-04-30T11:00:14.000Z",
+ "lastUpdated": "2021-07-20T16:01:44.491Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blog",
+ "hasLocution": false,
+ "plural": "blogs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "sport material",
+ "football"
+ ],
+ "synsets": [
+ "03045434-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "leisure",
+ "sport",
+ "sport material",
+ "football"
+ ],
+ "_id": 16585,
+ "created": "2010-04-30T11:12:57.000Z",
+ "lastUpdated": "2021-07-20T16:02:00.162Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussures de football",
+ "hasLocution": false
+ },
+ {
+ "keyword": "chaussures ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "crampons",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "03936753-n",
+ "07840964-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 16587,
+ "created": "2010-04-30T11:17:14.000Z",
+ "lastUpdated": "2021-07-20T16:02:15.382Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pot de cornichons",
+ "hasLocution": false,
+ "plural": "pots de cornichons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "02876113-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 16595,
+ "created": "2010-04-30T11:30:09.000Z",
+ "lastUpdated": "2021-07-20T16:03:36.869Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bottines",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "13283562-n"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 16591,
+ "created": "2010-04-30T11:25:37.000Z",
+ "lastUpdated": "2021-07-30T08:32:01.428Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "butin",
+ "hasLocution": false,
+ "plural": "butins"
+ },
+ {
+ "keyword": "magot",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "magots"
+ },
+ {
+ "keyword": "dérober",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03012598-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 16597,
+ "created": "2010-04-30T13:33:03.000Z",
+ "lastUpdated": "2021-07-20T16:03:46.300Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chargeur",
+ "hasLocution": false,
+ "plural": "chargeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document"
+ ],
+ "synsets": [
+ "13402907-n"
+ ],
+ "tags": [
+ "document",
+ "trade"
+ ],
+ "_id": 16605,
+ "created": "2010-04-30T13:49:48.000Z",
+ "lastUpdated": "2021-07-20T16:04:11.549Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chèque",
+ "hasLocution": false,
+ "plural": "chèques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "object",
+ "beverage"
+ ],
+ "synsets": [
+ "02958374-n"
+ ],
+ "tags": [
+ "object",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 16601,
+ "created": "2010-04-30T13:45:22.000Z",
+ "lastUpdated": "2021-07-20T16:04:02.338Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "capsule",
+ "hasLocution": true,
+ "plural": "capsules"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01171984-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 16609,
+ "created": "2010-04-30T13:54:47.000Z",
+ "lastUpdated": "2021-07-20T16:04:36.539Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sucer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se sucer le doigt",
+ "hasLocution": false
+ },
+ {
+ "keyword": "se sucer le pouce",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "insect",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02259308-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 16613,
+ "created": "2010-05-02T16:00:19.000Z",
+ "lastUpdated": "2021-07-20T16:15:06.007Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cigale",
+ "hasLocution": false,
+ "plural": "cigales"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01171984-v",
+ "01173263-v",
+ "01434809-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 16611,
+ "created": "2010-04-30T13:56:05.000Z",
+ "lastUpdated": "2021-07-20T16:04:47.820Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sucer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "lécher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01940092-v",
+ "01373226-v",
+ "00137149-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 16617,
+ "created": "2010-05-03T11:47:13.000Z",
+ "lastUpdated": "2021-07-20T16:04:59.951Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ruer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system",
+ "nervous system"
+ ],
+ "synsets": [
+ "05595824-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system",
+ "nervous system"
+ ],
+ "_id": 16619,
+ "created": "2010-05-03T11:51:19.000Z",
+ "lastUpdated": "2021-07-20T16:05:15.778Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "colonne vertébrale",
+ "hasLocution": false,
+ "plural": "colonnes vertébrales"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02300169-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 16623,
+ "created": "2010-05-03T11:55:59.000Z",
+ "lastUpdated": "2023-03-20T11:50:06.404Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "partager",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physiology"
+ ],
+ "synsets": [
+ "00251067-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology"
+ ],
+ "_id": 16625,
+ "created": "2010-05-03T11:58:38.000Z",
+ "lastUpdated": "2021-07-20T16:05:22.564Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "grandir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physiology"
+ ],
+ "synsets": [
+ "13510240-n"
+ ],
+ "tags": [
+ "human body",
+ "physiology",
+ "human physiology"
+ ],
+ "_id": 16629,
+ "created": "2010-05-03T12:04:56.000Z",
+ "lastUpdated": "2021-07-20T16:05:37.940Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "développement",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "développement infantile",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physiology"
+ ],
+ "synsets": [
+ "13518338-n",
+ "13510240-n"
+ ],
+ "tags": [
+ "human body",
+ "physiology",
+ "human physiology"
+ ],
+ "_id": 16631,
+ "created": "2010-05-03T12:17:18.000Z",
+ "lastUpdated": "2021-07-20T16:05:46.493Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "croissance",
+ "hasLocution": true,
+ "plural": "croissances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07797777-n",
+ "07711710-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 16581,
+ "created": "2010-04-30T11:06:51.000Z",
+ "lastUpdated": "2021-07-26T21:18:00.529Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sandwich",
+ "hasLocution": true,
+ "plural": "sandwichs"
+ },
+ {
+ "type": 2,
+ "keyword": "sandwich aux calmars",
+ "hasLocution": false,
+ "plural": "sandwichs aux calmars"
+ },
+ {
+ "keyword": "sandwich aux calamars",
+ "hasLocution": false,
+ "plural": "sandwich aux calamars",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disease"
+ ],
+ "synsets": [
+ "00078513-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 16633,
+ "created": "2010-05-03T12:20:30.000Z",
+ "lastUpdated": "2021-07-20T16:05:52.664Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "soigner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "birthday"
+ ],
+ "synsets": [
+ "15277233-n",
+ "15274989-n",
+ "00249273-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 16635,
+ "created": "2010-05-03T12:22:51.000Z",
+ "lastUpdated": "2021-07-20T16:06:02.323Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "Joyeux Anniversaire !",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "Joyeux Anniversaire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mythological character",
+ "rome"
+ ],
+ "synsets": [
+ "09583190-n"
+ ],
+ "tags": [
+ "character",
+ "mythological character",
+ "mythology",
+ "history",
+ "civilization",
+ "Rome"
+ ],
+ "_id": 16637,
+ "created": "2010-05-03T12:25:23.000Z",
+ "lastUpdated": "2021-07-20T16:06:10.406Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Cupidon",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "baking"
+ ],
+ "synsets": [
+ "01679858-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 16641,
+ "created": "2010-05-03T12:28:34.000Z",
+ "lastUpdated": "2021-07-20T16:06:20.270Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "décorer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "orner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "00014398-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "core vocabulary"
+ ],
+ "_id": 16643,
+ "created": "2010-05-03T12:42:48.000Z",
+ "lastUpdated": "2021-07-20T16:06:24.498Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se reposer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "reposer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "popular festival",
+ "birthday",
+ "core vocabulary-communication",
+ "core vocabulary-time",
+ "popular event",
+ "social event"
+ ],
+ "synsets": [
+ "02496526-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "popular event",
+ "popular festival",
+ "social event",
+ "birthday",
+ "core vocabulary"
+ ],
+ "_id": 16649,
+ "created": "2010-05-03T12:54:03.000Z",
+ "lastUpdated": "2024-12-11T06:52:13.319Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fête",
+ "hasLocution": true,
+ "plural": "fêtes"
+ },
+ {
+ "type": 3,
+ "keyword": "fêter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "célébrer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07641102-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 16651,
+ "created": "2010-05-03T12:58:30.000Z",
+ "lastUpdated": "2021-07-20T16:07:38.321Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tourte",
+ "hasLocution": false,
+ "plural": "tourtes"
+ },
+ {
+ "keyword": "tourte au thon",
+ "hasLocution": false,
+ "plural": "tourtes au thon"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "02498011-v",
+ "01824240-v",
+ "01193481-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 16647,
+ "created": "2010-05-03T12:50:17.000Z",
+ "lastUpdated": "2021-07-20T16:06:33.761Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "amuser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'amuser",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "00747485-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 16657,
+ "created": "2010-05-03T13:55:29.000Z",
+ "lastUpdated": "2021-07-20T16:15:09.538Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "commander",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01242426-v",
+ "01415000-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 16655,
+ "created": "2010-05-03T13:54:07.000Z",
+ "lastUpdated": "2021-07-20T16:07:55.792Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "pousser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "renverser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire tomber",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00595247-v",
+ "00535672-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 16659,
+ "created": "2010-05-03T13:59:02.000Z",
+ "lastUpdated": "2021-07-20T16:08:15.465Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "comprendre",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "compréhensible",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "intelligible",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexuality",
+ "reproductive system",
+ "human reproduction"
+ ],
+ "synsets": [
+ "13493018-n"
+ ],
+ "tags": [
+ "sexuality",
+ "human body",
+ "physiology",
+ "human physiology",
+ "reproductive system",
+ "human reproduction"
+ ],
+ "_id": 16665,
+ "created": "2010-05-03T14:19:57.000Z",
+ "lastUpdated": "2021-07-20T16:08:34.895Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éjaculation",
+ "hasLocution": true,
+ "plural": "éjaculations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexuality",
+ "reproductive system"
+ ],
+ "synsets": [
+ "14061667-n"
+ ],
+ "tags": [
+ "sexuality",
+ "human body",
+ "physiology",
+ "human physiology",
+ "reproductive system"
+ ],
+ "_id": 16661,
+ "created": "2010-05-03T14:17:30.000Z",
+ "lastUpdated": "2021-07-20T16:08:25.170Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "érection",
+ "hasLocution": true,
+ "plural": "érections"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "weapon"
+ ],
+ "synsets": [
+ "01137207-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "weapon"
+ ],
+ "_id": 16645,
+ "created": "2010-05-03T12:46:54.000Z",
+ "lastUpdated": "2021-07-20T16:06:28.954Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tirer ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual practice"
+ ],
+ "synsets": [
+ "00857303-n"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual practice"
+ ],
+ "_id": 16675,
+ "created": "2010-05-03T14:53:46.000Z",
+ "lastUpdated": "2021-07-20T16:09:04.509Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masturbation",
+ "hasLocution": true,
+ "plural": "masturbations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual practice"
+ ],
+ "synsets": [
+ "00857303-n"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual practice"
+ ],
+ "_id": 16673,
+ "created": "2010-05-03T14:27:18.000Z",
+ "lastUpdated": "2021-07-20T16:08:56.109Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masturbation",
+ "hasLocution": true,
+ "plural": "masturbations"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00101710-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 16693,
+ "created": "2010-05-03T15:14:47.000Z",
+ "lastUpdated": "2021-07-20T16:09:18.125Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "cracher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00101710-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 16695,
+ "created": "2010-05-03T15:15:52.000Z",
+ "lastUpdated": "2021-07-20T16:09:22.591Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "cracher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02644022-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 16697,
+ "created": "2010-05-03T15:20:01.000Z",
+ "lastUpdated": "2021-07-20T16:09:24.292Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "baking"
+ ],
+ "synsets": [
+ "01615564-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 16699,
+ "created": "2010-05-03T15:21:56.000Z",
+ "lastUpdated": "2021-07-20T16:09:27.484Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "saupoudrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "contraceptive method"
+ ],
+ "synsets": [
+ "00717431-n"
+ ],
+ "tags": [
+ "sexuality",
+ "contraceptive method"
+ ],
+ "_id": 16681,
+ "created": "2010-05-03T14:59:09.000Z",
+ "lastUpdated": "2021-07-20T16:09:13.891Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vasectomie",
+ "hasLocution": false,
+ "plural": "vasectomies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport modality",
+ "core vocabulary-communication",
+ "sport"
+ ],
+ "synsets": [
+ "01942285-v",
+ "00441687-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport modality",
+ "core vocabulary"
+ ],
+ "_id": 16701,
+ "created": "2010-05-03T15:24:12.000Z",
+ "lastUpdated": "2024-12-12T07:11:00.198Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "skier",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "ski",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14338277-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 16703,
+ "created": "2010-05-03T15:27:02.000Z",
+ "lastUpdated": "2021-07-20T16:09:54.591Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éternuer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "education"
+ ],
+ "synsets": [
+ "00941308-v",
+ "00830768-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education"
+ ],
+ "_id": 16705,
+ "created": "2010-05-03T15:28:50.000Z",
+ "lastUpdated": "2021-07-20T16:09:58.039Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "expliquer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01165162-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 16707,
+ "created": "2010-05-03T15:39:42.000Z",
+ "lastUpdated": "2023-04-14T08:53:48.103Z",
+ "keywords": [
+ {
+ "keyword": "autopunition",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "autopunitions"
+ },
+ {
+ "keyword": "automutilation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "automutilations"
+ },
+ {
+ "keyword": "blesser",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "infliger des blessures",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "contraceptive method"
+ ],
+ "synsets": [
+ "00149266-n"
+ ],
+ "tags": [
+ "sexuality",
+ "contraceptive method"
+ ],
+ "_id": 16669,
+ "created": "2010-05-03T14:23:01.000Z",
+ "lastUpdated": "2021-07-20T16:08:45.909Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ligature des trompes",
+ "hasLocution": false,
+ "plural": "ligatures des trompes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs"
+ ],
+ "synsets": [
+ "00073096-v",
+ "00073791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs"
+ ],
+ "_id": 16709,
+ "created": "2010-05-03T15:42:00.000Z",
+ "lastUpdated": "2021-07-20T16:11:43.275Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire caca",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "chier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "aller à la selle",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "déféquer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01759660-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 16711,
+ "created": "2010-05-03T15:43:41.000Z",
+ "lastUpdated": "2021-07-20T16:11:49.744Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire le lit",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday",
+ "core vocabulary-communication",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "02389828-v",
+ "01065717-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday",
+ "core vocabulary"
+ ],
+ "_id": 16717,
+ "created": "2010-05-03T15:52:01.000Z",
+ "lastUpdated": "2021-07-20T16:12:17.409Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "inviter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "basic needs",
+ "routine",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00071765-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "person",
+ "basic needs",
+ "routine",
+ "core vocabulary"
+ ],
+ "_id": 16713,
+ "created": "2010-05-03T15:45:32.000Z",
+ "lastUpdated": "2021-08-21T14:33:04.871Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire pipi",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "uriner",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "02384895-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 16719,
+ "created": "2010-05-03T15:53:31.000Z",
+ "lastUpdated": "2021-07-21T07:12:21.929Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mettre à la retraite",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "prendre sa retraite",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon",
+ "mining industry",
+ "construction"
+ ],
+ "synsets": [
+ "03264996-n",
+ "03309675-n"
+ ],
+ "tags": [
+ "object",
+ "weapon",
+ "work",
+ "primary sector",
+ "mining",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 16721,
+ "created": "2010-05-04T09:30:04.000Z",
+ "lastUpdated": "2021-07-20T16:12:30.057Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dynamite",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "explosif",
+ "hasLocution": false,
+ "plural": "explosifs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "industrial building",
+ "construction",
+ "signaling system"
+ ],
+ "synsets": [
+ "00610937-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "industry",
+ "work",
+ "secondary sector",
+ "construction",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16723,
+ "created": "2010-05-04T09:32:27.000Z",
+ "lastUpdated": "2021-07-21T07:12:30.735Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plomberie",
+ "hasLocution": true,
+ "plural": "plomberies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "insect",
+ "terrestrial animal",
+ "oviparous",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02305272-n",
+ "02311989-n",
+ "01924944-n "
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "terrestrial animal",
+ "oviparous",
+ "domestic"
+ ],
+ "_id": 16727,
+ "created": "2010-05-04T09:46:00.000Z",
+ "lastUpdated": "2021-07-20T16:13:22.422Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ver",
+ "hasLocution": true,
+ "plural": "vers"
+ },
+ {
+ "type": 2,
+ "keyword": "chenille",
+ "hasLocution": true,
+ "plural": "chenilles"
+ },
+ {
+ "type": 2,
+ "keyword": "ver à soie",
+ "hasLocution": false,
+ "plural": "vers à soie"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "industrial building",
+ "worksite",
+ "craftsmanship",
+ "signaling system"
+ ],
+ "synsets": [
+ "03388492-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "industry",
+ "work",
+ "workplace",
+ "secondary sector",
+ "craftsmanship",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16731,
+ "created": "2010-05-04T10:31:45.000Z",
+ "lastUpdated": "2021-07-20T16:13:33.096Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "forge",
+ "hasLocution": false,
+ "plural": "forges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical documentation",
+ "medical document"
+ ],
+ "synsets": [
+ "07234838-n"
+ ],
+ "tags": [
+ "document",
+ "medicine",
+ "health"
+ ],
+ "_id": 16735,
+ "created": "2010-05-04T10:42:53.000Z",
+ "lastUpdated": "2021-07-20T16:13:49.761Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dossier médical",
+ "hasLocution": false,
+ "plural": "dossiers médicaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "02086602-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 16739,
+ "created": "2010-05-04T10:50:49.000Z",
+ "lastUpdated": "2021-07-20T16:14:00.750Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire une ronde",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "ronde",
+ "hasLocution": true,
+ "plural": "rondes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "02086602-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 16741,
+ "created": "2010-05-04T10:52:11.000Z",
+ "lastUpdated": "2021-07-20T16:14:11.653Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire une ronde",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "ronde",
+ "hasLocution": true,
+ "plural": "rondes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "football",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "00479273-n",
+ "01075360-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "football"
+ ],
+ "_id": 16743,
+ "created": "2010-05-04T10:54:27.000Z",
+ "lastUpdated": "2021-07-20T16:15:15.727Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "football",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "jouer au football",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "derived material",
+ "vehicle component"
+ ],
+ "synsets": [
+ "14977580-n"
+ ],
+ "tags": [
+ "material",
+ "derived material",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component"
+ ],
+ "_id": 16747,
+ "created": "2010-05-04T11:01:04.000Z",
+ "lastUpdated": "2021-07-20T16:15:48.342Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bidon d'huile",
+ "hasLocution": false,
+ "plural": "bidons d'huile"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "02424713-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 16745,
+ "created": "2010-05-04T10:58:51.000Z",
+ "lastUpdated": "2021-07-21T07:12:34.694Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "jouer avec l'eau",
+ "hasLocution": false
+ },
+ {
+ "keyword": "éclabousser",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seafood",
+ "processed food"
+ ],
+ "synsets": [
+ "07588522-n",
+ "07802662-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "seafood",
+ "processed food"
+ ],
+ "_id": 16751,
+ "created": "2010-05-04T13:02:04.000Z",
+ "lastUpdated": "2021-07-21T07:13:27.175Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte de clovisses",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish",
+ "processed food"
+ ],
+ "synsets": [
+ "07588522-n",
+ "07799643-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish",
+ "processed food"
+ ],
+ "_id": 16755,
+ "created": "2010-05-04T13:06:10.000Z",
+ "lastUpdated": "2021-07-21T07:13:43.342Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte d'anchois",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish",
+ "processed food"
+ ],
+ "synsets": [
+ "07588522-n",
+ "07796603-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish",
+ "processed food"
+ ],
+ "_id": 16759,
+ "created": "2010-05-04T13:11:57.000Z",
+ "lastUpdated": "2021-07-21T07:13:52.265Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte de thon",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seafood",
+ "processed food"
+ ],
+ "synsets": [
+ "07588522-n",
+ "07803589-n",
+ "01962626-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "seafood",
+ "processed food"
+ ],
+ "_id": 16763,
+ "created": "2010-05-04T13:17:24.000Z",
+ "lastUpdated": "2021-07-21T07:14:02.366Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte de coques",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant-based food",
+ "processed food"
+ ],
+ "synsets": [
+ "07588522-n",
+ "07734958-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "processed food"
+ ],
+ "_id": 16767,
+ "created": "2010-05-04T13:31:09.000Z",
+ "lastUpdated": "2021-07-21T07:14:16.154Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte d'asperges",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "death"
+ ],
+ "synsets": [
+ "02320505-v",
+ "13283812-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 16715,
+ "created": "2010-05-03T15:50:26.000Z",
+ "lastUpdated": "2021-07-20T16:12:10.522Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "hériter",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "héritage",
+ "hasLocution": true,
+ "plural": "héritages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seafood",
+ "processed food"
+ ],
+ "synsets": [
+ "07588522-n",
+ "01966212-n",
+ "07799526-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "seafood",
+ "processed food"
+ ],
+ "_id": 16771,
+ "created": "2010-05-04T13:35:44.000Z",
+ "lastUpdated": "2021-07-21T07:14:24.252Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte de moules",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07588522-n",
+ "07783525-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 16775,
+ "created": "2010-05-04T13:47:42.000Z",
+ "lastUpdated": "2021-07-21T07:14:41.333Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîtes d'olives noires",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "boîte d'olives ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07588522-n",
+ "07783685-n",
+ "01089807-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 16779,
+ "created": "2010-05-04T16:33:24.000Z",
+ "lastUpdated": "2021-07-21T07:14:55.434Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte d'olives ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "boîtes d'olives farcies",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07588522-n",
+ "07783685-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 16781,
+ "created": "2010-05-04T16:34:59.000Z",
+ "lastUpdated": "2021-07-21T07:15:10.419Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte d'olives ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "boîtes d'olives vertes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish",
+ "processed food"
+ ],
+ "synsets": [
+ "07588522-n",
+ "07810039-n",
+ "02535233-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish",
+ "processed food"
+ ],
+ "_id": 16787,
+ "created": "2010-05-04T16:43:35.000Z",
+ "lastUpdated": "2021-07-21T07:15:18.869Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte de sardines",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "literature"
+ ],
+ "synsets": [
+ "09885879-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "literature"
+ ],
+ "_id": 16791,
+ "created": "2010-05-04T16:51:15.000Z",
+ "lastUpdated": "2021-07-21T07:15:28.778Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "libraire",
+ "hasLocution": false,
+ "plural": "libraires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02009962-v",
+ "02024442-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 16805,
+ "created": "2010-05-04T17:11:34.000Z",
+ "lastUpdated": "2021-07-21T08:08:13.406Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "arriver",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02009962-v",
+ "02024442-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 16807,
+ "created": "2010-05-04T17:12:36.000Z",
+ "lastUpdated": "2021-07-21T08:42:21.321Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "arriver",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "literature"
+ ],
+ "synsets": [
+ "09885879-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "literature"
+ ],
+ "_id": 16795,
+ "created": "2010-05-04T16:53:41.000Z",
+ "lastUpdated": "2021-07-21T07:15:35.485Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "libraire",
+ "hasLocution": false,
+ "plural": "libraires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "cleaning product"
+ ],
+ "synsets": [
+ "01535377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 16803,
+ "created": "2010-05-04T17:08:48.000Z",
+ "lastUpdated": "2021-07-21T07:15:50.562Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre net, propre en débarrassant de ce qui tache, salit, ternit",
+ "keyword": "nettoyer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07780131-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 16813,
+ "created": "2010-05-04T17:34:35.000Z",
+ "lastUpdated": "2021-07-21T07:16:41.236Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mangue",
+ "hasLocution": true,
+ "plural": "mangues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "08589006-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 16817,
+ "created": "2010-05-04T17:57:15.000Z",
+ "lastUpdated": "2021-07-21T07:16:51.013Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ligne d'arrivée",
+ "hasLocution": false,
+ "plural": "lignes d'arrivée"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00177724-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 16821,
+ "created": "2010-05-04T18:01:29.000Z",
+ "lastUpdated": "2021-07-21T07:17:14.693Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se curer le nez",
+ "hasLocution": false
+ },
+ {
+ "keyword": "mettre le doigts dans le nez",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "supporting document"
+ ],
+ "synsets": [],
+ "tags": [
+ "document",
+ "supporting document"
+ ],
+ "_id": 16799,
+ "created": "2010-05-04T16:58:43.000Z",
+ "lastUpdated": "2021-07-21T07:15:46.901Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "livret de famille",
+ "hasLocution": true,
+ "plural": "livrets de famille"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02153218-v",
+ "02141597-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 16823,
+ "created": "2010-05-04T18:06:20.000Z",
+ "lastUpdated": "2021-07-21T08:08:22.904Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "montrer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "indiquer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "présenter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "baking"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 16809,
+ "created": "2010-05-04T17:30:12.000Z",
+ "lastUpdated": "2021-07-21T07:16:13.463Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poche à douille",
+ "hasLocution": false,
+ "plural": "poches à douille"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "05569140-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 16833,
+ "created": "2010-05-04T18:21:45.000Z",
+ "lastUpdated": "2021-07-21T07:18:21.765Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jambe",
+ "hasLocution": true,
+ "plural": "jambes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07726825-n",
+ "07846569-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 16827,
+ "created": "2010-05-04T18:13:05.000Z",
+ "lastUpdated": "2021-07-21T07:17:43.098Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pommes de terres sauce piquante",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01940612-v",
+ "01941081-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 16837,
+ "created": "2010-05-04T18:29:57.000Z",
+ "lastUpdated": "2021-07-21T07:18:34.497Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire du patin à glace",
+ "hasLocution": true
+ },
+ {
+ "keyword": "patiner",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01940612-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 16841,
+ "created": "2010-05-04T18:33:18.000Z",
+ "lastUpdated": "2021-07-21T07:18:45.031Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du skate",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "gender violence",
+ "bullying"
+ ],
+ "synsets": [
+ "01373226-v",
+ "01122487-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "gender violence",
+ "bullying"
+ ],
+ "_id": 16845,
+ "created": "2010-05-04T18:40:42.000Z",
+ "lastUpdated": "2021-07-21T07:20:25.388Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frapper",
+ "hasLocution": false
+ },
+ {
+ "keyword": "cogner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner un coup de pied",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "coup de pied",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07778220-n",
+ "07778090-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 16829,
+ "created": "2010-05-04T18:16:46.000Z",
+ "lastUpdated": "2021-07-21T07:17:50.875Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "papaye",
+ "hasLocution": false,
+ "plural": "papayes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "economy"
+ ],
+ "synsets": [
+ "02030204-a",
+ "07964900-n",
+ "10201821-n",
+ "09866418-n",
+ "02030681-s",
+ "02275660-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "economy"
+ ],
+ "_id": 16843,
+ "created": "2010-05-04T18:38:15.000Z",
+ "lastUpdated": "2021-07-21T07:19:14.805Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "pauvre",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mendiant",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "indigent",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "mendier",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00505100-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 16847,
+ "created": "2010-05-04T18:43:41.000Z",
+ "lastUpdated": "2021-07-21T07:19:52.812Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "pincer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mountain"
+ ],
+ "synsets": [
+ "02163627-v",
+ "01991174-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 16825,
+ "created": "2010-05-04T18:09:03.000Z",
+ "lastUpdated": "2021-07-21T07:17:33.260Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'orienter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "orienter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular festival",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "03349961-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "popular festival",
+ "core vocabulary"
+ ],
+ "_id": 16851,
+ "created": "2010-05-04T18:50:16.000Z",
+ "lastUpdated": "2021-07-21T07:20:46.057Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pétard",
+ "hasLocution": false,
+ "plural": "pétard"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00043211-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 16849,
+ "created": "2010-05-04T18:46:50.000Z",
+ "lastUpdated": "2021-07-21T07:20:38.309Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se parfumer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "parfumer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes"
+ ],
+ "synsets": [
+ "01280538-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 16861,
+ "created": "2010-05-04T19:05:23.000Z",
+ "lastUpdated": "2021-07-21T07:22:02.835Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "plier",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "plier le linge",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03132899-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 16855,
+ "created": "2010-05-04T18:55:00.000Z",
+ "lastUpdated": "2021-07-21T07:21:33.561Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crayons",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "crayons de couleur",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool"
+ ],
+ "synsets": [
+ "01248201-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool"
+ ],
+ "_id": 16863,
+ "created": "2010-05-04T19:24:34.000Z",
+ "lastUpdated": "2021-07-21T07:22:07.398Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "polir",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05572697-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 16865,
+ "created": "2010-05-04T19:31:32.000Z",
+ "lastUpdated": "2021-07-21T07:22:21.359Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poing",
+ "hasLocution": false,
+ "plural": "poings"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01442364-v",
+ "02309628-v",
+ "02211401-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 16869,
+ "created": "2010-05-04T19:34:57.000Z",
+ "lastUpdated": "2021-07-21T07:25:31.806Z",
+ "keywords": [
+ {
+ "keyword": "prendre",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "voler",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "enlever",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01442364-v",
+ "02309628-v",
+ "02211401-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 16871,
+ "created": "2010-05-04T19:36:22.000Z",
+ "lastUpdated": "2021-07-21T07:25:38.665Z",
+ "keywords": [
+ {
+ "keyword": "prendre",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "type": 3,
+ "keyword": "voler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document"
+ ],
+ "synsets": [
+ "06532213-n"
+ ],
+ "tags": [
+ "document",
+ "trade"
+ ],
+ "_id": 16873,
+ "created": "2010-05-04T19:38:56.000Z",
+ "lastUpdated": "2021-07-21T07:25:46.793Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "reçu",
+ "hasLocution": false,
+ "plural": "reçus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "02205200-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 16877,
+ "created": "2010-05-04T19:42:56.000Z",
+ "lastUpdated": "2021-07-21T07:25:53.758Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "offrir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "donner un cadeau",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "02205200-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 16879,
+ "created": "2010-05-04T19:44:24.000Z",
+ "lastUpdated": "2021-07-21T07:25:56.990Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "offrir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "donner un cadeau",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "02205200-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 16881,
+ "created": "2010-05-04T19:45:40.000Z",
+ "lastUpdated": "2021-07-21T07:26:01.076Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "offrir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "donner un cadeau",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "02655144-v",
+ "00321482-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 16883,
+ "created": "2010-05-04T19:53:56.000Z",
+ "lastUpdated": "2021-07-21T07:26:13.578Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "remplir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "garnir",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "students",
+ "core vocabulary-communication",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "00596016-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "education",
+ "students",
+ "core vocabulary"
+ ],
+ "_id": 16885,
+ "created": "2010-05-04T19:55:41.000Z",
+ "lastUpdated": "2021-07-21T07:26:17.609Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "savoir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "lever le doigt",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01045313-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 16891,
+ "created": "2010-05-04T20:04:48.000Z",
+ "lastUpdated": "2021-07-21T07:26:39.569Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "siffler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01988916-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 16889,
+ "created": "2010-05-04T20:02:58.000Z",
+ "lastUpdated": "2021-08-01T18:50:29.212Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'assoir sur les toilettes",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'asseoir sur les toilettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00218901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 16887,
+ "created": "2010-05-04T20:01:02.000Z",
+ "lastUpdated": "2021-07-21T07:26:22.730Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "sécher les cheveux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "00007012-v",
+ "02767855-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 16895,
+ "created": "2010-05-04T20:09:32.000Z",
+ "lastUpdated": "2021-07-21T07:26:52.848Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "souffler les bougies",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00034941-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 16893,
+ "created": "2010-05-04T20:07:05.000Z",
+ "lastUpdated": "2021-07-21T07:26:46.269Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se moucher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se moucher le nez",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "01356373-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 16897,
+ "created": "2010-05-04T20:12:02.000Z",
+ "lastUpdated": "2021-07-21T07:26:56.586Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "remonter la fermeture éclair",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery",
+ "cookery",
+ "core vocabulary-object",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "04270527-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "feeding",
+ "cookery",
+ "core vocabulary"
+ ],
+ "_id": 16857,
+ "created": "2010-05-04T19:01:32.000Z",
+ "lastUpdated": "2021-07-21T07:21:57.775Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "assiette",
+ "hasLocution": true,
+ "plural": "assiettes"
+ },
+ {
+ "type": 2,
+ "keyword": "assiette creuse",
+ "hasLocution": true,
+ "plural": "assiettes creuses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00917783-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 16899,
+ "created": "2010-05-04T20:13:40.000Z",
+ "lastUpdated": "2021-07-21T07:27:11.848Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chuchoter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "02890730-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 16901,
+ "created": "2010-05-04T20:16:29.000Z",
+ "lastUpdated": "2021-07-21T07:27:16.123Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bretelles",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00071556-v",
+ "01122487-v",
+ "02522260-v",
+ "00017390-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 16903,
+ "created": "2010-05-04T20:32:39.000Z",
+ "lastUpdated": "2021-07-21T07:27:34.342Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tirer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "tirer les cheveux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "02155378-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 16905,
+ "created": "2010-05-04T20:35:52.000Z",
+ "lastUpdated": "2021-07-21T07:27:42.183Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "regarder la télévision",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02156396-v",
+ "02460829-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 16907,
+ "created": "2010-05-04T20:39:09.000Z",
+ "lastUpdated": "2021-07-21T07:27:46.492Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "surveiller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "scruter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "hygiene product"
+ ],
+ "synsets": [
+ "10436015-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 16921,
+ "created": "2010-05-05T10:48:16.000Z",
+ "lastUpdated": "2021-07-21T07:29:50.793Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parfumeur",
+ "hasLocution": false,
+ "plural": "parfumeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "industrial building",
+ "worksite",
+ "land transport",
+ "signaling system"
+ ],
+ "synsets": [
+ "03421550-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "industry",
+ "work",
+ "workplace",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 16975,
+ "created": "2010-05-05T16:22:35.000Z",
+ "lastUpdated": "2021-07-21T07:30:00.400Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "garage",
+ "hasLocution": true,
+ "plural": "garages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "financial services"
+ ],
+ "synsets": [
+ "00202520-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "financial services"
+ ],
+ "_id": 16909,
+ "created": "2010-05-04T20:46:32.000Z",
+ "lastUpdated": "2021-07-21T07:28:02.646Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "virement bancaire",
+ "hasLocution": false,
+ "plural": "virements bancaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "pet"
+ ],
+ "synsets": [
+ "03926763-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "animal",
+ "pet"
+ ],
+ "_id": 16980,
+ "created": "2010-05-05T16:27:24.000Z",
+ "lastUpdated": "2021-07-21T07:30:17.587Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "animalerie",
+ "hasLocution": false,
+ "plural": "animaleries"
+ },
+ {
+ "type": 2,
+ "keyword": "oisellerie",
+ "hasLocution": false,
+ "plural": "oiselleries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "computing",
+ "mass media"
+ ],
+ "synsets": [
+ "06370307-n"
+ ],
+ "tags": [
+ "computing",
+ "communication",
+ "mass media"
+ ],
+ "_id": 16913,
+ "created": "2010-05-04T21:02:09.000Z",
+ "lastUpdated": "2021-07-21T07:29:03.583Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "web",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "site web",
+ "hasLocution": false,
+ "plural": "sites web"
+ },
+ {
+ "keyword": "page web",
+ "hasLocution": false,
+ "plural": "pages web"
+ },
+ {
+ "keyword": "internet",
+ "hasLocution": true
+ },
+ {
+ "keyword": "site internet",
+ "hasLocution": false,
+ "plural": "sites internet"
+ },
+ {
+ "keyword": "page internet",
+ "hasLocution": false,
+ "plural": "pages internet"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "hardware"
+ ],
+ "synsets": [
+ "03089823-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "computing",
+ "hardware"
+ ],
+ "_id": 16988,
+ "created": "2010-05-05T16:35:03.000Z",
+ "lastUpdated": "2021-07-21T07:31:03.618Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin d'informatique",
+ "hasLocution": false,
+ "plural": "magasins d'informatique"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "sport material"
+ ],
+ "synsets": [
+ "04292284-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 16984,
+ "created": "2010-05-05T16:31:43.000Z",
+ "lastUpdated": "2021-07-21T07:30:27.473Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de sport",
+ "hasLocution": false,
+ "plural": "magasins de sport"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "musical art"
+ ],
+ "synsets": [
+ "04209460-n",
+ "00544270-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "music"
+ ],
+ "_id": 16992,
+ "created": "2010-05-05T16:38:16.000Z",
+ "lastUpdated": "2021-07-21T07:30:48.119Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de musique",
+ "hasLocution": false,
+ "plural": "magasins de musique"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "hygiene product"
+ ],
+ "synsets": [
+ "10436015-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 16917,
+ "created": "2010-05-05T10:42:22.000Z",
+ "lastUpdated": "2021-07-21T07:29:39.385Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parfumeuses",
+ "hasLocution": false,
+ "plural": "parfumeuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07847243-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 17008,
+ "created": "2010-05-05T17:13:43.000Z",
+ "lastUpdated": "2021-07-21T07:31:46.898Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sauce tomate",
+ "hasLocution": false,
+ "plural": "sauces tomate"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "synsets": [
+ "01936911-a",
+ "14055005-n",
+ "00407168-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "_id": 17004,
+ "created": "2010-05-05T17:06:57.000Z",
+ "lastUpdated": "2021-07-21T07:31:37.614Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "prêt",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se préparer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "synsets": [
+ "01936911-a",
+ "14055005-n",
+ "00407168-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "_id": 17000,
+ "created": "2010-05-05T17:02:48.000Z",
+ "lastUpdated": "2021-07-21T07:31:29.993Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se préparer",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "prête",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03914323-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 17016,
+ "created": "2010-05-05T18:11:44.000Z",
+ "lastUpdated": "2021-07-21T07:32:32.727Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crayons de couleurs",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "crayons de bois",
+ "hasLocution": false
+ },
+ {
+ "keyword": "crayons",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "body position"
+ ],
+ "synsets": [
+ "05224424-n",
+ "00202946-a"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "position"
+ ],
+ "_id": 17018,
+ "created": "2010-05-05T18:26:07.000Z",
+ "lastUpdated": "2021-07-21T07:32:40.640Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corps",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "corps de dos",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "body position"
+ ],
+ "synsets": [
+ "05224424-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "position"
+ ],
+ "_id": 17022,
+ "created": "2010-05-05T18:28:59.000Z",
+ "lastUpdated": "2021-07-21T07:32:44.156Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corps",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "corps de face",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "footwear"
+ ],
+ "synsets": [
+ "01288043-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 17026,
+ "created": "2010-05-05T18:40:18.000Z",
+ "lastUpdated": "2021-03-13T14:35:46.654Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire ses lacets",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "lacer"
+ },
+ {
+ "keyword": "nouer les chaussures",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire un noeud",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "official document",
+ "court document"
+ ],
+ "synsets": [
+ "00063271-n"
+ ],
+ "tags": [
+ "document",
+ "public administration",
+ "justice"
+ ],
+ "_id": 17030,
+ "created": "2010-05-05T18:48:43.000Z",
+ "lastUpdated": "2021-07-21T07:33:29.480Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accomplissement",
+ "hasLocution": false,
+ "plural": "accomplissements"
+ },
+ {
+ "keyword": "exécution",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "exécutions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "industry"
+ ],
+ "synsets": [
+ "00926639-n",
+ "00914791-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "industry",
+ "manufacturing industry"
+ ],
+ "_id": 17032,
+ "created": "2010-05-05T18:53:30.000Z",
+ "lastUpdated": "2021-07-21T07:34:01.029Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fabrication",
+ "hasLocution": false,
+ "plural": "fabrications"
+ },
+ {
+ "type": 2,
+ "keyword": "élaboration",
+ "hasLocution": false,
+ "plural": "élaborations"
+ },
+ {
+ "type": 2,
+ "keyword": "production",
+ "hasLocution": true,
+ "plural": "productions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "social movement"
+ ],
+ "synsets": [
+ "07261731-n",
+ "07266652-n"
+ ],
+ "tags": [
+ "sociology",
+ "social movement"
+ ],
+ "_id": 17034,
+ "created": "2010-05-05T18:55:55.000Z",
+ "lastUpdated": "2021-07-21T07:34:46.938Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "impulsion",
+ "hasLocution": false,
+ "plural": "impulsions"
+ },
+ {
+ "type": 2,
+ "keyword": "promotion",
+ "hasLocution": true,
+ "plural": "promotions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "05155946-n",
+ "00948944-n"
+ ],
+ "tags": [],
+ "_id": 17036,
+ "created": "2010-05-05T18:59:05.000Z",
+ "lastUpdated": "2021-07-21T07:35:05.200Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "usage",
+ "hasLocution": true,
+ "plural": "usages"
+ },
+ {
+ "type": 2,
+ "keyword": "utilisation",
+ "hasLocution": false,
+ "plural": "utilisations"
+ },
+ {
+ "type": 2,
+ "keyword": "utilité",
+ "hasLocution": false,
+ "plural": "utilités"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02204104-v",
+ "02302103-v",
+ "02235554-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 17038,
+ "created": "2010-05-05T19:07:29.000Z",
+ "lastUpdated": "2021-07-21T07:35:08.742Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Ofrrir",
+ "keyword": "donner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "offrir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "livrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sweets"
+ ],
+ "synsets": [
+ "07616267-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 17010,
+ "created": "2010-05-05T17:27:41.000Z",
+ "lastUpdated": "2021-07-11T09:50:37.322Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pomme d'amour",
+ "hasLocution": false,
+ "plural": "pommes d'amour"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "unit of time"
+ ],
+ "synsets": [
+ "02690747-v",
+ "02710788-v"
+ ],
+ "tags": [
+ "time",
+ "unit of time"
+ ],
+ "_id": 17050,
+ "created": "2010-05-05T20:18:18.000Z",
+ "lastUpdated": "2021-07-21T07:37:09.860Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "garder",
+ "hasLocution": false
+ },
+ {
+ "keyword": "durer",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "continuer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "unit of time"
+ ],
+ "synsets": [
+ "15158440-n",
+ "05058400-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time"
+ ],
+ "_id": 17052,
+ "created": "2010-05-05T20:19:25.000Z",
+ "lastUpdated": "2021-07-21T07:37:27.025Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "durée",
+ "hasLocution": false,
+ "plural": "durées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs"
+ ],
+ "synsets": [
+ "01216829-v",
+ "02240906-v",
+ "02214901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs"
+ ],
+ "_id": 17044,
+ "created": "2010-05-05T19:14:26.000Z",
+ "lastUpdated": "2021-07-21T07:36:23.850Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Saisir, attraper",
+ "keyword": "prendre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "recevoir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "accepter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "saisir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indefinite adjective"
+ ],
+ "synsets": [
+ "02076759-a",
+ "02077592-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "indefinite adjective"
+ ],
+ "_id": 17056,
+ "created": "2010-05-05T20:25:56.000Z",
+ "lastUpdated": "2021-07-21T07:37:54.042Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "autres",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "unit of time"
+ ],
+ "synsets": [
+ "02208144-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "time",
+ "unit of time"
+ ],
+ "_id": 17058,
+ "created": "2010-05-05T20:43:20.000Z",
+ "lastUpdated": "2021-07-21T07:37:58.352Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "avoir du temps",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "13266237-n"
+ ],
+ "tags": [],
+ "_id": 17060,
+ "created": "2010-05-06T13:49:36.000Z",
+ "lastUpdated": "2021-07-21T07:38:07.641Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "propriété intellectuelle",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture"
+ ],
+ "synsets": [
+ "04186187-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 17161,
+ "created": "2010-05-13T09:59:28.000Z",
+ "lastUpdated": "2021-07-21T07:39:03.859Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "égout",
+ "hasLocution": false,
+ "plural": "égout"
+ },
+ {
+ "keyword": "bouche d'égout",
+ "hasLocution": false,
+ "plural": "bouches d'égout",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture"
+ ],
+ "synsets": [
+ "04186187-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 17163,
+ "created": "2010-05-13T10:00:58.000Z",
+ "lastUpdated": "2021-07-21T07:40:01.140Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "égout",
+ "hasLocution": false,
+ "plural": "égouts"
+ },
+ {
+ "keyword": "grille d'égout",
+ "hasLocution": false,
+ "plural": "grille d'égout",
+ "type": 2
+ },
+ {
+ "keyword": "drain",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "drains"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traffic accident",
+ "road safety"
+ ],
+ "synsets": [
+ "00106714-v",
+ "07315954-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "traffic accident",
+ "road safety"
+ ],
+ "_id": 17169,
+ "created": "2010-05-13T10:06:52.000Z",
+ "lastUpdated": "2021-07-21T07:40:30.974Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "renverser",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "accident",
+ "hasLocution": true,
+ "plural": "accidents"
+ },
+ {
+ "keyword": "heurter",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 17171,
+ "created": "2010-05-13T10:14:39.000Z",
+ "lastUpdated": "2021-07-21T07:42:16.655Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tambour à broder",
+ "hasLocution": false,
+ "plural": "tambours à broder"
+ },
+ {
+ "keyword": "cercle à broder",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cercles à broder"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indefinite adjective"
+ ],
+ "synsets": [
+ "02076759-a",
+ "02077592-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "indefinite adjective"
+ ],
+ "_id": 17054,
+ "created": "2010-05-05T20:23:11.000Z",
+ "lastUpdated": "2021-07-21T07:37:50.150Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "autre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "03780732-n",
+ "02853991-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 17175,
+ "created": "2010-05-13T10:18:03.000Z",
+ "lastUpdated": "2021-07-21T07:42:51.117Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "batteur",
+ "hasLocution": true,
+ "plural": "batteurs"
+ },
+ {
+ "type": 2,
+ "keyword": "mixeur",
+ "hasLocution": true,
+ "plural": "mixeurs"
+ },
+ {
+ "keyword": "blender",
+ "hasLocution": false,
+ "plural": "blenders"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "gender violence"
+ ],
+ "synsets": [
+ "01419525-v",
+ "00134488-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "gender violence"
+ ],
+ "_id": 17179,
+ "created": "2010-05-13T10:21:11.000Z",
+ "lastUpdated": "2021-07-21T07:43:29.280Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frapper",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "gifle",
+ "hasLocution": false
+ },
+ {
+ "keyword": "giffler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs"
+ ],
+ "synsets": [
+ "02204104-v",
+ "02302103-v",
+ "02235554-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs"
+ ],
+ "_id": 17040,
+ "created": "2010-05-05T19:09:15.000Z",
+ "lastUpdated": "2021-07-21T07:35:24.746Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Ofrrir",
+ "keyword": "donner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "offrir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "livrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01216829-v",
+ "02240906-v",
+ "02214901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 17042,
+ "created": "2010-05-05T19:12:33.000Z",
+ "lastUpdated": "2021-07-21T07:36:07.915Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Saisir, attraper",
+ "keyword": "prendre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "recevoir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "accepter",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "saisir",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant physiology",
+ "plant anatomy",
+ "verb",
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "13185481-n",
+ "00357986-v"
+ ],
+ "tags": [
+ "plant",
+ "plant physiology",
+ "plant anatomy",
+ "anatomy",
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 17183,
+ "created": "2010-05-13T10:25:12.000Z",
+ "lastUpdated": "2021-07-21T07:44:09.142Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "pousse",
+ "hasLocution": true,
+ "plural": "pousses"
+ },
+ {
+ "type": 3,
+ "keyword": "pousser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "germer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "germe",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "germes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08731965-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 17185,
+ "created": "2010-05-13T10:30:53.000Z",
+ "lastUpdated": "2021-07-21T07:44:13.873Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Bulgarie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "beverage"
+ ],
+ "synsets": [
+ "03067341-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 17186,
+ "created": "2010-05-13T10:34:26.000Z",
+ "lastUpdated": "2021-07-21T07:44:21.046Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cafetière",
+ "hasLocution": true,
+ "plural": "cafetières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "02483178-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 17194,
+ "created": "2010-05-13T11:14:15.000Z",
+ "lastUpdated": "2021-07-21T07:45:58.756Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "annuler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "financial services"
+ ],
+ "synsets": [
+ "02980517-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "financial services"
+ ],
+ "_id": 17190,
+ "created": "2010-05-13T11:08:11.000Z",
+ "lastUpdated": "2021-07-21T07:45:13.522Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guichet automatique",
+ "hasLocution": false,
+ "plural": "guichets automatiques"
+ },
+ {
+ "keyword": "DAB",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "distributeur automatique de billets",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "distributeurs automatiques de billets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "02863755-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 17200,
+ "created": "2010-05-13T12:34:12.000Z",
+ "lastUpdated": "2021-07-21T07:47:06.886Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bobine",
+ "hasLocution": false,
+ "plural": "bobines"
+ },
+ {
+ "keyword": "rouleau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "rouleaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "14824204-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 17208,
+ "created": "2010-05-13T12:52:56.000Z",
+ "lastUpdated": "2021-07-21T07:47:32.416Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bristol",
+ "hasLocution": false,
+ "plural": "bristols"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "01246546-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 17212,
+ "created": "2010-05-13T13:06:55.000Z",
+ "lastUpdated": "2021-07-21T07:47:45.247Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "brosser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nettoyer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "string instrument"
+ ],
+ "synsets": [
+ "02807100-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "string instrument"
+ ],
+ "_id": 17214,
+ "created": "2010-05-13T13:14:50.000Z",
+ "lastUpdated": "2021-07-21T07:47:54.453Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "contrebasse",
+ "hasLocution": false,
+ "plural": "contrebasses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08768167-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 17218,
+ "created": "2010-05-13T13:21:33.000Z",
+ "lastUpdated": "2021-07-21T07:47:58.178Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Cuba",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "03215404-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 17219,
+ "created": "2010-05-13T13:37:23.000Z",
+ "lastUpdated": "2021-07-21T07:48:32.925Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "distributeur",
+ "hasLocution": true,
+ "plural": "distributeurs"
+ },
+ {
+ "keyword": "distributeur de papier",
+ "hasLocution": false,
+ "plural": "distributeurs de papier",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "02870607-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 17223,
+ "created": "2010-05-13T15:46:38.000Z",
+ "lastUpdated": "2021-07-21T07:49:14.118Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "douçaine",
+ "hasLocution": false,
+ "plural": "douçaines"
+ },
+ {
+ "keyword": "bombarde",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bombardes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "04063401-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 17196,
+ "created": "2010-05-13T11:18:38.000Z",
+ "lastUpdated": "2021-07-21T07:46:09.988Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crécelle",
+ "hasLocution": false,
+ "plural": "crécelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crockery"
+ ],
+ "synsets": [
+ "01353653-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "crockery",
+ "home"
+ ],
+ "_id": 17229,
+ "created": "2010-05-13T15:53:01.000Z",
+ "lastUpdated": "2021-07-21T07:49:23.845Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "égoutter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cleaning product"
+ ],
+ "synsets": [
+ "01353653-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 17231,
+ "created": "2010-05-13T15:55:33.000Z",
+ "lastUpdated": "2021-07-21T07:49:28.457Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "égoutter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "educational material"
+ ],
+ "synsets": [
+ "02969645-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "education",
+ "educational material"
+ ],
+ "_id": 17204,
+ "created": "2010-05-13T12:39:35.000Z",
+ "lastUpdated": "2021-07-21T07:47:19.738Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "manège",
+ "hasLocution": true,
+ "plural": "manèges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "fashion",
+ "clothes"
+ ],
+ "synsets": [
+ "03490877-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "clothes"
+ ],
+ "_id": 17233,
+ "created": "2010-05-13T16:27:42.000Z",
+ "lastUpdated": "2024-12-08T15:49:59.753Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "foulard",
+ "hasLocution": true,
+ "plural": "foulards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool"
+ ],
+ "synsets": [
+ "01355509-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool"
+ ],
+ "_id": 17227,
+ "created": "2010-05-13T15:51:13.000Z",
+ "lastUpdated": "2021-07-21T07:49:20.082Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "visser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "03945001-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 17237,
+ "created": "2010-05-13T16:32:04.000Z",
+ "lastUpdated": "2021-07-21T07:50:39.200Z",
+ "keywords": [
+ {
+ "keyword": "taie",
+ "hasLocution": false,
+ "plural": "taies",
+ "type": 2
+ },
+ {
+ "keyword": "taie d'oreiller",
+ "hasLocution": false,
+ "plural": "taies d'oreiller",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02425668-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 17241,
+ "created": "2010-05-13T16:38:40.000Z",
+ "lastUpdated": "2021-07-21T07:50:47.127Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gazelle",
+ "hasLocution": true,
+ "plural": "gazelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02015503-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 17245,
+ "created": "2010-05-13T16:43:21.000Z",
+ "lastUpdated": "2021-07-21T07:50:54.284Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grue",
+ "hasLocution": true,
+ "plural": "grues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "alcoholism"
+ ],
+ "synsets": [
+ "07922524-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "alcohol"
+ ],
+ "_id": 17249,
+ "created": "2010-05-13T17:13:41.000Z",
+ "lastUpdated": "2021-07-21T07:51:02.892Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "whisky",
+ "hasLocution": false,
+ "plural": "whiskys"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 17257,
+ "created": "2010-05-13T17:26:22.000Z",
+ "lastUpdated": "2021-07-21T07:51:15.565Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pétanque",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02119787-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 17253,
+ "created": "2010-05-13T17:20:43.000Z",
+ "lastUpdated": "2021-07-21T07:51:10.601Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hyène",
+ "hasLocution": false,
+ "plural": "hyènes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "synsets": [
+ "09839665-n",
+ "07485115-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "_id": 17263,
+ "created": "2010-05-13T17:46:43.000Z",
+ "lastUpdated": "2021-07-21T07:52:24.461Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lancement",
+ "hasLocution": false,
+ "plural": "lancements"
+ },
+ {
+ "type": 2,
+ "keyword": "lancement de poids",
+ "hasLocution": false,
+ "plural": "lancements de poids"
+ },
+ {
+ "type": 2,
+ "keyword": "lanceur",
+ "hasLocution": false,
+ "plural": "lanceurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "hunting",
+ "wild animal"
+ ],
+ "synsets": [
+ "02329084-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "hunting",
+ "wild"
+ ],
+ "_id": 17265,
+ "created": "2010-05-13T17:51:36.000Z",
+ "lastUpdated": "2021-07-21T07:52:33.556Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lièvre",
+ "hasLocution": false,
+ "plural": "lièvres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil"
+ ],
+ "synsets": [
+ "01535222-v",
+ "01535377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 17269,
+ "created": "2010-05-13T17:59:15.000Z",
+ "lastUpdated": "2021-07-21T07:52:37.448Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre net, propre en débarrassant de ce qui tache, salit, ternit",
+ "keyword": "nettoyer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01394891-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 17271,
+ "created": "2010-05-13T18:02:27.000Z",
+ "lastUpdated": "2021-07-21T07:52:59.816Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se nettoyer la bouche",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'essuyer la bouche",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "01495601-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 17273,
+ "created": "2010-05-13T18:05:57.000Z",
+ "lastUpdated": "2021-07-21T07:53:10.572Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "broyer",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "piler",
+ "hasLocution": false
+ },
+ {
+ "keyword": "écraser",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03792434-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 17275,
+ "created": "2010-05-13T18:09:52.000Z",
+ "lastUpdated": "2021-07-21T07:53:21.163Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mortier",
+ "hasLocution": true,
+ "plural": "mortiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "olympic games",
+ "athletics"
+ ],
+ "synsets": [
+ "09839665-n",
+ "07485560-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "event",
+ "sport event",
+ "olympic games",
+ "athletics"
+ ],
+ "_id": 17261,
+ "created": "2010-05-13T17:44:50.000Z",
+ "lastUpdated": "2021-07-21T07:52:09.479Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lancement",
+ "hasLocution": false,
+ "plural": "lancements"
+ },
+ {
+ "type": 2,
+ "keyword": "lancement de javelot",
+ "hasLocution": false,
+ "plural": "lancements de javelot"
+ },
+ {
+ "type": 2,
+ "keyword": "lanceuse",
+ "hasLocution": false,
+ "plural": "lanceuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "03883763-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 17279,
+ "created": "2010-05-13T18:21:23.000Z",
+ "lastUpdated": "2021-07-21T07:53:40.198Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "palais",
+ "hasLocution": false,
+ "plural": "palais"
+ },
+ {
+ "keyword": "château",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "châteaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03490877-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 17284,
+ "created": "2010-05-13T18:27:00.000Z",
+ "lastUpdated": "2021-07-21T07:53:55.518Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mouchoir",
+ "hasLocution": true,
+ "plural": "mouchoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08757039-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 17283,
+ "created": "2010-05-13T18:25:07.000Z",
+ "lastUpdated": "2021-07-21T07:53:43.741Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Panama",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "core vocabulary-object",
+ "fashion",
+ "clothes"
+ ],
+ "synsets": [
+ "03490877-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "core vocabulary",
+ "clothes"
+ ],
+ "_id": 17288,
+ "created": "2010-05-13T18:30:35.000Z",
+ "lastUpdated": "2024-12-08T15:50:15.212Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "foulard",
+ "hasLocution": true,
+ "plural": "foulards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "synsets": [
+ "07485425-n",
+ "09839665-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "_id": 17259,
+ "created": "2010-05-13T17:33:51.000Z",
+ "lastUpdated": "2021-07-21T07:51:42.323Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lancement",
+ "hasLocution": false,
+ "plural": "lancements"
+ },
+ {
+ "type": 2,
+ "keyword": "lancement de disque",
+ "hasLocution": false,
+ "plural": "lancements de disque"
+ },
+ {
+ "type": 2,
+ "keyword": "lanceur",
+ "hasLocution": false,
+ "plural": "lanceur"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08770807-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 17296,
+ "created": "2010-05-13T18:39:08.000Z",
+ "lastUpdated": "2021-07-21T07:57:19.297Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Puerto Rico",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crockery"
+ ],
+ "synsets": [
+ "00276642-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "crockery",
+ "home"
+ ],
+ "_id": 17300,
+ "created": "2010-05-13T18:47:44.000Z",
+ "lastUpdated": "2021-07-21T07:57:45.500Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ranger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cutlery"
+ ],
+ "synsets": [
+ "00276642-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "cutlery",
+ "home"
+ ],
+ "_id": 17302,
+ "created": "2010-05-13T18:49:44.000Z",
+ "lastUpdated": "2021-07-21T07:57:51.442Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ranger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "02824165-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 17304,
+ "created": "2010-05-13T18:53:29.000Z",
+ "lastUpdated": "2021-07-21T07:58:35.696Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couverture",
+ "hasLocution": true,
+ "plural": "couvertures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "04195222-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 17308,
+ "created": "2010-05-13T18:59:58.000Z",
+ "lastUpdated": "2021-07-21T07:58:52.750Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "drap de dessous",
+ "hasLocution": false,
+ "plural": "draps de dessous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "financial services"
+ ],
+ "synsets": [
+ "02316367-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "financial services"
+ ],
+ "_id": 17312,
+ "created": "2010-05-13T19:07:41.000Z",
+ "lastUpdated": "2021-07-21T07:59:08.386Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "retirer de l'argent",
+ "hasLocution": false
+ },
+ {
+ "keyword": "retirer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crockery"
+ ],
+ "synsets": [
+ "00276642-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "crockery",
+ "home"
+ ],
+ "_id": 17298,
+ "created": "2010-05-13T18:46:16.000Z",
+ "lastUpdated": "2021-07-21T07:57:38.225Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ranger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07867030-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 17292,
+ "created": "2010-05-13T18:35:24.000Z",
+ "lastUpdated": "2021-07-21T07:57:14.169Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peau",
+ "hasLocution": true,
+ "plural": "peaux"
+ },
+ {
+ "keyword": "peau de banane",
+ "hasLocution": true,
+ "plural": "peaux de bananes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "synsets": [
+ "07484616-n",
+ "00441449-n",
+ "09839665-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "_id": 17314,
+ "created": "2010-05-13T19:12:49.000Z",
+ "lastUpdated": "2021-07-21T07:59:15.930Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saut en hauteur",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "synsets": [
+ "09839665-n",
+ "07484749-n",
+ "00441322-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "_id": 17316,
+ "created": "2010-05-13T19:14:03.000Z",
+ "lastUpdated": "2021-07-21T07:59:19.727Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saut en longueur",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "10693754-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 17324,
+ "created": "2010-05-13T19:28:38.000Z",
+ "lastUpdated": "2021-07-21T08:00:11.801Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sultan",
+ "hasLocution": false,
+ "plural": "sultans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "athletics"
+ ],
+ "synsets": [
+ "04311695-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "athletics"
+ ],
+ "_id": 17328,
+ "created": "2010-05-13T19:42:17.000Z",
+ "lastUpdated": "2021-07-21T08:01:08.018Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "starting blocks",
+ "hasLocution": false
+ },
+ {
+ "keyword": "blocs de départ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of time",
+ "basic concepts"
+ ],
+ "synsets": [
+ "00020735-r",
+ "00020071-r",
+ "00020219-r",
+ "00019801-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 17322,
+ "created": "2010-05-13T19:23:56.000Z",
+ "lastUpdated": "2021-08-02T21:16:44.515Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "toujours",
+ "hasLocution": true
+ },
+ {
+ "keyword": "chaque fois",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "n'importe quand",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance",
+ "cookery",
+ "usual verbs",
+ "core vocabulary-communication",
+ "core vocabulary-object",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "00322952-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 17330,
+ "created": "2010-05-13T19:45:04.000Z",
+ "lastUpdated": "2021-07-21T08:01:13.056Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "griller",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "02955021-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 17338,
+ "created": "2010-05-14T10:51:04.000Z",
+ "lastUpdated": "2021-07-21T08:02:25.935Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ouvre-boite",
+ "hasLocution": false,
+ "plural": "ouvre-boites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "02955021-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 17342,
+ "created": "2010-05-14T10:57:03.000Z",
+ "lastUpdated": "2021-07-21T08:02:46.075Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ouvre-boite",
+ "hasLocution": false,
+ "plural": "ouvre-boites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "02955021-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 17346,
+ "created": "2010-05-14T11:03:20.000Z",
+ "lastUpdated": "2021-07-21T08:03:08.207Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ouvre-boite électrique",
+ "hasLocution": false,
+ "plural": "ouvre-boites électriques"
+ },
+ {
+ "type": 2,
+ "keyword": "ouvre-boîte",
+ "hasLocution": true,
+ "plural": "ouvre-boîtes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "string instrument"
+ ],
+ "synsets": [
+ "04543630-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "string instrument"
+ ],
+ "_id": 17332,
+ "created": "2010-05-13T19:47:58.000Z",
+ "lastUpdated": "2021-07-21T08:01:46.663Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "alto",
+ "hasLocution": false,
+ "plural": "altos"
+ },
+ {
+ "keyword": "violon alto",
+ "hasLocution": false,
+ "plural": "violons altos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "synsets": [
+ "09839665-n",
+ "07484912-n",
+ "10766599-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "_id": 17318,
+ "created": "2010-05-13T19:15:33.000Z",
+ "lastUpdated": "2021-07-21T07:59:23.102Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saut à la perche",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human response",
+ "core vocabulary-knowledge",
+ "special education",
+ "basic needs"
+ ],
+ "synsets": [
+ "01207646-n",
+ "01205394-n",
+ "00412397-n",
+ "01210099-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response",
+ "core vocabulary",
+ "education",
+ "special education",
+ "person",
+ "basic needs"
+ ],
+ "_id": 19524,
+ "created": "2010-07-08T10:15:22.000Z",
+ "lastUpdated": "2024-12-11T06:28:21.848Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aide",
+ "hasLocution": true,
+ "plural": "aides"
+ },
+ {
+ "type": 2,
+ "keyword": "collaboration",
+ "hasLocution": false,
+ "plural": "collaborations"
+ },
+ {
+ "type": 2,
+ "keyword": "coopération",
+ "hasLocution": false,
+ "plural": "coopération"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "02974144-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 19520,
+ "created": "2010-07-08T10:04:55.000Z",
+ "lastUpdated": "2021-07-21T08:05:53.617Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "siège",
+ "hasLocution": true,
+ "plural": "sièges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "synsets": [
+ "09839665-n",
+ "07484302-n",
+ "10213483-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "_id": 17320,
+ "created": "2010-05-13T19:18:55.000Z",
+ "lastUpdated": "2021-07-21T07:59:34.416Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saut de haies",
+ "hasLocution": false
+ },
+ {
+ "keyword": "course de haies",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "financial services"
+ ],
+ "synsets": [
+ "08440014-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector",
+ "financial services"
+ ],
+ "_id": 19528,
+ "created": "2010-07-08T10:21:16.000Z",
+ "lastUpdated": "2021-07-21T08:07:05.115Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caisse d'épargne",
+ "hasLocution": false,
+ "plural": "caisses d'épargne"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "football"
+ ],
+ "synsets": [
+ "10637858-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "football"
+ ],
+ "_id": 19530,
+ "created": "2010-07-08T10:23:28.000Z",
+ "lastUpdated": "2021-07-21T08:07:20.751Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "footballeur",
+ "hasLocution": true,
+ "plural": "footballeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cutlery"
+ ],
+ "synsets": [
+ "03158041-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "cutlery",
+ "home"
+ ],
+ "_id": 17350,
+ "created": "2010-05-14T11:16:36.000Z",
+ "lastUpdated": "2021-07-21T08:03:42.844Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "range-couvert",
+ "hasLocution": false,
+ "plural": "range-couverts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport event",
+ "football"
+ ],
+ "synsets": [
+ "07307418-n",
+ "07369331-n",
+ "01102556-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "football"
+ ],
+ "_id": 19531,
+ "created": "2010-07-08T10:25:07.000Z",
+ "lastUpdated": "2021-07-21T08:08:40.214Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "gagner",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "résultat ",
+ "hasLocution": false,
+ "plural": "résultats"
+ },
+ {
+ "keyword": "score",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "scores"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture"
+ ],
+ "synsets": [
+ "03153586-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 19526,
+ "created": "2010-07-08T10:18:00.000Z",
+ "lastUpdated": "2021-07-21T08:06:52.916Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bord",
+ "hasLocution": false,
+ "plural": "bords"
+ },
+ {
+ "keyword": "bordure",
+ "hasLocution": false,
+ "plural": "bordures",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "08341444-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 19539,
+ "created": "2010-07-08T10:42:47.000Z",
+ "lastUpdated": "2021-07-21T08:09:50.012Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "comité d'honneur",
+ "hasLocution": false,
+ "plural": "comités d'honneur"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport event",
+ "football",
+ "sport"
+ ],
+ "synsets": [
+ "07307418-n",
+ "01102003-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "football"
+ ],
+ "_id": 19533,
+ "created": "2010-07-08T10:27:20.000Z",
+ "lastUpdated": "2024-12-07T13:20:41.692Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "résultat ",
+ "hasLocution": false,
+ "plural": "résultats"
+ },
+ {
+ "type": 3,
+ "keyword": "perdre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "score",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "scores"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "04099417-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 19535,
+ "created": "2010-07-08T10:30:35.000Z",
+ "lastUpdated": "2021-07-21T08:09:07.080Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jante",
+ "hasLocution": false,
+ "plural": "jantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "popular event"
+ ],
+ "synsets": [
+ "15212085-n"
+ ],
+ "tags": [
+ "event",
+ "religious event",
+ "popular event"
+ ],
+ "_id": 19541,
+ "created": "2010-07-08T10:48:09.000Z",
+ "lastUpdated": "2021-07-21T08:09:53.677Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saint Valentin",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Saint-Valentin",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "popular event"
+ ],
+ "synsets": [
+ "15212085-n"
+ ],
+ "tags": [
+ "event",
+ "religious event",
+ "popular event"
+ ],
+ "_id": 19543,
+ "created": "2010-07-08T10:49:40.000Z",
+ "lastUpdated": "2021-07-21T08:09:58.018Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saint Valentin",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Saint-Valentin",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "popular event"
+ ],
+ "synsets": [
+ "15212085-n"
+ ],
+ "tags": [
+ "event",
+ "religious event",
+ "popular event"
+ ],
+ "_id": 19545,
+ "created": "2010-07-08T10:52:00.000Z",
+ "lastUpdated": "2021-09-03T16:57:09.776Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saint Valentin",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Saint-Valentin",
+ "hasLocution": true
+ },
+ {
+ "keyword": "jour de la Saint-Valentin",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08968866-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 19547,
+ "created": "2010-07-15T10:10:49.000Z",
+ "lastUpdated": "2021-07-21T08:10:05.131Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Hollande",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Pays-Bas",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "sport",
+ "sport event"
+ ],
+ "synsets": [
+ "10522161-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "event",
+ "sport event"
+ ],
+ "_id": 19552,
+ "created": "2010-08-06T11:35:08.000Z",
+ "lastUpdated": "2024-12-08T15:35:44.179Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pilote",
+ "hasLocution": true,
+ "plural": "pilotes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08794520-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 19550,
+ "created": "2010-07-20T21:13:39.000Z",
+ "lastUpdated": "2021-07-21T08:10:42.462Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Équateur",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "08474987-n",
+ "05871305-n",
+ "01012400-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 19548,
+ "created": "2010-07-16T17:34:36.000Z",
+ "lastUpdated": "2024-10-20T09:29:49.926Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "1-2-3",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "succession",
+ "hasLocution": true,
+ "plural": "successions"
+ },
+ {
+ "type": 4,
+ "keyword": "série",
+ "hasLocution": true,
+ "plural": "séries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "official document"
+ ],
+ "synsets": [
+ "06485508-n"
+ ],
+ "tags": [
+ "document",
+ "public administration"
+ ],
+ "_id": 19555,
+ "created": "2010-08-22T19:50:11.000Z",
+ "lastUpdated": "2021-07-21T08:12:39.513Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "demande",
+ "hasLocution": false,
+ "plural": "demandes"
+ },
+ {
+ "keyword": "formulaire de demande",
+ "hasLocution": false,
+ "plural": "formulaires de demande",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mathematics",
+ "economy"
+ ],
+ "synsets": [
+ "00532569-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mathematics",
+ "economy"
+ ],
+ "_id": 19557,
+ "created": "2010-08-24T15:42:11.000Z",
+ "lastUpdated": "2021-07-21T08:12:13.615Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "descendre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "baisser",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "construction",
+ "worksite",
+ "workplace"
+ ],
+ "synsets": [
+ "08694360-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "construction",
+ "workplace",
+ "place"
+ ],
+ "_id": 19537,
+ "created": "2010-07-08T10:33:09.000Z",
+ "lastUpdated": "2021-07-21T08:09:38.699Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "construction",
+ "hasLocution": true,
+ "plural": "constructions"
+ },
+ {
+ "keyword": "chantier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chantiers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work organization"
+ ],
+ "synsets": [
+ "01246221-n"
+ ],
+ "tags": [
+ "work",
+ "organization"
+ ],
+ "_id": 19561,
+ "created": "2010-08-24T15:51:24.000Z",
+ "lastUpdated": "2021-07-21T08:12:32.588Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grève",
+ "hasLocution": true,
+ "plural": "grèves"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "official document",
+ "political representation"
+ ],
+ "synsets": [
+ "07178244-n"
+ ],
+ "tags": [
+ "document",
+ "public administration",
+ "work",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 19565,
+ "created": "2010-08-24T16:11:12.000Z",
+ "lastUpdated": "2021-07-21T08:12:56.809Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "motion",
+ "hasLocution": false,
+ "plural": "motions"
+ },
+ {
+ "type": 2,
+ "keyword": "motion de censure",
+ "hasLocution": false,
+ "plural": "motions de censure"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts"
+ ],
+ "synsets": [
+ "13758939-n",
+ "00008300-r"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 19570,
+ "created": "2010-08-24T16:22:50.000Z",
+ "lastUpdated": "2021-07-21T08:14:25.410Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "1/2",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "demi",
+ "hasLocution": false
+ },
+ {
+ "keyword": "moitié",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "moitiés"
+ },
+ {
+ "keyword": "demie",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "00259697-n",
+ "00880949-n"
+ ],
+ "tags": [],
+ "_id": 19553,
+ "created": "2010-08-22T19:48:08.000Z",
+ "lastUpdated": "2021-07-21T08:11:25.707Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "révision",
+ "hasLocution": false,
+ "plural": "révisions"
+ },
+ {
+ "type": 2,
+ "keyword": "correction",
+ "hasLocution": false,
+ "plural": "corrections"
+ },
+ {
+ "keyword": "vérification",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vérifications"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "political representation"
+ ],
+ "synsets": [
+ "07178244-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 19566,
+ "created": "2010-08-24T16:11:41.000Z",
+ "lastUpdated": "2021-07-21T08:13:10.684Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "motion",
+ "hasLocution": false,
+ "plural": "motions"
+ },
+ {
+ "type": 2,
+ "keyword": "motion de censure",
+ "hasLocution": false,
+ "plural": "motions de censure"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance",
+ "hardware"
+ ],
+ "synsets": [
+ "01513208-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "computing",
+ "hardware"
+ ],
+ "_id": 20093,
+ "created": "2010-09-07T13:50:12.000Z",
+ "lastUpdated": "2021-07-21T08:16:23.826Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éteindre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00966680-n",
+ "00403900-n",
+ "00419038-n"
+ ],
+ "tags": [
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 20091,
+ "created": "2010-09-07T13:45:10.000Z",
+ "lastUpdated": "2021-07-21T08:16:18.320Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus",
+ "hasLocution": false,
+ "plural": "abus"
+ },
+ {
+ "type": 2,
+ "keyword": "agression",
+ "hasLocution": false,
+ "plural": "agressions"
+ },
+ {
+ "type": 2,
+ "keyword": "dommage",
+ "hasLocution": false,
+ "plural": "dommages"
+ },
+ {
+ "keyword": "mauvais traitements",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "covid-19"
+ ],
+ "synsets": [
+ "02154622-v",
+ "02135744-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "covid-19"
+ ],
+ "_id": 20095,
+ "created": "2010-09-07T13:54:40.000Z",
+ "lastUpdated": "2021-07-21T08:16:28.975Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "examiner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "ausculter",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "covid-19"
+ ],
+ "synsets": [
+ "02154622-v",
+ "02135744-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "covid-19"
+ ],
+ "_id": 20097,
+ "created": "2010-09-07T13:56:15.000Z",
+ "lastUpdated": "2021-07-21T09:52:21.855Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "examiner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "ausculter",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mathematics",
+ "economy"
+ ],
+ "synsets": [
+ "00365086-n",
+ "07339517-n",
+ "05117708-n",
+ "00154951-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mathematics",
+ "economy"
+ ],
+ "_id": 19572,
+ "created": "2010-08-24T17:50:04.000Z",
+ "lastUpdated": "2021-07-21T09:52:19.109Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "augmenter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seafood",
+ "crustacean"
+ ],
+ "synsets": [
+ "07792842-n",
+ "07799186-n",
+ "01977414-n",
+ "02716896-a"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "seafood",
+ "animal",
+ "invertebrate",
+ "arthropod",
+ "crustacean"
+ ],
+ "_id": 20101,
+ "created": "2010-09-07T17:10:58.000Z",
+ "lastUpdated": "2021-07-21T08:16:47.379Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fruits de mer",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "crustacés",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "05108937-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 20099,
+ "created": "2010-09-07T17:06:35.000Z",
+ "lastUpdated": "2021-07-21T08:16:40.069Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "circonférence",
+ "hasLocution": false,
+ "plural": "circonférences"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "06657802-n",
+ "06659799-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 20109,
+ "created": "2010-09-07T17:21:07.000Z",
+ "lastUpdated": "2021-07-21T08:17:34.040Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "traces de pas",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "traces",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "13157333-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 20105,
+ "created": "2010-09-07T17:16:24.000Z",
+ "lastUpdated": "2021-07-21T08:17:13.097Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fruits secs ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "fruit sec ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "noix",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mollusc"
+ ],
+ "synsets": [
+ "01941491-n",
+ "01942239-n",
+ "01943377-n"
+ ],
+ "tags": [
+ "animal",
+ "invertebrate",
+ "mollusc"
+ ],
+ "_id": 20111,
+ "created": "2010-09-07T17:23:57.000Z",
+ "lastUpdated": "2021-07-21T08:17:39.109Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mollusque",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mollusques",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "personal services"
+ ],
+ "synsets": [
+ "09944917-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "personal services"
+ ],
+ "_id": 20107,
+ "created": "2010-09-07T17:18:44.000Z",
+ "lastUpdated": "2021-07-21T08:17:28.422Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fonctionnaire",
+ "hasLocution": false,
+ "plural": "fonctionnaires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "09655706-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 20113,
+ "created": "2010-09-07T17:27:15.000Z",
+ "lastUpdated": "2021-07-21T08:17:59.711Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ouvrier",
+ "hasLocution": true,
+ "plural": "ouvriers"
+ },
+ {
+ "type": 2,
+ "keyword": "travailleur",
+ "hasLocution": true,
+ "plural": "travailleurs"
+ },
+ {
+ "type": 2,
+ "keyword": "ouvrière",
+ "hasLocution": true,
+ "plural": "ouvrières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "publication",
+ "mass media"
+ ],
+ "synsets": [
+ "06274022-n"
+ ],
+ "tags": [
+ "object",
+ "publication",
+ "communication",
+ "mass media"
+ ],
+ "_id": 20117,
+ "created": "2010-09-07T17:37:31.000Z",
+ "lastUpdated": "2021-07-21T08:18:10.136Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "presse",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "13894177-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 20119,
+ "created": "2010-09-07T17:39:39.000Z",
+ "lastUpdated": "2021-07-21T08:18:23.669Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rayon",
+ "hasLocution": true,
+ "plural": "rayons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "literature"
+ ],
+ "synsets": [
+ "06267274-n"
+ ],
+ "tags": [
+ "literature"
+ ],
+ "_id": 20115,
+ "created": "2010-09-07T17:32:17.000Z",
+ "lastUpdated": "2021-07-21T08:18:06.673Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "page",
+ "hasLocution": true,
+ "plural": "pages"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geometry"
+ ],
+ "synsets": [
+ "13894356-n"
+ ],
+ "tags": [
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 20103,
+ "created": "2010-09-07T17:13:21.000Z",
+ "lastUpdated": "2021-07-21T08:16:57.773Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "diamètre",
+ "hasLocution": false,
+ "plural": "diamètres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "trade"
+ ],
+ "synsets": [
+ "10611560-n",
+ "10568238-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 20121,
+ "created": "2010-09-07T17:42:46.000Z",
+ "lastUpdated": "2021-07-21T08:18:49.265Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vendeur",
+ "hasLocution": true,
+ "plural": "vendeurs"
+ },
+ {
+ "type": 2,
+ "keyword": "vendeuse",
+ "hasLocution": true,
+ "plural": "vendeuses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "trade"
+ ],
+ "synsets": [
+ "10611560-n",
+ "10568238-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 20123,
+ "created": "2010-09-07T17:45:14.000Z",
+ "lastUpdated": "2021-07-21T08:19:10.606Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vendeur",
+ "hasLocution": true,
+ "plural": "vendeurs"
+ },
+ {
+ "type": 2,
+ "keyword": "vendeuse",
+ "hasLocution": true,
+ "plural": "vendeuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "vegetable"
+ ],
+ "synsets": [
+ "03462628-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 20126,
+ "created": "2010-09-07T17:49:53.000Z",
+ "lastUpdated": "2021-07-21T08:19:33.442Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marchand de légumes",
+ "hasLocution": false,
+ "plural": "marchands de légumes"
+ },
+ {
+ "keyword": "primeur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "primeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "08516085-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 20385,
+ "created": "2010-09-08T12:52:45.000Z",
+ "lastUpdated": "2021-07-21T08:19:44.981Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atmosphère",
+ "hasLocution": true,
+ "plural": "atmosphères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sea and oceans",
+ "beach"
+ ],
+ "synsets": [
+ "08603184-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 20393,
+ "created": "2010-09-08T13:45:08.000Z",
+ "lastUpdated": "2021-07-21T08:42:36.651Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "horizon",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "09416498-n",
+ "08637099-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 20395,
+ "created": "2010-09-08T13:48:11.000Z",
+ "lastUpdated": "2021-07-21T08:42:45.108Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plaine",
+ "hasLocution": true,
+ "plural": "plaines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "14448184-n",
+ "15177777-n"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 20397,
+ "created": "2010-09-08T13:51:58.000Z",
+ "lastUpdated": "2021-07-21T08:42:51.849Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maturité",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform",
+ "rural area"
+ ],
+ "synsets": [
+ "09476138-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "place",
+ "rural area"
+ ],
+ "_id": 20399,
+ "created": "2010-09-08T13:53:49.000Z",
+ "lastUpdated": "2021-07-21T08:42:58.421Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plateau",
+ "hasLocution": true,
+ "plural": "plateau"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "child"
+ ],
+ "synsets": [
+ "14450469-n",
+ "15172057-n",
+ "15170546-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "child"
+ ],
+ "_id": 20401,
+ "created": "2010-09-08T13:57:08.000Z",
+ "lastUpdated": "2021-07-21T08:43:03.300Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enfance",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "09411741-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 21006,
+ "created": "2010-09-13T20:40:30.000Z",
+ "lastUpdated": "2021-07-21T08:43:13.787Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "péninsule",
+ "hasLocution": false,
+ "plural": "péninsules"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform",
+ "geography",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "08635538-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 20391,
+ "created": "2010-09-08T13:05:23.000Z",
+ "lastUpdated": "2024-12-08T15:39:36.740Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sommet",
+ "hasLocution": true,
+ "plural": "sommets"
+ },
+ {
+ "type": 2,
+ "keyword": "pic",
+ "hasLocution": false,
+ "plural": "pics"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "teenager"
+ ],
+ "synsets": [
+ "15172673-n",
+ "14449257-n",
+ "07960326-n"
+ ],
+ "tags": [
+ "person",
+ "teenager"
+ ],
+ "_id": 20387,
+ "created": "2010-09-08T12:56:34.000Z",
+ "lastUpdated": "2021-07-21T08:19:51.000Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "adolescence",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "jeunesse",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "elderly"
+ ],
+ "synsets": [
+ "15178747-n"
+ ],
+ "tags": [
+ "person",
+ "elderly"
+ ],
+ "_id": 21008,
+ "created": "2010-09-13T20:44:35.000Z",
+ "lastUpdated": "2021-07-21T08:43:25.105Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vieillesse",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "environmental science"
+ ],
+ "synsets": [
+ "08516532-n",
+ "09389659-n"
+ ],
+ "tags": [
+ "environmental science"
+ ],
+ "_id": 20389,
+ "created": "2010-09-08T13:02:26.000Z",
+ "lastUpdated": "2021-07-21T08:19:56.143Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "environnement",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "biosphère",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "nature",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02260270-v",
+ "00803980-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 21010,
+ "created": "2010-09-13T20:47:20.000Z",
+ "lastUpdated": "2021-07-21T08:43:40.011Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "permettre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "autoriser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day time"
+ ],
+ "synsets": [],
+ "tags": [
+ "time",
+ "calendar"
+ ],
+ "_id": 21018,
+ "created": "2010-09-13T21:11:03.000Z",
+ "lastUpdated": "2021-07-21T08:44:13.025Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jour et nuit",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "05765728-n",
+ "10713754-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 21020,
+ "created": "2010-09-13T21:16:44.000Z",
+ "lastUpdated": "2021-07-27T00:13:53.713Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enseignant spécialisé",
+ "hasLocution": false,
+ "plural": "enseignants spécialisés"
+ },
+ {
+ "type": 2,
+ "keyword": "enseignant auxiliaire",
+ "hasLocution": false,
+ "plural": "enseignants auxiliaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "05765728-n",
+ "10713754-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 21022,
+ "created": "2010-09-13T21:18:33.000Z",
+ "lastUpdated": "2021-07-27T00:15:05.231Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "enseignante spécialisée",
+ "plural": "enseignantes spécialisées"
+ },
+ {
+ "keyword": "enseignante auxiliaire",
+ "hasLocution": false,
+ "plural": "enseignantes auxiliaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "13853199-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 21016,
+ "created": "2010-09-13T20:54:17.000Z",
+ "lastUpdated": "2021-07-21T09:52:24.732Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "points cardinaux",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07939004-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 21326,
+ "created": "2010-09-23T11:36:01.000Z",
+ "lastUpdated": "2021-07-21T08:44:38.283Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chocolat chaud",
+ "hasLocution": true,
+ "plural": "chocolats chauds"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00615748-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 21328,
+ "created": "2010-09-24T11:37:15.000Z",
+ "lastUpdated": "2021-07-21T08:44:44.851Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "abandonner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic accident",
+ "road safety",
+ "mode of transport"
+ ],
+ "synsets": [
+ "13927849-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "traffic accident",
+ "road safety",
+ "mode of transport"
+ ],
+ "_id": 21330,
+ "created": "2010-09-24T12:08:04.000Z",
+ "lastUpdated": "2024-12-09T11:40:51.288Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bosse",
+ "hasLocution": true,
+ "plural": "bosses"
+ },
+ {
+ "keyword": "cabosse",
+ "hasLocution": false,
+ "plural": "cabosses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "01348685-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 21334,
+ "created": "2010-09-24T12:15:22.000Z",
+ "lastUpdated": "2021-07-21T08:47:39.917Z",
+ "keywords": [
+ {
+ "keyword": "ouvrir la machine",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "ouvrir le lave-linge",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "ouvrir la porte",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02260270-v",
+ "00803980-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 21012,
+ "created": "2010-09-13T20:48:36.000Z",
+ "lastUpdated": "2021-07-21T08:43:55.751Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "permettre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "autoriser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02260270-v",
+ "00803980-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 21014,
+ "created": "2010-09-13T20:49:42.000Z",
+ "lastUpdated": "2021-07-21T08:44:06.598Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "permettre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "autoriser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00036925-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 21343,
+ "created": "2010-09-24T12:36:48.000Z",
+ "lastUpdated": "2021-07-21T08:48:36.646Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rincer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00397450-n",
+ "01538956-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 21345,
+ "created": "2010-09-24T12:38:18.000Z",
+ "lastUpdated": "2021-07-21T09:52:31.885Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rincer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "01348685-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 21339,
+ "created": "2010-09-24T12:30:38.000Z",
+ "lastUpdated": "2021-07-21T08:48:26.524Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir le frigo",
+ "hasLocution": false
+ },
+ {
+ "keyword": "ouvrir le réfrigérateur",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00397450-n",
+ "01538956-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 21347,
+ "created": "2010-09-24T12:39:29.000Z",
+ "lastUpdated": "2021-07-21T09:54:57.746Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rincer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "family"
+ ],
+ "synsets": [
+ "00414120-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "family"
+ ],
+ "_id": 21353,
+ "created": "2010-09-24T12:49:13.000Z",
+ "lastUpdated": "2021-07-21T09:52:36.838Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "adopter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "03092476-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 21349,
+ "created": "2010-09-24T12:43:10.000Z",
+ "lastUpdated": "2021-07-21T08:48:53.406Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "après-shampoing",
+ "hasLocution": false,
+ "plural": "après-shampoings"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "01348685-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 21336,
+ "created": "2010-09-24T12:26:42.000Z",
+ "lastUpdated": "2021-07-21T08:48:10.629Z",
+ "keywords": [
+ {
+ "keyword": "ouvrir le tiroir à lessive",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "ouvrir le compartiment à lessive",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "01237919-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 21355,
+ "created": "2010-09-24T12:51:05.000Z",
+ "lastUpdated": "2021-07-21T08:49:00.412Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "pétrir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01348685-v",
+ "01513031-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 21341,
+ "created": "2010-09-24T12:32:10.000Z",
+ "lastUpdated": "2021-07-21T08:48:33.203Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir le robinet",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "01908923-v",
+ "04327075-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 21357,
+ "created": "2010-09-24T13:09:45.000Z",
+ "lastUpdated": "2021-07-21T08:49:15.063Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "marcher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "marcher sur des échasses",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "archaeology",
+ "rome"
+ ],
+ "synsets": [
+ "02708288-n"
+ ],
+ "tags": [
+ "history",
+ "archaeology",
+ "civilization",
+ "Rome"
+ ],
+ "_id": 21359,
+ "created": "2010-09-24T13:12:58.000Z",
+ "lastUpdated": "2021-07-21T08:50:20.385Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amphore",
+ "hasLocution": false,
+ "plural": "amphores"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work machine",
+ "construction"
+ ],
+ "synsets": [
+ "04317295-n"
+ ],
+ "tags": [
+ "work",
+ "work machine",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 21367,
+ "created": "2010-09-24T13:27:00.000Z",
+ "lastUpdated": "2021-07-21T08:51:30.965Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rouleau compresseur",
+ "hasLocution": false,
+ "plural": "rouleaux compresseurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "gambling"
+ ],
+ "synsets": [
+ "01158153-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "game",
+ "gambling"
+ ],
+ "_id": 21371,
+ "created": "2010-09-24T13:32:19.000Z",
+ "lastUpdated": "2021-07-21T08:51:34.364Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "parier",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body position"
+ ],
+ "synsets": [
+ "01592928-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "position"
+ ],
+ "_id": 21373,
+ "created": "2010-09-24T13:38:01.000Z",
+ "lastUpdated": "2021-07-21T08:51:41.427Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'appuyer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body position"
+ ],
+ "synsets": [
+ "01592928-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "position"
+ ],
+ "_id": 21375,
+ "created": "2010-09-24T13:39:14.000Z",
+ "lastUpdated": "2021-07-21T09:52:39.708Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'appuyer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01613005-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 21377,
+ "created": "2010-09-24T13:41:13.000Z",
+ "lastUpdated": "2021-07-21T08:51:46.614Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "appuyer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "students"
+ ],
+ "synsets": [
+ "02530710-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "students"
+ ],
+ "_id": 21379,
+ "created": "2010-09-24T13:44:19.000Z",
+ "lastUpdated": "2021-07-21T09:52:42.255Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réussir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "educational task"
+ ],
+ "synsets": [
+ "00636250-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "education",
+ "educational task"
+ ],
+ "_id": 21381,
+ "created": "2010-09-24T13:45:56.000Z",
+ "lastUpdated": "2021-07-21T08:52:04.556Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "correct",
+ "hasLocution": true
+ },
+ {
+ "keyword": "juste",
+ "type": 4,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02530710-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 21383,
+ "created": "2010-09-24T13:47:45.000Z",
+ "lastUpdated": "2021-07-21T08:52:24.004Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réussir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cultural building",
+ "group"
+ ],
+ "synsets": [
+ "02618797-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "culture",
+ "person",
+ "group"
+ ],
+ "_id": 21385,
+ "created": "2010-09-27T09:41:00.000Z",
+ "lastUpdated": "2024-12-05T11:30:32.712Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "assister",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "building facility"
+ ],
+ "synsets": [
+ "01479113-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 21387,
+ "created": "2010-09-27T09:47:29.000Z",
+ "lastUpdated": "2021-07-21T08:52:31.624Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "boucher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "obstruer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "movement",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "08200459-n",
+ "01068087-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 21389,
+ "created": "2010-09-27T09:51:33.000Z",
+ "lastUpdated": "2021-07-21T08:52:51.954Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "embouteillage",
+ "hasLocution": false,
+ "plural": "embouteillages"
+ },
+ {
+ "keyword": "bouchon",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "bouchons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "appliance"
+ ],
+ "synsets": [
+ "01513208-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance"
+ ],
+ "_id": 21365,
+ "created": "2010-09-24T13:23:30.000Z",
+ "lastUpdated": "2021-07-21T08:51:19.584Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éteindre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08849996-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21393,
+ "created": "2010-09-27T09:59:38.000Z",
+ "lastUpdated": "2021-07-21T08:52:58.393Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Australie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08864547-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21394,
+ "created": "2010-09-27T10:06:55.000Z",
+ "lastUpdated": "2021-07-21T09:52:45.149Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Autriche",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01999581-v",
+ "01854282-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 21395,
+ "created": "2010-09-27T10:10:38.000Z",
+ "lastUpdated": "2021-07-21T08:53:03.471Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "avancer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se déplacer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "board game"
+ ],
+ "synsets": [
+ "01079008-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "game",
+ "board game"
+ ],
+ "_id": 21397,
+ "created": "2010-09-27T10:14:49.000Z",
+ "lastUpdated": "2021-07-21T08:53:10.758Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "déplacer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "avancer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "continent"
+ ],
+ "synsets": [
+ "09220984-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "continent"
+ ],
+ "_id": 21363,
+ "created": "2010-09-24T13:21:02.000Z",
+ "lastUpdated": "2021-07-21T08:51:16.401Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Antarctique",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport",
+ "security and defense",
+ "war"
+ ],
+ "synsets": [
+ "03339975-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "event",
+ "war"
+ ],
+ "_id": 21409,
+ "created": "2010-09-27T13:21:38.000Z",
+ "lastUpdated": "2021-07-21T08:53:59.222Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "avion",
+ "hasLocution": true,
+ "plural": "avions"
+ },
+ {
+ "type": 2,
+ "keyword": "avion de chasse",
+ "hasLocution": false,
+ "plural": "avions de chasse"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "12168056-n"
+ ],
+ "tags": [
+ "plant",
+ "hervaceouos plant"
+ ],
+ "_id": 21413,
+ "created": "2010-09-27T19:34:59.000Z",
+ "lastUpdated": "2021-07-21T08:54:06.680Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bambou",
+ "hasLocution": true,
+ "plural": "bambous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02587916-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "wild"
+ ],
+ "_id": 21417,
+ "created": "2010-09-27T19:39:55.000Z",
+ "lastUpdated": "2021-07-21T09:55:07.267Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "barbeau",
+ "hasLocution": false,
+ "plural": "barbeaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "outdoor activity"
+ ],
+ "synsets": [
+ "00797976-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 21401,
+ "created": "2010-09-27T12:49:28.000Z",
+ "lastUpdated": "2021-07-21T09:55:04.082Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aventure",
+ "hasLocution": true,
+ "plural": "aventures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport",
+ "fishing"
+ ],
+ "synsets": [
+ "03356108-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 21423,
+ "created": "2010-09-27T19:55:12.000Z",
+ "lastUpdated": "2024-12-04T10:38:41.145Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bateau de pêche",
+ "hasLocution": false,
+ "plural": "bateaux de pêche"
+ },
+ {
+ "keyword": "chalutier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chalutiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "03954164-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 21425,
+ "created": "2010-09-27T20:01:22.000Z",
+ "lastUpdated": "2021-07-21T08:56:23.939Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bateau pirate",
+ "hasLocution": false,
+ "plural": "bateaux pirate"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "04475240-n",
+ "02920413-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "core vocabulary"
+ ],
+ "_id": 21399,
+ "created": "2010-09-27T10:21:38.000Z",
+ "lastUpdated": "2021-07-21T08:53:22.137Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "train à grande vitesse",
+ "hasLocution": false
+ },
+ {
+ "keyword": "TGV",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "02881464-n",
+ "02968752-n",
+ "03100350-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 21421,
+ "created": "2010-09-27T19:47:00.000Z",
+ "lastUpdated": "2021-07-21T08:55:51.339Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "navire marchand",
+ "hasLocution": false,
+ "plural": "navires marchands"
+ },
+ {
+ "type": 2,
+ "keyword": "navire",
+ "hasLocution": false,
+ "plural": "navires"
+ },
+ {
+ "keyword": "navire de commerce",
+ "plural": "navires de commerce",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "movie character",
+ "book character",
+ "cinema"
+ ],
+ "synsets": [
+ "09629201-n",
+ "10092496-n",
+ "00066400-a"
+ ],
+ "tags": [
+ "character",
+ "movie character",
+ "cinema",
+ "book character",
+ "literature",
+ "scenic art",
+ "show"
+ ],
+ "_id": 21405,
+ "created": "2010-09-27T13:09:02.000Z",
+ "lastUpdated": "2021-07-21T08:53:42.609Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aventurier",
+ "hasLocution": false,
+ "plural": "aventuriers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "10630633-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 21433,
+ "created": "2010-09-27T20:11:30.000Z",
+ "lastUpdated": "2021-07-21T08:56:27.597Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "La Belle au Bois Dormant",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human response"
+ ],
+ "synsets": [
+ "00139041-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response"
+ ],
+ "_id": 21435,
+ "created": "2010-09-27T20:18:53.000Z",
+ "lastUpdated": "2021-07-21T08:57:38.910Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baiser",
+ "hasLocution": false,
+ "plural": "baisers"
+ },
+ {
+ "type": 2,
+ "keyword": "bisou",
+ "hasLocution": false,
+ "plural": "bisous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human response"
+ ],
+ "synsets": [
+ "00139041-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response"
+ ],
+ "_id": 21437,
+ "created": "2010-09-27T20:20:25.000Z",
+ "lastUpdated": "2021-07-21T08:57:35.369Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baiser",
+ "hasLocution": false,
+ "plural": "baisers"
+ },
+ {
+ "type": 2,
+ "keyword": "bisou",
+ "hasLocution": false,
+ "plural": "bisous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 21447,
+ "created": "2010-09-27T20:41:10.000Z",
+ "lastUpdated": "2021-07-21T09:56:54.153Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Blanche-Neige",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "02839980-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 21445,
+ "created": "2010-09-27T20:32:46.000Z",
+ "lastUpdated": "2021-07-21T08:58:42.096Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Big Ben",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "02842580-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 21449,
+ "created": "2010-09-27T20:45:47.000Z",
+ "lastUpdated": "2021-07-21T08:58:55.891Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boule de billard",
+ "hasLocution": true,
+ "plural": "boules de billard"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "construction"
+ ],
+ "synsets": [
+ "03531378-n",
+ "09327371-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 21455,
+ "created": "2010-09-27T20:54:36.000Z",
+ "lastUpdated": "2021-07-21T09:53:05.029Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brèche",
+ "hasLocution": false,
+ "plural": "brèches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human response"
+ ],
+ "synsets": [
+ "00139041-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response"
+ ],
+ "_id": 21439,
+ "created": "2010-09-27T20:21:59.000Z",
+ "lastUpdated": "2021-07-21T08:57:31.083Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baiser",
+ "hasLocution": false,
+ "plural": "baisers"
+ },
+ {
+ "type": 2,
+ "keyword": "bisou",
+ "hasLocution": false,
+ "plural": "bisous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08835482-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21459,
+ "created": "2010-09-27T20:59:39.000Z",
+ "lastUpdated": "2021-07-21T09:53:08.219Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Bosnie-Herzégovine",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01407043-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 21460,
+ "created": "2010-09-27T21:01:51.000Z",
+ "lastUpdated": "2021-07-27T00:15:30.599Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rebondir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "financial services",
+ "economy"
+ ],
+ "synsets": [
+ "04330164-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "financial services",
+ "economy"
+ ],
+ "_id": 21453,
+ "created": "2010-09-27T20:50:39.000Z",
+ "lastUpdated": "2024-12-09T11:43:24.332Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bourse",
+ "hasLocution": true
+ },
+ {
+ "keyword": "marché financier",
+ "hasLocution": false,
+ "plural": "marchés financiers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing",
+ "wild animal"
+ ],
+ "synsets": [
+ "02593332-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing",
+ "wild"
+ ],
+ "_id": 21441,
+ "created": "2010-09-27T20:27:54.000Z",
+ "lastUpdated": "2021-07-21T09:55:10.321Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "daurade royale",
+ "hasLocution": false,
+ "plural": "daurades royales"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01407043-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 21462,
+ "created": "2010-09-27T21:02:43.000Z",
+ "lastUpdated": "2021-07-27T00:15:35.170Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rebondir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "electrical appliance",
+ "cleaning product"
+ ],
+ "synsets": [
+ "03215404-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "cleaning product"
+ ],
+ "_id": 21470,
+ "created": "2010-09-27T21:19:42.000Z",
+ "lastUpdated": "2021-07-21T09:54:24.933Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tiroir à lessive",
+ "hasLocution": false,
+ "plural": "tiroirs à lessive"
+ },
+ {
+ "keyword": "compartiment à lessive",
+ "hasLocution": false,
+ "plural": "compartiments à lessive"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "03018908-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 21474,
+ "created": "2010-09-27T21:26:17.000Z",
+ "lastUpdated": "2021-07-21T09:54:40.950Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "commode",
+ "hasLocution": true,
+ "plural": "commodes"
+ },
+ {
+ "type": 2,
+ "keyword": "chiffonnier",
+ "hasLocution": false,
+ "plural": "chiffonniers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "water transport"
+ ],
+ "synsets": [
+ "02935611-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "water transport"
+ ],
+ "_id": 21478,
+ "created": "2010-09-27T21:30:28.000Z",
+ "lastUpdated": "2021-07-21T09:57:02.837Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cabine",
+ "hasLocution": true,
+ "plural": "cabines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "03383761-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 21482,
+ "created": "2010-09-28T12:40:30.000Z",
+ "lastUpdated": "2021-07-21T09:57:11.650Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "terrain de rugby",
+ "hasLocution": false,
+ "plural": "terrains de rugby"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02158139-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 21466,
+ "created": "2010-09-27T21:07:39.000Z",
+ "lastUpdated": "2021-07-21T09:53:33.556Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chercher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "rechercher",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spices"
+ ],
+ "synsets": [
+ "11725521-n",
+ "07830179-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "spices"
+ ],
+ "_id": 21486,
+ "created": "2010-09-28T12:44:02.000Z",
+ "lastUpdated": "2021-07-21T10:13:42.447Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cannelle",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "03126946-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 21488,
+ "created": "2010-09-28T12:53:12.000Z",
+ "lastUpdated": "2021-07-21T10:14:14.464Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "roulotte",
+ "hasLocution": false,
+ "plural": "roulottes"
+ },
+ {
+ "keyword": "diligence",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "diligences"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease",
+ "odontology"
+ ],
+ "synsets": [
+ "13465686-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease",
+ "odontology"
+ ],
+ "_id": 21494,
+ "created": "2010-09-28T13:02:25.000Z",
+ "lastUpdated": "2021-07-21T09:57:37.001Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carie",
+ "hasLocution": false,
+ "plural": "caries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "transport services"
+ ],
+ "synsets": [
+ "01492646-v",
+ "01614988-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 21492,
+ "created": "2010-09-28T12:59:04.000Z",
+ "lastUpdated": "2021-07-21T10:14:19.880Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "charger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "swimming pool"
+ ],
+ "synsets": [
+ "01966678-v",
+ "07378715-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 21464,
+ "created": "2010-09-27T21:05:05.000Z",
+ "lastUpdated": "2021-07-21T09:53:29.726Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plongeuse",
+ "hasLocution": true,
+ "plural": "plongeuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "02800454-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 21502,
+ "created": "2010-09-28T13:18:44.000Z",
+ "lastUpdated": "2021-07-21T09:58:57.116Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "diable",
+ "plural": "diables"
+ },
+ {
+ "keyword": "diable de transport",
+ "plural": "diables de transport",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "agriculture"
+ ],
+ "synsets": [
+ "02974308-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 21506,
+ "created": "2010-09-28T13:24:39.000Z",
+ "lastUpdated": "2024-12-05T06:26:57.846Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charriot",
+ "hasLocution": true,
+ "plural": "charriots"
+ },
+ {
+ "keyword": "charrette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "charrettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "02866766-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 21510,
+ "created": "2010-09-28T13:30:13.000Z",
+ "lastUpdated": "2021-07-21T11:03:07.729Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carrosserie",
+ "hasLocution": false,
+ "plural": "carrosseries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media"
+ ],
+ "synsets": [
+ "06635823-n",
+ "01964837-a"
+ ],
+ "tags": [
+ "communication",
+ "mass media"
+ ],
+ "_id": 21514,
+ "created": "2010-09-28T13:45:20.000Z",
+ "lastUpdated": "2021-07-21T10:00:59.099Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lettre recommandée",
+ "hasLocution": false,
+ "plural": "lettres recommandées"
+ },
+ {
+ "type": 2,
+ "keyword": "recommandé",
+ "hasLocution": false,
+ "plural": "recommandés"
+ },
+ {
+ "keyword": "recommandée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "sport event"
+ ],
+ "synsets": [
+ "07473244-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "event",
+ "sport event"
+ ],
+ "_id": 21498,
+ "created": "2010-09-28T13:11:25.000Z",
+ "lastUpdated": "2021-07-21T09:57:55.256Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "course",
+ "hasLocution": true,
+ "plural": "courses"
+ },
+ {
+ "type": 2,
+ "keyword": "course de motos",
+ "hasLocution": false,
+ "plural": "courses de motos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "protective equipment"
+ ],
+ "synsets": [
+ "03518281-n"
+ ],
+ "tags": [
+ "work",
+ "clothes",
+ "workwear",
+ "protective equipment"
+ ],
+ "_id": 21518,
+ "created": "2010-09-28T16:27:22.000Z",
+ "lastUpdated": "2021-07-21T10:01:08.387Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casque",
+ "hasLocution": true,
+ "plural": "casques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01318273-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 21468,
+ "created": "2010-09-27T21:09:31.000Z",
+ "lastUpdated": "2021-07-21T09:53:48.329Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chercher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rechercher",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "09615147-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 21527,
+ "created": "2010-09-28T17:19:53.000Z",
+ "lastUpdated": "2021-07-21T10:01:20.745Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Cendrillon",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work organization"
+ ],
+ "synsets": [
+ "02407967-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "organization"
+ ],
+ "_id": 21531,
+ "created": "2010-09-29T10:34:14.000Z",
+ "lastUpdated": "2021-07-21T10:01:49.566Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "démettre",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "renvoyer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "limoger",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work organization"
+ ],
+ "synsets": [
+ "02407967-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "organization"
+ ],
+ "_id": 21533,
+ "created": "2010-09-29T10:36:01.000Z",
+ "lastUpdated": "2021-07-21T10:02:00.716Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "démettre",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "renvoyer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "limoger",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08775097-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21535,
+ "created": "2010-09-29T10:44:30.000Z",
+ "lastUpdated": "2021-07-21T10:02:04.282Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Tchéquie",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "République Tchèque",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "06790941-n"
+ ],
+ "tags": [],
+ "_id": 21537,
+ "created": "2010-09-29T10:57:09.000Z",
+ "lastUpdated": "2021-07-21T10:02:16.922Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blague",
+ "hasLocution": false,
+ "plural": "blagues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "sport modality"
+ ],
+ "synsets": [
+ "04043919-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 21541,
+ "created": "2010-09-29T11:05:06.000Z",
+ "lastUpdated": "2021-07-21T10:02:30.949Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voiture de rallye",
+ "hasLocution": false,
+ "plural": "voitures de rallye"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine",
+ "hairdresser"
+ ],
+ "synsets": [
+ "01246373-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 21529,
+ "created": "2010-09-28T17:22:29.000Z",
+ "lastUpdated": "2024-12-05T12:29:34.908Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "brosser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "03149152-n",
+ "02936846-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 21522,
+ "created": "2010-09-28T16:30:51.000Z",
+ "lastUpdated": "2021-07-21T10:01:15.372Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casier",
+ "hasLocution": true,
+ "plural": "casiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08774717-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21536,
+ "created": "2010-09-29T10:54:18.000Z",
+ "lastUpdated": "2021-07-21T10:02:08.596Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Chypre",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recycling",
+ "street furniture"
+ ],
+ "synsets": [
+ "04072901-n"
+ ],
+ "tags": [
+ "environmental science",
+ "recycling",
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 21553,
+ "created": "2010-09-29T11:48:10.000Z",
+ "lastUpdated": "2021-07-21T10:04:12.265Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conteneur de piles",
+ "hasLocution": false,
+ "plural": "conteneurs de piles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "work machine"
+ ],
+ "synsets": [
+ "04468931-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "work machine"
+ ],
+ "_id": 21545,
+ "created": "2010-09-29T11:14:19.000Z",
+ "lastUpdated": "2021-07-21T10:02:42.972Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dépanneuse",
+ "hasLocution": false,
+ "plural": "dépanneuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "02530710-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 21549,
+ "created": "2010-09-29T11:21:48.000Z",
+ "lastUpdated": "2021-07-21T10:03:09.881Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "approuver",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "accorder",
+ "hasLocution": false
+ },
+ {
+ "keyword": "octroyer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01751182-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 21559,
+ "created": "2010-09-29T16:27:34.000Z",
+ "lastUpdated": "2021-07-21T10:04:46.294Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "copier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01751182-v",
+ "01738810-v",
+ "01697776-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 21561,
+ "created": "2010-09-29T16:29:18.000Z",
+ "lastUpdated": "2021-07-21T10:04:56.413Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "copier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "recopier",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "animal behaviour",
+ "bullfighting"
+ ],
+ "synsets": [
+ "01238333-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "animal behavior",
+ "scenic art",
+ "bullfighting"
+ ],
+ "_id": 21563,
+ "created": "2010-09-29T16:36:34.000Z",
+ "lastUpdated": "2022-03-30T10:02:26.791Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "encorner",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "renverser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01229652-v",
+ "00069650-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 21565,
+ "created": "2010-09-29T16:41:42.000Z",
+ "lastUpdated": "2021-07-21T10:05:14.707Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se couper",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "blesser",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "public building",
+ "political representation"
+ ],
+ "synsets": [
+ "08336128-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "building",
+ "public administration",
+ "work",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 21551,
+ "created": "2010-09-29T11:24:05.000Z",
+ "lastUpdated": "2021-07-21T10:04:00.006Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "congrès",
+ "hasLocution": true,
+ "plural": "congrès"
+ },
+ {
+ "keyword": "parlement",
+ "hasLocution": false,
+ "plural": "parlements",
+ "type": 2
+ },
+ {
+ "keyword": "Chambre des députés",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Assemblée Nationale",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work organization"
+ ],
+ "synsets": [
+ "02414542-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "organization"
+ ],
+ "_id": 21557,
+ "created": "2010-09-29T16:25:09.000Z",
+ "lastUpdated": "2021-07-21T10:04:42.093Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "contracter ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "louer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "00313758-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 21573,
+ "created": "2010-09-29T17:03:50.000Z",
+ "lastUpdated": "2021-07-21T10:05:49.346Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bateau de croisière",
+ "hasLocution": false,
+ "plural": "bateaux de croisière"
+ },
+ {
+ "keyword": "paquebot",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paquebots"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "water transport"
+ ],
+ "synsets": [
+ "03172332-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "water transport"
+ ],
+ "_id": 21577,
+ "created": "2010-09-29T17:39:46.000Z",
+ "lastUpdated": "2021-07-21T10:05:57.583Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pont",
+ "hasLocution": true,
+ "plural": "ponts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character",
+ "painting"
+ ],
+ "synsets": [
+ "10940970-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "visual art",
+ "painting"
+ ],
+ "_id": 21581,
+ "created": "2010-09-29T17:57:12.000Z",
+ "lastUpdated": "2021-07-21T10:06:09.367Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Dali",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Salvador Dali",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cosmetic",
+ "beach"
+ ],
+ "synsets": [
+ "01367186-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "cosmetic",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 21583,
+ "created": "2010-09-29T18:22:50.000Z",
+ "lastUpdated": "2022-07-04T06:34:04.649Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "enduire",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "badigeonner",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cosmetic"
+ ],
+ "synsets": [
+ "01367186-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 21585,
+ "created": "2010-09-29T18:27:22.000Z",
+ "lastUpdated": "2021-04-21T21:36:17.739Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se mettre de la crème",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mettre de la crème",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08833710-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21572,
+ "created": "2010-09-29T16:58:52.000Z",
+ "lastUpdated": "2021-07-21T10:05:20.541Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Croatie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "official document"
+ ],
+ "synsets": [
+ "02242120-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "document",
+ "public administration"
+ ],
+ "_id": 21587,
+ "created": "2010-09-29T18:30:46.000Z",
+ "lastUpdated": "2021-07-21T10:06:27.216Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "refuser",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic",
+ "beach"
+ ],
+ "synsets": [
+ "04364401-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 21568,
+ "created": "2010-09-29T16:51:34.000Z",
+ "lastUpdated": "2022-07-04T06:34:23.853Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écran solaire",
+ "hasLocution": false,
+ "plural": "écrans solaires"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "lotion solaire",
+ "plural": "lotions solaires"
+ },
+ {
+ "type": 2,
+ "keyword": "crème solaire",
+ "hasLocution": true,
+ "plural": "crèmes solaires"
+ },
+ {
+ "keyword": "protection solaire",
+ "hasLocution": false,
+ "plural": "protections solaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08753940-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21567,
+ "created": "2010-09-29T16:47:14.000Z",
+ "lastUpdated": "2021-07-21T10:05:17.613Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Costa Rica",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work organization"
+ ],
+ "synsets": [
+ "02407967-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "organization"
+ ],
+ "_id": 21589,
+ "created": "2010-09-29T18:33:03.000Z",
+ "lastUpdated": "2021-07-21T10:06:53.247Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "renvoyer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "limoger",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "démettre",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 21793,
+ "created": "2010-09-29T18:49:09.000Z",
+ "lastUpdated": "2021-07-21T10:07:21.404Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "dire au revoir",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'en aller",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "engineering"
+ ],
+ "synsets": [
+ "01757404-v",
+ "01643256-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "engineering"
+ ],
+ "_id": 21800,
+ "created": "2010-09-29T19:14:42.000Z",
+ "lastUpdated": "2021-07-21T10:08:20.582Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "concevoir",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "official document"
+ ],
+ "synsets": [
+ "06481744-n"
+ ],
+ "tags": [
+ "document",
+ "public administration"
+ ],
+ "_id": 21802,
+ "created": "2010-09-29T19:20:31.000Z",
+ "lastUpdated": "2021-07-21T10:08:27.885Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "document",
+ "hasLocution": false,
+ "plural": "documents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "04304236-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 21795,
+ "created": "2010-09-29T18:51:46.000Z",
+ "lastUpdated": "2021-07-21T10:08:14.719Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "diligence",
+ "hasLocution": false,
+ "plural": "diligences"
+ },
+ {
+ "keyword": "carrosse",
+ "hasLocution": true,
+ "plural": "carrosse"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing",
+ "fish"
+ ],
+ "synsets": [],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing",
+ "feeding",
+ "food",
+ "animal-based food"
+ ],
+ "_id": 21806,
+ "created": "2010-09-29T19:24:02.000Z",
+ "lastUpdated": "2024-12-09T18:26:34.222Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "daurade",
+ "hasLocution": false,
+ "plural": "daurades"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization",
+ "industry"
+ ],
+ "synsets": [
+ "09902067-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization",
+ "secondary sector",
+ "industry",
+ "manufacturing industry"
+ ],
+ "_id": 21810,
+ "created": "2010-09-29T19:30:59.000Z",
+ "lastUpdated": "2021-07-27T00:16:12.336Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "femme d'affaires",
+ "plural": "femmes d'affaires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "appliance"
+ ],
+ "synsets": [
+ "01513031-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance"
+ ],
+ "_id": 21818,
+ "created": "2010-09-29T19:37:44.000Z",
+ "lastUpdated": "2021-07-21T10:09:09.777Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "allumer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization",
+ "industry"
+ ],
+ "synsets": [
+ "09901459-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization",
+ "secondary sector",
+ "industry",
+ "manufacturing industry"
+ ],
+ "_id": 21814,
+ "created": "2010-09-29T19:34:19.000Z",
+ "lastUpdated": "2021-07-27T00:16:38.095Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "homme d'affaires",
+ "plural": "hommes d'affaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00114629-a",
+ "01790725-v",
+ "14060021-n",
+ "00115265-s",
+ "01811355-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 21820,
+ "created": "2010-09-29T19:40:03.000Z",
+ "lastUpdated": "2021-07-21T10:09:19.706Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fâché",
+ "hasLocution": true
+ },
+ {
+ "keyword": "irrité",
+ "type": 4,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00036925-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 21822,
+ "created": "2010-09-29T19:55:42.000Z",
+ "lastUpdated": "2021-07-21T10:09:37.156Z",
+ "keywords": [
+ {
+ "keyword": "se savonner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00036355-v",
+ "00036925-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 21824,
+ "created": "2010-09-29T20:01:15.000Z",
+ "lastUpdated": "2021-07-21T10:09:50.732Z",
+ "keywords": [
+ {
+ "keyword": "se savonner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "commercial building"
+ ],
+ "synsets": [
+ "03300702-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "trade"
+ ],
+ "_id": 21830,
+ "created": "2010-09-30T10:03:53.000Z",
+ "lastUpdated": "2022-03-06T21:21:57.441Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "escalier mécanique",
+ "hasLocution": false,
+ "plural": "escaliers mécaniques"
+ },
+ {
+ "keyword": "escalier roulant",
+ "hasLocution": false,
+ "plural": "escaliers roulants",
+ "type": 2
+ },
+ {
+ "keyword": "escalator",
+ "hasLocution": true,
+ "plural": "escalators",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "telecommunication"
+ ],
+ "synsets": [
+ "01440525-v",
+ "01439891-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "telecommunication"
+ ],
+ "_id": 21828,
+ "created": "2010-09-29T20:07:59.000Z",
+ "lastUpdated": "2021-07-21T10:10:03.138Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "envoyer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "expédier",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08779077-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21799,
+ "created": "2010-09-29T18:56:44.000Z",
+ "lastUpdated": "2021-07-21T12:04:47.265Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Danemark",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime"
+ ],
+ "synsets": [
+ "02078906-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime"
+ ],
+ "_id": 21834,
+ "created": "2010-09-30T10:07:15.000Z",
+ "lastUpdated": "2021-07-21T10:11:30.018Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'échapper",
+ "hasLocution": true
+ },
+ {
+ "keyword": "fuir",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "gardening"
+ ],
+ "synsets": [
+ "01312361-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 21836,
+ "created": "2010-09-30T10:09:22.000Z",
+ "lastUpdated": "2021-07-21T11:03:15.363Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fouiller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "creuser",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "02911542-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 21840,
+ "created": "2010-10-01T19:57:36.000Z",
+ "lastUpdated": "2021-07-21T10:12:17.761Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balai de WC",
+ "hasLocution": false,
+ "plural": "balais de WC"
+ },
+ {
+ "keyword": "brosse de WC",
+ "hasLocution": false,
+ "plural": "brosses de WC"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology",
+ "verb"
+ ],
+ "synsets": [
+ "01311803-v"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 21838,
+ "created": "2010-09-30T10:11:04.000Z",
+ "lastUpdated": "2021-07-21T10:11:53.213Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fouiller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "creuser",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08910324-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21844,
+ "created": "2010-10-01T20:00:31.000Z",
+ "lastUpdated": "2021-07-21T11:03:18.656Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Écosse",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00036355-v",
+ "00036925-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 21826,
+ "created": "2010-09-29T20:03:04.000Z",
+ "lastUpdated": "2021-07-21T10:09:59.893Z",
+ "keywords": [
+ {
+ "keyword": "se savonner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "water transport"
+ ],
+ "synsets": [
+ "03504286-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "water transport"
+ ],
+ "_id": 21847,
+ "created": "2010-10-01T20:48:47.000Z",
+ "lastUpdated": "2021-07-21T10:12:46.192Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écoutille",
+ "hasLocution": false,
+ "plural": "écoutilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08776846-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21853,
+ "created": "2010-10-01T20:56:28.000Z",
+ "lastUpdated": "2021-07-21T10:13:02.873Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Slovaquie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hardware"
+ ],
+ "synsets": [
+ "01006737-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "computing",
+ "hardware"
+ ],
+ "_id": 21851,
+ "created": "2010-10-01T20:52:55.000Z",
+ "lastUpdated": "2021-07-21T10:12:55.852Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Tracer les signes d'un système d'écriture, de représentation graphique des sons d'un langage, de la parole : Ãcrire un « m », un mot, un chiffre",
+ "keyword": "écrire",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "taper",
+ "hasLocution": true
+ },
+ {
+ "keyword": "saisie",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "04314244-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 21854,
+ "created": "2010-10-01T20:59:58.000Z",
+ "lastUpdated": "2021-07-21T10:13:05.566Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Statue de la Liberté",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09034667-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21856,
+ "created": "2010-10-01T21:20:37.000Z",
+ "lastUpdated": "2021-07-21T12:04:53.328Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Estonie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "trade",
+ "transport services"
+ ],
+ "synsets": [
+ "02351405-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "trade",
+ "transport services"
+ ],
+ "_id": 21857,
+ "created": "2010-10-01T21:22:41.000Z",
+ "lastUpdated": "2021-07-21T15:18:11.987Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "exporter",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00485921-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 21845,
+ "created": "2010-10-01T20:02:41.000Z",
+ "lastUpdated": "2021-03-25T21:59:32.441Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cache-cache",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "financial services",
+ "industry"
+ ],
+ "synsets": [
+ "02222048-v",
+ "02220865-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "financial services",
+ "secondary sector",
+ "industry",
+ "manufacturing industry"
+ ],
+ "_id": 21871,
+ "created": "2010-10-01T21:35:27.000Z",
+ "lastUpdated": "2021-07-21T10:15:38.199Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "financer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08797356-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21873,
+ "created": "2010-10-01T21:38:20.000Z",
+ "lastUpdated": "2021-07-21T10:15:42.209Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Finlande",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01906776-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 21874,
+ "created": "2010-10-01T21:43:28.000Z",
+ "lastUpdated": "2021-07-21T10:15:56.722Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'envoler",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01908286-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 21876,
+ "created": "2010-10-01T21:46:20.000Z",
+ "lastUpdated": "2021-07-21T10:16:00.444Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "flotter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "transport services",
+ "core vocabulary-movement",
+ "core vocabulary-work",
+ "trade"
+ ],
+ "synsets": [
+ "04527465-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "tertiary sector",
+ "transport services",
+ "core vocabulary",
+ "trade"
+ ],
+ "_id": 21878,
+ "created": "2010-10-01T21:49:25.000Z",
+ "lastUpdated": "2024-12-12T07:20:42.508Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fourgonnette",
+ "hasLocution": true,
+ "plural": "fourgonnettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 21882,
+ "created": "2010-10-02T10:22:27.000Z",
+ "lastUpdated": "2021-07-21T10:16:14.046Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Colin-maillard",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "01455439-n",
+ "01455728-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 21884,
+ "created": "2010-10-02T10:24:09.000Z",
+ "lastUpdated": "2021-09-03T17:02:46.151Z",
+ "keywords": [
+ {
+ "keyword": "saint-pierre",
+ "hasLocution": false,
+ "plural": "saints-pierres",
+ "type": 2
+ },
+ {
+ "keyword": "cardine",
+ "hasLocution": false,
+ "plural": "cardines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "04289632-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 21863,
+ "created": "2010-10-01T21:30:21.000Z",
+ "lastUpdated": "2021-07-21T10:15:03.865Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "attelle",
+ "hasLocution": false,
+ "plural": "attelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "movie character",
+ "tale character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "movie character",
+ "cinema",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 21888,
+ "created": "2010-10-02T10:30:33.000Z",
+ "lastUpdated": "2021-07-21T11:03:30.825Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Le Chat Botté",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dessert"
+ ],
+ "synsets": [
+ "14754732-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert"
+ ],
+ "_id": 21890,
+ "created": "2010-10-02T10:32:12.000Z",
+ "lastUpdated": "2021-07-21T10:19:35.908Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gélatine",
+ "hasLocution": true,
+ "plural": "gélatines"
+ },
+ {
+ "keyword": "gelée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gelées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower"
+ ],
+ "synsets": [
+ "12437887-n"
+ ],
+ "tags": [
+ "plant",
+ "flower"
+ ],
+ "_id": 21894,
+ "created": "2010-10-02T10:43:12.000Z",
+ "lastUpdated": "2021-07-21T10:19:46.222Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "glaïeul",
+ "hasLocution": false,
+ "plural": "glaïeuls"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "unhealthy habit"
+ ],
+ "synsets": [
+ "00011179-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "lifestyle",
+ "unhealthy habit"
+ ],
+ "_id": 21898,
+ "created": "2010-10-02T10:48:12.000Z",
+ "lastUpdated": "2021-07-21T11:05:48.295Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "glouton",
+ "hasLocution": false
+ },
+ {
+ "keyword": "morfal",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "00011179-s"
+ ],
+ "tags": [],
+ "_id": 21902,
+ "created": "2010-10-02T10:50:22.000Z",
+ "lastUpdated": "2021-07-21T11:06:04.006Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "gloutonne",
+ "hasLocution": false
+ },
+ {
+ "keyword": "morfale",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "visual art",
+ "art"
+ ],
+ "synsets": [
+ "08424576-n"
+ ],
+ "tags": [
+ "visual art"
+ ],
+ "_id": 21859,
+ "created": "2010-10-01T21:24:42.000Z",
+ "lastUpdated": "2024-12-12T07:13:11.932Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "exposition",
+ "hasLocution": true,
+ "plural": "expositions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "04289632-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 21867,
+ "created": "2010-10-01T21:32:28.000Z",
+ "lastUpdated": "2021-07-21T10:15:32.491Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "attelle",
+ "hasLocution": false,
+ "plural": "attelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08754874-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21916,
+ "created": "2010-10-02T11:04:52.000Z",
+ "lastUpdated": "2021-07-21T11:07:00.023Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Guatemala",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "expression"
+ ],
+ "synsets": [
+ "01781131-v",
+ "01780873-v",
+ "01828678-v",
+ "01779085-v",
+ "01832678-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "expression"
+ ],
+ "_id": 21917,
+ "created": "2010-10-02T11:05:59.000Z",
+ "lastUpdated": "2021-09-13T14:46:09.098Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. ind. Convenir aux goûts de quelqu'un, lui être agréable, lui faire plaisir",
+ "keyword": "plaire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "j'aime",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "aimer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "political representation"
+ ],
+ "synsets": [
+ "08067430-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "work",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 21906,
+ "created": "2010-10-02T10:54:16.000Z",
+ "lastUpdated": "2021-07-21T11:06:09.567Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gouvernement",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "routine"
+ ],
+ "synsets": [
+ "00073096-v",
+ "00073791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "routine"
+ ],
+ "_id": 21919,
+ "created": "2010-10-02T11:07:51.000Z",
+ "lastUpdated": "2021-07-21T11:08:07.856Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire caca",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déféquer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "aller à la selle",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "workwear"
+ ],
+ "synsets": [
+ "02957776-n"
+ ],
+ "tags": [
+ "work",
+ "clothes",
+ "workwear"
+ ],
+ "_id": 21910,
+ "created": "2010-10-02T10:58:29.000Z",
+ "lastUpdated": "2021-07-21T15:18:15.901Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casquette",
+ "hasLocution": true,
+ "plural": "casquettes"
+ },
+ {
+ "keyword": "casquette de police",
+ "hasLocution": false,
+ "plural": "casquettes de police"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "routine"
+ ],
+ "synsets": [
+ "00073096-v",
+ "00073791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "routine"
+ ],
+ "_id": 21921,
+ "created": "2010-10-02T11:08:55.000Z",
+ "lastUpdated": "2021-07-21T11:08:25.133Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire caca",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déféquer",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "aller à la selle",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 21923,
+ "created": "2010-10-02T11:11:38.000Z",
+ "lastUpdated": "2021-07-21T11:08:28.507Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Hansel et Gretel",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hygiene product",
+ "container"
+ ],
+ "synsets": [
+ "02208876-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "container"
+ ],
+ "_id": 21914,
+ "created": "2010-10-02T11:02:08.000Z",
+ "lastUpdated": "2021-07-21T12:05:01.786Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ranger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public building",
+ "political representation"
+ ],
+ "synsets": [
+ "13896890-n",
+ "08336128-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "public administration",
+ "work",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 21925,
+ "created": "2010-10-02T11:14:01.000Z",
+ "lastUpdated": "2021-07-21T11:08:36.359Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hémicycle",
+ "hasLocution": false
+ },
+ {
+ "keyword": "parlement",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "trade",
+ "transport services"
+ ],
+ "synsets": [
+ "02351132-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "trade",
+ "transport services"
+ ],
+ "_id": 21927,
+ "created": "2010-10-02T11:15:31.000Z",
+ "lastUpdated": "2021-07-21T11:08:56.063Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "importer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural disaster"
+ ],
+ "synsets": [
+ "07318457-n"
+ ],
+ "tags": [
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 21929,
+ "created": "2010-10-02T11:17:22.000Z",
+ "lastUpdated": "2021-07-21T11:09:03.480Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "incendie",
+ "hasLocution": true,
+ "plural": "incendies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic accident",
+ "road safety"
+ ],
+ "synsets": [
+ "07317454-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "traffic accident",
+ "road safety"
+ ],
+ "_id": 21933,
+ "created": "2010-10-02T11:21:20.000Z",
+ "lastUpdated": "2024-12-12T07:28:51.858Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "incendie",
+ "hasLocution": true,
+ "plural": "incendies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "14943145-n"
+ ],
+ "tags": [],
+ "_id": 21937,
+ "created": "2010-10-02T11:30:17.000Z",
+ "lastUpdated": "2021-07-21T11:09:19.320Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "encens",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08973097-n",
+ "08972924-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21942,
+ "created": "2010-10-02T12:42:35.000Z",
+ "lastUpdated": "2021-07-21T11:09:26.439Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Islande",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "video game"
+ ],
+ "synsets": [
+ "00459914-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "video game"
+ ],
+ "_id": 21945,
+ "created": "2010-10-02T12:55:19.000Z",
+ "lastUpdated": "2021-03-12T13:46:05.466Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jeu vidéo",
+ "hasLocution": true,
+ "plural": "jeux vidéos"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "CD de jeu vidéo",
+ "plural": "CDs de jeu vidéo",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00472041-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 21949,
+ "created": "2010-10-02T13:01:27.000Z",
+ "lastUpdated": "2021-07-21T11:09:45.964Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rugby",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00827434-n",
+ "07486511-n",
+ "00816119-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 21943,
+ "created": "2010-10-02T12:45:51.000Z",
+ "lastUpdated": "2021-07-21T11:09:41.524Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prise",
+ "hasLocution": false,
+ "plural": "prises"
+ },
+ {
+ "type": 2,
+ "keyword": "judo",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00502091-n",
+ "00500935-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 21951,
+ "created": "2010-10-02T13:04:17.000Z",
+ "lastUpdated": "2021-07-21T11:09:55.310Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "billard",
+ "hasLocution": true,
+ "plural": "billards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08908903-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21941,
+ "created": "2010-10-02T12:40:10.000Z",
+ "lastUpdated": "2021-07-21T11:09:23.624Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Irlande",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "olympic games",
+ "signaling system"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 21953,
+ "created": "2010-10-02T13:09:16.000Z",
+ "lastUpdated": "2021-08-24T15:53:53.177Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jeux paralympiques",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Jeux Paralympiques",
+ "hasLocution": true,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00180982-v",
+ "01535377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 21962,
+ "created": "2010-10-02T13:25:44.000Z",
+ "lastUpdated": "2021-07-21T12:05:10.757Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "nettoyer le peigne",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "karate"
+ ],
+ "synsets": [
+ "00828058-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "karate"
+ ],
+ "_id": 21955,
+ "created": "2010-10-02T13:16:42.000Z",
+ "lastUpdated": "2021-07-21T11:10:27.157Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "karaté",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02129704-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 21964,
+ "created": "2010-10-02T13:28:34.000Z",
+ "lastUpdated": "2021-07-21T11:10:51.808Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lynx",
+ "hasLocution": false,
+ "plural": "lynx"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09036200-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21968,
+ "created": "2010-10-02T13:32:57.000Z",
+ "lastUpdated": "2021-07-21T12:06:08.723Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Lituanie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "02569465-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 21969,
+ "created": "2010-10-02T13:35:08.000Z",
+ "lastUpdated": "2021-07-21T11:12:06.513Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bar",
+ "hasLocution": true,
+ "plural": "bars"
+ },
+ {
+ "keyword": "loup de mer",
+ "hasLocution": false,
+ "plural": "loups de mer",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09035444-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21961,
+ "created": "2010-10-02T13:23:21.000Z",
+ "lastUpdated": "2021-07-21T11:10:39.123Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Lettonie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08980760-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21973,
+ "created": "2010-10-02T13:40:06.000Z",
+ "lastUpdated": "2021-07-21T12:05:19.226Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Luxembourg",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08988759-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21975,
+ "created": "2010-10-02T13:44:58.000Z",
+ "lastUpdated": "2021-07-21T12:05:22.225Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Malte",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "02666479-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 21957,
+ "created": "2010-10-02T13:19:29.000Z",
+ "lastUpdated": "2021-07-21T12:05:07.938Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sole",
+ "hasLocution": false,
+ "plural": "soles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08981403-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 21974,
+ "created": "2010-10-02T13:42:19.000Z",
+ "lastUpdated": "2020-10-05T07:23:10.023Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Macédoine du Nord",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "social movement"
+ ],
+ "synsets": [
+ "01180193-n",
+ "08444976-n"
+ ],
+ "tags": [
+ "sociology",
+ "social movement"
+ ],
+ "_id": 21976,
+ "created": "2010-10-02T13:48:31.000Z",
+ "lastUpdated": "2021-07-21T11:12:39.875Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "manifestation",
+ "hasLocution": false,
+ "plural": "manifestations"
+ },
+ {
+ "keyword": "marche",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "marches"
+ },
+ {
+ "keyword": "protestation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "protestations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media device",
+ "mass media"
+ ],
+ "synsets": [
+ "00791110-v",
+ "00678054-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media"
+ ],
+ "_id": 21980,
+ "created": "2010-10-02T13:53:21.000Z",
+ "lastUpdated": "2024-12-19T06:54:23.932Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "téléphoner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "composer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "political representation",
+ "leader"
+ ],
+ "synsets": [
+ "10340521-n",
+ "00586847-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "person",
+ "leader"
+ ],
+ "_id": 21988,
+ "created": "2010-10-03T11:57:55.000Z",
+ "lastUpdated": "2021-07-21T11:14:34.571Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ministre",
+ "hasLocution": true,
+ "plural": "ministres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aromatic plant",
+ "aromatic herb"
+ ],
+ "synsets": [
+ "12877047-n",
+ "12860079-n",
+ "12875802-n"
+ ],
+ "tags": [
+ "plant",
+ "aromatic plant",
+ "feeding",
+ "food",
+ "plant-based food"
+ ],
+ "_id": 21982,
+ "created": "2010-10-03T11:37:39.000Z",
+ "lastUpdated": "2021-07-21T11:14:14.359Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "menthe",
+ "hasLocution": false,
+ "plural": "menthes"
+ },
+ {
+ "keyword": "menthe verte",
+ "hasLocution": false,
+ "plural": "menthes vertes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "political representation",
+ "leader"
+ ],
+ "synsets": [
+ "10340521-n",
+ "00586847-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "person",
+ "leader"
+ ],
+ "_id": 21992,
+ "created": "2010-10-03T11:59:55.000Z",
+ "lastUpdated": "2021-07-21T12:05:57.512Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ministre",
+ "hasLocution": true,
+ "plural": "ministres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "clothes"
+ ],
+ "synsets": [
+ "09991687-n",
+ "10053137-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 21996,
+ "created": "2010-10-03T12:07:03.000Z",
+ "lastUpdated": "2021-07-21T11:14:52.029Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couturière",
+ "hasLocution": false,
+ "plural": "couturières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10353722-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 22000,
+ "created": "2010-10-03T12:15:57.000Z",
+ "lastUpdated": "2021-07-21T11:15:13.866Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "motocycliste",
+ "hasLocution": false,
+ "plural": "motocyclistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08756653-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 22004,
+ "created": "2010-10-03T12:26:34.000Z",
+ "lastUpdated": "2021-07-21T11:15:20.831Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Nicaragua",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "expression"
+ ],
+ "synsets": [
+ "01780648-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "expression"
+ ],
+ "_id": 22005,
+ "created": "2010-10-03T12:56:59.000Z",
+ "lastUpdated": "2021-09-13T14:48:01.482Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ne pas aimer",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "je n'aime pas",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02548492-v",
+ "01616581-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 22007,
+ "created": "2010-10-03T12:59:14.000Z",
+ "lastUpdated": "2021-07-21T11:15:40.768Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "obéir",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "obéissant",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product",
+ "furniture"
+ ],
+ "synsets": [
+ "04386330-n",
+ "04611087-n",
+ "04487268-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product",
+ "furniture"
+ ],
+ "_id": 21984,
+ "created": "2010-10-03T11:50:43.000Z",
+ "lastUpdated": "2021-07-21T11:14:26.886Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "table adaptée",
+ "hasLocution": false,
+ "plural": "tables adaptées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03193215-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "core vocabulary"
+ ],
+ "_id": 22017,
+ "created": "2010-10-03T13:16:47.000Z",
+ "lastUpdated": "2021-07-21T11:21:43.374Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couche",
+ "hasLocution": true,
+ "plural": "couches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "skating"
+ ],
+ "synsets": [
+ "03563584-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "skating"
+ ],
+ "_id": 22022,
+ "created": "2010-10-03T13:22:40.000Z",
+ "lastUpdated": "2021-07-21T11:21:53.981Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patins",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "patins à glace",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "industry"
+ ],
+ "synsets": [
+ "10074465-n",
+ "08066153-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "work",
+ "secondary sector",
+ "industry",
+ "manufacturing industry"
+ ],
+ "_id": 22025,
+ "created": "2010-10-03T13:28:02.000Z",
+ "lastUpdated": "2021-07-21T11:22:45.525Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "association d'employés",
+ "hasLocution": false
+ },
+ {
+ "keyword": "management",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport event",
+ "sport",
+ "athletics"
+ ],
+ "synsets": [
+ "01102003-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "athletics"
+ ],
+ "_id": 22031,
+ "created": "2010-10-03T13:34:52.000Z",
+ "lastUpdated": "2024-12-07T13:21:06.257Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "perdre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "hairdresser",
+ "routine"
+ ],
+ "synsets": [
+ "01599566-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser",
+ "person",
+ "routine"
+ ],
+ "_id": 22029,
+ "created": "2010-10-03T13:31:27.000Z",
+ "lastUpdated": "2021-07-21T11:22:56.494Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Arranger la chevelure avec soin : Cheveux faciles, difficiles à coiffer.",
+ "keyword": "coiffer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "peigner",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport"
+ ],
+ "synsets": [
+ "02026505-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 22033,
+ "created": "2010-10-03T13:41:09.000Z",
+ "lastUpdated": "2021-07-21T11:23:10.449Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rater",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "sport"
+ ],
+ "synsets": [
+ "03150188-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 22013,
+ "created": "2010-10-03T13:12:48.000Z",
+ "lastUpdated": "2024-12-13T07:12:00.318Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "queue",
+ "hasLocution": true,
+ "plural": "queues"
+ },
+ {
+ "type": 2,
+ "keyword": "queue de billard",
+ "hasLocution": false,
+ "plural": "queues de billard"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "10452296-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 22035,
+ "created": "2010-10-03T13:47:15.000Z",
+ "lastUpdated": "2021-07-21T11:23:19.277Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pèlerin",
+ "hasLocution": false,
+ "plural": "pèlerins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal",
+ "animal"
+ ],
+ "synsets": [
+ "02459593-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 22039,
+ "created": "2010-10-03T13:50:26.000Z",
+ "lastUpdated": "2024-12-08T15:42:54.496Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "paresseux",
+ "hasLocution": true,
+ "plural": "paresseux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "09910922-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 22047,
+ "created": "2010-10-03T16:00:57.000Z",
+ "lastUpdated": "2021-07-21T12:05:33.496Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canoéiste",
+ "hasLocution": false,
+ "plural": "canoéistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "water transport"
+ ],
+ "synsets": [
+ "03923170-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "water transport"
+ ],
+ "_id": 22043,
+ "created": "2010-10-03T15:55:33.000Z",
+ "lastUpdated": "2021-07-21T12:05:30.771Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "périscope",
+ "hasLocution": false,
+ "plural": "périscopes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "03436480-n",
+ "03437039-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 22009,
+ "created": "2010-10-03T13:05:19.000Z",
+ "lastUpdated": "2021-07-21T11:21:15.693Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "changement de vitesses",
+ "hasLocution": false,
+ "plural": "changements de vitesses"
+ },
+ {
+ "type": 2,
+ "keyword": "levier de vitesse",
+ "hasLocution": false,
+ "plural": "leviers de vitesse"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09004957-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 22051,
+ "created": "2010-10-03T16:07:02.000Z",
+ "lastUpdated": "2021-07-21T11:24:38.373Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pologne",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "08617999-n",
+ "08787478-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 22058,
+ "created": "2010-10-03T16:20:32.000Z",
+ "lastUpdated": "2021-07-21T11:24:59.707Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Porte de Brandebourg",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "political representation",
+ "leader",
+ "historical character",
+ "history"
+ ],
+ "synsets": [
+ "10486745-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "person",
+ "leader",
+ "character",
+ "historical character",
+ "history"
+ ],
+ "_id": 22052,
+ "created": "2010-10-03T16:10:35.000Z",
+ "lastUpdated": "2024-12-08T15:26:17.157Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "présidente",
+ "hasLocution": false,
+ "plural": "présidentes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "08617999-n",
+ "09050049-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 22060,
+ "created": "2010-10-03T16:24:40.000Z",
+ "lastUpdated": "2021-07-21T12:05:36.221Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Porte du Carmen",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "10734860-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 22062,
+ "created": "2010-10-03T16:27:23.000Z",
+ "lastUpdated": "2021-07-21T11:25:05.336Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Le Petit Poucet",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hunting"
+ ],
+ "synsets": [
+ "03799589-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "hunting"
+ ],
+ "_id": 22068,
+ "created": "2010-10-03T16:34:03.000Z",
+ "lastUpdated": "2021-07-21T11:25:54.180Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tapette à souris",
+ "hasLocution": false,
+ "plural": "tapettes à souris"
+ },
+ {
+ "keyword": "piège à souris",
+ "hasLocution": false,
+ "plural": "pièges à souris",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "summer"
+ ],
+ "synsets": [
+ "14313867-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "summer"
+ ],
+ "_id": 22064,
+ "created": "2010-10-03T16:30:29.000Z",
+ "lastUpdated": "2024-12-08T15:27:45.822Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brûlure",
+ "hasLocution": true,
+ "plural": "brûlures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry",
+ "residential building"
+ ],
+ "synsets": [
+ "10530662-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry",
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 22072,
+ "created": "2010-10-03T16:38:17.000Z",
+ "lastUpdated": "2021-07-21T11:26:02.971Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "réceptionniste",
+ "hasLocution": false,
+ "plural": "réceptionnistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry",
+ "residential building"
+ ],
+ "synsets": [
+ "10530662-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry",
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 22073,
+ "created": "2010-10-03T16:38:43.000Z",
+ "lastUpdated": "2021-07-21T11:26:08.681Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "réceptionniste",
+ "hasLocution": false,
+ "plural": "réceptionnistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "transport services"
+ ],
+ "synsets": [
+ "10020810-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 22084,
+ "created": "2010-10-03T17:07:42.000Z",
+ "lastUpdated": "2021-07-21T12:06:33.482Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "livreuse",
+ "hasLocution": false,
+ "plural": "livreuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime"
+ ],
+ "synsets": [
+ "02326737-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime"
+ ],
+ "_id": 22088,
+ "created": "2010-10-03T17:11:06.000Z",
+ "lastUpdated": "2021-07-21T12:05:43.158Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "02665841-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 22090,
+ "created": "2010-10-03T17:13:29.000Z",
+ "lastUpdated": "2021-07-21T11:26:45.321Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "turbot",
+ "hasLocution": false,
+ "plural": "turbots"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom"
+ ],
+ "synsets": [
+ "00017024-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 22094,
+ "created": "2010-10-03T17:21:35.000Z",
+ "lastUpdated": "2021-07-21T11:26:49.484Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ronfler",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "08617999-n",
+ "09046837-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 22056,
+ "created": "2010-10-03T16:15:09.000Z",
+ "lastUpdated": "2021-07-21T11:24:55.657Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Porte d'Alcalá",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "clothes"
+ ],
+ "synsets": [
+ "10709060-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 22100,
+ "created": "2010-10-03T17:29:00.000Z",
+ "lastUpdated": "2021-07-21T11:27:05.081Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tailleur",
+ "hasLocution": false,
+ "plural": "tailleurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01246915-v",
+ "01516062-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 22096,
+ "created": "2010-10-03T17:23:27.000Z",
+ "lastUpdated": "2021-07-21T11:26:53.553Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "secouer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "religious building",
+ "religious place",
+ "christianity"
+ ],
+ "synsets": [
+ "02804350-n",
+ "09047559-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "building",
+ "religion",
+ "christianity"
+ ],
+ "_id": 22098,
+ "created": "2010-10-03T17:26:34.000Z",
+ "lastUpdated": "2021-07-21T11:26:56.664Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "La Sagrada Familia",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Sainte Famille",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "00228662-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 22082,
+ "created": "2010-10-03T17:05:18.000Z",
+ "lastUpdated": "2021-07-21T11:26:21.890Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "arroser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "irriguer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene"
+ ],
+ "synsets": [
+ "00218901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 22106,
+ "created": "2010-10-03T17:34:00.000Z",
+ "lastUpdated": "2021-07-21T12:06:43.398Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se sécher",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance",
+ "clothes"
+ ],
+ "synsets": [
+ "00676526-v",
+ "01496967-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 22110,
+ "created": "2010-10-03T17:37:06.000Z",
+ "lastUpdated": "2024-12-16T19:03:00.954Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sélectionner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mettre",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "trier",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08834821-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 22112,
+ "created": "2010-10-03T17:39:58.000Z",
+ "lastUpdated": "2021-07-21T11:28:33.290Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Serbie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00218901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 22105,
+ "created": "2010-10-03T17:33:29.000Z",
+ "lastUpdated": "2021-07-21T12:06:37.941Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se sécher",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09054023-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 22114,
+ "created": "2010-10-03T17:45:17.000Z",
+ "lastUpdated": "2021-07-21T12:06:50.097Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Suisse",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09021852-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 22113,
+ "created": "2010-10-03T17:42:16.000Z",
+ "lastUpdated": "2021-07-21T12:06:46.709Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Afrique du Sud",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "students"
+ ],
+ "synsets": [
+ "02529187-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "students"
+ ],
+ "_id": 22115,
+ "created": "2010-10-03T17:47:22.000Z",
+ "lastUpdated": "2021-07-21T11:29:02.415Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rater",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage",
+ "container"
+ ],
+ "synsets": [
+ "01425540-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage",
+ "object",
+ "container"
+ ],
+ "_id": 22117,
+ "created": "2010-10-03T17:50:35.000Z",
+ "lastUpdated": "2024-12-05T18:44:02.907Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "boucher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "fermer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00218901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 22104,
+ "created": "2010-10-03T17:32:58.000Z",
+ "lastUpdated": "2021-07-21T11:27:08.651Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se sécher",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "02937835-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 22119,
+ "created": "2010-10-03T17:54:34.000Z",
+ "lastUpdated": "2021-07-21T11:29:30.831Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "télécabine",
+ "hasLocution": false,
+ "plural": "télécabines"
+ },
+ {
+ "type": 2,
+ "keyword": "téléphérique",
+ "hasLocution": false,
+ "plural": "téléphériques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07696262-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 22133,
+ "created": "2010-10-04T16:08:02.000Z",
+ "lastUpdated": "2021-07-21T11:32:05.005Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gressin",
+ "hasLocution": false,
+ "plural": "gressins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "00205206-s",
+ "02101482-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 22137,
+ "created": "2010-10-04T16:25:19.000Z",
+ "lastUpdated": "2021-07-21T11:32:15.869Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "plonger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "02187621-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 22139,
+ "created": "2010-10-04T16:30:11.000Z",
+ "lastUpdated": "2021-07-21T11:32:21.099Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "klaxonner",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom",
+ "physiology"
+ ],
+ "synsets": [
+ "14382864-n",
+ "00003826-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "physiology",
+ "human physiology"
+ ],
+ "_id": 22127,
+ "created": "2010-10-03T18:05:36.000Z",
+ "lastUpdated": "2021-07-21T11:29:54.092Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "avoir le hoquet",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "hoquet",
+ "hasLocution": false,
+ "plural": "hoquets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "saragossa"
+ ],
+ "synsets": [
+ "04240233-n",
+ "09050049-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "Aragon",
+ "Saragossa"
+ ],
+ "_id": 22145,
+ "created": "2010-10-04T16:40:10.000Z",
+ "lastUpdated": "2021-07-21T11:32:35.938Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Tour de l'Eau",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room"
+ ],
+ "synsets": [
+ "02780739-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room"
+ ],
+ "_id": 22129,
+ "created": "2010-10-03T18:10:20.000Z",
+ "lastUpdated": "2021-07-21T12:06:53.220Z",
+ "keywords": [
+ {
+ "keyword": "balcon",
+ "hasLocution": true,
+ "plural": "balcons"
+ },
+ {
+ "keyword": "terrasse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "terrasses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "02418610-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 22147,
+ "created": "2010-10-04T16:42:11.000Z",
+ "lastUpdated": "2021-07-21T11:32:40.957Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Avoir une profession, exercer un métier",
+ "keyword": "travailler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "official document",
+ "court document"
+ ],
+ "synsets": [
+ "02443400-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "document",
+ "public administration",
+ "justice"
+ ],
+ "_id": 22149,
+ "created": "2010-10-04T16:44:24.000Z",
+ "lastUpdated": "2021-07-21T11:32:45.522Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire des démarches",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "aerial transport"
+ ],
+ "synsets": [
+ "03103610-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 22141,
+ "created": "2010-10-04T16:35:37.000Z",
+ "lastUpdated": "2021-07-21T11:32:30.127Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tour de contrôle",
+ "hasLocution": false,
+ "plural": "tours de contrôle"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "swimming pool"
+ ],
+ "synsets": [
+ "03220783-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 22151,
+ "created": "2010-10-04T16:49:31.000Z",
+ "lastUpdated": "2021-07-21T11:33:18.326Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plongeoir",
+ "hasLocution": true,
+ "plural": "plongeoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element"
+ ],
+ "synsets": [
+ "03459651-n",
+ "03464523-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element"
+ ],
+ "_id": 22162,
+ "created": "2010-10-04T17:08:43.000Z",
+ "lastUpdated": "2021-07-21T11:33:48.507Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grille",
+ "hasLocution": false,
+ "plural": "grilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09061886-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 22161,
+ "created": "2010-10-04T17:06:05.000Z",
+ "lastUpdated": "2021-07-21T12:07:00.456Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Turquie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "03005945-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 22123,
+ "created": "2010-10-03T18:00:52.000Z",
+ "lastUpdated": "2021-07-21T11:29:42.485Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "télésiège",
+ "hasLocution": false,
+ "plural": "télésièges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "03678353-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 22155,
+ "created": "2010-10-04T16:56:04.000Z",
+ "lastUpdated": "2021-07-21T11:33:37.990Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "transatlantique",
+ "hasLocution": false,
+ "plural": "transatlantiques"
+ },
+ {
+ "keyword": "paquebot",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paquebots"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "land transport"
+ ],
+ "synsets": [
+ "03645974-n",
+ "03645903-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 22178,
+ "created": "2010-10-04T18:18:26.000Z",
+ "lastUpdated": "2021-07-21T11:35:00.103Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voie",
+ "hasLocution": true,
+ "plural": "voies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system"
+ ],
+ "synsets": [
+ "05288688-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system"
+ ],
+ "_id": 22180,
+ "created": "2010-10-04T18:20:33.000Z",
+ "lastUpdated": "2021-07-21T11:35:06.882Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sternum",
+ "hasLocution": false,
+ "plural": "sternums"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sweets",
+ "halloween"
+ ],
+ "synsets": [
+ "07612255-n",
+ "07612936-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 22182,
+ "created": "2010-10-04T18:24:21.000Z",
+ "lastUpdated": "2021-07-21T11:35:12.503Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "friandises",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "sucreries",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming pool"
+ ],
+ "synsets": [
+ "01966872-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 22170,
+ "created": "2010-10-04T17:16:24.000Z",
+ "lastUpdated": "2021-07-21T11:34:36.991Z",
+ "keywords": [
+ {
+ "keyword": "sauter",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "sauter dans l'eau",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05569882-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 22185,
+ "created": "2010-10-04T18:27:07.000Z",
+ "lastUpdated": "2021-07-21T11:35:20.347Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuisse",
+ "hasLocution": false,
+ "plural": "cuisses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "road safety",
+ "person according to their age"
+ ],
+ "synsets": [
+ "10431800-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "person"
+ ],
+ "_id": 22186,
+ "created": "2010-10-04T18:29:29.000Z",
+ "lastUpdated": "2021-07-21T11:35:53.404Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piéton",
+ "hasLocution": false,
+ "plural": "piétons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "trade"
+ ],
+ "synsets": [
+ "06905066-n",
+ "00121022-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 22190,
+ "created": "2010-10-05T09:47:16.000Z",
+ "lastUpdated": "2021-07-21T11:36:36.123Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tour",
+ "hasLocution": true,
+ "plural": "tours"
+ },
+ {
+ "type": 3,
+ "keyword": "prendre son tour",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01213827-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 22192,
+ "created": "2010-10-05T09:50:32.000Z",
+ "lastUpdated": "2021-07-26T22:23:02.828Z",
+ "keywords": [
+ {
+ "keyword": "se toucher",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "toucher ses organes génitaux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "clothes"
+ ],
+ "synsets": [
+ "03054849-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "fashion",
+ "clothes",
+ "cleaning product"
+ ],
+ "_id": 22175,
+ "created": "2010-10-04T18:04:29.000Z",
+ "lastUpdated": "2024-12-05T06:46:42.900Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "panier à linge",
+ "hasLocution": false,
+ "plural": "paniers à linge"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy equipment"
+ ],
+ "synsets": [
+ "02782458-n",
+ "03747510-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "physiotherapy equipment"
+ ],
+ "_id": 22194,
+ "created": "2010-10-05T09:59:22.000Z",
+ "lastUpdated": "2021-07-21T11:37:37.136Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balle thérapeutique",
+ "hasLocution": true,
+ "plural": "balles thérapeutiques"
+ },
+ {
+ "keyword": "ballon thérapeutique",
+ "hasLocution": false,
+ "plural": "ballons thérapeutiques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "educational task"
+ ],
+ "synsets": [
+ "00635278-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "education",
+ "educational task"
+ ],
+ "_id": 22198,
+ "created": "2010-10-05T10:02:11.000Z",
+ "lastUpdated": "2021-07-21T11:37:49.714Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "incorrect",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faux",
+ "type": 4,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "03968233-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 22200,
+ "created": "2010-10-05T10:06:25.000Z",
+ "lastUpdated": "2021-07-21T12:07:07.775Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plate-forme",
+ "hasLocution": false,
+ "plural": "plate-formes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01989043-v",
+ "02501514-s"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 22204,
+ "created": "2010-10-05T10:13:39.000Z",
+ "lastUpdated": "2021-07-21T11:39:35.141Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "allongé sur le dos",
+ "hasLocution": false
+ },
+ {
+ "keyword": "à plat dos",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "road safety",
+ "person according to their age"
+ ],
+ "synsets": [
+ "10431800-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "person"
+ ],
+ "_id": 22187,
+ "created": "2010-10-04T18:29:55.000Z",
+ "lastUpdated": "2021-07-21T11:36:08.389Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piéton",
+ "hasLocution": false,
+ "plural": "piétons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01989043-v",
+ "02502659-s"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 22208,
+ "created": "2010-10-05T10:16:55.000Z",
+ "lastUpdated": "2021-07-21T11:39:40.021Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "allongé sur le ventre",
+ "hasLocution": false
+ },
+ {
+ "keyword": "à plat ventre",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01989043-v",
+ "02502659-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 22209,
+ "created": "2010-10-05T10:17:28.000Z",
+ "lastUpdated": "2021-07-21T11:40:12.198Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'allonger sur le ventre",
+ "hasLocution": false
+ },
+ {
+ "keyword": "se mettre à plat ventre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "educational material"
+ ],
+ "synsets": [
+ "03912343-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "education",
+ "educational material"
+ ],
+ "_id": 22212,
+ "created": "2010-10-05T11:20:32.000Z",
+ "lastUpdated": "2021-07-21T11:52:36.537Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jeu de picots",
+ "hasLocution": false,
+ "plural": "jeux de picots"
+ },
+ {
+ "type": 2,
+ "keyword": "picot",
+ "hasLocution": false,
+ "plural": "picots"
+ },
+ {
+ "keyword": "mosaïque de picots",
+ "hasLocution": false,
+ "plural": "mosaïques de picots",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "interrogative pronoun",
+ "core vocabulary-communication",
+ "adverb"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "interrogative pronoun",
+ "core vocabulary",
+ "adverb"
+ ],
+ "_id": 22619,
+ "created": "2010-11-09T09:22:43.000Z",
+ "lastUpdated": "2024-10-21T05:00:04.163Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "comment",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "comment ?",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "interrogative pronoun",
+ "pronoun",
+ "adverb",
+ "adverb of time"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "interrogative pronoun",
+ "adverb",
+ "adverb of time"
+ ],
+ "_id": 22621,
+ "created": "2010-11-09T09:28:05.000Z",
+ "lastUpdated": "2024-10-21T05:13:20.924Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "quand",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "interrogative pronoun",
+ "core vocabulary-communication",
+ "pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "interrogative pronoun",
+ "core vocabulary"
+ ],
+ "_id": 22620,
+ "created": "2010-11-09T09:24:24.000Z",
+ "lastUpdated": "2024-10-21T05:07:03.503Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "quel",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "quoi ?",
+ "hasLocution": false
+ },
+ {
+ "type": 6,
+ "keyword": "quel ?",
+ "hasLocution": false
+ },
+ {
+ "type": 6,
+ "keyword": "quelle ?",
+ "hasLocution": false
+ },
+ {
+ "type": 6,
+ "keyword": "quels ?",
+ "hasLocution": false
+ },
+ {
+ "type": 6,
+ "keyword": "quelles ?",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "interrogative pronoun",
+ "pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "interrogative pronoun"
+ ],
+ "_id": 22624,
+ "created": "2010-11-09T09:32:28.000Z",
+ "lastUpdated": "2024-10-21T05:12:47.756Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "quel",
+ "hasLocution": true
+ },
+ {
+ "keyword": "quelle",
+ "hasLocution": true,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01989043-v",
+ "02501514-s"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 22205,
+ "created": "2010-10-05T10:14:17.000Z",
+ "lastUpdated": "2025-03-21T08:36:47.717Z",
+ "keywords": [
+ {
+ "keyword": "allongé sur le dos",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "à plat dos",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of degree"
+ ],
+ "synsets": [
+ "00059709-r",
+ "01555990-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of degree"
+ ],
+ "_id": 22629,
+ "created": "2010-11-09T09:41:52.000Z",
+ "lastUpdated": "2021-07-21T11:46:08.336Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "beaucoup",
+ "hasLocution": true
+ },
+ {
+ "keyword": "plein de",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cleaning product"
+ ],
+ "synsets": [
+ "00182551-v",
+ "02332196-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 22166,
+ "created": "2010-10-04T17:11:29.000Z",
+ "lastUpdated": "2021-07-21T11:34:12.812Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "verser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ajouter",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "unit of time"
+ ],
+ "synsets": [
+ "15295388-n",
+ "00028468-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time"
+ ],
+ "_id": 22631,
+ "created": "2010-11-09T09:46:39.000Z",
+ "lastUpdated": "2021-07-21T11:46:27.093Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "temps",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "temps",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "époque",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling",
+ "object"
+ ],
+ "synsets": [
+ "09870573-n",
+ "02169125-v",
+ "00231927-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion",
+ "object"
+ ],
+ "_id": 22627,
+ "created": "2010-11-09T09:35:22.000Z",
+ "lastUpdated": "2024-12-11T06:55:13.115Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "meilleur",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "important",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "admirer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "unit of time"
+ ],
+ "synsets": [
+ "15271664-n",
+ "15271164-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time"
+ ],
+ "_id": 22633,
+ "created": "2010-11-09T09:51:31.000Z",
+ "lastUpdated": "2021-07-21T11:54:01.180Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moment",
+ "hasLocution": true,
+ "plural": "moments"
+ },
+ {
+ "type": 2,
+ "keyword": "instant",
+ "hasLocution": false,
+ "plural": "instants"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03089375-n",
+ "03042670-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 22751,
+ "created": "2010-11-10T18:42:02.000Z",
+ "lastUpdated": "2021-07-26T22:24:05.220Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cyberclasse",
+ "hasLocution": false,
+ "plural": "cyberclasses"
+ },
+ {
+ "keyword": "classe à distance",
+ "hasLocution": false,
+ "plural": "classes à distance",
+ "type": 2
+ },
+ {
+ "keyword": "cours à distance",
+ "hasLocution": false,
+ "plural": "cours à distance",
+ "type": 2
+ },
+ {
+ "keyword": "distanciel",
+ "hasLocution": false,
+ "plural": "distanciels",
+ "type": 2
+ },
+ {
+ "keyword": "classe virtuelle",
+ "hasLocution": false,
+ "plural": "classes virtuelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "political representation",
+ "leader"
+ ],
+ "synsets": [
+ "00592226-n",
+ "09964242-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "person",
+ "leader"
+ ],
+ "_id": 22753,
+ "created": "2010-11-10T18:45:25.000Z",
+ "lastUpdated": "2021-07-26T22:26:42.420Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "plural": "conseillers municipaux",
+ "keyword": "conseiller municipal"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "élu municipal",
+ "plural": "élus municipaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 22755,
+ "created": "2010-11-10T18:48:09.000Z",
+ "lastUpdated": "2021-07-26T22:28:56.241Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "directeur",
+ "hasLocution": true,
+ "plural": "directeurs"
+ },
+ {
+ "keyword": "chef",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chefs"
+ },
+ {
+ "keyword": "patron",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "patrons"
+ },
+ {
+ "keyword": "administrateur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "administrateur"
+ },
+ {
+ "keyword": "responsable",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "responsables"
+ },
+ {
+ "keyword": "gestionnaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gestionnaires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 22757,
+ "created": "2010-11-10T18:49:42.000Z",
+ "lastUpdated": "2021-07-26T22:32:59.264Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "directeur",
+ "hasLocution": true,
+ "plural": "directeurs"
+ },
+ {
+ "keyword": "chef",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chefs"
+ },
+ {
+ "keyword": "patron",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "patrons"
+ },
+ {
+ "keyword": "responsable",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "responsables"
+ },
+ {
+ "keyword": "administrateur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "administrateurs"
+ },
+ {
+ "keyword": "gestionnaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gestionnaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "01864034-a"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 22637,
+ "created": "2010-11-09T10:00:35.000Z",
+ "lastUpdated": "2021-07-21T11:54:42.308Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "privé",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "privée",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 22759,
+ "created": "2010-11-10T18:51:00.000Z",
+ "lastUpdated": "2021-07-26T22:31:04.069Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "directrice",
+ "hasLocution": true,
+ "plural": "directrices"
+ },
+ {
+ "keyword": "administratrice",
+ "hasLocution": false,
+ "plural": "administratrice"
+ },
+ {
+ "keyword": "gestionnaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gestionnaire"
+ },
+ {
+ "keyword": "cheffe",
+ "hasLocution": false,
+ "plural": "cheffes"
+ },
+ {
+ "keyword": "patronne",
+ "hasLocution": false,
+ "plural": "patronnes"
+ },
+ {
+ "keyword": "responsable",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "responsables"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "literacy genre"
+ ],
+ "synsets": [
+ "07107220-n",
+ "06389065-n"
+ ],
+ "tags": [
+ "literature",
+ "literacy genre"
+ ],
+ "_id": 22763,
+ "created": "2010-11-10T19:00:57.000Z",
+ "lastUpdated": "2021-07-21T11:59:27.593Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poésie",
+ "hasLocution": true,
+ "plural": "poésies"
+ },
+ {
+ "keyword": "poème",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "poèmes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "locomotor system"
+ ],
+ "synsets": [
+ "09938755-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "locomotor system"
+ ],
+ "_id": 22765,
+ "created": "2010-11-10T19:05:08.000Z",
+ "lastUpdated": "2021-07-21T11:59:34.800Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "podologue",
+ "hasLocution": false,
+ "plural": "podologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "locomotor system"
+ ],
+ "synsets": [
+ "09938755-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "locomotor system"
+ ],
+ "_id": 22767,
+ "created": "2010-11-10T19:06:32.000Z",
+ "lastUpdated": "2021-07-21T11:59:39.839Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "podologue",
+ "hasLocution": false,
+ "plural": "podologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "craftsmanship"
+ ],
+ "synsets": [
+ "03490738-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "craftsmanship"
+ ],
+ "_id": 22769,
+ "created": "2010-11-12T11:07:26.000Z",
+ "lastUpdated": "2021-07-21T11:59:53.020Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "artisanat",
+ "hasLocution": false,
+ "plural": "artisanats"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "bullying"
+ ],
+ "synsets": [
+ "01156043-n",
+ "06729173-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "bullying"
+ ],
+ "_id": 22761,
+ "created": "2010-11-10T18:54:49.000Z",
+ "lastUpdated": "2021-07-21T11:59:11.176Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "discrimination",
+ "hasLocution": true,
+ "plural": "discriminations"
+ },
+ {
+ "keyword": "moquerie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "moqueries"
+ },
+ {
+ "keyword": "quolibet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "quolibets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "04630289-n"
+ ],
+ "tags": [],
+ "_id": 22635,
+ "created": "2010-11-09T09:56:06.000Z",
+ "lastUpdated": "2021-07-21T11:54:35.764Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "confidentialité",
+ "hasLocution": false
+ },
+ {
+ "keyword": "vie privée",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "therapy"
+ ],
+ "synsets": [
+ "00662334-n",
+ "00935235-n"
+ ],
+ "tags": [
+ "psychology",
+ "therapy"
+ ],
+ "_id": 22771,
+ "created": "2010-11-12T11:20:19.000Z",
+ "lastUpdated": "2021-07-29T00:26:07.040Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "art-thérapie",
+ "hasLocution": false,
+ "plural": "art-thérapies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "literacy genre",
+ "historical character"
+ ],
+ "synsets": [
+ "06527818-n"
+ ],
+ "tags": [
+ "literature",
+ "literacy genre",
+ "character",
+ "historical character",
+ "history"
+ ],
+ "_id": 22749,
+ "created": "2010-11-10T17:58:25.000Z",
+ "lastUpdated": "2021-07-21T11:54:51.979Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "biographie",
+ "hasLocution": false,
+ "plural": "biographies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "synsets": [
+ "07471429-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "_id": 22773,
+ "created": "2010-11-12T11:22:58.000Z",
+ "lastUpdated": "2021-07-21T12:00:05.615Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "athlétisme",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public administration",
+ "personal services"
+ ],
+ "synsets": [
+ "10043844-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "public administration",
+ "personal services"
+ ],
+ "_id": 22775,
+ "created": "2010-11-12T11:26:52.000Z",
+ "lastUpdated": "2021-07-21T12:00:20.501Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aide à domicile",
+ "hasLocution": false,
+ "plural": "aides à domicile"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "therapy"
+ ],
+ "synsets": [
+ "00662334-n",
+ "01898642-v"
+ ],
+ "tags": [
+ "psychology",
+ "therapy"
+ ],
+ "_id": 22777,
+ "created": "2010-11-12T11:34:40.000Z",
+ "lastUpdated": "2021-07-29T00:24:41.922Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "danse-thérapie",
+ "hasLocution": false,
+ "plural": "danse-thérapies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "01204905-n",
+ "13959337-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 22785,
+ "created": "2010-11-12T13:31:13.000Z",
+ "lastUpdated": "2021-07-21T12:01:12.569Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "intégration",
+ "hasLocution": true,
+ "plural": "intégrations"
+ },
+ {
+ "type": 2,
+ "keyword": "inclusion",
+ "hasLocution": false,
+ "plural": "inclusions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "01204905-n",
+ "13959337-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 22787,
+ "created": "2010-11-12T13:35:44.000Z",
+ "lastUpdated": "2021-07-21T12:01:38.546Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "intégration",
+ "hasLocution": true,
+ "plural": "intégrations"
+ },
+ {
+ "type": 2,
+ "keyword": "inclusion",
+ "hasLocution": false,
+ "plural": "inclusions"
+ },
+ {
+ "type": 2,
+ "keyword": "intégration sociale",
+ "hasLocution": false,
+ "plural": "intégrations sociales"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "05646331-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 22789,
+ "created": "2010-11-12T13:42:46.000Z",
+ "lastUpdated": "2021-07-21T12:02:20.631Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lire écrire",
+ "hasLocution": false
+ },
+ {
+ "keyword": "littéracie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "00251880-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 22791,
+ "created": "2010-11-12T13:46:59.000Z",
+ "lastUpdated": "2021-07-21T12:03:17.098Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nettoyage",
+ "hasLocution": true,
+ "plural": "nettoyages"
+ },
+ {
+ "keyword": "ménage",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "islamism"
+ ],
+ "synsets": [
+ "08112613-n",
+ "06244979-n"
+ ],
+ "tags": [
+ "religion",
+ "islamism"
+ ],
+ "_id": 22793,
+ "created": "2010-11-12T13:50:04.000Z",
+ "lastUpdated": "2021-07-21T12:03:27.703Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Islam",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "13958260-n",
+ "01156043-n"
+ ],
+ "tags": [],
+ "_id": 22781,
+ "created": "2010-11-12T13:25:56.000Z",
+ "lastUpdated": "2021-07-21T12:00:55.978Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "discrimination",
+ "hasLocution": true,
+ "plural": "discriminations"
+ },
+ {
+ "type": 2,
+ "keyword": "exclusion sociale",
+ "hasLocution": false,
+ "plural": "exclusions sociales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public building",
+ "public administration",
+ "signaling system"
+ ],
+ "synsets": [
+ "06519032-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "public administration",
+ "work",
+ "tertiary sector",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 22797,
+ "created": "2010-11-12T13:58:36.000Z",
+ "lastUpdated": "2021-07-21T12:03:46.893Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "registre",
+ "hasLocution": false,
+ "plural": "registres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "judaism"
+ ],
+ "synsets": [
+ "06895383-n",
+ "08110979-n",
+ "06243034-n"
+ ],
+ "tags": [
+ "religion",
+ "judaism"
+ ],
+ "_id": 22795,
+ "created": "2010-11-12T13:54:55.000Z",
+ "lastUpdated": "2021-07-21T12:03:31.880Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étoile juive",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Étoile de David",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "judaïsme",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "special education"
+ ],
+ "synsets": [
+ "02454712-v",
+ "00467564-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "special education"
+ ],
+ "_id": 22783,
+ "created": "2010-11-12T13:28:13.000Z",
+ "lastUpdated": "2021-07-21T12:01:00.845Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "inclure",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "intégrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "architectural element",
+ "core vocabulary-place",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "04058661-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "architecture",
+ "architectural element",
+ "core vocabulary"
+ ],
+ "_id": 22799,
+ "created": "2010-11-12T14:02:28.000Z",
+ "lastUpdated": "2021-07-21T12:03:54.380Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rampe",
+ "hasLocution": true,
+ "plural": "rampes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "computing"
+ ],
+ "synsets": [
+ "06138021-n",
+ "06143961-n",
+ "01006737-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "computing"
+ ],
+ "_id": 22801,
+ "created": "2010-11-16T13:06:45.000Z",
+ "lastUpdated": "2021-07-21T12:03:57.646Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "travailler sur l'ordinateur",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "literature",
+ "library science"
+ ],
+ "synsets": [
+ "00752852-a"
+ ],
+ "tags": [
+ "literature",
+ "library science"
+ ],
+ "_id": 23394,
+ "created": "2010-12-04T13:13:58.000Z",
+ "lastUpdated": "2021-07-21T12:07:24.064Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lecture facile",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "game",
+ "usual verbs",
+ "core vocabulary-communication",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "02423786-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "usual verbs",
+ "core vocabulary",
+ "game"
+ ],
+ "_id": 23392,
+ "created": "2010-12-04T13:09:50.000Z",
+ "lastUpdated": "2021-07-21T12:07:18.800Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. ind. Se divertir en pratiquant un jeu, s'amuser avec un jeu, un jouet",
+ "keyword": "jouer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human value"
+ ],
+ "synsets": [
+ "07488581-n",
+ "00064472-n"
+ ],
+ "tags": [
+ "psychology",
+ "human value"
+ ],
+ "_id": 23371,
+ "created": "2010-11-29T16:51:56.000Z",
+ "lastUpdated": "2021-07-21T12:04:10.613Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "succès",
+ "hasLocution": true,
+ "plural": "succès"
+ },
+ {
+ "type": 2,
+ "keyword": "victoire",
+ "hasLocution": true,
+ "plural": "victoires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "special education"
+ ],
+ "synsets": [
+ "02517971-v",
+ "00651669-v",
+ "02454205-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "special education"
+ ],
+ "_id": 22779,
+ "created": "2010-11-12T13:21:34.000Z",
+ "lastUpdated": "2021-07-21T12:00:31.899Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "discriminer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "exclure",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human value"
+ ],
+ "synsets": [
+ "07149558-n",
+ "07148409-n"
+ ],
+ "tags": [
+ "psychology",
+ "human value"
+ ],
+ "_id": 23402,
+ "created": "2010-12-04T13:30:23.000Z",
+ "lastUpdated": "2021-07-21T12:08:22.321Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dialogue",
+ "hasLocution": true,
+ "plural": "dialogues"
+ },
+ {
+ "type": 2,
+ "keyword": "conversation",
+ "hasLocution": true,
+ "plural": "conversations"
+ },
+ {
+ "type": 2,
+ "keyword": "réunion entre amis",
+ "hasLocution": false,
+ "plural": "réunions entre amis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "teaching activity"
+ ],
+ "synsets": [
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "teaching activity"
+ ],
+ "_id": 23404,
+ "created": "2010-12-04T13:50:15.000Z",
+ "lastUpdated": "2021-07-21T12:29:00.242Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cours",
+ "hasLocution": true,
+ "plural": "cours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "05973672-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 23398,
+ "created": "2010-12-04T13:22:40.000Z",
+ "lastUpdated": "2021-07-21T12:07:38.077Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "interculturalité",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "speech therapy"
+ ],
+ "synsets": [
+ "10653862-n",
+ "00708466-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "speech therapy"
+ ],
+ "_id": 23396,
+ "created": "2010-12-04T13:16:50.000Z",
+ "lastUpdated": "2021-07-21T12:07:33.115Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "orthophoniste",
+ "hasLocution": true,
+ "plural": "orthophonistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chronological device",
+ "chronological instrument"
+ ],
+ "synsets": [
+ "03202021-n",
+ "03050242-n",
+ "04445087-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "time",
+ "chronological device"
+ ],
+ "_id": 23408,
+ "created": "2010-12-04T14:07:24.000Z",
+ "lastUpdated": "2021-08-01T21:41:42.653Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "horloge digitale",
+ "hasLocution": false,
+ "plural": "horloges digitales"
+ },
+ {
+ "keyword": "horloge numérique",
+ "hasLocution": false,
+ "plural": "horloges numériques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "corporal hygiene",
+ "healthy habit"
+ ],
+ "synsets": [
+ "14518664-n"
+ ],
+ "tags": [
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "health",
+ "lifestyle",
+ "healthy habit"
+ ],
+ "_id": 23406,
+ "created": "2010-12-04T13:56:30.000Z",
+ "lastUpdated": "2021-07-21T12:08:35.804Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toilette personnelle",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "hygiène personnelle",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "educational material"
+ ],
+ "synsets": [
+ "02668826-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "education",
+ "educational material"
+ ],
+ "_id": 23699,
+ "created": "2011-01-12T17:51:22.000Z",
+ "lastUpdated": "2021-07-21T12:09:18.210Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abaque",
+ "hasLocution": false,
+ "plural": "abaque"
+ },
+ {
+ "keyword": "boulier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bouliers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "therapy"
+ ],
+ "synsets": [
+ "00662334-n",
+ "00544270-n"
+ ],
+ "tags": [
+ "psychology",
+ "therapy"
+ ],
+ "_id": 23400,
+ "created": "2010-12-04T13:25:54.000Z",
+ "lastUpdated": "2021-07-21T12:28:56.843Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "musicothérapie",
+ "hasLocution": false,
+ "plural": "musicothérapies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05564972-n",
+ "02945931-a"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 23703,
+ "created": "2011-01-12T17:54:43.000Z",
+ "lastUpdated": "2021-07-21T12:09:47.120Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "muscle abdominal",
+ "hasLocution": false,
+ "plural": "muscle abdominaux"
+ },
+ {
+ "type": 2,
+ "keyword": "abdominaux",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "elderly",
+ "family"
+ ],
+ "synsets": [
+ "10162267-n"
+ ],
+ "tags": [
+ "person",
+ "elderly",
+ "family"
+ ],
+ "_id": 23709,
+ "created": "2011-01-12T18:02:30.000Z",
+ "lastUpdated": "2021-07-21T12:29:18.332Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grand-mère",
+ "hasLocution": true,
+ "plural": "grands-mères"
+ },
+ {
+ "type": 2,
+ "keyword": "mamy",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mémé",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage"
+ ],
+ "synsets": [
+ "01177764-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 23414,
+ "created": "2010-12-14T11:14:34.000Z",
+ "lastUpdated": "2021-07-21T12:09:02.267Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "trinquer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "porter un toast",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "elderly",
+ "family",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "10162267-n",
+ "10068026-n",
+ "01648667-s"
+ ],
+ "tags": [
+ "person",
+ "elderly",
+ "family",
+ "core vocabulary"
+ ],
+ "_id": 23710,
+ "created": "2011-01-12T18:03:01.000Z",
+ "lastUpdated": "2021-07-21T12:30:52.343Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grand-mère",
+ "hasLocution": true,
+ "plural": "grands-mères"
+ },
+ {
+ "type": 2,
+ "keyword": "mamy",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mémé",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "09224876-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 23725,
+ "created": "2011-01-12T18:18:01.000Z",
+ "lastUpdated": "2021-07-21T12:31:44.349Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "aquifère",
+ "hasLocution": false,
+ "plural": "aquifères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "elderly",
+ "family",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01648667-s",
+ "10161911-n",
+ "10396222-n"
+ ],
+ "tags": [
+ "person",
+ "elderly",
+ "family",
+ "core vocabulary"
+ ],
+ "_id": 23718,
+ "created": "2011-01-12T18:10:25.000Z",
+ "lastUpdated": "2021-07-21T12:31:25.301Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grand-père",
+ "hasLocution": true,
+ "plural": "grands-pères"
+ },
+ {
+ "type": 2,
+ "keyword": "papy",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pépé",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "elderly",
+ "family"
+ ],
+ "synsets": [
+ "10161911-n",
+ "10396222-n"
+ ],
+ "tags": [
+ "person",
+ "elderly",
+ "family"
+ ],
+ "_id": 23717,
+ "created": "2011-01-12T18:09:51.000Z",
+ "lastUpdated": "2021-07-21T12:31:14.299Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grand-père",
+ "hasLocution": true,
+ "plural": "grands-pères"
+ },
+ {
+ "type": 2,
+ "keyword": "papy",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pépé",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity",
+ "judaism",
+ "islamism"
+ ],
+ "synsets": [
+ "09609728-n",
+ "09609918-n",
+ "05636441-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity",
+ "judaism",
+ "islamism"
+ ],
+ "_id": 23729,
+ "created": "2011-01-12T18:36:47.000Z",
+ "lastUpdated": "2021-03-26T03:13:43.514Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Adam et Ève",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "11546388-n",
+ "11451868-n"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 23731,
+ "created": "2011-01-12T18:38:45.000Z",
+ "lastUpdated": "2021-07-21T12:31:54.855Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "air",
+ "hasLocution": true
+ },
+ {
+ "keyword": "vent",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "vents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "10730562-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 23733,
+ "created": "2011-01-12T18:42:03.000Z",
+ "lastUpdated": "2021-07-21T15:18:37.908Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carreleur",
+ "hasLocution": true,
+ "plural": "carreleurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious place",
+ "christianity"
+ ],
+ "synsets": [
+ "02702488-n"
+ ],
+ "tags": [
+ "religion",
+ "place",
+ "christianity"
+ ],
+ "_id": 23737,
+ "created": "2011-01-12T18:52:07.000Z",
+ "lastUpdated": "2021-03-26T03:07:19.807Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "autel",
+ "hasLocution": true,
+ "plural": "autels"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "01348685-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 23707,
+ "created": "2011-01-12T17:59:32.000Z",
+ "lastUpdated": "2021-07-21T12:10:03.864Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir le frigo",
+ "hasLocution": false
+ },
+ {
+ "keyword": "ouvrir le réfrigérateur",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "04552591-n"
+ ],
+ "tags": [
+ "babycare"
+ ],
+ "_id": 23741,
+ "created": "2011-01-12T18:57:09.000Z",
+ "lastUpdated": "2022-12-18T05:43:11.503Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "youpala",
+ "hasLocution": false,
+ "plural": "youpalas"
+ },
+ {
+ "type": 2,
+ "keyword": "trotteur",
+ "hasLocution": false,
+ "plural": "trotteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity"
+ ],
+ "synsets": [
+ "09818234-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity"
+ ],
+ "_id": 23745,
+ "created": "2011-01-12T19:02:04.000Z",
+ "lastUpdated": "2021-07-21T12:33:09.144Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "apôtre",
+ "hasLocution": false,
+ "plural": "apôtres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "02936496-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 23753,
+ "created": "2011-01-12T19:13:29.000Z",
+ "lastUpdated": "2021-07-21T12:33:30.150Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "placard de cuisine",
+ "hasLocution": false,
+ "plural": "placards de cuisine"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14169393-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 23761,
+ "created": "2011-01-12T19:22:15.000Z",
+ "lastUpdated": "2021-07-21T15:19:10.394Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "asthme",
+ "hasLocution": false
+ },
+ {
+ "keyword": "crise d'asthme",
+ "hasLocution": false,
+ "plural": "crises d'asthme",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity"
+ ],
+ "synsets": [
+ "09818234-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity"
+ ],
+ "_id": 23746,
+ "created": "2011-01-12T19:02:31.000Z",
+ "lastUpdated": "2021-07-21T15:18:35.023Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "apôtres",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "religion"
+ ],
+ "synsets": [
+ "09839449-n",
+ "02837382-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "religion"
+ ],
+ "_id": 23765,
+ "created": "2011-01-12T19:31:33.000Z",
+ "lastUpdated": "2021-07-21T15:20:14.647Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "athée",
+ "hasLocution": false,
+ "plural": "athées"
+ },
+ {
+ "keyword": "athéisme",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity",
+ "judaism"
+ ],
+ "synsets": [
+ "11475803-n",
+ "02740356-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity",
+ "judaism"
+ ],
+ "_id": 23751,
+ "created": "2011-01-12T19:09:37.000Z",
+ "lastUpdated": "2021-07-21T12:33:17.040Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Arche de Noé",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "08617999-n",
+ "01822040-s",
+ "08869442-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 23769,
+ "created": "2011-01-12T20:09:46.000Z",
+ "lastUpdated": "2021-07-21T15:20:18.895Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Atomium",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00715072-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 23763,
+ "created": "2011-01-12T19:26:32.000Z",
+ "lastUpdated": "2021-07-21T15:19:29.405Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "relier",
+ "hasLocution": false
+ },
+ {
+ "keyword": "associer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physics"
+ ],
+ "synsets": [
+ "01352707-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "physics"
+ ],
+ "_id": 23771,
+ "created": "2011-01-12T20:12:26.000Z",
+ "lastUpdated": "2021-07-21T15:20:30.801Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attirer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "aimanter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "03658909-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 23773,
+ "created": "2011-01-12T20:15:33.000Z",
+ "lastUpdated": "2021-07-21T15:24:19.200Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pupitre",
+ "hasLocution": false,
+ "plural": "pupitres"
+ },
+ {
+ "keyword": "lutrin",
+ "plural": "lutrins",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "09471510-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 23757,
+ "created": "2011-01-12T19:18:42.000Z",
+ "lastUpdated": "2021-07-21T15:18:47.897Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ruisseau",
+ "hasLocution": false,
+ "plural": "ruisseaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "09420951-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 23783,
+ "created": "2011-01-12T20:24:46.000Z",
+ "lastUpdated": "2021-07-21T15:22:14.405Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nid de poule",
+ "hasLocution": false,
+ "plural": "nids de poule"
+ },
+ {
+ "keyword": "nid-de-poule",
+ "hasLocution": false,
+ "plural": "nids-de-poule",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical art"
+ ],
+ "synsets": [
+ "03807300-n"
+ ],
+ "tags": [
+ "music"
+ ],
+ "_id": 23777,
+ "created": "2011-01-12T20:17:55.000Z",
+ "lastUpdated": "2021-07-21T15:20:48.555Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pupitre",
+ "hasLocution": false,
+ "plural": "pupitres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "aromatic herb"
+ ],
+ "synsets": [
+ "12437208-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "feeding",
+ "food",
+ "plant-based food",
+ "aromatic plant"
+ ],
+ "_id": 23781,
+ "created": "2011-01-12T20:21:55.000Z",
+ "lastUpdated": "2021-07-21T15:21:01.589Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "safran",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "fleur de safran",
+ "hasLocution": false,
+ "plural": "fleurs de safran"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sea and oceans"
+ ],
+ "synsets": [
+ "09238571-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean"
+ ],
+ "_id": 23792,
+ "created": "2011-01-15T18:21:56.000Z",
+ "lastUpdated": "2021-07-21T15:22:28.659Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "baie",
+ "hasLocution": true,
+ "plural": "baies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "furniture"
+ ],
+ "synsets": [
+ "01977139-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "furniture"
+ ],
+ "_id": 23810,
+ "created": "2011-01-15T18:52:58.000Z",
+ "lastUpdated": "2021-07-21T15:23:19.628Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baisser le lit",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "musical art",
+ "musical artist",
+ "show"
+ ],
+ "synsets": [
+ "08266881-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "music",
+ "work",
+ "professional",
+ "artist",
+ "leisure",
+ "show"
+ ],
+ "_id": 23811,
+ "created": "2011-01-15T18:59:41.000Z",
+ "lastUpdated": "2024-12-05T06:11:59.134Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "groupe de musique",
+ "hasLocution": false,
+ "plural": "groupes de musique"
+ },
+ {
+ "keyword": "bande",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "bandes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "09428665-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 23815,
+ "created": "2011-01-15T19:04:10.000Z",
+ "lastUpdated": "2021-07-21T15:23:57.758Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ravin",
+ "hasLocution": false,
+ "plural": "ravins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01977139-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 23796,
+ "created": "2011-01-15T18:32:17.000Z",
+ "lastUpdated": "2024-12-05T12:03:11.462Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baisser la tête",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "percussion instrument"
+ ],
+ "synsets": [
+ "10056654-n",
+ "01736413-v",
+ "02179274-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 23819,
+ "created": "2011-01-15T19:19:50.000Z",
+ "lastUpdated": "2021-07-21T15:25:09.314Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "jouer la batterie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport",
+ "mode of transport"
+ ],
+ "synsets": [
+ "02813606-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 23823,
+ "created": "2011-01-15T19:29:23.000Z",
+ "lastUpdated": "2024-12-09T11:36:08.203Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "batterie",
+ "hasLocution": true,
+ "plural": "batteries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "07204699-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 23827,
+ "created": "2011-01-15T19:36:18.000Z",
+ "lastUpdated": "2021-07-21T15:25:33.553Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bénédiction",
+ "hasLocution": true,
+ "plural": "bénédictions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "biology"
+ ],
+ "synsets": [
+ "01351171-n"
+ ],
+ "tags": [
+ "biology"
+ ],
+ "_id": 23787,
+ "created": "2011-01-12T20:31:56.000Z",
+ "lastUpdated": "2021-07-21T15:22:21.829Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bactérie",
+ "hasLocution": false,
+ "plural": "bactéries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "02787241-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 23806,
+ "created": "2011-01-15T18:49:38.000Z",
+ "lastUpdated": "2021-07-21T15:23:14.966Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écharpe",
+ "hasLocution": true,
+ "plural": "écharpes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "01045725-n",
+ "07204071-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 23828,
+ "created": "2011-01-15T19:36:46.000Z",
+ "lastUpdated": "2021-07-21T15:25:50.926Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bénédiction",
+ "hasLocution": true,
+ "plural": "bénédictions"
+ },
+ {
+ "type": 2,
+ "keyword": "bénédiction pontificale",
+ "hasLocution": false,
+ "plural": "bénédictions pontificales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "christianity"
+ ],
+ "synsets": [
+ "06443410-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "christianity"
+ ],
+ "_id": 23833,
+ "created": "2011-01-15T19:47:28.000Z",
+ "lastUpdated": "2021-03-26T03:15:16.842Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Bible",
+ "hasLocution": true,
+ "plural": "bibles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "library science"
+ ],
+ "synsets": [
+ "03666235-n",
+ "01544805-s"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "library science"
+ ],
+ "_id": 23837,
+ "created": "2011-01-15T19:52:21.000Z",
+ "lastUpdated": "2021-07-21T15:26:13.875Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bibliothèque adaptée",
+ "hasLocution": true,
+ "plural": "bibliothèques adaptées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07741352-n",
+ "12580787-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 23847,
+ "created": "2011-01-15T20:04:44.000Z",
+ "lastUpdated": "2021-07-21T15:26:30.786Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "petits pois",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "petit pois",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "muscular system"
+ ],
+ "synsets": [
+ "05586870-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "muscular system"
+ ],
+ "_id": 23841,
+ "created": "2011-01-15T19:58:24.000Z",
+ "lastUpdated": "2021-07-21T16:27:16.892Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "biceps",
+ "hasLocution": false,
+ "plural": "biceps"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07730735-n",
+ "11897272-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 23853,
+ "created": "2011-01-15T20:11:59.000Z",
+ "lastUpdated": "2021-07-21T15:26:56.279Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brocoli",
+ "hasLocution": true,
+ "plural": "brocolis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "buddhism"
+ ],
+ "synsets": [
+ "09555346-n"
+ ],
+ "tags": [
+ "religion",
+ "buddhism"
+ ],
+ "_id": 23857,
+ "created": "2011-01-15T20:21:37.000Z",
+ "lastUpdated": "2021-07-21T15:27:00.801Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Bouddha",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sea and oceans"
+ ],
+ "synsets": [
+ "09256622-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean"
+ ],
+ "_id": 23859,
+ "created": "2011-01-15T20:24:28.000Z",
+ "lastUpdated": "2021-07-21T16:27:21.780Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cap",
+ "hasLocution": false,
+ "plural": "caps"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "reptile",
+ "oviparous",
+ "river animal",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01701075-n",
+ "01701681-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "reptile",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 23863,
+ "created": "2011-01-15T20:30:33.000Z",
+ "lastUpdated": "2021-07-21T15:27:30.968Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caïman",
+ "hasLocution": true,
+ "plural": "caïmans"
+ },
+ {
+ "keyword": "alligator",
+ "hasLocution": false,
+ "plural": "alligators"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "03921556-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 23867,
+ "created": "2011-01-17T18:16:00.000Z",
+ "lastUpdated": "2021-07-21T15:27:58.698Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caisse de flamenco",
+ "hasLocution": false,
+ "plural": "caisses de flamenco"
+ },
+ {
+ "keyword": "cajon",
+ "hasLocution": false,
+ "plural": "cajons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sea and oceans",
+ "landform",
+ "beach",
+ "summer"
+ ],
+ "synsets": [
+ "09280667-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean",
+ "leisure",
+ "outdoor activity",
+ "beach",
+ "summer"
+ ],
+ "_id": 23871,
+ "created": "2011-01-17T18:25:09.000Z",
+ "lastUpdated": "2024-12-10T06:26:41.829Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crique",
+ "hasLocution": false,
+ "plural": "criques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "trade"
+ ],
+ "synsets": [
+ "04129919-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 23849,
+ "created": "2011-01-15T20:08:03.000Z",
+ "lastUpdated": "2024-12-09T11:43:33.685Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sac",
+ "hasLocution": true,
+ "plural": "sacs"
+ },
+ {
+ "type": 2,
+ "keyword": "sac en papier",
+ "hasLocution": true,
+ "plural": "sacs en papier"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03612969-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 23875,
+ "created": "2011-01-17T18:30:08.000Z",
+ "lastUpdated": "2021-07-21T15:28:14.479Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kaléidoscope",
+ "hasLocution": false,
+ "plural": "kaléidoscopes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04476749-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 23891,
+ "created": "2011-01-17T18:56:31.000Z",
+ "lastUpdated": "2021-07-21T15:28:45.541Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trampoline",
+ "hasLocution": true,
+ "plural": "trampolines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "scenic art"
+ ],
+ "synsets": [
+ "03242834-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "scenic art"
+ ],
+ "_id": 23893,
+ "created": "2011-01-17T19:28:00.000Z",
+ "lastUpdated": "2021-07-21T15:29:08.607Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "loge",
+ "hasLocution": false,
+ "plural": "loges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument",
+ "musical art"
+ ],
+ "synsets": [
+ "03488313-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 23897,
+ "created": "2011-01-17T19:43:22.000Z",
+ "lastUpdated": "2024-12-10T06:32:16.553Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cloches",
+ "hasLocution": true
+ },
+ {
+ "keyword": "clochettes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04476749-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 23887,
+ "created": "2011-01-17T18:40:37.000Z",
+ "lastUpdated": "2021-07-21T15:29:23.692Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trampoline",
+ "hasLocution": true,
+ "plural": "trampoline"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "judaism"
+ ],
+ "synsets": [
+ "03751646-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "judaism"
+ ],
+ "_id": 23901,
+ "created": "2011-01-17T19:51:56.000Z",
+ "lastUpdated": "2021-07-21T15:29:49.492Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ménorah",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item"
+ ],
+ "synsets": [
+ "02951254-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item"
+ ],
+ "_id": 23905,
+ "created": "2011-01-17T19:58:53.000Z",
+ "lastUpdated": "2021-07-21T15:29:57.010Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "candélabre",
+ "hasLocution": true,
+ "plural": "candélabres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "11980331-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable",
+ "plant",
+ "hervaceouos plant"
+ ],
+ "_id": 23913,
+ "created": "2011-01-17T20:24:17.000Z",
+ "lastUpdated": "2021-09-08T10:56:56.561Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cardon",
+ "hasLocution": false,
+ "plural": "cardons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious person",
+ "christianity",
+ "religious event"
+ ],
+ "synsets": [
+ "09913595-n"
+ ],
+ "tags": [
+ "religion",
+ "person",
+ "christianity",
+ "event",
+ "religious event"
+ ],
+ "_id": 23909,
+ "created": "2011-01-17T20:05:53.000Z",
+ "lastUpdated": "2024-12-10T06:35:22.541Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cardinal",
+ "hasLocution": true,
+ "plural": "cardinaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "sport material"
+ ],
+ "synsets": [
+ "04276932-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 23879,
+ "created": "2011-01-17T18:32:52.000Z",
+ "lastUpdated": "2021-07-21T15:28:25.195Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guêtres",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "christianity",
+ "religion"
+ ],
+ "synsets": [
+ "03006552-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "christianity"
+ ],
+ "_id": 23884,
+ "created": "2011-01-17T18:38:13.000Z",
+ "lastUpdated": "2024-12-11T17:36:29.447Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "calice",
+ "hasLocution": false,
+ "plural": "calices"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "food"
+ ],
+ "synsets": [
+ "07746009-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 23915,
+ "created": "2011-01-17T20:25:15.000Z",
+ "lastUpdated": "2024-12-10T06:35:45.672Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cardon",
+ "hasLocution": false,
+ "plural": "cardons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traffic"
+ ],
+ "synsets": [
+ "01845021-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic"
+ ],
+ "_id": 23929,
+ "created": "2011-01-17T20:42:06.000Z",
+ "lastUpdated": "2021-07-21T15:31:37.681Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "circuler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "christianity"
+ ],
+ "synsets": [
+ "02951508-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "christianity"
+ ],
+ "_id": 23931,
+ "created": "2011-01-17T20:44:46.000Z",
+ "lastUpdated": "2021-07-21T15:31:45.019Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cierge",
+ "hasLocution": false,
+ "plural": "cierges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 23937,
+ "created": "2011-01-18T12:54:05.000Z",
+ "lastUpdated": "2021-09-08T10:58:44.420Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "claves",
+ "hasLocution": false,
+ "plural": "claves"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07927917-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 23941,
+ "created": "2011-01-18T12:57:11.000Z",
+ "lastUpdated": "2021-07-21T15:33:19.814Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cocktail",
+ "hasLocution": true,
+ "plural": "cocktails"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "psychomotor equipment",
+ "sport"
+ ],
+ "synsets": [
+ "00311492-n"
+ ],
+ "tags": [
+ "psychomotor equipment",
+ "sport"
+ ],
+ "_id": 23925,
+ "created": "2011-01-17T20:35:20.000Z",
+ "lastUpdated": "2024-12-05T15:19:53.537Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parcours",
+ "hasLocution": true,
+ "plural": "parcours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03066248-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 23945,
+ "created": "2011-01-19T17:40:32.000Z",
+ "lastUpdated": "2021-07-21T15:33:33.358Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "shaker",
+ "hasLocution": false,
+ "plural": "shakers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07730966-n",
+ "11896901-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 23949,
+ "created": "2011-01-19T17:46:47.000Z",
+ "lastUpdated": "2021-07-21T15:33:50.778Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chou de Bruxelles",
+ "hasLocution": false,
+ "plural": "choux de Bruxelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07730848-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 23953,
+ "created": "2011-01-19T17:50:33.000Z",
+ "lastUpdated": "2021-07-21T15:34:04.061Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chou-fleur",
+ "hasLocution": true,
+ "plural": "choux-fleurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "rome"
+ ],
+ "synsets": [
+ "02707808-n",
+ "05850817-n",
+ "08824749-n",
+ "01822040-s"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "history",
+ "civilization",
+ "Rome"
+ ],
+ "_id": 23957,
+ "created": "2011-01-19T17:57:17.000Z",
+ "lastUpdated": "2021-07-21T15:34:28.279Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Colisée de Rome",
+ "hasLocution": false
+ },
+ {
+ "keyword": "amphithéâtre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "amphithéâtres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "05973672-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 23935,
+ "created": "2011-01-18T11:07:20.000Z",
+ "lastUpdated": "2021-07-21T15:31:49.796Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "interculturalité",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "03594978-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 23921,
+ "created": "2011-01-17T20:30:03.000Z",
+ "lastUpdated": "2021-07-21T15:31:20.171Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blouson",
+ "hasLocution": true,
+ "plural": "blousons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system",
+ "nervous system"
+ ],
+ "synsets": [
+ "05595824-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system",
+ "nervous system"
+ ],
+ "_id": 23959,
+ "created": "2011-01-19T17:59:43.000Z",
+ "lastUpdated": "2021-07-21T15:34:42.214Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "colonne vertébrale",
+ "hasLocution": false,
+ "plural": "colonnes vertébrales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "islamism"
+ ],
+ "synsets": [
+ "06473279-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "islamism"
+ ],
+ "_id": 23973,
+ "created": "2011-01-19T18:15:09.000Z",
+ "lastUpdated": "2021-03-26T03:15:36.138Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Coran",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "01041339-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 23969,
+ "created": "2011-01-19T18:11:29.000Z",
+ "lastUpdated": "2021-07-21T15:35:59.044Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "confession",
+ "hasLocution": true,
+ "plural": "confessions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "09426609-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 23975,
+ "created": "2011-01-19T18:18:36.000Z",
+ "lastUpdated": "2021-07-21T15:36:09.711Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaîne de montagne",
+ "hasLocution": true,
+ "plural": "chaînes de montagne"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "03328156-n",
+ "03020391-n",
+ "03913346-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 23979,
+ "created": "2011-01-19T18:33:27.000Z",
+ "lastUpdated": "2021-07-21T15:36:56.675Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "basse-cour",
+ "hasLocution": false,
+ "plural": "basses-cours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "03071216-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 23983,
+ "created": "2011-01-19T18:39:21.000Z",
+ "lastUpdated": "2021-07-21T15:37:27.525Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "burin",
+ "hasLocution": false,
+ "plural": "burins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07686476-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 23987,
+ "created": "2011-01-19T18:44:29.000Z",
+ "lastUpdated": "2021-07-30T05:45:10.234Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cortezas",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "plant physiology"
+ ],
+ "synsets": [
+ "00231983-v",
+ "01743695-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "plant",
+ "plant physiology"
+ ],
+ "_id": 23991,
+ "created": "2011-01-19T18:48:52.000Z",
+ "lastUpdated": "2021-07-21T15:37:54.680Z",
+ "keywords": [
+ {
+ "keyword": "pousser",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "grandir",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure"
+ ],
+ "synsets": [
+ "03950948-n",
+ "03952601-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure"
+ ],
+ "_id": 23963,
+ "created": "2011-01-19T18:04:34.000Z",
+ "lastUpdated": "2021-07-21T15:35:23.784Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conduite",
+ "hasLocution": false,
+ "plural": "conduites"
+ },
+ {
+ "keyword": "tuyau",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tuyaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool"
+ ],
+ "synsets": [
+ "02628315-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool"
+ ],
+ "_id": 23967,
+ "created": "2011-01-19T18:07:30.000Z",
+ "lastUpdated": "2021-07-21T15:35:48.837Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "connecter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "09697405-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 23993,
+ "created": "2011-01-19T18:51:35.000Z",
+ "lastUpdated": "2021-07-21T15:38:02.704Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chrétien",
+ "hasLocution": true,
+ "plural": "chrétiens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "muscular system"
+ ],
+ "synsets": [
+ "05302318-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "muscular system"
+ ],
+ "_id": 23997,
+ "created": "2011-01-19T18:56:03.000Z",
+ "lastUpdated": "2021-07-21T15:38:13.149Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quadriceps",
+ "hasLocution": false,
+ "plural": "quadriceps"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01092041-n",
+ "02267835-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 24010,
+ "created": "2011-01-20T18:37:26.000Z",
+ "lastUpdated": "2021-07-21T15:39:37.471Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "donner l'aumône",
+ "hasLocution": false
+ },
+ {
+ "keyword": "faire la charité",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "09559169-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 24013,
+ "created": "2011-01-20T18:43:41.000Z",
+ "lastUpdated": "2021-07-21T15:39:42.178Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Dieu",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery"
+ ],
+ "synsets": [
+ "02884182-n",
+ "02884435-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home"
+ ],
+ "_id": 24005,
+ "created": "2011-01-19T19:08:43.000Z",
+ "lastUpdated": "2021-07-21T15:38:59.291Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bol",
+ "hasLocution": true,
+ "plural": "bols"
+ },
+ {
+ "keyword": "jatte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jattes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pollution"
+ ],
+ "synsets": [
+ "14821139-n"
+ ],
+ "tags": [
+ "environmental science",
+ "pollution"
+ ],
+ "_id": 24015,
+ "created": "2011-01-20T18:53:38.000Z",
+ "lastUpdated": "2021-07-21T15:40:03.505Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dioxyde de carbone",
+ "hasLocution": false,
+ "plural": "dioxydes de carbone"
+ },
+ {
+ "keyword": "CO2",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "texture"
+ ],
+ "synsets": [
+ "00846685-a"
+ ],
+ "tags": [
+ "texture"
+ ],
+ "_id": 24017,
+ "created": "2011-01-20T19:00:12.000Z",
+ "lastUpdated": "2021-07-21T15:40:10.938Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "élastique",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01347791-v",
+ "01876870-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 24021,
+ "created": "2011-01-20T19:03:31.000Z",
+ "lastUpdated": "2021-07-21T16:27:29.778Z",
+ "keywords": [
+ {
+ "keyword": "fermer la porte",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01347791-v",
+ "01876870-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 24022,
+ "created": "2011-01-20T19:04:02.000Z",
+ "lastUpdated": "2021-07-21T15:40:49.969Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fermer la porte",
+ "hasLocution": false
+ },
+ {
+ "keyword": "fermer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01092041-n",
+ "02267835-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 24009,
+ "created": "2011-01-20T18:36:58.000Z",
+ "lastUpdated": "2021-07-21T15:39:23.369Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "donner l'aumône",
+ "hasLocution": false
+ },
+ {
+ "keyword": "faire la charité",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "03122896-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 24025,
+ "created": "2011-01-20T19:07:24.000Z",
+ "lastUpdated": "2021-07-21T15:40:59.587Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plan de travail",
+ "hasLocution": true,
+ "plural": "plans de travail"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system"
+ ],
+ "synsets": [
+ "05601231-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system"
+ ],
+ "_id": 24001,
+ "created": "2011-01-19T19:04:33.000Z",
+ "lastUpdated": "2021-07-21T15:38:34.850Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cubitus",
+ "hasLocution": false,
+ "plural": "cubitus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "09560892-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 24029,
+ "created": "2011-01-20T19:12:21.000Z",
+ "lastUpdated": "2021-09-03T17:14:23.176Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saint Esprit",
+ "hasLocution": false
+ },
+ {
+ "keyword": "Saint-Esprit",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01548893-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 24036,
+ "created": "2011-01-20T19:17:51.000Z",
+ "lastUpdated": "2021-07-21T15:42:38.286Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "être debout",
+ "hasLocution": false
+ },
+ {
+ "keyword": "se tenir debout",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "christianity"
+ ],
+ "synsets": [
+ "06802268-n",
+ "06465519-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "christianity"
+ ],
+ "_id": 24039,
+ "created": "2011-01-20T19:20:57.000Z",
+ "lastUpdated": "2021-07-21T15:43:11.564Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Évangile",
+ "hasLocution": false
+ },
+ {
+ "keyword": "évangile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "évangiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01548893-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 24035,
+ "created": "2011-01-20T19:17:26.000Z",
+ "lastUpdated": "2021-07-21T15:42:24.097Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "être debout",
+ "hasLocution": false
+ },
+ {
+ "keyword": "se tenir debout",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system"
+ ],
+ "synsets": [
+ "05286083-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system"
+ ],
+ "_id": 24041,
+ "created": "2011-01-20T19:22:57.000Z",
+ "lastUpdated": "2021-07-21T15:43:18.419Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "phalanges",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system"
+ ],
+ "synsets": [
+ "05581526-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system"
+ ],
+ "_id": 24045,
+ "created": "2011-01-20T19:26:14.000Z",
+ "lastUpdated": "2021-07-21T15:43:26.343Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fémur",
+ "hasLocution": false,
+ "plural": "fémurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of time",
+ "conjunction"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time",
+ "conjunction"
+ ],
+ "_id": 24053,
+ "created": "2011-01-21T20:44:12.000Z",
+ "lastUpdated": "2024-10-20T05:49:45.431Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "quand",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "texture"
+ ],
+ "synsets": [
+ "01025680-a"
+ ],
+ "tags": [
+ "texture"
+ ],
+ "_id": 24055,
+ "created": "2011-01-22T16:13:14.000Z",
+ "lastUpdated": "2021-07-21T15:43:39.112Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "flexible",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "02100772-v",
+ "00813037-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 24031,
+ "created": "2011-01-20T19:15:02.000Z",
+ "lastUpdated": "2021-07-21T15:41:48.207Z",
+ "keywords": [
+ {
+ "keyword": "esquiver",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "éviter",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "regional dance",
+ "scenic art",
+ "musical art"
+ ],
+ "synsets": [
+ "07069441-n"
+ ],
+ "tags": [
+ "scenic art",
+ "dance",
+ "regional dance",
+ "show",
+ "music"
+ ],
+ "_id": 24049,
+ "created": "2011-01-20T20:33:13.000Z",
+ "lastUpdated": "2024-12-12T07:15:51.148Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "flamenco",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "02100772-v",
+ "00813037-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 24032,
+ "created": "2011-01-20T19:15:30.000Z",
+ "lastUpdated": "2021-07-21T15:42:05.309Z",
+ "keywords": [
+ {
+ "keyword": "esquiver",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "éviter",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "object"
+ ],
+ "synsets": [
+ "00712660-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "object"
+ ],
+ "_id": 24061,
+ "created": "2011-01-22T16:24:00.000Z",
+ "lastUpdated": "2021-07-21T15:43:42.849Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fragile",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "fashion"
+ ],
+ "synsets": [
+ "03443787-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 24065,
+ "created": "2011-01-22T16:26:50.000Z",
+ "lastUpdated": "2024-12-09T18:36:04.170Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étui à lunettes",
+ "hasLocution": true,
+ "plural": "étuis à lunettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "muscular system",
+ "human body"
+ ],
+ "synsets": [
+ "05582264-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "muscular system"
+ ],
+ "_id": 24069,
+ "created": "2011-01-22T16:31:48.000Z",
+ "lastUpdated": "2024-12-12T07:22:29.147Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jumeaux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "geology",
+ "physical geography"
+ ],
+ "synsets": [
+ "09362716-n"
+ ],
+ "tags": [
+ "geology",
+ "geography",
+ "physical geography"
+ ],
+ "_id": 24073,
+ "created": "2011-01-22T16:36:31.000Z",
+ "lastUpdated": "2021-07-27T01:36:58.165Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "géosphère",
+ "hasLocution": false
+ },
+ {
+ "keyword": "lithosphère",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "muscular system"
+ ],
+ "synsets": [
+ "05577760-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "muscular system"
+ ],
+ "_id": 24075,
+ "created": "2011-01-22T16:38:16.000Z",
+ "lastUpdated": "2021-07-21T15:44:25.241Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fessier",
+ "hasLocution": false,
+ "plural": "fessiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sea and oceans"
+ ],
+ "synsets": [
+ "09319027-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean"
+ ],
+ "_id": 24079,
+ "created": "2011-01-22T16:41:27.000Z",
+ "lastUpdated": "2021-07-21T15:44:32.099Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "golfe",
+ "hasLocution": true,
+ "plural": "golfes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "musical artist",
+ "professional artist",
+ "string instrument"
+ ],
+ "synsets": [
+ "10171280-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "music",
+ "visual art",
+ "musical instrument",
+ "string instrument"
+ ],
+ "_id": 24091,
+ "created": "2011-01-22T16:53:22.000Z",
+ "lastUpdated": "2021-07-21T16:29:05.306Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guitariste",
+ "hasLocution": false,
+ "plural": "guitariste"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "musical artist",
+ "professional artist",
+ "string instrument"
+ ],
+ "synsets": [
+ "10171280-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "music",
+ "visual art",
+ "musical instrument",
+ "string instrument"
+ ],
+ "_id": 24095,
+ "created": "2011-01-22T16:55:51.000Z",
+ "lastUpdated": "2021-07-21T16:29:14.386Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guitariste",
+ "hasLocution": false,
+ "plural": "guitaristes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "12596828-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 24099,
+ "created": "2011-01-22T17:05:21.000Z",
+ "lastUpdated": "2021-07-21T16:29:35.209Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fève",
+ "hasLocution": false,
+ "plural": "fèves"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "environmental science",
+ "physical geography"
+ ],
+ "synsets": [
+ "09330808-n"
+ ],
+ "tags": [
+ "environmental science",
+ "geography",
+ "physical geography"
+ ],
+ "_id": 24103,
+ "created": "2011-01-22T17:10:11.000Z",
+ "lastUpdated": "2021-07-21T16:29:39.523Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hydrosphère",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "christianity"
+ ],
+ "synsets": [
+ "07702798-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "christianity"
+ ],
+ "_id": 24105,
+ "created": "2011-01-22T17:13:17.000Z",
+ "lastUpdated": "2021-07-21T16:29:50.744Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hostie",
+ "hasLocution": false,
+ "plural": "hosties"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "01238728-v",
+ "01154862-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 24083,
+ "created": "2011-01-22T16:45:41.000Z",
+ "lastUpdated": "2021-07-21T16:28:05.471Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "toucher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "frapper",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system"
+ ],
+ "synsets": [
+ "05600936-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system"
+ ],
+ "_id": 24109,
+ "created": "2011-01-22T17:15:55.000Z",
+ "lastUpdated": "2021-07-22T07:01:08.756Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "humérus",
+ "hasLocution": false,
+ "plural": "humérus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious person",
+ "islamism",
+ "religion"
+ ],
+ "synsets": [
+ "10218870-n"
+ ],
+ "tags": [
+ "religion",
+ "person",
+ "islamism"
+ ],
+ "_id": 24113,
+ "created": "2011-01-22T17:20:10.000Z",
+ "lastUpdated": "2024-12-09T18:38:16.378Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "imam",
+ "hasLocution": true,
+ "plural": "imams"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology",
+ "verb"
+ ],
+ "synsets": [
+ "00059956-v"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 24117,
+ "created": "2011-01-22T17:23:23.000Z",
+ "lastUpdated": "2021-07-21T16:30:07.792Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couver",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "01238728-v",
+ "01154862-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 24084,
+ "created": "2011-01-22T16:46:14.000Z",
+ "lastUpdated": "2021-07-30T00:28:19.384Z",
+ "keywords": [
+ {
+ "keyword": "toucher",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "type": 3,
+ "keyword": "frapper",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cookery"
+ ],
+ "synsets": [
+ "07825072-n"
+ ],
+ "tags": [
+ "feeding",
+ "cookery"
+ ],
+ "_id": 24119,
+ "created": "2011-01-22T17:26:39.000Z",
+ "lastUpdated": "2021-07-21T16:30:11.021Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ingrédients",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "09339360-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 24127,
+ "created": "2011-01-22T17:43:05.000Z",
+ "lastUpdated": "2021-07-21T16:30:28.623Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "île",
+ "hasLocution": true,
+ "plural": "îles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "baking",
+ "christmas"
+ ],
+ "synsets": [
+ "07615354-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 24087,
+ "created": "2011-01-22T16:48:59.000Z",
+ "lastUpdated": "2021-07-30T05:44:30.852Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nougatine",
+ "hasLocution": false,
+ "plural": "nougatines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "09342510-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 24131,
+ "created": "2011-01-22T17:47:13.000Z",
+ "lastUpdated": "2021-07-21T16:30:38.448Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "isthme",
+ "hasLocution": false,
+ "plural": "isthmes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00456623-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 24137,
+ "created": "2011-01-22T17:56:59.000Z",
+ "lastUpdated": "2021-07-21T16:30:43.163Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ballon prisonnier",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "historical character",
+ "christianity",
+ "easter week"
+ ],
+ "synsets": [
+ "11103646-n",
+ "03140183-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "historical character",
+ "history",
+ "christianity",
+ "event",
+ "popular event",
+ "easter week"
+ ],
+ "_id": 24135,
+ "created": "2011-01-22T17:52:12.000Z",
+ "lastUpdated": "2021-03-26T03:05:39.193Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Jésus",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Christ",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Jésus-Christ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "10087775-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 24121,
+ "created": "2011-01-22T17:35:05.000Z",
+ "lastUpdated": "2021-07-30T08:28:36.628Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "inspecteur des ponts et chaussées",
+ "hasLocution": false,
+ "plural": "inspecteurs des ponts et chaussées"
+ },
+ {
+ "type": 2,
+ "keyword": "inspecteur",
+ "hasLocution": false,
+ "plural": "inspecteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "joint system"
+ ],
+ "synsets": [
+ "03670269-n",
+ "05302880-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "joint system"
+ ],
+ "_id": 24149,
+ "created": "2011-01-22T19:29:47.000Z",
+ "lastUpdated": "2021-07-21T16:32:19.891Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ligament",
+ "hasLocution": false,
+ "plural": "ligaments"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "city"
+ ],
+ "synsets": [
+ "09048984-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "city"
+ ],
+ "_id": 24153,
+ "created": "2011-01-22T19:32:18.000Z",
+ "lastUpdated": "2021-07-21T16:32:23.570Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Malaga",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform"
+ ],
+ "synsets": [
+ "09466357-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform"
+ ],
+ "_id": 24154,
+ "created": "2011-01-22T19:39:34.000Z",
+ "lastUpdated": "2021-07-21T16:32:32.444Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "source",
+ "hasLocution": true,
+ "plural": "sources"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "islamism"
+ ],
+ "synsets": [
+ "10987439-n",
+ "02709445-n"
+ ],
+ "tags": [
+ "religion",
+ "islamism"
+ ],
+ "_id": 24158,
+ "created": "2011-01-22T19:45:21.000Z",
+ "lastUpdated": "2021-07-21T16:32:45.123Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Hamsa",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Main de Fatima",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document",
+ "geography",
+ "mountain"
+ ],
+ "synsets": [
+ "03725654-n"
+ ],
+ "tags": [
+ "document",
+ "information document",
+ "geography",
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 24161,
+ "created": "2011-01-22T20:17:22.000Z",
+ "lastUpdated": "2021-07-21T16:32:59.042Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carte",
+ "hasLocution": true,
+ "plural": "cartes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "03730361-n",
+ "08270371-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 24165,
+ "created": "2011-01-22T20:20:45.000Z",
+ "lastUpdated": "2021-07-21T16:33:03.556Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masques",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03642932-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 24146,
+ "created": "2011-01-22T19:06:10.000Z",
+ "lastUpdated": "2021-07-27T00:07:49.252Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "lancette pour glycémie",
+ "plural": "lancettes pour glycémie"
+ },
+ {
+ "keyword": "lancette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "lancettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "judaism",
+ "accessories"
+ ],
+ "synsets": [
+ "04619383-n"
+ ],
+ "tags": [
+ "religion",
+ "judaism",
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 24139,
+ "created": "2011-01-22T17:59:54.000Z",
+ "lastUpdated": "2021-07-21T16:30:53.542Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kippa",
+ "hasLocution": false,
+ "plural": "kippas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "05417989-n",
+ "01201851-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 24125,
+ "created": "2011-01-22T17:40:04.000Z",
+ "lastUpdated": "2021-07-21T16:30:21.565Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "injecter de l'insuline",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04107063-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 24169,
+ "created": "2011-01-22T20:23:35.000Z",
+ "lastUpdated": "2021-07-21T16:33:27.184Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rocking-chair",
+ "hasLocution": true,
+ "plural": "rocking-chairs"
+ },
+ {
+ "keyword": "fauteuil à bascule",
+ "hasLocution": false,
+ "plural": "fauteuils à bascule",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "07303524-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 24181,
+ "created": "2011-01-22T20:41:02.000Z",
+ "lastUpdated": "2021-07-21T16:35:46.553Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "miracle",
+ "hasLocution": false,
+ "plural": "miracles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "14908271-n",
+ "03758568-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 24173,
+ "created": "2011-01-22T20:32:02.000Z",
+ "lastUpdated": "2021-07-21T16:35:26.506Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "testeur de glycémie",
+ "hasLocution": false,
+ "plural": "testeurs de glycémie"
+ },
+ {
+ "keyword": "glucomètre",
+ "hasLocution": false,
+ "plural": "glucomètres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious building",
+ "islamism",
+ "architectural element"
+ ],
+ "synsets": [
+ "03773280-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "religion",
+ "islamism",
+ "architecture",
+ "architectural element"
+ ],
+ "_id": 24185,
+ "created": "2011-01-22T20:46:02.000Z",
+ "lastUpdated": "2021-07-21T16:35:53.876Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "minaret",
+ "hasLocution": false,
+ "plural": "minarets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "01037885-n",
+ "01034072-n",
+ "01044274-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "religious event",
+ "christianity"
+ ],
+ "_id": 24189,
+ "created": "2011-01-22T20:52:46.000Z",
+ "lastUpdated": "2021-07-21T16:36:02.332Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "messe",
+ "hasLocution": false,
+ "plural": "messes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "historical character",
+ "christianity",
+ "judaism"
+ ],
+ "synsets": [
+ "11213382-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "historical character",
+ "history",
+ "christianity",
+ "judaism"
+ ],
+ "_id": 24194,
+ "created": "2011-01-22T20:57:42.000Z",
+ "lastUpdated": "2021-03-26T03:13:02.207Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Moïse",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "muscular system"
+ ],
+ "synsets": [
+ "05469392-n"
+ ],
+ "tags": [
+ "human body",
+ "physiology",
+ "human physiology",
+ "muscular system"
+ ],
+ "_id": 24196,
+ "created": "2011-01-22T20:59:38.000Z",
+ "lastUpdated": "2021-07-21T16:36:06.786Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "muscles",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious person",
+ "christianity"
+ ],
+ "synsets": [
+ "09824574-n",
+ "09876606-n"
+ ],
+ "tags": [
+ "religion",
+ "person",
+ "christianity"
+ ],
+ "_id": 24200,
+ "created": "2011-01-22T21:08:13.000Z",
+ "lastUpdated": "2021-03-26T03:16:45.540Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "évêque",
+ "hasLocution": true,
+ "plural": "évêques"
+ },
+ {
+ "keyword": "archevêque",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "archevêques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "historical character",
+ "christianity",
+ "judaism"
+ ],
+ "synsets": [
+ "11228421-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "historical character",
+ "history",
+ "christianity",
+ "judaism"
+ ],
+ "_id": 24198,
+ "created": "2011-01-22T21:05:24.000Z",
+ "lastUpdated": "2021-03-26T03:12:54.582Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Noé",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02531751-v",
+ "02103517-v",
+ "02242867-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 24208,
+ "created": "2011-01-22T21:16:03.000Z",
+ "lastUpdated": "2021-07-21T16:37:04.375Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "obtenir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "attraper",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "atteindre",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05305022-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 24214,
+ "created": "2011-01-22T21:23:31.000Z",
+ "lastUpdated": "2024-12-07T13:42:08.705Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "organe",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "organes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "raw material"
+ ],
+ "synsets": [
+ "00434829-a"
+ ],
+ "tags": [
+ "material",
+ "raw material"
+ ],
+ "_id": 24210,
+ "created": "2011-01-22T21:18:58.000Z",
+ "lastUpdated": "2021-07-21T16:37:10.366Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "opaque",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious building",
+ "islamism",
+ "core vocabulary-place",
+ "core vocabulary-religion"
+ ],
+ "synsets": [
+ "03793728-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "religion",
+ "islamism",
+ "core vocabulary"
+ ],
+ "_id": 24177,
+ "created": "2011-01-22T20:37:18.000Z",
+ "lastUpdated": "2021-07-21T16:35:35.697Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mosquée",
+ "hasLocution": true,
+ "plural": "mosquées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "construction",
+ "worksite",
+ "workplace"
+ ],
+ "synsets": [
+ "08694360-n",
+ "01106542-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "construction",
+ "workplace",
+ "place"
+ ],
+ "_id": 24204,
+ "created": "2011-01-22T21:10:41.000Z",
+ "lastUpdated": "2021-07-22T07:01:16.488Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chantier",
+ "hasLocution": false,
+ "plural": "chantiers"
+ },
+ {
+ "keyword": "site de construction",
+ "hasLocution": false,
+ "plural": "sites de construction",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "14672278-n",
+ "04538393-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 24216,
+ "created": "2011-01-22T21:46:29.000Z",
+ "lastUpdated": "2021-07-21T16:37:24.878Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oxygène",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bouteille d'oxygène",
+ "hasLocution": false,
+ "plural": "bouteilles d'oxygène"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance"
+ ],
+ "synsets": [
+ "03664618-n"
+ ],
+ "tags": [
+ "object",
+ "appliance"
+ ],
+ "_id": 24218,
+ "created": "2011-01-22T21:49:31.000Z",
+ "lastUpdated": "2021-07-21T16:37:34.008Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "levier",
+ "hasLocution": false,
+ "plural": "leviers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious person",
+ "christianity",
+ "leader"
+ ],
+ "synsets": [
+ "10473089-n"
+ ],
+ "tags": [
+ "religion",
+ "person",
+ "christianity",
+ "leader"
+ ],
+ "_id": 24234,
+ "created": "2011-01-24T11:15:10.000Z",
+ "lastUpdated": "2021-03-26T03:10:19.539Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pape",
+ "hasLocution": false,
+ "plural": "Papes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "04496264-n",
+ "03599921-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 24222,
+ "created": "2011-01-24T11:03:31.000Z",
+ "lastUpdated": "2021-07-21T16:37:45.979Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pantalon",
+ "hasLocution": true,
+ "plural": "pantalons"
+ },
+ {
+ "type": 2,
+ "keyword": "jean",
+ "hasLocution": true,
+ "plural": "jeans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "04248522-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 24230,
+ "created": "2011-01-24T11:10:24.000Z",
+ "lastUpdated": "2021-03-26T15:05:31.328Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pantoufles",
+ "hasLocution": true,
+ "plural": "pantoufles"
+ },
+ {
+ "keyword": "chaussons",
+ "hasLocution": false,
+ "plural": "chaussons",
+ "type": 2
+ },
+ {
+ "keyword": "mules",
+ "hasLocution": false,
+ "plural": "mules",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02131321-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 24226,
+ "created": "2011-01-24T11:06:46.000Z",
+ "lastUpdated": "2021-07-21T16:37:57.098Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "panthère",
+ "hasLocution": true,
+ "plural": "panthères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational equipment"
+ ],
+ "synsets": [
+ "04562986-n"
+ ],
+ "tags": [
+ "education",
+ "educational equipment"
+ ],
+ "_id": 24236,
+ "created": "2011-01-24T12:12:22.000Z",
+ "lastUpdated": "2021-07-21T16:38:13.627Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poubelle",
+ "hasLocution": true,
+ "plural": "poubelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "christianity"
+ ],
+ "synsets": [
+ "02726538-a",
+ "03211629-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "christianity"
+ ],
+ "_id": 24242,
+ "created": "2011-01-24T12:49:19.000Z",
+ "lastUpdated": "2021-03-26T03:17:00.394Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patène",
+ "hasLocution": false,
+ "plural": "patènes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "09409315-n"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 24240,
+ "created": "2011-01-24T12:21:12.000Z",
+ "lastUpdated": "2021-07-21T16:38:17.717Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "particules",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "muscular system"
+ ],
+ "synsets": [
+ "05559344-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "muscular system"
+ ],
+ "_id": 24246,
+ "created": "2011-01-24T12:52:31.000Z",
+ "lastUpdated": "2021-07-22T07:01:44.208Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pectoraux",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03911028-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 24250,
+ "created": "2011-01-24T12:58:23.000Z",
+ "lastUpdated": "2021-07-21T16:38:37.268Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éplucheur",
+ "hasLocution": true,
+ "plural": "éplucheurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01092746-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 24254,
+ "created": "2011-01-24T13:06:49.000Z",
+ "lastUpdated": "2021-07-21T16:39:12.408Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se battre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se quereller",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "05261857-n",
+ "05262259-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 24256,
+ "created": "2011-01-24T13:09:03.000Z",
+ "lastUpdated": "2021-07-21T16:39:36.798Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poil",
+ "hasLocution": true,
+ "plural": "poils"
+ },
+ {
+ "keyword": "poil d'animal",
+ "hasLocution": false,
+ "plural": "poils d'animal",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07783823-n",
+ "02950393-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 24264,
+ "created": "2011-01-24T17:12:28.000Z",
+ "lastUpdated": "2021-07-21T16:39:53.069Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poires au sirop",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system"
+ ],
+ "synsets": [
+ "05604406-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system"
+ ],
+ "_id": 24260,
+ "created": "2011-01-24T13:27:40.000Z",
+ "lastUpdated": "2021-07-21T16:39:46.337Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pelvis",
+ "hasLocution": false,
+ "plural": "pelvis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "workwear"
+ ],
+ "synsets": [
+ "03868628-n"
+ ],
+ "tags": [
+ "work",
+ "clothes",
+ "workwear"
+ ],
+ "_id": 24276,
+ "created": "2011-01-24T17:24:32.000Z",
+ "lastUpdated": "2021-07-21T16:40:31.800Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salopette",
+ "hasLocution": false,
+ "plural": "salopettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "05777059-n"
+ ],
+ "tags": [],
+ "_id": 24272,
+ "created": "2011-01-24T17:18:32.000Z",
+ "lastUpdated": "2021-07-21T16:40:12.884Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cauchemar",
+ "hasLocution": true,
+ "plural": "cauchemars"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "02813606-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 24282,
+ "created": "2011-01-24T17:31:02.000Z",
+ "lastUpdated": "2024-12-08T15:37:33.432Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pile",
+ "hasLocution": true,
+ "plural": "piles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "03757676-n",
+ "04161401-n",
+ "04160812-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 24280,
+ "created": "2011-01-24T17:28:07.000Z",
+ "lastUpdated": "2021-07-21T16:40:35.793Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vis",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "pièces",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "verb"
+ ],
+ "synsets": [
+ "01277535-v",
+ "01443420-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 24286,
+ "created": "2011-01-24T17:34:16.000Z",
+ "lastUpdated": "2024-10-22T11:28:19.880Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "piquer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "piquer le doigt",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07769251-n",
+ "02950393-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 24288,
+ "created": "2011-01-24T17:38:01.000Z",
+ "lastUpdated": "2021-07-21T16:41:16.301Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ananas au sirop",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "02159184-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 24292,
+ "created": "2011-01-24T17:43:50.000Z",
+ "lastUpdated": "2021-07-21T16:41:27.669Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pince",
+ "hasLocution": true,
+ "plural": "pinces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system"
+ ],
+ "synsets": [
+ "05601956-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system"
+ ],
+ "_id": 24268,
+ "created": "2011-01-24T17:15:42.000Z",
+ "lastUpdated": "2021-07-21T16:40:05.474Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "péroné",
+ "hasLocution": false,
+ "plural": "péronés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document",
+ "tourism"
+ ],
+ "synsets": [
+ "03725654-n"
+ ],
+ "tags": [
+ "document",
+ "information document",
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 24296,
+ "created": "2011-01-24T17:48:29.000Z",
+ "lastUpdated": "2021-07-21T16:41:35.670Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plan",
+ "hasLocution": true,
+ "plural": "plans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "14864016-n"
+ ],
+ "tags": [],
+ "_id": 24312,
+ "created": "2011-01-24T18:18:31.000Z",
+ "lastUpdated": "2021-07-21T16:44:10.456Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poussière",
+ "hasLocution": false,
+ "plural": "poussières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "03987092-n"
+ ],
+ "tags": [],
+ "_id": 24314,
+ "created": "2011-01-24T18:49:48.000Z",
+ "lastUpdated": "2021-07-21T16:44:17.226Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pompons",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "fashion"
+ ],
+ "synsets": [
+ "03985324-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 24308,
+ "created": "2011-01-24T18:12:02.000Z",
+ "lastUpdated": "2024-12-08T07:34:48.228Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "polo",
+ "hasLocution": true,
+ "plural": "polos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03987232-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 24316,
+ "created": "2011-01-24T18:53:32.000Z",
+ "lastUpdated": "2021-07-21T16:44:24.382Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poncho",
+ "hasLocution": false,
+ "plural": "ponchos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "04379066-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 24324,
+ "created": "2011-01-24T19:09:45.000Z",
+ "lastUpdated": "2021-07-21T16:44:55.773Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "porte battante",
+ "hasLocution": false,
+ "plural": "portes battantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "computing"
+ ],
+ "synsets": [
+ "06578068-n",
+ "06581154-n"
+ ],
+ "tags": [
+ "computing"
+ ],
+ "_id": 24320,
+ "created": "2011-01-24T18:59:18.000Z",
+ "lastUpdated": "2021-07-21T16:44:39.244Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "programme",
+ "hasLocution": true,
+ "plural": "programmes"
+ },
+ {
+ "type": 2,
+ "keyword": "software",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "04379066-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 24325,
+ "created": "2011-01-24T19:10:17.000Z",
+ "lastUpdated": "2021-07-21T16:45:11.832Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "porte battante",
+ "hasLocution": false,
+ "plural": "portes battantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "03226423-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 24332,
+ "created": "2011-01-24T19:18:41.000Z",
+ "lastUpdated": "2021-07-21T16:45:26.257Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "porte oscillo-battante",
+ "hasLocution": false,
+ "plural": "portes oscillo-battantes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "recycling"
+ ],
+ "synsets": [
+ "04185729-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "environmental science",
+ "recycling"
+ ],
+ "_id": 24300,
+ "created": "2011-01-24T17:51:51.000Z",
+ "lastUpdated": "2021-07-21T16:42:24.037Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "station d'épuration",
+ "hasLocution": false,
+ "plural": "stations d'épuration"
+ },
+ {
+ "type": 2,
+ "keyword": "filtrage",
+ "hasLocution": false,
+ "plural": "filtrages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure"
+ ],
+ "synsets": [
+ "04571076-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure"
+ ],
+ "_id": 24304,
+ "created": "2011-01-24T17:59:23.000Z",
+ "lastUpdated": "2021-07-22T07:01:48.031Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "traitement des eaux",
+ "hasLocution": false,
+ "plural": "traitements des eaux"
+ },
+ {
+ "keyword": "potabilisateur",
+ "hasLocution": false,
+ "plural": "potabilisateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system",
+ "human body"
+ ],
+ "synsets": [
+ "05601073-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system"
+ ],
+ "_id": 24336,
+ "created": "2011-01-25T11:33:54.000Z",
+ "lastUpdated": "2024-12-08T07:09:35.587Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "radius",
+ "hasLocution": true,
+ "plural": "radius"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "mass media",
+ "mass media device"
+ ],
+ "synsets": [
+ "03050906-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "communication",
+ "mass media",
+ "mass media device"
+ ],
+ "_id": 24340,
+ "created": "2011-01-25T11:40:11.000Z",
+ "lastUpdated": "2021-07-21T16:45:42.009Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "radio réveil",
+ "hasLocution": true,
+ "plural": "radio réveils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container"
+ ],
+ "synsets": [
+ "03099154-n"
+ ],
+ "tags": [
+ "object",
+ "container"
+ ],
+ "_id": 24344,
+ "created": "2011-01-25T13:03:04.000Z",
+ "lastUpdated": "2021-07-21T16:45:52.929Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "récipient",
+ "hasLocution": true,
+ "plural": "récipients"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "movement"
+ ],
+ "synsets": [
+ "01916152-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement"
+ ],
+ "_id": 24348,
+ "created": "2011-01-25T13:06:27.000Z",
+ "lastUpdated": "2021-07-21T16:46:03.350Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "parcourir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sweets"
+ ],
+ "synsets": [
+ "07622970-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 24351,
+ "created": "2011-01-25T13:12:01.000Z",
+ "lastUpdated": "2021-07-21T16:46:12.994Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "réglisse",
+ "hasLocution": false,
+ "plural": "réglisses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "agriculture"
+ ],
+ "synsets": [
+ "00228662-v",
+ "01375347-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 24354,
+ "created": "2011-01-25T13:14:28.000Z",
+ "lastUpdated": "2021-07-21T16:46:24.790Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "arroser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "publication",
+ "mass media",
+ "core vocabulary-object",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "03709749-n",
+ "06607555-n"
+ ],
+ "tags": [
+ "object",
+ "publication",
+ "communication",
+ "mass media",
+ "core vocabulary"
+ ],
+ "_id": 24364,
+ "created": "2011-01-25T13:40:47.000Z",
+ "lastUpdated": "2021-07-21T16:47:08.452Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "revue",
+ "hasLocution": true,
+ "plural": "revues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "00761989-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 24368,
+ "created": "2011-01-25T13:50:51.000Z",
+ "lastUpdated": "2021-07-21T16:47:13.069Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "00761989-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 24369,
+ "created": "2011-01-25T13:51:12.000Z",
+ "lastUpdated": "2021-07-21T16:47:15.799Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "08692301-n",
+ "05071710-n",
+ "06132052-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 24360,
+ "created": "2011-01-25T13:22:34.000Z",
+ "lastUpdated": "2021-07-21T16:46:44.402Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "relief",
+ "hasLocution": false,
+ "plural": "reliefs"
+ },
+ {
+ "keyword": "topographie",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "islamism"
+ ],
+ "synsets": [
+ "00761989-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "islamism"
+ ],
+ "_id": 24372,
+ "created": "2011-01-30T13:38:55.000Z",
+ "lastUpdated": "2021-07-21T16:47:18.121Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "christianity"
+ ],
+ "synsets": [
+ "04116429-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "christianity"
+ ],
+ "_id": 24374,
+ "created": "2011-01-30T13:43:39.000Z",
+ "lastUpdated": "2021-03-26T03:17:41.898Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rosaire",
+ "hasLocution": true,
+ "plural": "rosaires"
+ },
+ {
+ "keyword": "chapelet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chapelet"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious place",
+ "christianity"
+ ],
+ "synsets": [
+ "01037885-n",
+ "04385738-n"
+ ],
+ "tags": [
+ "religion",
+ "place",
+ "christianity"
+ ],
+ "_id": 24378,
+ "created": "2011-01-30T16:17:40.000Z",
+ "lastUpdated": "2021-03-26T03:18:20.675Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "tabernacle",
+ "plural": "tabernacles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "00228662-v",
+ "01375347-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 24355,
+ "created": "2011-01-25T13:15:08.000Z",
+ "lastUpdated": "2021-07-21T16:46:29.320Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "arroser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sea and oceans"
+ ],
+ "synsets": [
+ "00464942-a",
+ "05071710-n",
+ "06132052-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean"
+ ],
+ "_id": 24362,
+ "created": "2011-01-25T13:25:39.000Z",
+ "lastUpdated": "2021-07-21T16:46:58.604Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "relief côtier",
+ "hasLocution": false,
+ "plural": "reliefs côtiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity"
+ ],
+ "synsets": [
+ "10566407-n",
+ "10566702-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity"
+ ],
+ "_id": 24392,
+ "created": "2011-01-30T16:55:26.000Z",
+ "lastUpdated": "2021-03-26T03:19:18.888Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saint",
+ "hasLocution": true,
+ "plural": "saints"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "political representation",
+ "public administration"
+ ],
+ "synsets": [
+ "08328212-n",
+ "02860924-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "public administration"
+ ],
+ "_id": 24382,
+ "created": "2011-01-30T16:24:56.000Z",
+ "lastUpdated": "2021-07-21T16:47:49.168Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mairie",
+ "hasLocution": true,
+ "plural": "mairies"
+ },
+ {
+ "type": 2,
+ "keyword": "salle du conseil",
+ "hasLocution": false,
+ "plural": "salles du conseil"
+ },
+ {
+ "keyword": "conseil municipal",
+ "hasLocution": false,
+ "plural": "conseils municipaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical artist",
+ "professional artist",
+ "wind instrument"
+ ],
+ "synsets": [
+ "10573671-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "music",
+ "visual art",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 24396,
+ "created": "2011-01-30T17:01:07.000Z",
+ "lastUpdated": "2021-07-21T16:48:01.838Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saxophoniste",
+ "hasLocution": false,
+ "plural": "saxophonistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "hinduism"
+ ],
+ "synsets": [
+ "09551861-n"
+ ],
+ "tags": [
+ "religion",
+ "hinduism"
+ ],
+ "_id": 24400,
+ "created": "2011-01-30T17:09:01.000Z",
+ "lastUpdated": "2021-07-21T16:48:05.455Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Shiva",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14203226-n",
+ "01339359-n",
+ "14151264-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 24402,
+ "created": "2011-01-30T17:16:11.000Z",
+ "lastUpdated": "2021-07-21T16:48:09.299Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sida",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "VIH",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "09426609-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 24404,
+ "created": "2011-01-30T17:25:10.000Z",
+ "lastUpdated": "2024-12-07T15:43:35.083Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "montagne",
+ "hasLocution": true,
+ "plural": "montagnes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity"
+ ],
+ "synsets": [
+ "10566702-n",
+ "10566407-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity"
+ ],
+ "_id": 24388,
+ "created": "2011-01-30T16:42:50.000Z",
+ "lastUpdated": "2021-07-21T16:47:53.807Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sainte",
+ "hasLocution": true,
+ "plural": "saintes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious building",
+ "judaism",
+ "core vocabulary-place",
+ "core vocabulary-religion"
+ ],
+ "synsets": [
+ "04381822-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "religion",
+ "judaism",
+ "core vocabulary"
+ ],
+ "_id": 24408,
+ "created": "2011-01-30T17:31:33.000Z",
+ "lastUpdated": "2021-07-21T16:48:30.341Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "synagogue",
+ "hasLocution": true,
+ "plural": "synagogues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "construction"
+ ],
+ "synsets": [
+ "10793333-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 24412,
+ "created": "2011-01-30T17:35:21.000Z",
+ "lastUpdated": "2021-07-21T16:48:37.540Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "soudeur",
+ "hasLocution": true,
+ "plural": "soudeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03529313-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 24416,
+ "created": "2011-01-30T17:42:41.000Z",
+ "lastUpdated": "2021-07-21T16:48:53.234Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crosse de hockey",
+ "hasLocution": false,
+ "plural": "crosses de hockey"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "04029643-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 24420,
+ "created": "2011-01-30T17:50:20.000Z",
+ "lastUpdated": "2021-07-21T16:49:08.992Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "perforatrice",
+ "hasLocution": false,
+ "plural": "perforatrices"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity"
+ ],
+ "synsets": [
+ "11105914-n",
+ "11107349-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity"
+ ],
+ "_id": 24386,
+ "created": "2011-01-30T16:30:37.000Z",
+ "lastUpdated": "2021-03-26T03:19:45.908Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saint Jean",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Jean-Baptiste",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "musical artist",
+ "professional artist",
+ "keyboard instrument"
+ ],
+ "synsets": [
+ "10249553-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "music",
+ "visual art",
+ "musical instrument",
+ "keyboard instrument"
+ ],
+ "_id": 24424,
+ "created": "2011-01-30T17:54:11.000Z",
+ "lastUpdated": "2021-07-21T16:49:46.514Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "claviériste",
+ "hasLocution": false,
+ "plural": "claviéristes"
+ },
+ {
+ "keyword": "clavier",
+ "type": 2,
+ "plural": "claviers",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "raw material"
+ ],
+ "synsets": [
+ "00434341-s",
+ "00433489-s"
+ ],
+ "tags": [
+ "material",
+ "raw material"
+ ],
+ "_id": 24440,
+ "created": "2011-01-30T21:31:01.000Z",
+ "lastUpdated": "2021-07-21T16:50:37.246Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "transparent",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "07456502-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 24448,
+ "created": "2011-01-30T21:39:08.000Z",
+ "lastUpdated": "2021-07-21T16:51:50.183Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "révolution",
+ "hasLocution": true,
+ "plural": "révolutions"
+ },
+ {
+ "type": 2,
+ "keyword": "mouvement de translation",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system"
+ ],
+ "synsets": [
+ "05602122-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system"
+ ],
+ "_id": 24436,
+ "created": "2011-01-30T21:24:12.000Z",
+ "lastUpdated": "2021-07-21T16:50:32.932Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tibia",
+ "hasLocution": false,
+ "plural": "tibias"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "muscular system"
+ ],
+ "synsets": [
+ "05587235-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "muscular system"
+ ],
+ "_id": 24450,
+ "created": "2011-01-30T21:41:54.000Z",
+ "lastUpdated": "2021-07-21T16:51:57.470Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "triceps",
+ "hasLocution": false,
+ "plural": "triceps"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "telecommunication",
+ "mass media"
+ ],
+ "synsets": [
+ "10717560-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "telecommunication",
+ "communication",
+ "mass media"
+ ],
+ "_id": 24428,
+ "created": "2011-01-30T18:03:52.000Z",
+ "lastUpdated": "2021-07-21T16:50:18.836Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "téléopérateur",
+ "hasLocution": false,
+ "plural": "téléopérateurs"
+ },
+ {
+ "keyword": "téléphoniste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "téléphonistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02406392-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic"
+ ],
+ "_id": 24455,
+ "created": "2011-01-30T21:46:24.000Z",
+ "lastUpdated": "2021-07-21T16:52:07.075Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vachette",
+ "hasLocution": false,
+ "plural": "vachettes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease",
+ "biology",
+ "covid-19"
+ ],
+ "synsets": [
+ "01331343-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease",
+ "biology",
+ "covid-19"
+ ],
+ "_id": 24459,
+ "created": "2011-01-30T21:50:50.000Z",
+ "lastUpdated": "2021-07-21T16:52:13.955Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "virus",
+ "hasLocution": false,
+ "plural": "virus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "judaism"
+ ],
+ "synsets": [
+ "06420085-n"
+ ],
+ "tags": [
+ "religion",
+ "judaism"
+ ],
+ "_id": 24463,
+ "created": "2011-01-30T21:58:04.000Z",
+ "lastUpdated": "2021-07-21T16:52:22.550Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Torah",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction",
+ "residential building"
+ ],
+ "synsets": [
+ "04594951-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "home"
+ ],
+ "_id": 24465,
+ "created": "2011-01-31T09:16:42.000Z",
+ "lastUpdated": "2021-07-21T16:52:43.605Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fenêtre",
+ "hasLocution": true,
+ "plural": "fenêtre"
+ },
+ {
+ "type": 2,
+ "keyword": "fenêtre oscillo-battante",
+ "hasLocution": false,
+ "plural": "fenêtres oscillo-battantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "joint system"
+ ],
+ "synsets": [
+ "05303752-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "joint system"
+ ],
+ "_id": 24432,
+ "created": "2011-01-30T18:14:54.000Z",
+ "lastUpdated": "2021-07-21T16:50:25.679Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tendon",
+ "hasLocution": false,
+ "plural": "tendons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00730776-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 24469,
+ "created": "2011-01-31T09:24:20.000Z",
+ "lastUpdated": "2021-07-21T16:52:50.367Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cours de langues",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07945759-n",
+ "07945591-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "core vocabulary"
+ ],
+ "_id": 24479,
+ "created": "2011-01-31T20:38:34.000Z",
+ "lastUpdated": "2021-07-21T16:53:02.032Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "café",
+ "hasLocution": true,
+ "plural": "cafés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07936589-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 24483,
+ "created": "2011-01-31T20:50:53.000Z",
+ "lastUpdated": "2021-07-21T16:53:16.651Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "capuccino",
+ "hasLocution": false,
+ "plural": "cappucinos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 24478,
+ "created": "2011-01-31T17:38:22.000Z",
+ "lastUpdated": "2021-07-21T16:52:57.224Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Fuerteventura",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07936027-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 24487,
+ "created": "2011-01-31T20:56:47.000Z",
+ "lastUpdated": "2021-07-21T16:53:30.844Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "café décaféiné",
+ "hasLocution": false,
+ "plural": "cafés décaféinés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07937112-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 24491,
+ "created": "2011-01-31T21:06:17.000Z",
+ "lastUpdated": "2021-07-21T16:53:43.341Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "café moka",
+ "hasLocution": false,
+ "plural": "cafés mokas"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "15033893-n",
+ "07897775-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 24495,
+ "created": "2011-01-31T21:27:37.000Z",
+ "lastUpdated": "2021-07-21T16:54:02.005Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "eau fraiche",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system",
+ "beverage"
+ ],
+ "synsets": [
+ "15033414-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 24497,
+ "created": "2011-01-31T21:29:20.000Z",
+ "lastUpdated": "2021-07-21T16:54:05.334Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "eau non potable",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system",
+ "beverage"
+ ],
+ "synsets": [
+ "15033893-n",
+ "07897775-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 24499,
+ "created": "2011-01-31T21:30:31.000Z",
+ "lastUpdated": "2021-07-21T16:54:11.765Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "eau potable",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00889560-n",
+ "05955536-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 24471,
+ "created": "2011-01-31T09:26:25.000Z",
+ "lastUpdated": "2021-03-26T03:14:31.199Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "religion",
+ "hasLocution": true,
+ "plural": "religion"
+ },
+ {
+ "type": 2,
+ "keyword": "cours de religion",
+ "hasLocution": false,
+ "plural": "cours de religion"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain province"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain province"
+ ],
+ "_id": 24477,
+ "created": "2011-01-31T17:29:04.000Z",
+ "lastUpdated": "2021-07-21T16:52:53.857Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Grande Canarie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "industrial building",
+ "core vocabulary-place"
+ ],
+ "synsets": [
+ "08074934-n",
+ "03321351-n",
+ "00925258-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "industry",
+ "core vocabulary"
+ ],
+ "_id": 24507,
+ "created": "2011-01-31T21:50:50.000Z",
+ "lastUpdated": "2021-07-21T16:54:36.395Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entreprise",
+ "hasLocution": true,
+ "plural": "entreprises"
+ },
+ {
+ "type": 2,
+ "keyword": "usine",
+ "hasLocution": true,
+ "plural": "usines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "music device"
+ ],
+ "synsets": [
+ "02991759-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "music device"
+ ],
+ "_id": 24509,
+ "created": "2011-02-01T10:22:52.000Z",
+ "lastUpdated": "2021-07-21T16:54:54.225Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lecteur de CD",
+ "hasLocution": false,
+ "plural": "lecteurs de CD"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "08494318-n",
+ "10757517-n",
+ "00867880-a"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 24505,
+ "created": "2011-01-31T21:46:16.000Z",
+ "lastUpdated": "2021-07-21T16:54:22.050Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chômeurs",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system",
+ "beverage"
+ ],
+ "synsets": [
+ "15033414-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 24501,
+ "created": "2011-01-31T21:32:30.000Z",
+ "lastUpdated": "2021-07-21T16:54:14.327Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "eau salée",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "eau de mer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic needs"
+ ],
+ "synsets": [
+ "15299060-n"
+ ],
+ "tags": [
+ "person",
+ "basic needs"
+ ],
+ "_id": 24503,
+ "created": "2011-01-31T21:35:45.000Z",
+ "lastUpdated": "2021-07-21T16:54:19.202Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "repos",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "special education",
+ "education"
+ ],
+ "synsets": [
+ "07962874-n",
+ "01022875-s"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "education",
+ "special education"
+ ],
+ "_id": 24513,
+ "created": "2011-02-01T10:29:46.000Z",
+ "lastUpdated": "2024-12-12T06:58:37.666Z",
+ "keywords": [
+ {
+ "keyword": "personnes handicapées",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "personnes en situation de handicap",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "handicap",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "handicaps"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "07986853-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 24515,
+ "created": "2011-02-01T10:32:31.000Z",
+ "lastUpdated": "2021-07-21T16:56:17.594Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille",
+ "hasLocution": true,
+ "plural": "familles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "07986853-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 24519,
+ "created": "2011-02-01T10:35:51.000Z",
+ "lastUpdated": "2021-07-21T16:56:42.008Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille monoparentale",
+ "hasLocution": true,
+ "plural": "familles monoparentales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "07986853-n",
+ "09791871-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 24517,
+ "created": "2011-02-01T10:34:03.000Z",
+ "lastUpdated": "2021-07-21T16:56:29.217Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille adoptive",
+ "hasLocution": true,
+ "plural": "familles adoptives"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "07986853-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 24521,
+ "created": "2011-02-01T10:37:16.000Z",
+ "lastUpdated": "2021-07-21T16:56:50.441Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille monoparentale",
+ "hasLocution": true,
+ "plural": "familles monoparentales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "07986853-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 24523,
+ "created": "2011-02-01T10:39:49.000Z",
+ "lastUpdated": "2021-07-26T09:47:01.821Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille",
+ "hasLocution": true,
+ "plural": "familles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "03215838-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 24530,
+ "created": "2011-02-01T10:49:43.000Z",
+ "lastUpdated": "2021-07-21T16:58:09.749Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "affichage",
+ "hasLocution": false,
+ "plural": "affichages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "03215838-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 24531,
+ "created": "2011-02-01T10:50:19.000Z",
+ "lastUpdated": "2021-07-22T07:02:08.653Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "affichage",
+ "hasLocution": false,
+ "plural": "affichages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "03215838-n",
+ "13772304-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 24529,
+ "created": "2011-02-01T10:49:09.000Z",
+ "lastUpdated": "2021-07-21T16:57:54.798Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "affichage",
+ "hasLocution": false,
+ "plural": "affichages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "00296959-v",
+ "13794246-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 24535,
+ "created": "2011-02-02T13:01:54.000Z",
+ "lastUpdated": "2021-07-22T07:02:18.297Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ajuster la dose",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spring",
+ "tree"
+ ],
+ "synsets": [
+ "13124818-n"
+ ],
+ "tags": [
+ "spring",
+ "plant",
+ "tree"
+ ],
+ "_id": 24537,
+ "created": "2011-02-02T13:09:03.000Z",
+ "lastUpdated": "2021-03-26T02:52:14.143Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arbre de printemps",
+ "hasLocution": false,
+ "plural": "arbres de printemps"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03847186-n",
+ "10530662-n",
+ "10225604-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24541,
+ "created": "2011-02-02T13:53:47.000Z",
+ "lastUpdated": "2021-07-22T07:02:22.704Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accueil du public",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "05417989-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 24543,
+ "created": "2011-02-02T18:06:32.000Z",
+ "lastUpdated": "2021-07-22T07:02:32.791Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "stylo à insuline",
+ "hasLocution": false,
+ "plural": "stylos à insuline"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "03733437-n",
+ "02835383-a"
+ ],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 24547,
+ "created": "2011-02-02T18:17:30.000Z",
+ "lastUpdated": "2021-07-22T07:02:43.000Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "matelas à vibration",
+ "hasLocution": false,
+ "plural": "matelas à vibration"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "07986853-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 24525,
+ "created": "2011-02-01T10:41:57.000Z",
+ "lastUpdated": "2021-07-21T16:57:14.654Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille",
+ "hasLocution": true,
+ "plural": "familles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "unit of time"
+ ],
+ "synsets": [
+ "00680466-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "time",
+ "unit of time"
+ ],
+ "_id": 24527,
+ "created": "2011-02-01T10:45:18.000Z",
+ "lastUpdated": "2021-08-02T22:12:56.430Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "donner du temps",
+ "hasLocution": false
+ },
+ {
+ "keyword": "laisser du temps",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "prendre le temps",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "03857551-n",
+ "11448137-n"
+ ],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 24559,
+ "created": "2011-02-02T18:41:39.000Z",
+ "lastUpdated": "2021-07-26T09:47:11.298Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fibre optique",
+ "hasLocution": false,
+ "plural": "fibres optiques"
+ },
+ {
+ "type": 2,
+ "keyword": "faisceau de lumière",
+ "hasLocution": false,
+ "plural": "faisceaux de lumière"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "03487335-n"
+ ],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 24563,
+ "created": "2011-02-02T18:48:58.000Z",
+ "lastUpdated": "2021-07-26T09:47:14.922Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "siège hamac ",
+ "hasLocution": false,
+ "plural": "sièges hamac "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07728127-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 24555,
+ "created": "2011-02-02T18:36:31.000Z",
+ "lastUpdated": "2021-07-22T07:03:16.885Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "biscuits apéritif",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "sachet de biscuits apéritif",
+ "hasLocution": false,
+ "plural": "sachets de biscuits apéritif"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "07455579-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 24571,
+ "created": "2011-02-02T19:03:44.000Z",
+ "lastUpdated": "2021-07-22T07:05:01.314Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rotation",
+ "hasLocution": false,
+ "plural": "rotations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "03968233-n"
+ ],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 24567,
+ "created": "2011-02-02T18:55:30.000Z",
+ "lastUpdated": "2021-07-22T07:04:52.108Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plateforme oscillante",
+ "hasLocution": true,
+ "plural": "plateformes oscillantes"
+ },
+ {
+ "type": 2,
+ "keyword": "plateforme suspendue",
+ "hasLocution": false,
+ "plural": "plateformes suspendues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "psychomotor equipment"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "psychomotor equipment"
+ ],
+ "_id": 24573,
+ "created": "2011-02-02T19:07:24.000Z",
+ "lastUpdated": "2022-09-12T10:58:48.153Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "roue de psychomotricité",
+ "hasLocution": false,
+ "plural": "roues de psychomotricité"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "02860924-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24577,
+ "created": "2011-02-02T19:50:17.000Z",
+ "lastUpdated": "2021-07-22T07:05:45.559Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle d'assemblée",
+ "hasLocution": false,
+ "plural": "salles d'assemblée"
+ },
+ {
+ "keyword": "salle de réunion",
+ "hasLocution": false,
+ "plural": "salles de réunion",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01930264-v",
+ "01918940-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 24551,
+ "created": "2011-02-02T18:30:41.000Z",
+ "lastUpdated": "2021-07-22T07:02:47.886Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "courir main dans la main",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01930264-v",
+ "01918940-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 24552,
+ "created": "2011-02-02T18:31:01.000Z",
+ "lastUpdated": "2021-07-26T09:47:07.181Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "courir main dans la main",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "physiotherapy equipment"
+ ],
+ "synsets": [
+ "04141091-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "health",
+ "medicine",
+ "medical equipment",
+ "physiotherapy equipment"
+ ],
+ "_id": 24581,
+ "created": "2011-02-02T19:54:32.000Z",
+ "lastUpdated": "2021-07-26T09:47:20.560Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sacs de sable",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product",
+ "beach"
+ ],
+ "synsets": [
+ "02809947-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 24583,
+ "created": "2011-02-02T19:58:12.000Z",
+ "lastUpdated": "2021-07-22T07:06:21.853Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaise de plage adaptée",
+ "hasLocution": false,
+ "plural": "chaises de plage adaptées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "adapted sport"
+ ],
+ "synsets": [
+ "04583288-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "adapted sport"
+ ],
+ "_id": 24587,
+ "created": "2011-02-02T20:04:45.000Z",
+ "lastUpdated": "2021-07-22T07:07:00.754Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fauteuil roulant de course",
+ "hasLocution": false,
+ "plural": "fauteuils roulants de course"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01348685-v",
+ "00220389-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 24597,
+ "created": "2011-02-02T20:26:02.000Z",
+ "lastUpdated": "2021-07-22T07:07:57.938Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir la porte",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01348685-v",
+ "01450719-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 24598,
+ "created": "2011-02-02T20:26:38.000Z",
+ "lastUpdated": "2021-07-22T07:08:23.757Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir la porte",
+ "hasLocution": false
+ },
+ {
+ "keyword": "déverrouiller la porte",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "election"
+ ],
+ "synsets": [
+ "00184354-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 24603,
+ "created": "2011-02-02T20:38:24.000Z",
+ "lastUpdated": "2021-07-22T07:08:44.626Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vote",
+ "hasLocution": true,
+ "plural": "votes"
+ },
+ {
+ "type": 2,
+ "keyword": "bulletin",
+ "hasLocution": false,
+ "plural": "bulletins"
+ },
+ {
+ "type": 2,
+ "keyword": "bulletin de vote",
+ "hasLocution": false,
+ "plural": "bulletins de vote"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chemistry"
+ ],
+ "synsets": [
+ "13793544-n"
+ ],
+ "tags": [
+ "chemistry"
+ ],
+ "_id": 24605,
+ "created": "2011-02-02T20:53:48.000Z",
+ "lastUpdated": "2021-07-22T07:08:57.266Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gouttes d'eau",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "goutttes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "04857572-n",
+ "04861835-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 24607,
+ "created": "2011-02-08T10:20:51.000Z",
+ "lastUpdated": "2021-07-22T07:09:30.421Z",
+ "keywords": [
+ {
+ "keyword": "vrai ou faux ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "bien ou mal ",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day"
+ ],
+ "synsets": [
+ "15161099-n",
+ "15194920-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "day"
+ ],
+ "_id": 24601,
+ "created": "2011-02-02T20:34:34.000Z",
+ "lastUpdated": "2021-03-25T21:51:17.547Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "semaine",
+ "hasLocution": true,
+ "plural": "semaines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "05830135-n",
+ "05750496-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 24595,
+ "created": "2011-02-02T20:16:04.000Z",
+ "lastUpdated": "2021-07-22T07:07:52.969Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prendre du sang",
+ "hasLocution": false
+ },
+ {
+ "keyword": "prélever du sang",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "04422392-n",
+ "14908271-n",
+ "05807220-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 24591,
+ "created": "2011-02-02T20:11:41.000Z",
+ "lastUpdated": "2021-07-22T07:07:30.289Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bande de mesure de glucose",
+ "hasLocution": false,
+ "plural": "bandes de mesure de glucose"
+ },
+ {
+ "type": 2,
+ "keyword": "bande réactive pour glucose",
+ "hasLocution": false,
+ "plural": "bandes réactives pour glucose"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "event",
+ "patient",
+ "covid-19"
+ ],
+ "synsets": [
+ "08401740-n",
+ "02375284-a"
+ ],
+ "tags": [
+ "event",
+ "health",
+ "medicine",
+ "person",
+ "patient",
+ "covid-19"
+ ],
+ "_id": 24609,
+ "created": "2011-02-08T10:27:02.000Z",
+ "lastUpdated": "2021-07-22T07:11:23.981Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rendez-vous planifié",
+ "hasLocution": false,
+ "plural": "rendez-vous planifiés"
+ },
+ {
+ "keyword": "prendre rendez-vous",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building"
+ ],
+ "synsets": [
+ "08302515-n",
+ "05765899-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place"
+ ],
+ "_id": 24615,
+ "created": "2011-02-08T10:45:19.000Z",
+ "lastUpdated": "2021-07-30T08:27:21.814Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier pour l'emploi",
+ "hasLocution": false,
+ "plural": "ateliers pour l'emploi"
+ },
+ {
+ "keyword": "atelier de reconversion",
+ "hasLocution": false,
+ "plural": "ateliers de reconversion",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational methodology"
+ ],
+ "synsets": [
+ "01654843-a",
+ "05993172-n"
+ ],
+ "tags": [
+ "education",
+ "methodology"
+ ],
+ "_id": 24617,
+ "created": "2011-02-08T10:55:25.000Z",
+ "lastUpdated": "2021-07-22T07:13:30.371Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "formation en ligne",
+ "hasLocution": false,
+ "plural": "formations en ligne"
+ },
+ {
+ "type": 2,
+ "keyword": "apprentissage distanciel",
+ "hasLocution": false,
+ "plural": "apprentissages distanciels"
+ },
+ {
+ "type": 2,
+ "keyword": "e-learning",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "10807146-n"
+ ],
+ "tags": [
+ "person",
+ "adult",
+ "core vocabulary"
+ ],
+ "_id": 24621,
+ "created": "2011-02-08T11:06:17.000Z",
+ "lastUpdated": "2021-07-22T07:13:56.879Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "femme",
+ "hasLocution": true,
+ "plural": "femmes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "communication system"
+ ],
+ "synsets": [
+ "06888747-n",
+ "10232171-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "communication",
+ "augmentative communication",
+ "communication system"
+ ],
+ "_id": 24619,
+ "created": "2011-02-08T11:02:48.000Z",
+ "lastUpdated": "2021-07-22T07:13:47.708Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "interprète",
+ "hasLocution": true,
+ "plural": "interprètes"
+ },
+ {
+ "type": 2,
+ "keyword": "interprète de langue des signes",
+ "hasLocution": false,
+ "plural": "interprètes de langue des signes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "11515038-n"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 24623,
+ "created": "2011-02-08T11:14:59.000Z",
+ "lastUpdated": "2021-07-22T07:14:02.640Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "précipitations",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03391266-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24625,
+ "created": "2011-02-08T16:43:42.000Z",
+ "lastUpdated": "2021-07-22T07:14:13.472Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de réunions",
+ "hasLocution": true,
+ "plural": "salles de réunions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "event",
+ "patient",
+ "covid-19"
+ ],
+ "synsets": [
+ "08401740-n",
+ "02375284-a"
+ ],
+ "tags": [
+ "event",
+ "health",
+ "medicine",
+ "person",
+ "patient",
+ "covid-19"
+ ],
+ "_id": 24610,
+ "created": "2011-02-08T10:27:37.000Z",
+ "lastUpdated": "2021-07-30T00:31:16.916Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rendez-vous prévu",
+ "hasLocution": false,
+ "plural": "rendez-vous prévus"
+ },
+ {
+ "keyword": "prendre rendez-vous",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rendez-vous préalable",
+ "hasLocution": false,
+ "plural": "rendez-vous préalables",
+ "type": 2
+ },
+ {
+ "keyword": "rendez-vous fixé",
+ "hasLocution": false,
+ "plural": "rendez-vous fixés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational organization"
+ ],
+ "synsets": [
+ "05765899-n"
+ ],
+ "tags": [
+ "education",
+ "organization"
+ ],
+ "_id": 24613,
+ "created": "2011-02-08T10:33:36.000Z",
+ "lastUpdated": "2021-07-22T07:12:26.810Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "formation professionnelle",
+ "hasLocution": false,
+ "plural": "formations professionnelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03697143-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24633,
+ "created": "2011-02-08T16:53:58.000Z",
+ "lastUpdated": "2021-07-22T07:16:47.427Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle d'attente",
+ "hasLocution": false,
+ "plural": "salles d'attente"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03697143-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24634,
+ "created": "2011-02-08T16:54:23.000Z",
+ "lastUpdated": "2021-07-22T07:17:31.047Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle d'attente",
+ "hasLocution": false,
+ "plural": "salles d'attente"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "signaling system",
+ "mass media"
+ ],
+ "synsets": [
+ "07210735-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system",
+ "mass media"
+ ],
+ "_id": 24627,
+ "created": "2011-02-08T16:47:44.000Z",
+ "lastUpdated": "2021-07-22T07:16:31.252Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle d'interviews",
+ "hasLocution": false,
+ "plural": "salles d'interviews"
+ },
+ {
+ "keyword": "salle d'entretiens",
+ "hasLocution": false,
+ "plural": "salles d'entretiens",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "08371279-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 24637,
+ "created": "2011-02-08T17:08:03.000Z",
+ "lastUpdated": "2021-07-30T01:34:48.924Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "pôle emploi",
+ "plural": "pôles emploi"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "agence de recrutement",
+ "plural": "agences de recrutement"
+ },
+ {
+ "keyword": "agence d'interim",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "agences d'interim"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03391266-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24629,
+ "created": "2011-02-08T16:48:42.000Z",
+ "lastUpdated": "2021-03-12T14:07:01.417Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle d'entretiens",
+ "hasLocution": false,
+ "plural": "salles d'entretiens"
+ },
+ {
+ "keyword": "salle de rendez-vous",
+ "hasLocution": false,
+ "plural": "salles de rendez-vous",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "08371279-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 24638,
+ "created": "2011-02-08T17:08:41.000Z",
+ "lastUpdated": "2021-07-22T07:19:37.096Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bureau pour l'emploi",
+ "hasLocution": false
+ },
+ {
+ "keyword": "pôle emploi",
+ "plural": "pôles emploi",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "agence intérimaire",
+ "plural": "agences intérimaires",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03847186-n",
+ "10530662-n",
+ "10225604-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24641,
+ "created": "2011-02-08T17:24:34.000Z",
+ "lastUpdated": "2021-07-22T07:20:29.690Z",
+ "keywords": [
+ {
+ "keyword": "service clients",
+ "hasLocution": false,
+ "plural": "services clients",
+ "type": 2
+ },
+ {
+ "keyword": "accueil du public",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "04610439-n",
+ "03490738-n",
+ "03042670-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24645,
+ "created": "2011-02-08T17:42:51.000Z",
+ "lastUpdated": "2021-07-22T07:22:00.867Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier",
+ "hasLocution": true,
+ "plural": "ateliers"
+ },
+ {
+ "keyword": "cours de travaux manuels",
+ "hasLocution": false,
+ "plural": "cours de travaux manuels",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system",
+ "mass media"
+ ],
+ "synsets": [
+ "07210735-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system",
+ "mass media"
+ ],
+ "_id": 24628,
+ "created": "2011-02-08T16:48:12.000Z",
+ "lastUpdated": "2021-07-22T07:16:02.182Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle d'interview",
+ "hasLocution": false,
+ "plural": "salles d'interviews"
+ },
+ {
+ "keyword": "salle d'entretiens",
+ "hasLocution": false,
+ "plural": "salles d'entretiens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03847186-n",
+ "10530662-n",
+ "10225604-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24642,
+ "created": "2011-02-08T17:25:27.000Z",
+ "lastUpdated": "2021-07-22T07:21:01.025Z",
+ "keywords": [
+ {
+ "keyword": "service clients",
+ "hasLocution": false,
+ "plural": "services clients",
+ "type": 2
+ },
+ {
+ "keyword": "accueil du public",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "01765887-s",
+ "03286056-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24653,
+ "created": "2011-02-08T19:07:59.000Z",
+ "lastUpdated": "2021-07-11T09:26:28.493Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "ne pas utiliser l'ascenseur en cas d'incendie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03685038-n",
+ "07593483-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24655,
+ "created": "2011-02-08T19:14:10.000Z",
+ "lastUpdated": "2021-07-22T07:24:15.074Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cafétéria",
+ "hasLocution": true,
+ "plural": "cafétérias"
+ },
+ {
+ "type": 2,
+ "keyword": "pause café",
+ "hasLocution": false
+ },
+ {
+ "keyword": "pause thé",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "salle de pause",
+ "hasLocution": false,
+ "plural": "salles de pause",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public administration",
+ "personal services"
+ ],
+ "synsets": [
+ "05157079-n",
+ "00578562-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "public administration",
+ "personal services"
+ ],
+ "_id": 24657,
+ "created": "2011-02-08T19:18:44.000Z",
+ "lastUpdated": "2021-07-26T09:47:50.193Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "service",
+ "hasLocution": true,
+ "plural": "services"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "09988375-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 24659,
+ "created": "2011-02-08T19:23:23.000Z",
+ "lastUpdated": "2021-07-22T07:24:38.415Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conseiller d'orientation professionnelle",
+ "hasLocution": false,
+ "plural": "conseillers d'orientation professionnelle"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "01765887-s",
+ "03286056-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24651,
+ "created": "2011-02-08T19:05:02.000Z",
+ "lastUpdated": "2021-07-11T09:27:16.603Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "interdit d'utiliser l'ascenseur",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "02506122-s",
+ "04112987-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24649,
+ "created": "2011-02-08T17:48:13.000Z",
+ "lastUpdated": "2021-07-22T07:23:12.969Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle polyvalente",
+ "hasLocution": true,
+ "plural": "salles polyvalentes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "09988375-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 24660,
+ "created": "2011-02-08T19:23:53.000Z",
+ "lastUpdated": "2021-07-22T07:25:02.178Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conseillère d'orientation professionnelle",
+ "hasLocution": false,
+ "plural": "conseillères d'orientation professionnelle"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "09988375-n",
+ "10074683-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 24661,
+ "created": "2011-02-08T19:24:53.000Z",
+ "lastUpdated": "2021-08-01T17:51:59.884Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "plural": "conseillers d'orientation professionnelle",
+ "keyword": "conseiller d'orientation professionnelle"
+ },
+ {
+ "keyword": "conseiller à l' emploi",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "conseillers à l' emploi"
+ },
+ {
+ "keyword": "conseiller pôle emploi",
+ "hasLocution": false,
+ "plural": "conseillers pôle emploi",
+ "type": 2
+ },
+ {
+ "keyword": "conseiller en insertion professionnelle ",
+ "hasLocution": false,
+ "plural": "conseillers en insertion professionnelle ",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "04112987-n",
+ "04610439-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24647,
+ "created": "2011-02-08T17:44:27.000Z",
+ "lastUpdated": "2021-07-27T00:02:31.447Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle d'atelier",
+ "hasLocution": false,
+ "plural": "salles d'atelier"
+ },
+ {
+ "type": 2,
+ "keyword": "salle d'activités",
+ "hasLocution": false,
+ "plural": "salles d'activités"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "personal services"
+ ],
+ "synsets": [
+ "00583232-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "personal services"
+ ],
+ "_id": 24666,
+ "created": "2011-02-08T19:42:47.000Z",
+ "lastUpdated": "2021-07-22T07:26:01.710Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "équipe d'intervention sociale",
+ "hasLocution": false,
+ "plural": "équipes d'intervention sociale"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adapted sport"
+ ],
+ "synsets": [
+ "01544805-s",
+ "00524569-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "adapted sport"
+ ],
+ "_id": 24671,
+ "created": "2011-02-08T19:49:23.000Z",
+ "lastUpdated": "2021-07-22T07:28:30.192Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sport adapté",
+ "hasLocution": false,
+ "plural": "sports adaptés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "signaling system",
+ "dance"
+ ],
+ "synsets": [
+ "08295743-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system",
+ "scenic art",
+ "dance",
+ "show"
+ ],
+ "_id": 24675,
+ "created": "2011-02-08T20:00:50.000Z",
+ "lastUpdated": "2021-07-27T00:01:52.975Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier de danse",
+ "hasLocution": false,
+ "plural": "atelier de danses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "10074683-n",
+ "07211065-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 24673,
+ "created": "2011-02-08T19:54:20.000Z",
+ "lastUpdated": "2021-07-30T08:29:32.193Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conseiller d'orientation professionnel",
+ "hasLocution": false,
+ "plural": "conseillers d'orientation professionnel"
+ },
+ {
+ "type": 2,
+ "keyword": "itinéraire personnalisé",
+ "hasLocution": false,
+ "plural": "itinéraires personnalisés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system",
+ "dance"
+ ],
+ "synsets": [
+ "08295743-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system",
+ "scenic art",
+ "dance",
+ "show"
+ ],
+ "_id": 24676,
+ "created": "2011-02-08T20:01:18.000Z",
+ "lastUpdated": "2021-07-27T00:01:46.451Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier de danse",
+ "hasLocution": false,
+ "plural": "ateliers de danse"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "therapy"
+ ],
+ "synsets": [
+ "05659244-n",
+ "05918515-n"
+ ],
+ "tags": [
+ "psychology",
+ "therapy"
+ ],
+ "_id": 24679,
+ "created": "2011-02-08T20:05:05.000Z",
+ "lastUpdated": "2021-07-27T00:01:38.511Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier de mémoire",
+ "hasLocution": false,
+ "plural": "ateliers de mémoire"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "therapy"
+ ],
+ "synsets": [
+ "05659244-n",
+ "05918515-n"
+ ],
+ "tags": [
+ "psychology",
+ "therapy"
+ ],
+ "_id": 24680,
+ "created": "2011-02-08T20:05:42.000Z",
+ "lastUpdated": "2021-07-27T00:20:42.539Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier de mémoire",
+ "hasLocution": false,
+ "plural": "ateliers de mémoire"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "08369775-n",
+ "00268366-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24685,
+ "created": "2011-02-08T20:14:47.000Z",
+ "lastUpdated": "2021-07-26T09:50:37.625Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maintenance",
+ "hasLocution": false,
+ "plural": "maintenances"
+ },
+ {
+ "keyword": "équipe de maintenance",
+ "hasLocution": false,
+ "plural": "équipe de maintenance",
+ "type": 2
+ },
+ {
+ "keyword": "personnel de maintenance",
+ "hasLocution": false,
+ "plural": "personnels de maintenance",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "special education"
+ ],
+ "synsets": [
+ "00583232-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education",
+ "special education"
+ ],
+ "_id": 24687,
+ "created": "2011-02-08T20:20:10.000Z",
+ "lastUpdated": "2021-08-07T05:54:39.155Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "formateur en inclusion",
+ "plural": "formateurs en inclusion"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "éducateur pour l'inclusion",
+ "plural": "éducateurs pour l'inclusion"
+ },
+ {
+ "keyword": "référent en inclusion",
+ "hasLocution": false,
+ "plural": "référents en inclusion",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "special education"
+ ],
+ "synsets": [
+ "00583232-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education",
+ "special education"
+ ],
+ "_id": 24688,
+ "created": "2011-02-08T20:20:36.000Z",
+ "lastUpdated": "2021-08-07T05:53:59.942Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "formateur en inclusion",
+ "plural": "formateurs en inclusion"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "éducateur pour l'inclusion",
+ "plural": "éducateurs pour l'inclusion"
+ },
+ {
+ "keyword": "référent en inclusion",
+ "hasLocution": false,
+ "plural": "référents en inclusion",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recycling",
+ "chemistry",
+ "signaling system"
+ ],
+ "synsets": [
+ "03635277-n",
+ "04569944-n"
+ ],
+ "tags": [
+ "environmental science",
+ "recycling",
+ "chemistry",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24691,
+ "created": "2011-02-08T20:34:55.000Z",
+ "lastUpdated": "2021-07-30T05:59:35.255Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "laboratoire danalyse de l'eau",
+ "hasLocution": false,
+ "plural": "laboratoires d'analyse de l'eau"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04558341-n",
+ "04126572-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24683,
+ "created": "2011-02-08T20:11:54.000Z",
+ "lastUpdated": "2021-07-30T01:30:14.690Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "réserve de centre de loisirs",
+ "plural": "réserves de centre de loisirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "personal services"
+ ],
+ "synsets": [
+ "00583232-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "personal services"
+ ],
+ "_id": 24667,
+ "created": "2011-02-08T19:43:19.000Z",
+ "lastUpdated": "2021-07-22T07:28:18.278Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "équipe d'intervention sociale",
+ "hasLocution": false,
+ "plural": "équipes d'intervention scoiale"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "sport modality"
+ ],
+ "synsets": [
+ "10742224-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 24693,
+ "created": "2011-02-08T20:38:24.000Z",
+ "lastUpdated": "2021-07-26T09:52:34.323Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entraineur",
+ "hasLocution": false,
+ "plural": "entraineurs"
+ },
+ {
+ "keyword": "coach",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "coachs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "sport modality"
+ ],
+ "synsets": [
+ "10742224-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 24694,
+ "created": "2011-02-08T20:39:05.000Z",
+ "lastUpdated": "2021-07-26T09:52:56.629Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entraineur",
+ "hasLocution": false,
+ "plural": "entraineurs"
+ },
+ {
+ "keyword": "coach",
+ "hasLocution": false,
+ "plural": "coachs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "sport modality"
+ ],
+ "synsets": [
+ "10742224-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 24695,
+ "created": "2011-02-08T20:39:59.000Z",
+ "lastUpdated": "2021-07-26T09:53:19.894Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entraineur",
+ "hasLocution": false,
+ "plural": "entraineurs"
+ },
+ {
+ "keyword": "coach",
+ "hasLocution": false,
+ "plural": "coachs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "02883958-a",
+ "10715747-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 24699,
+ "created": "2011-02-08T20:47:19.000Z",
+ "lastUpdated": "2021-08-01T17:44:57.000Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "animateur socio-éducatif",
+ "plural": "animateurs socio-éducatifs"
+ },
+ {
+ "keyword": "animateur socio-culturel",
+ "hasLocution": false,
+ "plural": "animateurs socio-culturels",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "personal services"
+ ],
+ "synsets": [
+ "00583232-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "personal services"
+ ],
+ "_id": 24665,
+ "created": "2011-02-08T19:42:14.000Z",
+ "lastUpdated": "2021-07-22T07:25:42.814Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "équipe d'intervention sociale",
+ "hasLocution": false,
+ "plural": "équipes d'intervention sociale"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "literature"
+ ],
+ "synsets": [
+ "03913116-n",
+ "06266354-n"
+ ],
+ "tags": [
+ "literature"
+ ],
+ "_id": 24703,
+ "created": "2011-02-08T20:57:16.000Z",
+ "lastUpdated": "2021-07-26T09:53:52.348Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "papier et stylo plume",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "communication aid"
+ ],
+ "synsets": [
+ "03082291-n",
+ "06578068-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 24707,
+ "created": "2011-02-09T13:21:16.000Z",
+ "lastUpdated": "2021-07-26T09:55:13.836Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tableau de communication",
+ "hasLocution": true,
+ "plural": "tableaux de communication"
+ },
+ {
+ "type": 2,
+ "keyword": "logiciel de communication",
+ "hasLocution": false,
+ "plural": "logiciels de communication"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "official document",
+ "court document"
+ ],
+ "synsets": [
+ "01025762-n"
+ ],
+ "tags": [
+ "document",
+ "public administration",
+ "justice"
+ ],
+ "_id": 24709,
+ "created": "2011-02-09T16:00:16.000Z",
+ "lastUpdated": "2021-07-26T09:55:31.108Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "démarches",
+ "hasLocution": false
+ },
+ {
+ "keyword": "procédure",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "procédures"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02174871-v",
+ "00078513-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 24711,
+ "created": "2011-02-09T16:05:12.000Z",
+ "lastUpdated": "2021-07-27T00:24:41.917Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bien traiter",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "prêter attention",
+ "hasLocution": false
+ },
+ {
+ "keyword": "être gentil",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "être attentif",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire attention",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bullying"
+ ],
+ "synsets": [
+ "00136799-v",
+ "00419038-n",
+ "02013215-v",
+ "00420921-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "bullying"
+ ],
+ "_id": 24713,
+ "created": "2011-02-09T16:08:31.000Z",
+ "lastUpdated": "2021-07-26T09:57:13.611Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mauvais traitement",
+ "hasLocution": false,
+ "plural": "mauvais traitements"
+ },
+ {
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bullying"
+ ],
+ "synsets": [
+ "02123706-v",
+ "00419038-n",
+ "00420921-n",
+ "00618547-v"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "bullying"
+ ],
+ "_id": 24715,
+ "created": "2011-02-09T16:10:58.000Z",
+ "lastUpdated": "2021-07-26T09:57:49.343Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mauvais traitement",
+ "hasLocution": false,
+ "plural": "mauvais traitements"
+ },
+ {
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bullying"
+ ],
+ "synsets": [
+ "00419038-n",
+ "00420921-n",
+ "04896195-n",
+ "00675685-v"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "bullying"
+ ],
+ "_id": 24717,
+ "created": "2011-02-09T16:35:10.000Z",
+ "lastUpdated": "2021-07-26T09:58:36.456Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mauvais traitement",
+ "hasLocution": false,
+ "plural": "mauvais traitements"
+ },
+ {
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances",
+ "type": 2
+ },
+ {
+ "keyword": "abus",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "abus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "03308910-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24705,
+ "created": "2011-02-08T21:07:31.000Z",
+ "lastUpdated": "2021-07-27T00:21:53.798Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sortie pour personnes handicapées",
+ "hasLocution": false,
+ "plural": "sorties pour personnes handicapées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01977139-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 24723,
+ "created": "2011-02-14T13:11:57.000Z",
+ "lastUpdated": "2021-07-26T10:00:45.190Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baisser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "descendre",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "bullying"
+ ],
+ "synsets": [
+ "02123706-v",
+ "00419038-n",
+ "00420921-n",
+ "00618547-v",
+ "00849849-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime",
+ "bullying"
+ ],
+ "_id": 24719,
+ "created": "2011-02-09T16:55:07.000Z",
+ "lastUpdated": "2021-07-27T00:23:03.597Z",
+ "keywords": [
+ {
+ "keyword": "ignorer",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "ne pas tenir compte",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "ne pas faire attention",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01972576-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 24725,
+ "created": "2011-02-14T13:14:11.000Z",
+ "lastUpdated": "2021-07-26T10:01:01.254Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "monter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "remonter",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "regional dance"
+ ],
+ "synsets": [
+ "10009040-n",
+ "00534073-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "dance",
+ "regional dance",
+ "show"
+ ],
+ "_id": 24727,
+ "created": "2011-03-02T11:34:57.000Z",
+ "lastUpdated": "2021-07-26T10:01:42.190Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "danseur",
+ "hasLocution": true,
+ "plural": "danseus"
+ },
+ {
+ "keyword": "danseur de flamenco",
+ "hasLocution": false,
+ "plural": "danseurs de flamenco",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "regional dance"
+ ],
+ "synsets": [
+ "10009040-n",
+ "00534073-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "dance",
+ "regional dance",
+ "show"
+ ],
+ "_id": 24728,
+ "created": "2011-03-02T11:35:36.000Z",
+ "lastUpdated": "2021-07-26T10:02:39.511Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "danseuse ",
+ "hasLocution": false,
+ "plural": "danseuses"
+ },
+ {
+ "keyword": "danseuse de flamenco",
+ "hasLocution": false,
+ "plural": "danseuses de flamenco",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "mathematics",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge",
+ "adverb"
+ ],
+ "synsets": [
+ "00033914-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "mathematics",
+ "core vocabulary",
+ "adverb"
+ ],
+ "_id": 24731,
+ "created": "2011-03-02T11:39:31.000Z",
+ "lastUpdated": "2024-10-21T05:03:01.223Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "combien y en a-t-il ?",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "quantité",
+ "hasLocution": true,
+ "plural": "quantités"
+ },
+ {
+ "type": 4,
+ "keyword": "combien ?",
+ "hasLocution": false
+ },
+ {
+ "type": 6,
+ "keyword": "combien",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nombre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "nombres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "02883958-a",
+ "10715747-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 24701,
+ "created": "2011-02-08T20:50:12.000Z",
+ "lastUpdated": "2021-08-01T17:44:03.121Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "animateur socio-éducatif",
+ "plural": "animateurs socio-éducatifs"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "animateur socio-culturel",
+ "plural": "animateurs socio-culturels"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "preposition"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "preposition"
+ ],
+ "_id": 24737,
+ "created": "2011-03-02T16:34:13.000Z",
+ "lastUpdated": "2021-07-26T10:06:53.004Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "pendant",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "entretemps",
+ "hasLocution": true
+ },
+ {
+ "keyword": "aussi longtemps que",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "durant",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building",
+ "signaling system"
+ ],
+ "synsets": [
+ "02916498-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24739,
+ "created": "2011-03-02T16:35:58.000Z",
+ "lastUpdated": "2021-07-26T10:07:32.727Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bâtiment",
+ "hasLocution": false,
+ "plural": "bâtiments"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02290474-v",
+ "02291049-v",
+ "00423043-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 24741,
+ "created": "2011-03-02T16:58:46.000Z",
+ "lastUpdated": "2021-07-26T10:08:39.359Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "trouver",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "apparaître",
+ "hasLocution": true
+ },
+ {
+ "keyword": "localiser",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02290474-v",
+ "02291049-v",
+ "00423043-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 24742,
+ "created": "2011-03-02T17:00:03.000Z",
+ "lastUpdated": "2021-07-26T10:18:52.878Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "trouver",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "apparaître",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy"
+ ],
+ "synsets": [
+ "10447528-n"
+ ],
+ "tags": [
+ "health",
+ "physiotherapy"
+ ],
+ "_id": 24745,
+ "created": "2011-03-02T17:16:01.000Z",
+ "lastUpdated": "2021-07-28T09:35:35.498Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kinésithérapie",
+ "hasLocution": true,
+ "plural": "kinésithérapies"
+ },
+ {
+ "keyword": "physiothérapie",
+ "hasLocution": true,
+ "plural": "physiothérapies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01268418-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 24735,
+ "created": "2011-03-02T16:32:07.000Z",
+ "lastUpdated": "2021-07-26T10:05:03.201Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "amusant",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "joyeux",
+ "hasLocution": true
+ },
+ {
+ "keyword": "gai",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "meteorology",
+ "categorization"
+ ],
+ "synsets": [
+ "11445694-n"
+ ],
+ "tags": [
+ "meteorology",
+ "categorization"
+ ],
+ "_id": 24721,
+ "created": "2011-02-09T17:09:51.000Z",
+ "lastUpdated": "2021-07-27T00:25:29.763Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "climat",
+ "hasLocution": true,
+ "plural": "climats"
+ },
+ {
+ "keyword": "temps",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "temps"
+ },
+ {
+ "keyword": "météo",
+ "plural": "météos",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03421399-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24747,
+ "created": "2011-03-02T17:20:55.000Z",
+ "lastUpdated": "2021-07-26T10:09:33.878Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "garage",
+ "hasLocution": true,
+ "plural": "garages"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01268418-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion",
+ "core vocabulary"
+ ],
+ "_id": 24733,
+ "created": "2011-03-02T16:30:49.000Z",
+ "lastUpdated": "2021-07-26T10:04:48.475Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "amusant",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "joyeux",
+ "hasLocution": true
+ },
+ {
+ "keyword": "gai",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "usual verbs",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01417939-v",
+ "01423419-v",
+ "02522260-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 24749,
+ "created": "2011-03-02T17:32:30.000Z",
+ "lastUpdated": "2021-07-26T10:10:06.359Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "cogner",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "maltraiter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "frapper",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "taper",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "boxer",
+ "type": 2,
+ "hasLocution": true
+ },
+ {
+ "keyword": "battre",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "13876846-n",
+ "00809123-v",
+ "02759740-v"
+ ],
+ "tags": [],
+ "_id": 24751,
+ "created": "2011-03-02T17:36:32.000Z",
+ "lastUpdated": "2021-07-30T05:43:32.180Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "opposition",
+ "hasLocution": true,
+ "plural": "oppositions"
+ },
+ {
+ "type": 3,
+ "keyword": "s'opposer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "être en désaccord",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "être en opposition",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "object"
+ ],
+ "synsets": [
+ "02292634-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object"
+ ],
+ "_id": 24759,
+ "created": "2011-03-02T17:52:38.000Z",
+ "lastUpdated": "2024-12-07T13:21:26.692Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "perdre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "égarer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication",
+ "object"
+ ],
+ "synsets": [
+ "02292634-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 24760,
+ "created": "2011-03-02T17:53:04.000Z",
+ "lastUpdated": "2024-12-07T13:22:41.668Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "perdre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "égarer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "land transport",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-movement",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "08633213-n",
+ "13800883-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 24755,
+ "created": "2011-03-02T17:45:42.000Z",
+ "lastUpdated": "2021-07-26T10:13:37.503Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parking",
+ "hasLocution": true,
+ "plural": "parkings"
+ },
+ {
+ "keyword": "parc de stationnement",
+ "hasLocution": false,
+ "plural": "parcs de stationnement",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "interrogative pronoun",
+ "pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "interrogative pronoun"
+ ],
+ "_id": 24763,
+ "created": "2011-03-02T18:07:22.000Z",
+ "lastUpdated": "2024-10-21T05:13:34.586Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "pourquoi",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "04116429-n",
+ "06467660-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 24765,
+ "created": "2011-03-02T19:48:57.000Z",
+ "lastUpdated": "2021-07-27T00:28:19.362Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "dire un rosaire",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01334887-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 24757,
+ "created": "2011-03-02T17:49:05.000Z",
+ "lastUpdated": "2021-07-27T00:27:37.119Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "coller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "autocollant",
+ "type": 2,
+ "plural": "autocollants",
+ "hasLocution": false
+ },
+ {
+ "keyword": "étiquette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "étiquettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "04116429-n",
+ "06467660-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 24766,
+ "created": "2011-03-02T19:49:38.000Z",
+ "lastUpdated": "2021-03-26T03:20:24.233Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rosaire",
+ "hasLocution": true,
+ "plural": "rosaires"
+ },
+ {
+ "keyword": "chapelet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chapelets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "00936820-n",
+ "03490738-n",
+ "00676724-a"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 24769,
+ "created": "2011-03-02T19:54:16.000Z",
+ "lastUpdated": "2021-07-30T00:36:31.738Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "travaux manuels",
+ "hasLocution": true,
+ "plural": "travaux manuels"
+ },
+ {
+ "keyword": "produits artisanaux",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "produits artisanaux"
+ },
+ {
+ "keyword": "activités artistiques et artisanales",
+ "hasLocution": false,
+ "plural": "activités artistiques et artisanales",
+ "type": 2
+ },
+ {
+ "keyword": "artisanat",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "bricolages",
+ "hasLocution": false,
+ "plural": "bricolages",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "13880801-n",
+ "00777876-v",
+ "01083545-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 24753,
+ "created": "2011-03-02T17:43:44.000Z",
+ "lastUpdated": "2021-07-30T05:43:27.991Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "opposé",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "opposer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'opposer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "library science"
+ ],
+ "synsets": [
+ "02314987-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "library science"
+ ],
+ "_id": 24771,
+ "created": "2011-03-06T17:07:44.000Z",
+ "lastUpdated": "2021-07-26T10:18:10.199Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rendre un livre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "rendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02290474-v",
+ "02291049-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 24773,
+ "created": "2011-03-06T17:12:30.000Z",
+ "lastUpdated": "2021-07-30T05:43:22.069Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "trouver",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication",
+ "person according to their age"
+ ],
+ "synsets": [
+ "02292634-v",
+ "02201537-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary",
+ "person"
+ ],
+ "_id": 24779,
+ "created": "2011-03-06T17:26:15.000Z",
+ "lastUpdated": "2025-01-12T16:17:38.998Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "perdre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "person according to their age"
+ ],
+ "synsets": [
+ "02292634-v",
+ "02201537-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person"
+ ],
+ "_id": 24780,
+ "created": "2011-03-06T17:26:55.000Z",
+ "lastUpdated": "2024-12-07T13:22:29.241Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "perdre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "08238818-n",
+ "07982431-n",
+ "10652848-n",
+ "08239792-n"
+ ],
+ "tags": [],
+ "_id": 24783,
+ "created": "2011-03-09T10:41:46.000Z",
+ "lastUpdated": "2021-07-27T00:31:06.516Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "public",
+ "hasLocution": true,
+ "plural": "publics"
+ },
+ {
+ "type": 2,
+ "keyword": "spectateurs",
+ "hasLocution": false,
+ "plural": "spectateurs"
+ },
+ {
+ "keyword": "participants",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "participants"
+ },
+ {
+ "keyword": "audience",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "audiences"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system",
+ "core vocabulary-education",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "03477235-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 24785,
+ "created": "2011-03-09T10:44:55.000Z",
+ "lastUpdated": "2021-07-26T10:20:53.623Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gymnase",
+ "hasLocution": true,
+ "plural": "gymnases"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "sport modality",
+ "sport"
+ ],
+ "synsets": [
+ "10713754-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 24789,
+ "created": "2011-03-09T10:51:54.000Z",
+ "lastUpdated": "2024-12-07T07:55:22.014Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moniteur",
+ "hasLocution": true,
+ "plural": "moniteurs"
+ },
+ {
+ "keyword": "formateur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "formateurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "02853790-n",
+ "03457897-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 24787,
+ "created": "2011-03-09T10:47:57.000Z",
+ "lastUpdated": "2021-07-26T10:20:57.299Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gradins",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "08234478-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 24777,
+ "created": "2011-03-06T17:23:41.000Z",
+ "lastUpdated": "2021-07-26T10:19:44.136Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "percussions",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "cultural building",
+ "cinema",
+ "theater",
+ "signaling system"
+ ],
+ "synsets": [
+ "02889123-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "culture",
+ "scenic art",
+ "cinema",
+ "show",
+ "theater",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 24793,
+ "created": "2011-03-09T11:29:51.000Z",
+ "lastUpdated": "2021-07-26T10:22:48.498Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guichet",
+ "hasLocution": false,
+ "plural": "guichets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tv show",
+ "cinema",
+ "mass media device"
+ ],
+ "synsets": [
+ "06626039-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show",
+ "scenic art",
+ "cinema",
+ "show",
+ "object",
+ "appliance",
+ "mass media device"
+ ],
+ "_id": 24797,
+ "created": "2011-03-09T21:09:04.000Z",
+ "lastUpdated": "2024-12-08T15:44:42.190Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "film",
+ "hasLocution": true,
+ "plural": "films"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical notation"
+ ],
+ "synsets": [
+ "00544270-n",
+ "07062058-n",
+ "00941268-n",
+ "06828572-n",
+ "06874910-n"
+ ],
+ "tags": [
+ "music",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 24795,
+ "created": "2011-03-09T11:38:17.000Z",
+ "lastUpdated": "2021-07-26T10:24:20.567Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "musique",
+ "hasLocution": true,
+ "plural": "musiques"
+ },
+ {
+ "type": 2,
+ "keyword": "composition",
+ "hasLocution": true,
+ "plural": "compositions"
+ },
+ {
+ "type": 2,
+ "keyword": "partition",
+ "hasLocution": true,
+ "plural": "partitions"
+ },
+ {
+ "type": 2,
+ "keyword": "portée",
+ "hasLocution": true,
+ "plural": "portées"
+ },
+ {
+ "type": 2,
+ "keyword": "chanson",
+ "hasLocution": true,
+ "plural": "chansons"
+ },
+ {
+ "keyword": "note",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "notes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "energy"
+ ],
+ "synsets": [
+ "11470903-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "energy"
+ ],
+ "_id": 24798,
+ "created": "2011-03-22T09:50:12.000Z",
+ "lastUpdated": "2021-07-26T10:24:32.197Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "électricité",
+ "hasLocution": true,
+ "plural": "électricités"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02290474-v",
+ "02291049-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 24774,
+ "created": "2011-03-06T17:13:31.000Z",
+ "lastUpdated": "2021-07-30T05:42:42.780Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "trouver",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical notation",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00544270-n",
+ "07062058-n",
+ "00941268-n",
+ "06828572-n",
+ "06874910-n"
+ ],
+ "tags": [
+ "music",
+ "musical notation",
+ "musical composition",
+ "core vocabulary"
+ ],
+ "_id": 24791,
+ "created": "2011-03-09T10:56:20.000Z",
+ "lastUpdated": "2021-07-26T10:24:16.594Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "musique",
+ "hasLocution": true,
+ "plural": "musiques"
+ },
+ {
+ "type": 2,
+ "keyword": "composition",
+ "hasLocution": true,
+ "plural": "compositions"
+ },
+ {
+ "type": 2,
+ "keyword": "partition",
+ "hasLocution": true,
+ "plural": "partitions"
+ },
+ {
+ "type": 2,
+ "keyword": "portée",
+ "hasLocution": true,
+ "plural": "portées"
+ },
+ {
+ "type": 2,
+ "keyword": "chanson",
+ "hasLocution": true,
+ "plural": "chansons"
+ },
+ {
+ "keyword": "note",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "notes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07675810-n",
+ "07665463-n",
+ "07673512-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 24807,
+ "created": "2011-05-08T11:42:40.000Z",
+ "lastUpdated": "2021-07-26T10:25:37.170Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "viande",
+ "hasLocution": true,
+ "plural": "viandes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sculpture"
+ ],
+ "synsets": [
+ "08424576-n"
+ ],
+ "tags": [
+ "visual art",
+ "sculpture"
+ ],
+ "_id": 24803,
+ "created": "2011-05-08T11:36:42.000Z",
+ "lastUpdated": "2021-07-27T00:32:11.099Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "exposition",
+ "hasLocution": true,
+ "plural": "expositions"
+ },
+ {
+ "keyword": "expo",
+ "plural": "expos",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "salon",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "salon"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07672350-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 24809,
+ "created": "2011-05-08T11:44:54.000Z",
+ "lastUpdated": "2021-07-26T10:26:29.047Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "côtelette",
+ "hasLocution": true,
+ "plural": "côtelettes"
+ },
+ {
+ "keyword": "côte",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "côtes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "legume"
+ ],
+ "synsets": [
+ "07724543-n",
+ "11768471-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "legume"
+ ],
+ "_id": 24805,
+ "created": "2011-05-08T11:39:27.000Z",
+ "lastUpdated": "2021-07-26T10:25:28.062Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "légumineuses",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "légumes secs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07672350-n",
+ "07665463-n",
+ "07673512-n",
+ "07682896-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 24811,
+ "created": "2011-05-08T11:48:28.000Z",
+ "lastUpdated": "2021-07-26T10:26:49.996Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "côtelette",
+ "hasLocution": true,
+ "plural": "côtelettes"
+ },
+ {
+ "type": 2,
+ "keyword": "côte",
+ "hasLocution": true,
+ "plural": "côtes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "meat"
+ ],
+ "synsets": [
+ "07660576-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 24815,
+ "created": "2011-05-08T11:58:03.000Z",
+ "lastUpdated": "2024-12-08T07:32:40.473Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poulet",
+ "hasLocution": true,
+ "plural": "poulets"
+ },
+ {
+ "type": 2,
+ "keyword": "poulet rôti",
+ "hasLocution": true,
+ "plural": "poulets rôtis"
+ },
+ {
+ "keyword": "poulet grillé",
+ "hasLocution": false,
+ "plural": "poulets grillés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07663876-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 24817,
+ "created": "2011-05-08T12:01:08.000Z",
+ "lastUpdated": "2021-07-26T10:28:46.450Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuisse de poulet",
+ "hasLocution": true,
+ "plural": "cuisses de poulet"
+ },
+ {
+ "type": 2,
+ "keyword": "poulet rôti",
+ "hasLocution": true,
+ "plural": "poulets rôtis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "03385713-n",
+ "03385972-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 24801,
+ "created": "2011-05-08T11:33:56.000Z",
+ "lastUpdated": "2021-07-26T10:24:37.413Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussures",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07672350-n",
+ "07665463-n",
+ "07673512-n",
+ "07685533-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 24813,
+ "created": "2011-05-08T11:52:24.000Z",
+ "lastUpdated": "2021-07-26T10:27:06.665Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "côtelettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "côtes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "occupational therapy"
+ ],
+ "synsets": [
+ "00665820-n"
+ ],
+ "tags": [
+ "health",
+ "occupational therapy"
+ ],
+ "_id": 24821,
+ "created": "2011-06-01T10:58:41.000Z",
+ "lastUpdated": "2021-07-23T21:00:12.557Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ergothérapie",
+ "hasLocution": true,
+ "plural": "ergothérapies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "rome"
+ ],
+ "synsets": [
+ "02735438-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "history",
+ "civilization",
+ "Rome"
+ ],
+ "_id": 24826,
+ "created": "2011-07-10T21:20:18.000Z",
+ "lastUpdated": "2021-07-26T10:29:07.307Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aqueduc",
+ "hasLocution": false,
+ "plural": "aqueducs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "apiculture",
+ "domestic animal",
+ "core vocabulary-living being",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "02209508-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "work",
+ "primary sector",
+ "apiculture",
+ "domestic",
+ "core vocabulary"
+ ],
+ "_id": 24823,
+ "created": "2011-07-10T21:14:27.000Z",
+ "lastUpdated": "2021-07-23T20:55:51.723Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abeille",
+ "hasLocution": true,
+ "plural": "abeilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01334887-v",
+ "01359453-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 24828,
+ "created": "2011-07-10T21:21:26.000Z",
+ "lastUpdated": "2021-07-26T10:29:16.599Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "coller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "adhérer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01349486-v",
+ "01348685-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 24825,
+ "created": "2011-07-10T21:17:48.000Z",
+ "lastUpdated": "2021-07-23T20:59:27.643Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déplier",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'ouvrir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "06798080-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 24829,
+ "created": "2011-07-10T21:24:06.000Z",
+ "lastUpdated": "2021-07-26T10:29:48.631Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "devinette",
+ "hasLocution": false,
+ "plural": "devinettes"
+ },
+ {
+ "keyword": "énigme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "énigmes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08721268-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 24831,
+ "created": "2011-07-10T21:27:06.000Z",
+ "lastUpdated": "2021-07-26T10:30:07.233Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Afghanistan",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00554860-n",
+ "02176452-v",
+ "02497032-v",
+ "00521099-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 24832,
+ "created": "2011-07-10T21:29:10.000Z",
+ "lastUpdated": "2021-07-26T10:32:09.163Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chahuter",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "chahut",
+ "hasLocution": false,
+ "plural": "chahuts"
+ },
+ {
+ "keyword": "raffut",
+ "hasLocution": false,
+ "plural": "raffuts",
+ "type": 2
+ },
+ {
+ "keyword": "tapage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tapages"
+ },
+ {
+ "keyword": "perturber",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "03733328-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 24834,
+ "created": "2011-07-10T21:32:27.000Z",
+ "lastUpdated": "2021-07-26T10:33:25.199Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tapis de sol",
+ "hasLocution": false,
+ "plural": "tapis de sol"
+ },
+ {
+ "keyword": "tapis de voiture",
+ "hasLocution": false,
+ "plural": "tapis de voiture",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00554860-n",
+ "02176452-v",
+ "02497032-v",
+ "00521099-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 24833,
+ "created": "2011-07-10T21:29:38.000Z",
+ "lastUpdated": "2021-07-30T05:59:29.290Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chahuter",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "chahut",
+ "hasLocution": false
+ },
+ {
+ "keyword": "tapage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tapages"
+ },
+ {
+ "keyword": "perturber",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "raffut",
+ "plural": "raffuts",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "movement"
+ ],
+ "synsets": [
+ "01859592-v",
+ "01839438-v"
+ ],
+ "tags": [
+ "movement"
+ ],
+ "_id": 24819,
+ "created": "2011-05-08T12:05:52.000Z",
+ "lastUpdated": "2021-07-23T21:05:04.152Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se déplacer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bouger",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "aller",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "avancer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "voyager",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "parcourir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "hasLocution": true,
+ "keyword": "partir",
+ "type": 3
+ },
+ {
+ "keyword": "marcher",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01977773-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 24836,
+ "created": "2011-07-10T21:33:50.000Z",
+ "lastUpdated": "2021-07-26T10:33:39.516Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "lever",
+ "hasLocution": true
+ },
+ {
+ "keyword": "hausser",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product",
+ "core vocabulary-object",
+ "medicine"
+ ],
+ "synsets": [
+ "04552757-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product",
+ "core vocabulary",
+ "health",
+ "medicine"
+ ],
+ "_id": 24850,
+ "created": "2011-07-16T21:30:58.000Z",
+ "lastUpdated": "2024-12-09T06:33:14.725Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "déambulateur",
+ "hasLocution": false,
+ "plural": "déambulateurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "christmas"
+ ],
+ "synsets": [
+ "03030309-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 24859,
+ "created": "2011-07-17T13:21:50.000Z",
+ "lastUpdated": "2021-07-26T10:35:44.143Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sapin de Noël",
+ "hasLocution": true,
+ "plural": "sapins de Noël"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal group",
+ "cattle farming"
+ ],
+ "synsets": [
+ "01792381-n"
+ ],
+ "tags": [
+ "animal",
+ "group",
+ "work",
+ "primary sector",
+ "cattle farming"
+ ],
+ "_id": 24865,
+ "created": "2011-07-17T13:27:32.000Z",
+ "lastUpdated": "2021-07-26T10:37:45.441Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "volaille",
+ "hasLocution": false,
+ "plural": "volailles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "02174871-v",
+ "02175483-v"
+ ],
+ "tags": [],
+ "_id": 24863,
+ "created": "2011-07-17T13:24:27.000Z",
+ "lastUpdated": "2021-07-30T05:42:19.087Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "attention",
+ "hasLocution": true,
+ "plural": "attentions"
+ },
+ {
+ "type": 3,
+ "keyword": "s'occuper",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se préoccuper",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire attention",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal group",
+ "cattle farming"
+ ],
+ "synsets": [
+ "01792381-n"
+ ],
+ "tags": [
+ "animal",
+ "group",
+ "work",
+ "primary sector",
+ "cattle farming"
+ ],
+ "_id": 24866,
+ "created": "2011-07-17T13:28:57.000Z",
+ "lastUpdated": "2021-07-26T10:38:28.214Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "volaille",
+ "hasLocution": false,
+ "plural": "volailles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious place",
+ "christianity",
+ "christmas",
+ "core vocabulary-religion",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "06202643-n",
+ "15221021-n"
+ ],
+ "tags": [
+ "religion",
+ "place",
+ "christianity",
+ "event",
+ "popular event",
+ "christmas",
+ "core vocabulary"
+ ],
+ "_id": 24873,
+ "created": "2011-07-17T13:32:40.000Z",
+ "lastUpdated": "2021-07-27T00:32:46.423Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Crèche de Noël",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Nativité",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "00349906-n",
+ "03396616-n",
+ "01242735-a"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 24877,
+ "created": "2011-07-17T13:42:15.000Z",
+ "lastUpdated": "2021-07-26T10:40:06.773Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "verticalisateur",
+ "hasLocution": true,
+ "plural": "verticalisateurs"
+ },
+ {
+ "keyword": "releveur",
+ "type": 2,
+ "plural": "releveurs",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "02858206-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 24881,
+ "created": "2011-07-17T13:46:38.000Z",
+ "lastUpdated": "2021-07-26T10:40:41.507Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blouse",
+ "hasLocution": true,
+ "plural": "blouses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09015658-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 24858,
+ "created": "2011-07-17T13:20:54.000Z",
+ "lastUpdated": "2021-07-26T10:35:31.262Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Arabie Saoudite",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adapted sport",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "00464058-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "adapted sport"
+ ],
+ "_id": 24885,
+ "created": "2011-07-17T13:48:56.000Z",
+ "lastUpdated": "2021-07-27T00:32:59.930Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boccia",
+ "hasLocution": true,
+ "plural": "boccias"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "marital status",
+ "wedding",
+ "core vocabulary-living being",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "08005815-n",
+ "13987306-n",
+ "01039028-n"
+ ],
+ "tags": [
+ "person",
+ "marital status",
+ "event",
+ "social event",
+ "wedding",
+ "core vocabulary"
+ ],
+ "_id": 24887,
+ "created": "2011-07-17T13:52:36.000Z",
+ "lastUpdated": "2021-07-26T10:41:54.501Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mariage",
+ "hasLocution": true,
+ "plural": "mariages"
+ },
+ {
+ "keyword": "noce",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "noces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "04258670-n"
+ ],
+ "tags": [],
+ "_id": 24891,
+ "created": "2011-07-17T14:03:12.000Z",
+ "lastUpdated": "2021-07-26T10:42:26.581Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boule de neige",
+ "hasLocution": true,
+ "plural": "boules de neige"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "alcoholism"
+ ],
+ "synsets": [
+ "10057110-n",
+ "10056805-n",
+ "00800854-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "alcohol"
+ ],
+ "_id": 24895,
+ "created": "2011-07-17T20:26:47.000Z",
+ "lastUpdated": "2021-07-30T05:42:15.538Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "soul",
+ "hasLocution": false
+ },
+ {
+ "keyword": "ivre",
+ "type": 4,
+ "hasLocution": true
+ },
+ {
+ "keyword": "en état d'ébriété",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "alcoholism"
+ ],
+ "synsets": [
+ "01173463-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "alcohol"
+ ],
+ "_id": 24896,
+ "created": "2011-07-17T20:27:30.000Z",
+ "lastUpdated": "2021-07-26T10:49:39.619Z",
+ "keywords": [
+ {
+ "keyword": "être soul",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "être ivre",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "être en état d'ébriété",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "boire",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "se souler",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'enivrer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07902438-n",
+ "07596911-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 24854,
+ "created": "2011-07-17T13:16:57.000Z",
+ "lastUpdated": "2021-07-30T08:16:23.771Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "apéritif",
+ "hasLocution": false,
+ "plural": "apéritifs"
+ },
+ {
+ "keyword": "apéro",
+ "plural": "apéros",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "00786917-n"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 24909,
+ "created": "2011-07-17T20:37:57.000Z",
+ "lastUpdated": "2021-07-27T00:37:38.139Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "cambriolage",
+ "plural": "cambriolages"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "effraction",
+ "plural": "effractions"
+ },
+ {
+ "keyword": "trou",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "trous"
+ },
+ {
+ "keyword": "casse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "casses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "halloween",
+ "wild animal"
+ ],
+ "synsets": [
+ "01623768-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "event",
+ "popular event",
+ "halloween",
+ "wild"
+ ],
+ "_id": 24905,
+ "created": "2011-07-17T20:33:14.000Z",
+ "lastUpdated": "2021-07-26T10:50:54.157Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hibou",
+ "hasLocution": true,
+ "plural": "hiboux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture",
+ "telecommunication",
+ "mass media"
+ ],
+ "synsets": [
+ "03715732-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture",
+ "work",
+ "tertiary sector",
+ "telecommunication",
+ "communication",
+ "mass media"
+ ],
+ "_id": 24911,
+ "created": "2011-07-17T20:57:07.000Z",
+ "lastUpdated": "2021-07-26T10:53:21.169Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boite à lettres",
+ "hasLocution": false,
+ "plural": "boites à lettres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "election"
+ ],
+ "synsets": [
+ "03984779-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 24917,
+ "created": "2011-07-17T21:04:44.000Z",
+ "lastUpdated": "2021-07-26T10:53:51.943Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "isoloir accessible",
+ "hasLocution": false,
+ "plural": "isoloirs accessibles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "03238608-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 24921,
+ "created": "2011-07-17T21:13:51.000Z",
+ "lastUpdated": "2021-07-26T10:54:00.911Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tiroir",
+ "hasLocution": true,
+ "plural": "tiroirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "alcoholism"
+ ],
+ "synsets": [
+ "14042038-n",
+ "00749813-n",
+ "01173463-v"
+ ],
+ "tags": [
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "alcohol"
+ ],
+ "_id": 24929,
+ "created": "2011-07-20T21:00:40.000Z",
+ "lastUpdated": "2021-07-26T11:00:31.972Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ivresse",
+ "hasLocution": false,
+ "plural": "ivresses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance",
+ "photography",
+ "hardware",
+ "core vocabulary-object",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02946154-n",
+ "04076546-n",
+ "03993624-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "visual art",
+ "photography",
+ "computing",
+ "hardware",
+ "core vocabulary"
+ ],
+ "_id": 24925,
+ "created": "2011-07-20T20:56:18.000Z",
+ "lastUpdated": "2021-07-27T00:40:47.172Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "appareil photo",
+ "hasLocution": true,
+ "plural": "appareils photos"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "reflex",
+ "plural": "reflex",
+ "type": 2
+ },
+ {
+ "keyword": "caméra",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "caméras"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "alcoholism"
+ ],
+ "synsets": [
+ "01173463-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "alcohol"
+ ],
+ "_id": 24930,
+ "created": "2011-07-20T21:01:12.000Z",
+ "lastUpdated": "2021-07-30T05:42:11.901Z",
+ "keywords": [
+ {
+ "keyword": "être soul",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "être ivre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "être en état d'ébriété",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se souler",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'enivrer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "04343930-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "core vocabulary"
+ ],
+ "_id": 24933,
+ "created": "2011-07-20T21:17:05.000Z",
+ "lastUpdated": "2021-07-26T11:01:32.846Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brancard",
+ "hasLocution": true,
+ "plural": "brancards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vertebrate",
+ "fish-animal",
+ "oviparous",
+ "aquatic animal",
+ "river animal",
+ "fishing"
+ ],
+ "synsets": [
+ "01442155-n"
+ ],
+ "tags": [
+ "animal",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 24943,
+ "created": "2011-07-20T21:35:04.000Z",
+ "lastUpdated": "2024-12-05T06:23:25.194Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carpe",
+ "hasLocution": false,
+ "plural": "carpes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "03327515-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 24947,
+ "created": "2011-07-20T21:50:56.000Z",
+ "lastUpdated": "2021-07-26T11:04:40.083Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ferme",
+ "hasLocution": true,
+ "plural": "fermes"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "bâtiment de ferme",
+ "plural": "bâtiments de ferme"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "public building",
+ "political representation"
+ ],
+ "synsets": [
+ "02960135-n",
+ "02959936-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "building",
+ "public administration",
+ "work",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 24941,
+ "created": "2011-07-20T21:30:20.000Z",
+ "lastUpdated": "2021-07-26T11:03:51.632Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Capitole",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "capitole",
+ "hasLocution": true,
+ "plural": "capitoles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular event",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "10596736-n",
+ "07788250-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "core vocabulary"
+ ],
+ "_id": 24951,
+ "created": "2011-07-20T21:53:48.000Z",
+ "lastUpdated": "2021-07-26T11:06:00.578Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Fête de la châtaigne ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "vendeur de châtaignes",
+ "hasLocution": false,
+ "plural": "vendeurs de châtaignes"
+ },
+ {
+ "type": 1,
+ "keyword": "Fête de la châtaigne en Galice",
+ "hasLocution": false
+ },
+ {
+ "keyword": "Castañada",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Magosto",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04223701-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 24955,
+ "created": "2011-07-24T19:21:23.000Z",
+ "lastUpdated": "2021-07-26T11:06:20.863Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tamis",
+ "hasLocution": false,
+ "plural": "tamis"
+ },
+ {
+ "type": 2,
+ "keyword": "crible",
+ "hasLocution": false,
+ "plural": "cribes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "water transport"
+ ],
+ "synsets": [
+ "10318579-n",
+ "09912283-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 24937,
+ "created": "2011-07-20T21:23:09.000Z",
+ "lastUpdated": "2021-07-26T11:02:51.209Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "capitaine",
+ "hasLocution": false,
+ "plural": "capitaines"
+ },
+ {
+ "type": 2,
+ "keyword": "capitaine de navire",
+ "hasLocution": false,
+ "plural": "capitaines de navire"
+ },
+ {
+ "keyword": "skipper",
+ "hasLocution": false,
+ "plural": "skippers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04223701-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 24956,
+ "created": "2011-07-24T19:23:04.000Z",
+ "lastUpdated": "2021-07-26T11:06:35.968Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tamis",
+ "hasLocution": false,
+ "plural": "tamis"
+ },
+ {
+ "type": 2,
+ "keyword": "crible",
+ "hasLocution": false,
+ "plural": "cribles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07462241-n",
+ "00428985-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 24963,
+ "created": "2011-07-24T19:43:29.000Z",
+ "lastUpdated": "2021-07-26T11:06:48.963Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fête",
+ "hasLocution": true,
+ "plural": "fêtes"
+ },
+ {
+ "type": 2,
+ "keyword": "célébration ",
+ "hasLocution": false,
+ "plural": "célébrations"
+ },
+ {
+ "keyword": "soirée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "soirées"
+ },
+ {
+ "keyword": "festivités",
+ "hasLocution": false,
+ "plural": "festivités",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "construction"
+ ],
+ "synsets": [
+ "00720526-n",
+ "15099135-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 24968,
+ "created": "2011-07-24T20:58:08.000Z",
+ "lastUpdated": "2021-07-26T11:07:23.323Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carrelage",
+ "hasLocution": false,
+ "plural": "carrelages"
+ },
+ {
+ "type": 2,
+ "keyword": "carreau",
+ "hasLocution": true,
+ "plural": "carreaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming"
+ ],
+ "synsets": [
+ "01964770-v",
+ "00443055-n",
+ "00572097-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 24903,
+ "created": "2011-07-17T20:31:49.000Z",
+ "lastUpdated": "2021-07-26T10:50:44.911Z",
+ "keywords": [
+ {
+ "type": 2,
+ "meaning": "intr. Se déplacer à la surface de l'eau ou dans l'eau par des mouvements appropriés",
+ "keyword": "nage",
+ "hasLocution": false,
+ "plural": "nages"
+ },
+ {
+ "type": 2,
+ "keyword": "brasse",
+ "hasLocution": false,
+ "plural": "brasses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal",
+ "core vocabulary-living being",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "02398058-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic",
+ "core vocabulary"
+ ],
+ "_id": 24972,
+ "created": "2011-07-24T21:03:25.000Z",
+ "lastUpdated": "2021-07-26T11:08:10.845Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cochon",
+ "hasLocution": true,
+ "plural": "cochons"
+ },
+ {
+ "type": 2,
+ "keyword": "porc",
+ "hasLocution": false,
+ "plural": "porcs"
+ },
+ {
+ "type": 2,
+ "keyword": "goret",
+ "hasLocution": false,
+ "plural": "gorets"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01349660-v",
+ "01347791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 24976,
+ "created": "2011-07-24T21:07:38.000Z",
+ "lastUpdated": "2021-07-26T11:08:14.745Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fermer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology"
+ ],
+ "synsets": [
+ "07357095-n"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology"
+ ],
+ "_id": 24984,
+ "created": "2011-07-24T21:21:08.000Z",
+ "lastUpdated": "2021-07-26T11:09:12.594Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cycle",
+ "hasLocution": true,
+ "plural": "cycles"
+ },
+ {
+ "type": 2,
+ "keyword": "phases",
+ "hasLocution": false
+ },
+ {
+ "keyword": "états",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "arthropod",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01787316-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "arthropod",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 24986,
+ "created": "2011-07-24T21:25:49.000Z",
+ "lastUpdated": "2021-07-26T11:09:39.374Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mille-pattes",
+ "hasLocution": false,
+ "plural": "mille-pattes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular festival",
+ "christmas"
+ ],
+ "synsets": [
+ "03094734-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "popular festival",
+ "christmas"
+ ],
+ "_id": 24990,
+ "created": "2011-07-24T21:31:26.000Z",
+ "lastUpdated": "2021-07-26T11:10:06.384Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "confetti",
+ "hasLocution": false,
+ "plural": "confettis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "09275876-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 24994,
+ "created": "2011-07-24T21:37:41.000Z",
+ "lastUpdated": "2021-07-26T11:10:16.557Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "constellation",
+ "hasLocution": false,
+ "plural": "constellations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat"
+ ],
+ "synsets": [
+ "07691372-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 24980,
+ "created": "2011-07-24T21:14:39.000Z",
+ "lastUpdated": "2021-07-27T00:42:02.961Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saucisse au paprika",
+ "hasLocution": false,
+ "plural": "saucisses au paprika"
+ },
+ {
+ "keyword": "saucisse",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "saucisses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02753584-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 24998,
+ "created": "2011-07-24T21:40:30.000Z",
+ "lastUpdated": "2021-07-30T08:16:20.939Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "continuer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "poursuivre",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "14842271-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 25004,
+ "created": "2011-08-04T13:13:35.000Z",
+ "lastUpdated": "2021-07-26T11:11:02.059Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "compostage",
+ "hasLocution": false,
+ "plural": "compostages"
+ },
+ {
+ "type": 2,
+ "keyword": "compost",
+ "hasLocution": false,
+ "plural": "composts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "auditory system"
+ ],
+ "synsets": [
+ "05256010-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "auditory system"
+ ],
+ "_id": 25006,
+ "created": "2011-08-04T13:17:16.000Z",
+ "lastUpdated": "2021-07-26T11:11:18.644Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conduit auditif",
+ "hasLocution": false,
+ "plural": "conduits auditifs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14364837-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 25010,
+ "created": "2011-08-04T13:20:37.000Z",
+ "lastUpdated": "2021-07-26T11:12:23.172Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conjonctivite",
+ "hasLocution": false,
+ "plural": "conjonctivites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08975399-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 25015,
+ "created": "2011-08-04T13:27:36.000Z",
+ "lastUpdated": "2021-07-26T11:13:53.785Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Corée du Sud",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume",
+ "christmas",
+ "history",
+ "historical character",
+ "social event"
+ ],
+ "synsets": [
+ "03143320-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume",
+ "event",
+ "popular event",
+ "christmas",
+ "history",
+ "character",
+ "historical character",
+ "social event"
+ ],
+ "_id": 25016,
+ "created": "2011-08-04T13:29:58.000Z",
+ "lastUpdated": "2024-12-11T17:27:41.496Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couronne",
+ "hasLocution": true,
+ "plural": "couronnes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "playground",
+ "street furniture",
+ "recreational facility"
+ ],
+ "synsets": [
+ "04378861-n",
+ "01544805-s"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground",
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 25000,
+ "created": "2011-08-04T13:07:05.000Z",
+ "lastUpdated": "2021-03-27T21:46:33.501Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balançoire",
+ "hasLocution": true,
+ "plural": "balançoires"
+ },
+ {
+ "type": 2,
+ "keyword": "balançoire adaptée",
+ "hasLocution": false,
+ "plural": "balançoires adaptées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "historical character",
+ "saragossa"
+ ],
+ "synsets": [
+ "10848594-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "character",
+ "historical character",
+ "history",
+ "Aragon",
+ "Saragossa"
+ ],
+ "_id": 24978,
+ "created": "2011-07-24T21:12:06.000Z",
+ "lastUpdated": "2021-07-26T11:08:19.879Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "César Auguste",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cutlery",
+ "food"
+ ],
+ "synsets": [
+ "01555301-v",
+ "01613738-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "cutlery",
+ "home",
+ "feeding",
+ "food"
+ ],
+ "_id": 25020,
+ "created": "2011-08-04T13:33:25.000Z",
+ "lastUpdated": "2024-12-10T06:11:59.829Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": " tr. Entamer la matière de quelque chose, sectionner avec un objet ou un instrument tranchant",
+ "keyword": "couper",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool"
+ ],
+ "synsets": [
+ "01555301-v",
+ "01613738-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool"
+ ],
+ "_id": 25022,
+ "created": "2011-08-04T13:35:39.000Z",
+ "lastUpdated": "2021-07-26T11:14:12.126Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": " tr. Entamer la matière de quelque chose, sectionner avec un objet ou un instrument tranchant",
+ "keyword": "couper",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular festival"
+ ],
+ "synsets": [
+ "00378877-n",
+ "09050847-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "popular festival"
+ ],
+ "_id": 25024,
+ "created": "2011-08-04T13:40:27.000Z",
+ "lastUpdated": "2021-07-26T11:14:14.656Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Cremà",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "pet"
+ ],
+ "synsets": [
+ "02545454-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "pet"
+ ],
+ "_id": 25026,
+ "created": "2011-08-04T13:44:06.000Z",
+ "lastUpdated": "2021-07-26T11:14:18.099Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "élever",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "09697405-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 25028,
+ "created": "2011-08-04T13:48:54.000Z",
+ "lastUpdated": "2021-07-26T11:15:25.371Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chrétienne",
+ "hasLocution": false,
+ "plural": "chrétiennes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "christianity"
+ ],
+ "synsets": [
+ "08875258-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "religion",
+ "christianity"
+ ],
+ "_id": 25036,
+ "created": "2011-08-04T13:58:05.000Z",
+ "lastUpdated": "2021-07-26T11:15:41.290Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Christ Rédempteur",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Rio de Janeiro",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "09697405-n",
+ "02963612-a"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 25033,
+ "created": "2011-08-04T13:52:35.000Z",
+ "lastUpdated": "2021-07-26T11:15:29.361Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "chrétien",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "chrétienne",
+ "hasLocution": false
+ },
+ {
+ "keyword": "chrétien",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chrétiens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08974855-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 25014,
+ "created": "2011-08-04T13:25:53.000Z",
+ "lastUpdated": "2021-07-26T11:13:49.332Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Corée du Nord",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05554173-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 25040,
+ "created": "2011-08-04T16:07:56.000Z",
+ "lastUpdated": "2021-07-26T11:16:05.105Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cou",
+ "hasLocution": true,
+ "plural": "cous"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02332106-a",
+ "02332825-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary"
+ ],
+ "_id": 25044,
+ "created": "2011-08-04T16:11:02.000Z",
+ "lastUpdated": "2021-07-26T11:16:31.248Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "faible",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features",
+ "dietetics",
+ "core vocabulary-communication",
+ "basic concepts",
+ "person according to their age"
+ ],
+ "synsets": [
+ "00991420-a",
+ "00993331-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features",
+ "health",
+ "dietetics",
+ "core vocabulary",
+ "mathematics",
+ "basic concepts",
+ "person"
+ ],
+ "_id": 25048,
+ "created": "2011-08-04T16:15:11.000Z",
+ "lastUpdated": "2024-12-12T06:50:29.747Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mince",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "maigre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "natural disaster"
+ ],
+ "synsets": [
+ "07329438-n"
+ ],
+ "tags": [
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 25052,
+ "created": "2011-08-04T16:23:05.000Z",
+ "lastUpdated": "2021-07-26T11:17:57.027Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "désastre",
+ "hasLocution": false,
+ "plural": "désastres"
+ },
+ {
+ "type": 2,
+ "keyword": "catastrophe",
+ "hasLocution": false,
+ "plural": "catastrophes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "swimming",
+ "sport modality"
+ ],
+ "synsets": [
+ "00443055-n",
+ "00571403-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "swimming",
+ "sport modality"
+ ],
+ "_id": 25038,
+ "created": "2011-08-04T16:06:20.000Z",
+ "lastUpdated": "2021-07-26T11:15:51.970Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "natation",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "crawl",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur"
+ ],
+ "synsets": [
+ "01702472-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 25058,
+ "created": "2011-08-04T16:27:58.000Z",
+ "lastUpdated": "2021-07-26T11:18:14.096Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dinosaure",
+ "hasLocution": true,
+ "plural": "dinosaures"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional"
+ ],
+ "synsets": [
+ "00705179-n"
+ ],
+ "tags": [
+ "work",
+ "professional"
+ ],
+ "_id": 25064,
+ "created": "2011-08-04T16:37:38.000Z",
+ "lastUpdated": "2021-07-27T00:46:27.699Z",
+ "keywords": [
+ {
+ "keyword": "équipe d'accompagnement familial et éducatif ",
+ "hasLocution": false,
+ "plural": "équipes d'accompagnement familial et éducatif ",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00003443-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 25069,
+ "created": "2011-08-04T16:41:22.000Z",
+ "lastUpdated": "2021-07-26T11:20:52.734Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "roter",
+ "hasLocution": false
+ },
+ {
+ "keyword": "éructer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00754499-v",
+ "00748704-v",
+ "02397742-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "core vocabulary"
+ ],
+ "_id": 25062,
+ "created": "2011-08-04T16:31:35.000Z",
+ "lastUpdated": "2021-07-30T05:42:05.154Z",
+ "keywords": [
+ {
+ "keyword": "demander",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "donner un ordre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "ordonner",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "confier une tâche",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01353653-v",
+ "00452603-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 25072,
+ "created": "2011-08-04T16:44:27.000Z",
+ "lastUpdated": "2021-07-26T11:44:06.913Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "presser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "assécher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00118398-n",
+ "00003443-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 25068,
+ "created": "2011-08-04T16:41:02.000Z",
+ "lastUpdated": "2021-07-26T11:20:42.833Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "roter",
+ "hasLocution": false
+ },
+ {
+ "keyword": "éructer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "08517454-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 25074,
+ "created": "2011-08-04T16:47:50.000Z",
+ "lastUpdated": "2021-07-26T11:21:20.638Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "espace",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming"
+ ],
+ "synsets": [
+ "00443055-n",
+ "00572320-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 25075,
+ "created": "2011-08-04T16:49:15.000Z",
+ "lastUpdated": "2021-07-26T11:44:10.427Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dos",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nager",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "dos crawlé",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01622948-v",
+ "01566925-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 25056,
+ "created": "2011-08-04T16:26:08.000Z",
+ "lastUpdated": "2021-07-26T11:18:05.389Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "détruire",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "01065863-n",
+ "02644022-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 25077,
+ "created": "2011-08-04T16:51:49.000Z",
+ "lastUpdated": "2021-07-26T11:22:04.365Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attendre le bus",
+ "hasLocution": false
+ },
+ {
+ "keyword": "attendre à l'arrêt de bus",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "body position",
+ "routine",
+ "furniture"
+ ],
+ "synsets": [
+ "01242902-a",
+ "01545905-v",
+ "01988916-v"
+ ],
+ "tags": [
+ "human body",
+ "position",
+ "person",
+ "routine",
+ "object",
+ "furniture"
+ ],
+ "_id": 25082,
+ "created": "2011-08-04T17:02:29.000Z",
+ "lastUpdated": "2021-08-01T18:45:21.213Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "être assis",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'assoir",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": true,
+ "keyword": "asseoir",
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "furniture",
+ "routine",
+ "body position"
+ ],
+ "synsets": [
+ "01545905-v",
+ "01988916-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "furniture",
+ "person",
+ "routine",
+ "human body",
+ "position"
+ ],
+ "_id": 25083,
+ "created": "2011-08-04T17:02:48.000Z",
+ "lastUpdated": "2021-08-01T18:46:12.413Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "être assis",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "asseoir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01591414-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 25087,
+ "created": "2011-08-04T17:06:45.000Z",
+ "lastUpdated": "2021-07-26T11:23:54.780Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étiqueter",
+ "hasLocution": false
+ },
+ {
+ "keyword": "marquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage",
+ "cookery"
+ ],
+ "synsets": [
+ "01596858-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage",
+ "cookery"
+ ],
+ "_id": 25089,
+ "created": "2011-08-04T17:08:23.000Z",
+ "lastUpdated": "2021-07-26T11:24:00.318Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "presser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "02644022-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 25078,
+ "created": "2011-08-04T16:52:13.000Z",
+ "lastUpdated": "2021-07-26T11:22:29.637Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attendre le bus",
+ "hasLocution": false
+ },
+ {
+ "keyword": "attendre à l'arrêt de bus",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "body position",
+ "routine",
+ "furniture"
+ ],
+ "synsets": [
+ "01242902-a",
+ "01545905-v",
+ "01988916-v"
+ ],
+ "tags": [
+ "human body",
+ "position",
+ "person",
+ "routine",
+ "object",
+ "furniture"
+ ],
+ "_id": 25081,
+ "created": "2011-08-04T17:02:06.000Z",
+ "lastUpdated": "2021-08-01T18:46:35.448Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "être assise",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "asseoir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "regional costume"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "regional costume"
+ ],
+ "_id": 25095,
+ "created": "2011-08-04T17:17:14.000Z",
+ "lastUpdated": "2021-07-30T08:26:01.420Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fallera",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "teaching activity"
+ ],
+ "synsets": [
+ "00518784-n"
+ ],
+ "tags": [
+ "education",
+ "teaching activity"
+ ],
+ "_id": 25103,
+ "created": "2011-08-04T17:32:28.000Z",
+ "lastUpdated": "2021-07-26T11:24:37.281Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "festival",
+ "hasLocution": false,
+ "plural": "festivals"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular festival"
+ ],
+ "synsets": [
+ "07462241-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "popular festival"
+ ],
+ "_id": 25107,
+ "created": "2011-08-04T17:38:32.000Z",
+ "lastUpdated": "2021-07-26T11:44:26.321Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fête",
+ "hasLocution": true,
+ "plural": "fêtes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "03376875-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 25115,
+ "created": "2011-08-04T17:46:21.000Z",
+ "lastUpdated": "2021-07-27T02:25:10.372Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "flute traversière",
+ "hasLocution": false,
+ "plural": "flutes traversières"
+ },
+ {
+ "keyword": "flûte",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "flûtes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular festival"
+ ],
+ "synsets": [
+ "03340545-n",
+ "09050847-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "popular festival"
+ ],
+ "_id": 25091,
+ "created": "2011-08-04T17:11:19.000Z",
+ "lastUpdated": "2021-07-30T08:16:15.406Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Falla",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dessert",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07634817-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "core vocabulary"
+ ],
+ "_id": 25111,
+ "created": "2011-08-04T17:41:04.000Z",
+ "lastUpdated": "2021-07-26T11:44:48.059Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "flan",
+ "hasLocution": true,
+ "plural": "flans"
+ },
+ {
+ "keyword": "crème caramel",
+ "hasLocution": false,
+ "plural": "crèmes caramel",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02328781-a",
+ "02329581-s",
+ "00831875-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary"
+ ],
+ "_id": 25121,
+ "created": "2011-08-04T17:52:38.000Z",
+ "lastUpdated": "2021-07-26T11:45:49.420Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fort",
+ "hasLocution": true
+ },
+ {
+ "keyword": "musclé",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "costaud",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "00326129-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 25119,
+ "created": "2011-08-04T17:49:00.000Z",
+ "lastUpdated": "2021-07-26T11:45:27.454Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01794799-n",
+ "01794266-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic"
+ ],
+ "_id": 25125,
+ "created": "2011-08-04T17:54:48.000Z",
+ "lastUpdated": "2021-07-26T11:45:59.890Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coq",
+ "hasLocution": true,
+ "plural": "coqs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chemistry"
+ ],
+ "synsets": [
+ "13793544-n"
+ ],
+ "tags": [
+ "chemistry"
+ ],
+ "_id": 25137,
+ "created": "2011-08-04T18:15:32.000Z",
+ "lastUpdated": "2021-07-26T11:46:25.952Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gouttes d'eau",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "gouttes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "visual artist",
+ "professional artist",
+ "painting"
+ ],
+ "synsets": [
+ "03456742-n",
+ "09831743-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "visual art",
+ "painting"
+ ],
+ "_id": 25139,
+ "created": "2011-08-04T18:18:48.000Z",
+ "lastUpdated": "2021-07-26T11:46:41.751Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "graffeur",
+ "hasLocution": false,
+ "plural": "graffeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "painting",
+ "urban area"
+ ],
+ "synsets": [
+ "03456742-n"
+ ],
+ "tags": [
+ "visual art",
+ "painting",
+ "place",
+ "urban area"
+ ],
+ "_id": 25143,
+ "created": "2011-08-04T18:23:43.000Z",
+ "lastUpdated": "2021-07-27T02:23:54.559Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "graffiti",
+ "hasLocution": false,
+ "plural": "graffitis"
+ },
+ {
+ "keyword": "tag",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tags"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features",
+ "dietetics",
+ "core vocabulary-communication",
+ "core vocabulary-living being",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00989218-a",
+ "00990368-s",
+ "00989957-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features",
+ "health",
+ "dietetics",
+ "core vocabulary"
+ ],
+ "_id": 25133,
+ "created": "2011-08-04T18:12:13.000Z",
+ "lastUpdated": "2021-07-26T11:46:12.786Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "gros",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "obèse",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "potelé",
+ "hasLocution": false
+ },
+ {
+ "type": 4,
+ "keyword": "rondelet",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics",
+ "chemistry"
+ ],
+ "synsets": [
+ "14901736-n",
+ "14504664-n"
+ ],
+ "tags": [
+ "physics",
+ "chemistry"
+ ],
+ "_id": 25129,
+ "created": "2011-08-04T18:04:13.000Z",
+ "lastUpdated": "2021-07-26T11:46:06.790Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gaz",
+ "hasLocution": false,
+ "plural": "gaz"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "insect",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02232196-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 25147,
+ "created": "2011-08-04T18:28:36.000Z",
+ "lastUpdated": "2021-07-27T02:22:44.827Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grillon",
+ "hasLocution": false,
+ "plural": "grillons"
+ },
+ {
+ "keyword": "criquet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "criquets"
+ },
+ {
+ "keyword": "cricket",
+ "hasLocution": false,
+ "plural": "crickets",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "13506473-n",
+ "11460617-n"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 25153,
+ "created": "2011-08-04T18:48:59.000Z",
+ "lastUpdated": "2021-07-26T11:25:45.492Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gelée",
+ "hasLocution": false,
+ "plural": "gelées"
+ },
+ {
+ "keyword": "gel",
+ "type": 2,
+ "plural": "gels",
+ "hasLocution": true
+ },
+ {
+ "keyword": "givre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "givres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "document"
+ ],
+ "synsets": [
+ "01003688-v",
+ "00187671-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "document"
+ ],
+ "_id": 25151,
+ "created": "2011-08-04T18:42:54.000Z",
+ "lastUpdated": "2021-07-28T10:33:07.557Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "classer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "garder",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "ranger",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00020664-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 25157,
+ "created": "2011-08-04T18:53:03.000Z",
+ "lastUpdated": "2021-07-26T11:26:29.536Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "hypnotiser",
+ "hasLocution": false
+ },
+ {
+ "keyword": "envouter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "regional costume"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "regional costume"
+ ],
+ "_id": 25099,
+ "created": "2011-08-04T17:20:13.000Z",
+ "lastUpdated": "2021-07-30T05:41:56.102Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fallero",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming"
+ ],
+ "synsets": [
+ "01966678-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 25166,
+ "created": "2011-08-04T19:16:29.000Z",
+ "lastUpdated": "2021-07-26T11:26:59.292Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "plonger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08933207-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 25168,
+ "created": "2011-08-04T19:24:13.000Z",
+ "lastUpdated": "2021-07-26T11:27:05.085Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Iraq",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08930441-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 25169,
+ "created": "2011-08-04T19:26:35.000Z",
+ "lastUpdated": "2021-07-26T11:27:08.366Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Iran",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08810400-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 25170,
+ "created": "2011-08-04T19:28:28.000Z",
+ "lastUpdated": "2021-07-26T11:27:11.077Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Israël",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "04260547-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 25171,
+ "created": "2011-08-04T19:47:57.000Z",
+ "lastUpdated": "2021-07-26T11:27:18.766Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "savon",
+ "hasLocution": true,
+ "plural": "savons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system",
+ "auditory system"
+ ],
+ "synsets": [
+ "05285227-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system",
+ "auditory system"
+ ],
+ "_id": 25163,
+ "created": "2011-08-04T19:07:44.000Z",
+ "lastUpdated": "2021-07-27T02:21:06.476Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "osselets",
+ "hasLocution": false,
+ "plural": "osselets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "building facility"
+ ],
+ "synsets": [
+ "03548783-n",
+ "00712380-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "building",
+ "building facility"
+ ],
+ "_id": 25175,
+ "created": "2011-08-04T19:55:07.000Z",
+ "lastUpdated": "2021-07-26T11:27:55.538Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jacuzzi",
+ "hasLocution": false,
+ "plural": "jacuzzis"
+ },
+ {
+ "keyword": "spa",
+ "hasLocution": true,
+ "plural": "spas"
+ },
+ {
+ "keyword": "bain chaud",
+ "hasLocution": false,
+ "plural": "bains chauds"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "agriculture"
+ ],
+ "synsets": [
+ "03956635-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 25159,
+ "created": "2011-08-04T19:02:49.000Z",
+ "lastUpdated": "2021-07-26T11:26:45.120Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fourche",
+ "hasLocution": true,
+ "plural": "fourches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08920762-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 25165,
+ "created": "2011-08-04T19:11:43.000Z",
+ "lastUpdated": "2021-07-27T02:20:54.244Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Inde",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport modality",
+ "chess"
+ ],
+ "synsets": [
+ "01075360-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport modality",
+ "chess"
+ ],
+ "_id": 25181,
+ "created": "2011-08-05T18:15:56.000Z",
+ "lastUpdated": "2021-07-26T11:28:18.010Z",
+ "keywords": [
+ {
+ "keyword": "jouer aux échecs",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02131817-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 25187,
+ "created": "2011-08-05T18:21:32.000Z",
+ "lastUpdated": "2021-07-26T11:29:23.871Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lion",
+ "hasLocution": true,
+ "plural": "lions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "library science",
+ "literature",
+ "core vocabulary-education",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "06422547-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "library science",
+ "literature",
+ "core vocabulary"
+ ],
+ "_id": 25191,
+ "created": "2011-08-05T18:25:02.000Z",
+ "lastUpdated": "2021-07-26T11:29:49.489Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "livre",
+ "hasLocution": true,
+ "plural": "livres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport modality",
+ "chess"
+ ],
+ "synsets": [
+ "01075360-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport modality",
+ "chess"
+ ],
+ "_id": 25182,
+ "created": "2011-08-05T18:16:17.000Z",
+ "lastUpdated": "2021-07-26T11:28:29.668Z",
+ "keywords": [
+ {
+ "keyword": "jouer aux échecs",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional game",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "00456623-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 25179,
+ "created": "2011-08-05T18:14:04.000Z",
+ "lastUpdated": "2021-07-30T08:17:04.362Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jeu du béret",
+ "hasLocution": false,
+ "plural": "jeu du béret"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "01034481-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 25195,
+ "created": "2011-08-05T18:28:53.000Z",
+ "lastUpdated": "2021-07-26T11:29:59.808Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "lisse",
+ "hasLocution": true
+ },
+ {
+ "keyword": "raide",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07862447-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 25185,
+ "created": "2011-08-05T18:19:42.000Z",
+ "lastUpdated": "2021-07-26T11:29:18.311Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lait concentré",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "pot de lait concentré",
+ "hasLocution": false,
+ "plural": "pots de lait concentré"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07674287-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 25199,
+ "created": "2011-08-05T18:37:15.000Z",
+ "lastUpdated": "2021-07-26T11:30:39.398Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "filets de porc mariné",
+ "hasLocution": false
+ },
+ {
+ "keyword": "porc mariné",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "insect",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02170897-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 25203,
+ "created": "2011-08-06T17:57:10.000Z",
+ "lastUpdated": "2021-07-26T11:31:26.149Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ver luisant",
+ "hasLocution": false,
+ "plural": "vers luisants"
+ },
+ {
+ "keyword": "luciole",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "lucioles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "09002489-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 25207,
+ "created": "2011-08-06T18:02:30.000Z",
+ "lastUpdated": "2021-07-26T11:31:30.015Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Machu Picchu",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "00018519-v",
+ "00018151-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 25209,
+ "created": "2011-08-06T18:06:17.000Z",
+ "lastUpdated": "2021-07-26T11:31:36.629Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se lever tôt",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07646632-n",
+ "07706018-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "core vocabulary"
+ ],
+ "_id": 25211,
+ "created": "2011-08-06T18:08:26.000Z",
+ "lastUpdated": "2021-07-28T10:33:13.877Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "madeleine",
+ "hasLocution": true,
+ "plural": "madeleines"
+ },
+ {
+ "keyword": "cupcake",
+ "hasLocution": false,
+ "plural": "cupcakes"
+ },
+ {
+ "keyword": "muffin",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "muffins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "03491080-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 25220,
+ "created": "2011-08-06T18:27:33.000Z",
+ "lastUpdated": "2021-07-26T11:33:16.301Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poignée",
+ "hasLocution": false,
+ "plural": "poignées"
+ },
+ {
+ "keyword": "poignée de porte",
+ "hasLocution": false,
+ "plural": "poignées de porte",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "03491080-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 25219,
+ "created": "2011-08-06T18:27:00.000Z",
+ "lastUpdated": "2021-07-26T11:33:30.389Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poignée",
+ "hasLocution": false,
+ "plural": "poignées"
+ },
+ {
+ "keyword": "poignée de porte",
+ "hasLocution": false,
+ "plural": "poignées de porte",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "00216404-s"
+ ],
+ "tags": [
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 25233,
+ "created": "2011-08-06T18:46:18.000Z",
+ "lastUpdated": "2021-07-30T05:39:12.074Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chevelure",
+ "hasLocution": false,
+ "plural": "chevelures"
+ },
+ {
+ "keyword": "cheveux longs",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "chevelure",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "chevelures"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "show",
+ "popular festival"
+ ],
+ "synsets": [
+ "03349961-n"
+ ],
+ "tags": [
+ "leisure",
+ "show",
+ "work",
+ "event",
+ "popular event",
+ "popular festival"
+ ],
+ "_id": 25231,
+ "created": "2011-08-06T18:43:51.000Z",
+ "lastUpdated": "2021-07-30T05:39:15.965Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mascletá",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "chapelet de pétards",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "03780604-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 25227,
+ "created": "2011-08-06T18:38:32.000Z",
+ "lastUpdated": "2021-07-26T11:35:06.741Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gant de toilette",
+ "hasLocution": false,
+ "plural": "gants de toilette"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "election"
+ ],
+ "synsets": [
+ "08556480-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 25241,
+ "created": "2011-08-06T19:00:45.000Z",
+ "lastUpdated": "2021-07-30T08:17:21.002Z",
+ "keywords": [
+ {
+ "keyword": "bureau de vote",
+ "hasLocution": false,
+ "plural": "bureaux de vote",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07785560-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 25237,
+ "created": "2011-08-06T18:49:22.000Z",
+ "lastUpdated": "2021-07-26T11:35:57.235Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coing",
+ "hasLocution": true,
+ "plural": "coings"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "election"
+ ],
+ "synsets": [
+ "08556480-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 25242,
+ "created": "2011-08-06T19:01:05.000Z",
+ "lastUpdated": "2021-07-30T08:25:58.090Z",
+ "keywords": [
+ {
+ "keyword": "bureau de vote",
+ "plural": "bureaux de vote",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physiology",
+ "symptom"
+ ],
+ "synsets": [
+ "05422738-n"
+ ],
+ "tags": [
+ "human body",
+ "physiology",
+ "human physiology",
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 25249,
+ "created": "2011-08-06T19:07:43.000Z",
+ "lastUpdated": "2021-07-30T05:38:46.137Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "morve",
+ "hasLocution": false,
+ "plural": "morves"
+ },
+ {
+ "keyword": "mucosités",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03771096-n",
+ "03920456-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 25257,
+ "created": "2011-08-10T12:32:17.000Z",
+ "lastUpdated": "2021-07-26T11:38:12.236Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moulin ",
+ "hasLocution": false,
+ "plural": "moulins"
+ },
+ {
+ "keyword": "moulin à poivre",
+ "hasLocution": false,
+ "plural": "moulins à poivre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "insect",
+ "oviparous",
+ "flying animal"
+ ],
+ "synsets": [
+ "02192818-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "flying animal"
+ ],
+ "_id": 25261,
+ "created": "2011-08-10T12:35:24.000Z",
+ "lastUpdated": "2021-07-26T11:38:20.920Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mouche",
+ "hasLocution": true,
+ "plural": "mouches"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02558087-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary"
+ ],
+ "_id": 25253,
+ "created": "2011-08-10T12:26:38.000Z",
+ "lastUpdated": "2021-07-26T11:37:42.744Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mouillé",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "mouillée",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "gender violence"
+ ],
+ "synsets": [
+ "00134488-n",
+ "01419525-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime",
+ "gender violence"
+ ],
+ "_id": 25215,
+ "created": "2011-08-06T18:13:26.000Z",
+ "lastUpdated": "2021-07-28T10:33:17.623Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "gifler"
+ },
+ {
+ "type": 2,
+ "keyword": "gifle",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work machine",
+ "agriculture"
+ ],
+ "synsets": [
+ "03151512-n"
+ ],
+ "tags": [
+ "work",
+ "work machine",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 25265,
+ "created": "2011-08-10T12:48:10.000Z",
+ "lastUpdated": "2021-07-30T05:38:42.099Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "motoculteur",
+ "hasLocution": false,
+ "plural": "motoculteurs"
+ },
+ {
+ "keyword": "motobineuse",
+ "hasLocution": false,
+ "plural": "motobineuses",
+ "type": 2
+ },
+ {
+ "keyword": "rotovator",
+ "hasLocution": false,
+ "plural": "rotovators",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08994872-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 25273,
+ "created": "2011-08-10T13:16:56.000Z",
+ "lastUpdated": "2021-07-26T11:40:45.380Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Nouvelle Zélande",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "hardware",
+ "mass media",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "02995984-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "computing",
+ "hardware",
+ "communication",
+ "mass media",
+ "core vocabulary"
+ ],
+ "_id": 25269,
+ "created": "2011-08-10T12:57:30.000Z",
+ "lastUpdated": "2021-07-26T11:40:41.813Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "portable",
+ "hasLocution": true,
+ "plural": "portables"
+ },
+ {
+ "type": 2,
+ "keyword": "téléphone portable",
+ "hasLocution": true,
+ "plural": "téléphones portables"
+ },
+ {
+ "keyword": "cellulaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cellulaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses"
+ ],
+ "synsets": [
+ "02129213-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 25274,
+ "created": "2011-08-10T13:19:58.000Z",
+ "lastUpdated": "2021-07-26T11:40:48.900Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "oviparous",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02529227-a"
+ ],
+ "tags": [
+ "animal",
+ "oviparous",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 25284,
+ "created": "2011-08-10T13:37:14.000Z",
+ "lastUpdated": "2024-10-21T12:04:10.896Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ovipare",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08998272-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 25288,
+ "created": "2011-08-10T13:41:44.000Z",
+ "lastUpdated": "2021-07-26T11:41:58.965Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pakistan",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "digestive system"
+ ],
+ "synsets": [
+ "05317250-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "human physiology",
+ "physiology",
+ "digestive system"
+ ],
+ "_id": 25289,
+ "created": "2011-08-10T13:45:13.000Z",
+ "lastUpdated": "2021-07-26T11:42:05.324Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "palais",
+ "hasLocution": false,
+ "plural": "palais"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01814550-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "domestic"
+ ],
+ "_id": 25293,
+ "created": "2011-08-10T13:49:39.000Z",
+ "lastUpdated": "2021-07-26T11:42:14.851Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pigeon",
+ "hasLocution": true,
+ "plural": "pigeons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "character",
+ "christmas"
+ ],
+ "synsets": [
+ "10570230-n"
+ ],
+ "tags": [
+ "character",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 25297,
+ "created": "2011-08-10T13:53:00.000Z",
+ "lastUpdated": "2021-07-26T11:43:21.011Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Père-Noël",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Père Noël",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Saint Nicolas",
+ "hasLocution": true,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "character",
+ "christmas",
+ "core vocabulary-living being",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "10570230-n"
+ ],
+ "tags": [
+ "character",
+ "event",
+ "popular event",
+ "christmas",
+ "core vocabulary"
+ ],
+ "_id": 25298,
+ "created": "2011-08-10T13:54:34.000Z",
+ "lastUpdated": "2021-07-26T11:43:26.010Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Père-Noël",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Père Noël",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Saint Nicolas",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02129213-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses",
+ "core vocabulary"
+ ],
+ "_id": 25275,
+ "created": "2011-08-10T13:20:21.000Z",
+ "lastUpdated": "2021-07-26T11:40:53.293Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system"
+ ],
+ "synsets": [
+ "05287187-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system"
+ ],
+ "_id": 25278,
+ "created": "2011-08-10T13:30:07.000Z",
+ "lastUpdated": "2021-07-26T11:41:04.938Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "omoplate",
+ "hasLocution": false,
+ "plural": "omoplates"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01466592-v",
+ "00277653-v",
+ "02437377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 25282,
+ "created": "2011-08-10T13:33:26.000Z",
+ "lastUpdated": "2021-07-26T11:41:43.244Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ranger",
+ "hasLocution": true
+ },
+ {
+ "keyword": "organiser",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "ordonner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre dans l'ordre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical features",
+ "integumentary system"
+ ],
+ "synsets": [
+ "05252535-n"
+ ],
+ "tags": [
+ "human body",
+ "physical features",
+ "human physiology",
+ "physiology",
+ "integumentary system"
+ ],
+ "_id": 25303,
+ "created": "2011-08-10T14:00:10.000Z",
+ "lastUpdated": "2021-07-30T05:38:29.743Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "tache de rousseur",
+ "plural": "taches de rousseur"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "texture"
+ ],
+ "synsets": [
+ "00053931-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "texture"
+ ],
+ "_id": 25307,
+ "created": "2011-08-10T15:57:50.000Z",
+ "lastUpdated": "2021-07-28T08:58:18.486Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "collant",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "collante",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "02911542-n",
+ "03078859-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 25311,
+ "created": "2011-08-10T16:03:19.000Z",
+ "lastUpdated": "2021-07-28T08:59:18.905Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peigne pour chevaux",
+ "hasLocution": false,
+ "plural": "peignes pour chevaux"
+ },
+ {
+ "keyword": "peigne à crinière",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "peignes à crinière"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "08661788-n",
+ "14564367-n",
+ "14565454-n",
+ "07238811-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 25315,
+ "created": "2011-08-10T16:12:40.000Z",
+ "lastUpdated": "2021-07-27T02:17:47.553Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "danger",
+ "hasLocution": true,
+ "plural": "danger"
+ },
+ {
+ "keyword": "avertissement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "avertissements"
+ },
+ {
+ "keyword": "alerte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "alertes"
+ },
+ {
+ "keyword": "risque",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "risques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "08946959-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 25319,
+ "created": "2011-08-10T16:20:56.000Z",
+ "lastUpdated": "2021-07-27T02:15:51.583Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Petra",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Jordanie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character",
+ "painting"
+ ],
+ "synsets": [
+ "11254941-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "visual art",
+ "painting"
+ ],
+ "_id": 25325,
+ "created": "2011-08-10T16:32:22.000Z",
+ "lastUpdated": "2021-07-27T02:13:26.882Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pablo Picasso",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Picasso ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction",
+ "residential building"
+ ],
+ "synsets": [
+ "03632051-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "home"
+ ],
+ "_id": 25321,
+ "created": "2011-08-10T16:26:59.000Z",
+ "lastUpdated": "2021-07-27T02:14:54.863Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "heurtoir",
+ "plural": "heurtoirs"
+ },
+ {
+ "type": 2,
+ "keyword": "marteau de porte",
+ "hasLocution": false,
+ "plural": "marteaux de porte"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spices"
+ ],
+ "synsets": [
+ "07831564-n",
+ "07831815-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "spices"
+ ],
+ "_id": 25331,
+ "created": "2011-08-10T16:38:34.000Z",
+ "lastUpdated": "2021-07-27T02:12:44.444Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poivre",
+ "hasLocution": true,
+ "plural": "poivres"
+ },
+ {
+ "keyword": "grains de poivre",
+ "hasLocution": false,
+ "plural": "grains de poivre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architecture",
+ "monument",
+ "archaeology"
+ ],
+ "synsets": [
+ "13937870-n",
+ "13940723-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "place",
+ "monument",
+ "history",
+ "archaeology"
+ ],
+ "_id": 25335,
+ "created": "2011-08-10T17:13:53.000Z",
+ "lastUpdated": "2021-07-27T02:12:10.596Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pyramide",
+ "hasLocution": true,
+ "plural": "pyramides"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03415848-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 25339,
+ "created": "2011-08-10T17:22:25.000Z",
+ "lastUpdated": "2021-07-27T02:11:38.944Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guêtres",
+ "hasLocution": false,
+ "plural": "guêtres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "students",
+ "core vocabulary-communication",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "00663742-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "students",
+ "core vocabulary"
+ ],
+ "_id": 25301,
+ "created": "2011-08-10T13:58:16.000Z",
+ "lastUpdated": "2021-07-30T05:38:34.063Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "noter les présents",
+ "hasLocution": false
+ },
+ {
+ "keyword": "faire l'appel",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "meat"
+ ],
+ "synsets": [
+ "07660576-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 25343,
+ "created": "2011-08-10T17:25:11.000Z",
+ "lastUpdated": "2024-12-08T07:32:52.234Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poulet",
+ "hasLocution": true,
+ "plural": "poulets"
+ },
+ {
+ "type": 2,
+ "keyword": "poulet rôti",
+ "hasLocution": true,
+ "plural": "poulets rôtis"
+ },
+ {
+ "keyword": "poulet grillé",
+ "hasLocution": false,
+ "plural": "poulets grillés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "painting"
+ ],
+ "synsets": [
+ "02147248-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "visual art",
+ "painting"
+ ],
+ "_id": 25347,
+ "created": "2011-08-10T17:30:47.000Z",
+ "lastUpdated": "2021-07-27T02:09:34.657Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "poser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "locomotor system",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05570899-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "locomotor system",
+ "core vocabulary"
+ ],
+ "_id": 25327,
+ "created": "2011-08-10T16:34:45.000Z",
+ "lastUpdated": "2021-07-27T02:13:16.044Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pied",
+ "hasLocution": false,
+ "plural": "pieds"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "painting"
+ ],
+ "synsets": [
+ "02147248-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "visual art",
+ "painting"
+ ],
+ "_id": 25349,
+ "created": "2011-08-10T17:31:41.000Z",
+ "lastUpdated": "2021-07-27T02:09:23.717Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "poser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "painting"
+ ],
+ "synsets": [
+ "02147248-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "visual art",
+ "painting"
+ ],
+ "_id": 25348,
+ "created": "2011-08-10T17:31:04.000Z",
+ "lastUpdated": "2021-07-27T02:09:29.121Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "poser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "animal physiology"
+ ],
+ "synsets": [
+ "01982590-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "animal physiology"
+ ],
+ "_id": 25353,
+ "created": "2011-08-10T17:36:34.000Z",
+ "lastUpdated": "2021-07-27T02:08:43.796Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se poser",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02174871-v",
+ "02175483-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 25355,
+ "created": "2011-08-10T17:38:36.000Z",
+ "lastUpdated": "2021-07-30T05:38:23.293Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'occuper",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "prêter attention",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "processed food"
+ ],
+ "synsets": [
+ "07866305-n",
+ "09408804-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "processed food"
+ ],
+ "_id": 25363,
+ "created": "2011-08-10T17:49:04.000Z",
+ "lastUpdated": "2021-07-27T02:04:57.336Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fromage",
+ "hasLocution": true,
+ "plural": "fromages"
+ },
+ {
+ "type": 2,
+ "keyword": "morceau de fromage",
+ "hasLocution": false,
+ "plural": "morceaux de fromage"
+ },
+ {
+ "keyword": "part de fromage",
+ "hasLocution": false,
+ "plural": "parts de fromage",
+ "type": 2
+ },
+ {
+ "keyword": "portion de fromage",
+ "hasLocution": false,
+ "plural": "portions de fromage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware",
+ "communication aid"
+ ],
+ "synsets": [
+ "03799022-n",
+ "01544805-s"
+ ],
+ "tags": [
+ "computing",
+ "hardware",
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 25369,
+ "created": "2011-08-10T18:02:53.000Z",
+ "lastUpdated": "2021-07-27T02:03:07.254Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "souris adaptée",
+ "hasLocution": false,
+ "plural": "souris adaptées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "03155327-n",
+ "04158045-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 25365,
+ "created": "2011-08-10T17:54:45.000Z",
+ "lastUpdated": "2021-07-28T09:00:45.735Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étrille",
+ "hasLocution": false,
+ "plural": "étrilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07946794-n",
+ "09050574-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 25359,
+ "created": "2011-08-10T17:46:31.000Z",
+ "lastUpdated": "2021-07-30T05:38:18.924Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "queimada",
+ "hasLocution": false,
+ "plural": "queimadas"
+ },
+ {
+ "keyword": "vin chaud",
+ "hasLocution": false,
+ "plural": "vins chauds",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hunting"
+ ],
+ "synsets": [
+ "04481701-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "hunting"
+ ],
+ "_id": 25373,
+ "created": "2011-08-10T18:10:01.000Z",
+ "lastUpdated": "2021-07-27T02:02:50.887Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piège",
+ "hasLocution": false,
+ "plural": "pièges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01751011-v",
+ "01311803-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 25377,
+ "created": "2011-08-10T18:20:50.000Z",
+ "lastUpdated": "2021-07-28T09:01:02.029Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rayer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rayure",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "rayures"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christmas",
+ "birthday",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "13285910-n",
+ "13289865-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "christmas",
+ "social event",
+ "birthday",
+ "core vocabulary"
+ ],
+ "_id": 25381,
+ "created": "2011-08-10T18:24:12.000Z",
+ "lastUpdated": "2021-07-27T02:02:19.118Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cadeau",
+ "hasLocution": true,
+ "plural": "cadeaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "03543359-n",
+ "00116112-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 25385,
+ "created": "2011-08-10T18:34:36.000Z",
+ "lastUpdated": "2021-07-28T09:01:48.360Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "remorque",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "remorque pour chevaux",
+ "hasLocution": false
+ },
+ {
+ "keyword": "van",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 25357,
+ "created": "2011-08-10T17:43:05.000Z",
+ "lastUpdated": "2021-07-27T02:08:14.578Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Badajoz",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "Porte de Palmas",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "amphibian",
+ "oviparous",
+ "river animal"
+ ],
+ "synsets": [
+ "02472103-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "amphibian",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river"
+ ],
+ "_id": 25389,
+ "created": "2011-08-10T18:38:37.000Z",
+ "lastUpdated": "2021-07-27T02:01:10.580Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "têtard",
+ "plural": "têtards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool"
+ ],
+ "synsets": [
+ "01251346-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool"
+ ],
+ "_id": 25379,
+ "created": "2011-08-10T18:22:42.000Z",
+ "lastUpdated": "2021-07-28T09:01:05.874Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "découper",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07875118-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 25401,
+ "created": "2011-08-10T19:03:57.000Z",
+ "lastUpdated": "2021-07-27T01:58:25.699Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "saccharine",
+ "plural": "saccharines"
+ },
+ {
+ "keyword": "saccarine",
+ "hasLocution": false,
+ "plural": "saccarines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "00179456-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 25405,
+ "created": "2011-08-10T19:12:51.000Z",
+ "lastUpdated": "2021-07-28T09:02:08.569Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "retirer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "insect",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02229081-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 25407,
+ "created": "2011-08-10T19:14:37.000Z",
+ "lastUpdated": "2021-07-27T01:57:07.808Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sauterelle",
+ "hasLocution": true,
+ "plural": "sauterelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "02983900-n",
+ "02809273-n",
+ "09048984-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 25411,
+ "created": "2011-08-16T12:36:01.000Z",
+ "lastUpdated": "2021-07-27T01:56:43.008Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "château",
+ "hasLocution": true,
+ "plural": "châteaux"
+ },
+ {
+ "type": 2,
+ "keyword": "citadelle",
+ "hasLocution": false,
+ "plural": "citadelles"
+ },
+ {
+ "type": 1,
+ "keyword": "Citadelle de Malaga",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "painting",
+ "art",
+ "visual art"
+ ],
+ "synsets": [
+ "03882197-n",
+ "08483186-n",
+ "11254941-n"
+ ],
+ "tags": [
+ "visual art",
+ "painting"
+ ],
+ "_id": 25413,
+ "created": "2011-08-16T12:45:26.000Z",
+ "lastUpdated": "2024-12-08T15:31:19.944Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peinture",
+ "hasLocution": true,
+ "plural": "peintures"
+ },
+ {
+ "type": 1,
+ "keyword": "Picasso ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "cubisme",
+ "hasLocution": false
+ },
+ {
+ "keyword": "tableau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "tableaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "visual artist",
+ "professional artist",
+ "painting",
+ "art"
+ ],
+ "synsets": [
+ "10411352-n",
+ "01688794-v"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "visual art",
+ "painting"
+ ],
+ "_id": 25415,
+ "created": "2011-08-16T12:49:09.000Z",
+ "lastUpdated": "2024-12-07T08:06:59.243Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Représenter quelque chose à l'aide de peinture sur un support",
+ "keyword": "peindre",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "peintre",
+ "hasLocution": true,
+ "plural": "peintres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mineral origin material",
+ "jewelry"
+ ],
+ "synsets": [
+ "13393435-n",
+ "15032709-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "mineral origin material",
+ "object",
+ "fashion",
+ "jewelry"
+ ],
+ "_id": 25397,
+ "created": "2011-08-10T18:51:36.000Z",
+ "lastUpdated": "2021-07-27T01:58:36.469Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rubis",
+ "hasLocution": false,
+ "plural": "rubis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "food"
+ ],
+ "synsets": [
+ "01448216-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food"
+ ],
+ "_id": 25393,
+ "created": "2011-08-10T18:45:49.000Z",
+ "lastUpdated": "2021-07-27T01:59:32.618Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ronger",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "food"
+ ],
+ "synsets": [
+ "01448216-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food"
+ ],
+ "_id": 25394,
+ "created": "2011-08-10T18:46:13.000Z",
+ "lastUpdated": "2021-07-27T01:59:38.800Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ronger",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "02971932-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 25419,
+ "created": "2011-08-16T13:00:45.000Z",
+ "lastUpdated": "2021-07-27T01:53:49.192Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voiture à cheval",
+ "hasLocution": false
+ },
+ {
+ "keyword": "calèche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "calèches"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "02971932-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 25420,
+ "created": "2011-08-16T13:01:31.000Z",
+ "lastUpdated": "2021-07-27T01:53:24.882Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voiture à cheval",
+ "hasLocution": false
+ },
+ {
+ "keyword": "calèche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "calèches"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular event",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "11016281-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "core vocabulary"
+ ],
+ "_id": 25427,
+ "created": "2011-08-16T13:09:42.000Z",
+ "lastUpdated": "2021-07-27T01:52:18.241Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saint Georges",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility"
+ ],
+ "synsets": [
+ "04146478-n",
+ "04506595-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 25429,
+ "created": "2011-08-16T13:20:50.000Z",
+ "lastUpdated": "2021-07-27T01:52:09.349Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sauna",
+ "hasLocution": false,
+ "plural": "saunas"
+ },
+ {
+ "type": 2,
+ "keyword": "bain turc",
+ "hasLocution": false,
+ "plural": "bains turcs"
+ },
+ {
+ "keyword": "sauna humide",
+ "hasLocution": false,
+ "plural": "saunas humides",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "senses"
+ ],
+ "synsets": [
+ "05659816-n"
+ ],
+ "tags": [
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 25445,
+ "created": "2011-08-16T13:48:18.000Z",
+ "lastUpdated": "2021-07-27T01:49:04.042Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sens",
+ "hasLocution": true,
+ "plural": "sens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "01562372-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 25447,
+ "created": "2011-08-16T13:58:21.000Z",
+ "lastUpdated": "2021-07-27T01:48:27.993Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "scier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "découper",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "01562372-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 25448,
+ "created": "2011-08-16T13:58:48.000Z",
+ "lastUpdated": "2021-07-27T01:48:13.803Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "scier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "découper",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility"
+ ],
+ "synsets": [
+ "04146478-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 25433,
+ "created": "2011-08-16T13:24:04.000Z",
+ "lastUpdated": "2021-07-27T01:52:01.901Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sauna",
+ "hasLocution": false,
+ "plural": "saunas"
+ },
+ {
+ "type": 2,
+ "keyword": "sauna finlandais",
+ "hasLocution": false,
+ "plural": "saunas finlandais"
+ },
+ {
+ "keyword": "sauna sec",
+ "hasLocution": false,
+ "plural": "saunas secs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "easter week",
+ "religious event",
+ "christianity",
+ "core vocabulary-time",
+ "core vocabulary-religion"
+ ],
+ "synsets": [
+ "15206279-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "easter week",
+ "religious event",
+ "religion",
+ "christianity",
+ "core vocabulary"
+ ],
+ "_id": 25441,
+ "created": "2011-08-16T13:42:05.000Z",
+ "lastUpdated": "2021-03-26T03:02:17.478Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "semaine de Pâques espagnole",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "01562372-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 25449,
+ "created": "2011-08-16T13:59:11.000Z",
+ "lastUpdated": "2021-07-27T01:47:58.445Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "scier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "couper",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00462448-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 25453,
+ "created": "2011-08-16T16:14:36.000Z",
+ "lastUpdated": "2021-07-28T09:02:39.834Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire taire",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "demander le silence",
+ "hasLocution": false
+ },
+ {
+ "keyword": "silence",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "silences"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product",
+ "furniture"
+ ],
+ "synsets": [
+ "03005231-n",
+ "01544805-s"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product",
+ "furniture"
+ ],
+ "_id": 25455,
+ "created": "2011-08-16T16:22:58.000Z",
+ "lastUpdated": "2021-07-27T01:47:17.687Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaise adaptée",
+ "hasLocution": false,
+ "plural": "chaises adaptées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "04130834-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 25459,
+ "created": "2011-08-16T16:26:49.000Z",
+ "lastUpdated": "2021-07-27T01:46:56.824Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "selle",
+ "hasLocution": false,
+ "plural": "selles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00218901-v",
+ "02562150-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary"
+ ],
+ "_id": 25437,
+ "created": "2011-08-16T13:36:07.000Z",
+ "lastUpdated": "2021-07-28T09:02:22.734Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "sec",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sèche",
+ "type": 4,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "04130834-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 25460,
+ "created": "2011-08-16T16:27:06.000Z",
+ "lastUpdated": "2021-07-27T01:46:40.003Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "selle",
+ "hasLocution": false,
+ "plural": "selles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04263630-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "core vocabulary"
+ ],
+ "_id": 25479,
+ "created": "2011-08-16T16:59:39.000Z",
+ "lastUpdated": "2021-07-27T01:46:10.777Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canapé",
+ "hasLocution": true,
+ "plural": "canapés"
+ },
+ {
+ "keyword": "sofa",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sofas"
+ },
+ {
+ "keyword": "divan",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "divans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09058927-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 25483,
+ "created": "2011-08-16T17:03:52.000Z",
+ "lastUpdated": "2021-07-27T01:45:01.021Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Thaïlande",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "04393370-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 25484,
+ "created": "2011-08-16T17:07:33.000Z",
+ "lastUpdated": "2021-07-27T01:44:54.062Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Inde",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Taj Mahal",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "02741540-n",
+ "04069540-n",
+ "03267635-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 25475,
+ "created": "2011-08-16T16:56:31.000Z",
+ "lastUpdated": "2021-07-24T21:59:39.323Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fauteuil",
+ "hasLocution": true,
+ "plural": "fauteuils"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07715329-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 25486,
+ "created": "2011-08-16T17:11:35.000Z",
+ "lastUpdated": "2021-07-27T01:44:45.188Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nouilles",
+ "hasLocution": true,
+ "plural": "nouilles"
+ },
+ {
+ "keyword": "pâtes",
+ "hasLocution": false,
+ "plural": "pâtes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "birthday"
+ ],
+ "synsets": [
+ "07645597-n",
+ "07644479-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 25488,
+ "created": "2011-08-16T17:28:41.000Z",
+ "lastUpdated": "2021-07-27T01:44:19.668Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "gâteau d'anniversaire",
+ "plural": "gâteaux d'anniversaire"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "gâteau",
+ "plural": "gâteaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "13631405-n"
+ ],
+ "tags": [],
+ "_id": 25492,
+ "created": "2011-08-16T17:49:41.000Z",
+ "lastUpdated": "2021-07-27T01:42:40.400Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "points",
+ "plural": "points"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "04583288-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 25467,
+ "created": "2011-08-16T16:40:42.000Z",
+ "lastUpdated": "2021-07-24T22:00:00.536Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fauteuil roulant",
+ "hasLocution": true,
+ "plural": "fauteuils roulants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "rome"
+ ],
+ "synsets": [
+ "04111594-n",
+ "04424944-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "history",
+ "civilization",
+ "Rome"
+ ],
+ "_id": 25494,
+ "created": "2011-08-16T17:56:24.000Z",
+ "lastUpdated": "2021-07-27T01:05:37.880Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Théâtre romain de Mérida",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Mérida",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "mass media",
+ "mass media device",
+ "core vocabulary-object",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "06289128-n",
+ "04413042-n",
+ "03682085-n",
+ "03089644-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "communication",
+ "mass media",
+ "mass media device",
+ "core vocabulary"
+ ],
+ "_id": 25498,
+ "created": "2011-08-16T18:03:45.000Z",
+ "lastUpdated": "2021-07-27T01:08:30.691Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "télé",
+ "hasLocution": true,
+ "plural": "télés"
+ },
+ {
+ "type": 2,
+ "keyword": "télévision",
+ "hasLocution": true,
+ "plural": "télévisions"
+ },
+ {
+ "type": 2,
+ "keyword": "écran",
+ "hasLocution": true,
+ "plural": "écrans"
+ },
+ {
+ "type": 2,
+ "keyword": "écran LCD",
+ "hasLocution": true,
+ "plural": "écran LCDs"
+ },
+ {
+ "type": 2,
+ "keyword": "téléviseur",
+ "hasLocution": true,
+ "plural": "téléviseur"
+ },
+ {
+ "keyword": "TV",
+ "hasLocution": false,
+ "plural": "TVs",
+ "type": 2
+ },
+ {
+ "keyword": "moniteur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "moniteur"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hunting"
+ ],
+ "synsets": [
+ "04481701-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "hunting"
+ ],
+ "_id": 25507,
+ "created": "2011-08-16T18:24:06.000Z",
+ "lastUpdated": "2021-07-28T09:03:06.164Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piège",
+ "hasLocution": false,
+ "plural": "pièges"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03796486-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product",
+ "core vocabulary"
+ ],
+ "_id": 25471,
+ "created": "2011-08-16T16:45:31.000Z",
+ "lastUpdated": "2021-07-24T21:52:17.843Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "plural": "fauteuils roulants électriques",
+ "keyword": "fauteuil roulant électrique"
+ },
+ {
+ "type": 2,
+ "keyword": "fauteuil électrique",
+ "hasLocution": false,
+ "plural": "fauteuils électriques"
+ },
+ {
+ "type": 2,
+ "keyword": "fauteuil roulant à moteur",
+ "hasLocution": true,
+ "plural": "fauteuils roulants à moteur"
+ },
+ {
+ "keyword": "fauteuil",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "fauteuils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "01930097-n",
+ "14209102-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 25502,
+ "created": "2011-08-16T18:13:08.000Z",
+ "lastUpdated": "2021-07-27T01:40:48.241Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ténia",
+ "hasLocution": false,
+ "plural": "ténias"
+ },
+ {
+ "keyword": "ver solitaire",
+ "hasLocution": false,
+ "plural": "vers solitaires",
+ "type": 2
+ },
+ {
+ "keyword": "infection au ténia",
+ "hasLocution": false,
+ "plural": "infections au ténia",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "muscular system",
+ "human body"
+ ],
+ "synsets": [
+ "05599525-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "muscular system"
+ ],
+ "_id": 25514,
+ "created": "2011-08-16T18:32:20.000Z",
+ "lastUpdated": "2024-12-13T07:20:37.989Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trapèze",
+ "hasLocution": true,
+ "plural": "trapèzes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "02373012-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 25518,
+ "created": "2011-08-16T18:35:51.000Z",
+ "lastUpdated": "2021-07-28T09:03:32.683Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mamelle",
+ "hasLocution": false,
+ "plural": "mamelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "viviparous",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02529085-a"
+ ],
+ "tags": [
+ "animal",
+ "viviparous",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 25528,
+ "created": "2011-08-16T18:50:02.000Z",
+ "lastUpdated": "2024-10-21T12:04:02.552Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "vivipare",
+ "hasLocution": false,
+ "plural": "vivipares"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance",
+ "mass media",
+ "hardware",
+ "core vocabulary-object",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "04412132-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "communication",
+ "mass media",
+ "computing",
+ "hardware",
+ "core vocabulary"
+ ],
+ "_id": 25524,
+ "created": "2011-08-16T18:41:22.000Z",
+ "lastUpdated": "2021-07-28T09:03:55.033Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caméra vidéo",
+ "hasLocution": true,
+ "plural": "caméras vidéo"
+ },
+ {
+ "type": 2,
+ "keyword": "caméscope",
+ "hasLocution": true,
+ "plural": "caméscopes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "02052000-v",
+ "01225522-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 25532,
+ "created": "2011-08-16T18:55:46.000Z",
+ "lastUpdated": "2021-07-28T09:04:30.466Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "retourner",
+ "hasLocution": false
+ },
+ {
+ "keyword": "tour",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "tours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "10778819-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 25534,
+ "created": "2011-08-16T19:02:16.000Z",
+ "lastUpdated": "2021-07-28T09:05:03.503Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bénévole",
+ "hasLocution": false,
+ "plural": "bénévoles"
+ },
+ {
+ "keyword": "volontaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "volontaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "10778819-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 25536,
+ "created": "2011-08-16T19:02:52.000Z",
+ "lastUpdated": "2021-07-28T09:05:24.087Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "volontaire",
+ "hasLocution": false,
+ "plural": "volontaires"
+ },
+ {
+ "keyword": "bénévole",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "bénévoles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hunting"
+ ],
+ "synsets": [
+ "04481701-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "hunting"
+ ],
+ "_id": 25506,
+ "created": "2011-08-16T18:23:38.000Z",
+ "lastUpdated": "2021-07-28T09:02:57.734Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piège",
+ "hasLocution": false,
+ "plural": "pièges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "public building"
+ ],
+ "synsets": [
+ "03094209-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "public administration"
+ ],
+ "_id": 25542,
+ "created": "2011-08-16T19:57:33.000Z",
+ "lastUpdated": "2021-07-28T09:05:44.496Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "palais des congrès ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "centre de conférences",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "public building",
+ "monument"
+ ],
+ "synsets": [
+ "03094209-n",
+ "09048984-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "public administration",
+ "monument"
+ ],
+ "_id": 25544,
+ "created": "2011-08-16T19:58:41.000Z",
+ "lastUpdated": "2021-07-30T05:38:14.365Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Palais des Foires et des Congrès de Malaga",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "religious building",
+ "religious place",
+ "christianity"
+ ],
+ "synsets": [
+ "09048984-n",
+ "02987658-n",
+ "02987516-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "building",
+ "religion",
+ "christianity"
+ ],
+ "_id": 25550,
+ "created": "2011-08-16T20:04:50.000Z",
+ "lastUpdated": "2021-07-28T09:05:57.534Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Cathédrale de Malaga",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "public building",
+ "monument",
+ "saragossa"
+ ],
+ "synsets": [
+ "03094209-n",
+ "09050049-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "public administration",
+ "monument",
+ "Aragon",
+ "Saragossa"
+ ],
+ "_id": 25545,
+ "created": "2011-08-16T19:59:25.000Z",
+ "lastUpdated": "2021-07-30T05:38:09.723Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "palais des congrès ",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Palais des Congrès de Saragosse ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "psychology",
+ "therapy"
+ ],
+ "synsets": [
+ "00704941-n"
+ ],
+ "tags": [
+ "psychology",
+ "therapy"
+ ],
+ "_id": 25552,
+ "created": "2011-08-16T20:06:43.000Z",
+ "lastUpdated": "2021-07-28T09:06:14.625Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "thérapie de groupe",
+ "hasLocution": false,
+ "plural": "thérapies de groupe"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "condiment",
+ "cookery",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07875260-n",
+ "14816873-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment",
+ "cookery",
+ "core vocabulary"
+ ],
+ "_id": 25560,
+ "created": "2011-08-16T20:22:51.000Z",
+ "lastUpdated": "2021-07-28T09:07:30.913Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sucre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "paquet de sucre",
+ "hasLocution": false,
+ "plural": "paquets de sucre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07945591-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 25564,
+ "created": "2011-08-16T20:28:06.000Z",
+ "lastUpdated": "2021-07-28T09:07:40.538Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "café",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "paquet de café",
+ "hasLocution": false,
+ "plural": "paquets de café"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07650764-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 25568,
+ "created": "2011-08-16T20:39:28.000Z",
+ "lastUpdated": "2021-07-28T09:08:38.524Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "biscuits"
+ },
+ {
+ "type": 2,
+ "keyword": "paquet de biscuits",
+ "hasLocution": true,
+ "plural": "paquets de biscuits"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07716709-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 25572,
+ "created": "2011-08-16T20:44:40.000Z",
+ "lastUpdated": "2021-07-28T09:08:51.567Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "macaronis",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "paquet de macaronis",
+ "hasLocution": false,
+ "plural": "paquets de macaronis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mineral rich food",
+ "cookery",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07829083-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "mineral rich food",
+ "cookery",
+ "core vocabulary"
+ ],
+ "_id": 25576,
+ "created": "2011-08-16T20:49:42.000Z",
+ "lastUpdated": "2021-07-28T09:08:57.648Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sel",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07715659-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 25580,
+ "created": "2011-08-16T21:00:22.000Z",
+ "lastUpdated": "2021-07-28T09:09:05.720Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "spaghettis",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "paquet de spaghettis",
+ "hasLocution": false,
+ "plural": "paquets de spaghettis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cereal"
+ ],
+ "synsets": [
+ "07820299-n",
+ "07820633-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "cereal"
+ ],
+ "_id": 25556,
+ "created": "2011-08-16T20:16:17.000Z",
+ "lastUpdated": "2021-07-28T09:06:34.634Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "riz",
+ "hasLocution": true
+ },
+ {
+ "keyword": "paquet de riz",
+ "hasLocution": false,
+ "plural": "paquets de riz",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "09048984-n",
+ "10113587-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 25588,
+ "created": "2011-08-16T21:16:04.000Z",
+ "lastUpdated": "2021-07-30T05:37:10.755Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "statue",
+ "plural": "statues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy equipment",
+ "special education"
+ ],
+ "synsets": [
+ "03131358-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "physiotherapy equipment",
+ "education",
+ "special education"
+ ],
+ "_id": 25590,
+ "created": "2011-08-17T10:50:55.000Z",
+ "lastUpdated": "2024-12-12T07:24:07.022Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "lève-personne",
+ "plural": "lève-personnes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00841258-n"
+ ],
+ "tags": [
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 25602,
+ "created": "2011-08-17T11:05:32.000Z",
+ "lastUpdated": "2021-07-28T09:10:25.873Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "péter",
+ "hasLocution": false
+ },
+ {
+ "keyword": "avoir des vents",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00101383-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 25603,
+ "created": "2011-08-17T11:06:02.000Z",
+ "lastUpdated": "2021-07-28T09:10:39.263Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "péter",
+ "hasLocution": false
+ },
+ {
+ "keyword": "avoir des vents",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work machine"
+ ],
+ "synsets": [
+ "04028192-n"
+ ],
+ "tags": [
+ "work",
+ "work machine"
+ ],
+ "_id": 25594,
+ "created": "2011-08-17T10:56:23.000Z",
+ "lastUpdated": "2021-07-28T09:10:06.259Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "motopompe",
+ "hasLocution": false,
+ "plural": "motopompes"
+ },
+ {
+ "keyword": "pompe à eau",
+ "hasLocution": false,
+ "plural": "pompes à eau",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 25610,
+ "created": "2011-08-17T11:12:24.000Z",
+ "lastUpdated": "2021-07-30T01:15:42.399Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussures de cheval",
+ "hasLocution": false,
+ "plural": "chaussures de cheval"
+ },
+ {
+ "keyword": "hipposandales",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "hipposandales"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "chaussons de cheval",
+ "plural": "chaussons de cheval",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "video game"
+ ],
+ "synsets": [
+ "00459914-n",
+ "02992134-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "video game"
+ ],
+ "_id": 25614,
+ "created": "2011-08-17T11:20:19.000Z",
+ "lastUpdated": "2021-03-12T13:59:56.507Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jeu vidéo",
+ "hasLocution": true,
+ "plural": "jeux vidéos"
+ },
+ {
+ "type": 2,
+ "keyword": "CD-Rom",
+ "hasLocution": true,
+ "plural": "CD-Roms"
+ },
+ {
+ "type": 2,
+ "keyword": "cédérom",
+ "hasLocution": false,
+ "plural": "cédéroms"
+ },
+ {
+ "keyword": "jeu d'ordinateur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jeux d'ordinateur"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "05623652-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 25618,
+ "created": "2011-08-17T11:28:06.000Z",
+ "lastUpdated": "2021-07-28T09:15:50.988Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "attention",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "attention !",
+ "hasLocution": false
+ },
+ {
+ "keyword": "fais attention !",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "faites attention !",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "précaution",
+ "type": 2,
+ "plural": "précautions",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public administration"
+ ],
+ "synsets": [
+ "13288037-n",
+ "00088243-n",
+ "13287915-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "public administration"
+ ],
+ "_id": 25620,
+ "created": "2011-08-24T16:43:07.000Z",
+ "lastUpdated": "2021-07-30T08:17:40.457Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aides",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "aide",
+ "hasLocution": true
+ },
+ {
+ "keyword": "assistance",
+ "type": 2,
+ "hasLocution": false
+ },
+ {
+ "keyword": "prestations sociales",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "subventions",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07703766-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 25606,
+ "created": "2011-08-17T11:09:10.000Z",
+ "lastUpdated": "2021-07-28T09:11:10.753Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "galette de maïs",
+ "hasLocution": false,
+ "plural": "galettes de maïs"
+ },
+ {
+ "keyword": "pain au maïs",
+ "hasLocution": false,
+ "plural": "pains au maïs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "osseous system"
+ ],
+ "synsets": [
+ "05291832-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "osseous system"
+ ],
+ "_id": 25522,
+ "created": "2011-08-16T18:39:30.000Z",
+ "lastUpdated": "2021-07-28T09:03:37.379Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vertèbres",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "meat"
+ ],
+ "synsets": [
+ "07682266-n",
+ "07665463-n",
+ "07673512-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 25624,
+ "created": "2011-08-24T16:47:40.000Z",
+ "lastUpdated": "2024-12-11T06:46:34.310Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lapin",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "meat",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07675810-n",
+ "07665463-n",
+ "07673512-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 25630,
+ "created": "2011-08-24T16:54:35.000Z",
+ "lastUpdated": "2024-12-13T07:16:05.105Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bœuf",
+ "hasLocution": false
+ },
+ {
+ "keyword": "veau",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "meat"
+ ],
+ "synsets": [
+ "07682896-n",
+ "07665463-n",
+ "07673512-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 25626,
+ "created": "2011-08-24T16:50:13.000Z",
+ "lastUpdated": "2021-03-26T14:05:00.195Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "agneau",
+ "hasLocution": true,
+ "plural": "agneaux"
+ },
+ {
+ "type": 2,
+ "keyword": "agneau de lait",
+ "hasLocution": false,
+ "plural": "agneaux de lait"
+ },
+ {
+ "keyword": "viande d'agneau",
+ "hasLocution": true,
+ "plural": "viandes d'agneau",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "meat"
+ ],
+ "synsets": [
+ "07660576-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 25632,
+ "created": "2011-08-24T16:57:13.000Z",
+ "lastUpdated": "2024-12-08T07:33:05.841Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poulet",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "02674410-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 25634,
+ "created": "2011-08-24T16:59:52.000Z",
+ "lastUpdated": "2021-07-28T09:17:26.795Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accessoires",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "00463344-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 25636,
+ "created": "2011-08-24T17:05:16.000Z",
+ "lastUpdated": "2021-07-28T09:17:38.924Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "couvert",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nuageux",
+ "type": 4,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "05042508-n"
+ ],
+ "tags": [],
+ "_id": 25638,
+ "created": "2011-08-24T17:07:48.000Z",
+ "lastUpdated": "2021-07-27T11:01:49.557Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "force",
+ "hasLocution": true,
+ "plural": "forces"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "puissance",
+ "plural": "puissances"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cattle farming"
+ ],
+ "synsets": [
+ "02405077-n",
+ "01890115-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "cattle farming"
+ ],
+ "_id": 25640,
+ "created": "2011-08-24T17:10:45.000Z",
+ "lastUpdated": "2021-07-27T11:00:32.198Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bétail",
+ "hasLocution": false,
+ "plural": "bétails"
+ },
+ {
+ "keyword": "bêtes",
+ "hasLocution": false,
+ "plural": "bêtes",
+ "type": 2
+ },
+ {
+ "keyword": "bestiaux",
+ "hasLocution": false,
+ "plural": "bestiaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "personal services",
+ "signaling system"
+ ],
+ "synsets": [
+ "06060181-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "personal services",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 25642,
+ "created": "2011-08-24T17:16:17.000Z",
+ "lastUpdated": "2021-07-27T10:59:19.723Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gériatrie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "10219108-n",
+ "10071783-n",
+ "00417060-v",
+ "00414357-v"
+ ],
+ "tags": [],
+ "_id": 25644,
+ "created": "2011-08-24T17:20:57.000Z",
+ "lastUpdated": "2021-07-27T10:56:36.064Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "immigrant",
+ "hasLocution": false,
+ "plural": "immigrants"
+ },
+ {
+ "type": 2,
+ "keyword": "immigrant",
+ "hasLocution": false,
+ "plural": "immigrants"
+ },
+ {
+ "type": 3,
+ "keyword": "émigrer",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "émigrant",
+ "hasLocution": false,
+ "plural": "émigrants"
+ },
+ {
+ "type": 2,
+ "keyword": "émigrant",
+ "hasLocution": false,
+ "plural": "émigrants"
+ },
+ {
+ "keyword": "immigrer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "réfugié",
+ "hasLocution": false,
+ "plural": "réfugiés",
+ "type": 2
+ },
+ {
+ "type": 4,
+ "plural": "réfugiés",
+ "keyword": "réfugié",
+ "hasLocution": false
+ },
+ {
+ "keyword": "immigré",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "immigrés"
+ },
+ {
+ "keyword": "immigré",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "immigrés"
+ },
+ {
+ "keyword": "émigré",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "émigrés"
+ },
+ {
+ "type": 2,
+ "plural": "émigrés",
+ "keyword": "émigré",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "10219108-n",
+ "10071783-n",
+ "00417060-v",
+ "00414357-v"
+ ],
+ "tags": [],
+ "_id": 25645,
+ "created": "2011-08-24T17:21:31.000Z",
+ "lastUpdated": "2021-07-27T10:57:39.671Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "immigrant",
+ "hasLocution": false,
+ "plural": "immigrants"
+ },
+ {
+ "type": 2,
+ "keyword": "immigrant",
+ "hasLocution": false,
+ "plural": "immigrant"
+ },
+ {
+ "type": 3,
+ "keyword": "émigrer",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "émigrant",
+ "hasLocution": false,
+ "plural": "émigrants"
+ },
+ {
+ "type": 4,
+ "keyword": "émigrant",
+ "hasLocution": false,
+ "plural": "émigrants"
+ },
+ {
+ "keyword": "immigrer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "réfugié",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "réfugiés"
+ },
+ {
+ "keyword": "réfugié",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "réfugié"
+ },
+ {
+ "keyword": "émigré",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "émigrés"
+ },
+ {
+ "plural": "émigrés",
+ "keyword": "émigré",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "immigré",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "immigrés"
+ },
+ {
+ "plural": "immigrés",
+ "keyword": "immigré",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "meat"
+ ],
+ "synsets": [
+ "07684447-n",
+ "07665463-n",
+ "07673512-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 25622,
+ "created": "2011-08-24T16:46:06.000Z",
+ "lastUpdated": "2024-12-11T06:35:47.748Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "porc",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07663340-n",
+ "07665463-n",
+ "07673512-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 25628,
+ "created": "2011-08-24T16:51:49.000Z",
+ "lastUpdated": "2021-07-28T09:17:11.612Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dinde",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "plant"
+ ],
+ "synsets": [
+ "02736080-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "plant"
+ ],
+ "_id": 25650,
+ "created": "2011-08-24T17:38:44.000Z",
+ "lastUpdated": "2021-03-28T03:09:46.354Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jardin botanique",
+ "hasLocution": false,
+ "plural": "jardins botaniques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "00332776-n"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 25656,
+ "created": "2011-08-24T17:58:17.000Z",
+ "lastUpdated": "2021-07-27T10:41:25.145Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mouvement",
+ "hasLocution": true,
+ "plural": "mouvements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "08234478-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 25658,
+ "created": "2011-08-24T18:09:22.000Z",
+ "lastUpdated": "2021-07-27T10:40:37.921Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "percussion",
+ "hasLocution": false,
+ "plural": "percussions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish"
+ ],
+ "synsets": [
+ "02629392-n",
+ "07796603-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 25660,
+ "created": "2011-08-24T18:12:35.000Z",
+ "lastUpdated": "2021-07-27T10:40:07.223Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "thon",
+ "hasLocution": true,
+ "plural": "thons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "movement",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "08633886-n",
+ "00307252-n",
+ "00309196-n"
+ ],
+ "tags": [
+ "movement",
+ "core vocabulary"
+ ],
+ "_id": 25648,
+ "created": "2011-08-24T17:33:41.000Z",
+ "lastUpdated": "2024-12-13T13:15:52.911Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trajet",
+ "hasLocution": true,
+ "plural": "trajets"
+ },
+ {
+ "type": 2,
+ "keyword": "parcours",
+ "hasLocution": true,
+ "plural": "parcours"
+ },
+ {
+ "type": 2,
+ "keyword": "itinéraire",
+ "hasLocution": true,
+ "plural": "itinéraires"
+ },
+ {
+ "type": 2,
+ "keyword": "route",
+ "hasLocution": true,
+ "plural": "routes"
+ },
+ {
+ "keyword": "circuit",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "circuits"
+ },
+ {
+ "keyword": "voyage",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "voyages"
+ },
+ {
+ "keyword": "chemin",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chemins"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07793165-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish",
+ "gastronomy"
+ ],
+ "_id": 25662,
+ "created": "2011-08-24T18:15:29.000Z",
+ "lastUpdated": "2024-12-09T18:26:46.811Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "daurade",
+ "hasLocution": false,
+ "plural": "daurades"
+ },
+ {
+ "keyword": "dorade",
+ "hasLocution": false,
+ "plural": "dorades",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pet",
+ "categorization"
+ ],
+ "synsets": [
+ "01321385-n"
+ ],
+ "tags": [
+ "animal",
+ "pet",
+ "categorization"
+ ],
+ "_id": 25654,
+ "created": "2011-08-24T17:55:20.000Z",
+ "lastUpdated": "2021-07-27T10:44:05.694Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "animal de compagnie",
+ "hasLocution": false,
+ "plural": "animaux de compagnie"
+ },
+ {
+ "keyword": "animal domestique",
+ "hasLocution": false,
+ "plural": "animaux domestiques",
+ "type": 2
+ },
+ {
+ "keyword": "animal familier",
+ "hasLocution": false,
+ "plural": "animaux familiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance"
+ ],
+ "synsets": [
+ "03705309-n"
+ ],
+ "tags": [
+ "object",
+ "appliance"
+ ],
+ "_id": 25652,
+ "created": "2011-08-24T17:53:06.000Z",
+ "lastUpdated": "2021-07-27T10:45:32.200Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "machine",
+ "hasLocution": true,
+ "plural": "machines"
+ },
+ {
+ "keyword": "appareil",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "appareils"
+ },
+ {
+ "keyword": "engin",
+ "hasLocution": false,
+ "plural": "engins",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish",
+ "gastronomy"
+ ],
+ "synsets": [
+ "01455439-n",
+ "01455728-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish",
+ "gastronomy"
+ ],
+ "_id": 25664,
+ "created": "2011-08-24T18:16:46.000Z",
+ "lastUpdated": "2024-12-06T07:05:00.502Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "saint-pierre",
+ "plural": "saints-pierres"
+ },
+ {
+ "type": 2,
+ "keyword": "cardine franche",
+ "hasLocution": false,
+ "plural": "cardines franches"
+ },
+ {
+ "type": 2,
+ "keyword": "limande rose",
+ "hasLocution": false,
+ "plural": "limandes roses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07807015-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish",
+ "gastronomy"
+ ],
+ "_id": 25668,
+ "created": "2011-08-24T18:18:56.000Z",
+ "lastUpdated": "2024-12-11T07:04:38.189Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "turbot",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07807250-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish",
+ "gastronomy"
+ ],
+ "_id": 25666,
+ "created": "2011-08-24T18:17:54.000Z",
+ "lastUpdated": "2024-12-11T06:56:47.734Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sole",
+ "hasLocution": false,
+ "plural": "soles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07793921-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish",
+ "gastronomy"
+ ],
+ "_id": 25667,
+ "created": "2011-08-24T18:18:23.000Z",
+ "lastUpdated": "2024-12-11T06:57:20.283Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bar",
+ "hasLocution": true,
+ "plural": "bars"
+ },
+ {
+ "keyword": "loup",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "loups"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish",
+ "food"
+ ],
+ "synsets": [
+ "07810428-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 25671,
+ "created": "2011-08-24T18:20:07.000Z",
+ "lastUpdated": "2024-12-13T07:22:02.006Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "truite",
+ "hasLocution": true,
+ "plural": "truites"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish"
+ ],
+ "synsets": [
+ "07811727-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 25669,
+ "created": "2011-08-24T18:19:22.000Z",
+ "lastUpdated": "2024-12-07T15:38:52.336Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saumon",
+ "hasLocution": true,
+ "plural": "saumons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "symptom",
+ "disease"
+ ],
+ "synsets": [
+ "10508450-n",
+ "00647205-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "symptom",
+ "disease"
+ ],
+ "_id": 25678,
+ "created": "2011-08-24T18:25:56.000Z",
+ "lastUpdated": "2021-07-27T10:20:45.729Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "diagnostiquer"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "library science",
+ "signaling system"
+ ],
+ "synsets": [
+ "04352279-n"
+ ],
+ "tags": [
+ "library science",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 25682,
+ "created": "2011-08-24T18:33:18.000Z",
+ "lastUpdated": "2021-07-27T10:22:51.922Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle d'étude",
+ "hasLocution": false,
+ "plural": "salles d'étude"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "library science",
+ "signaling system"
+ ],
+ "synsets": [
+ "04065208-n",
+ "04352279-n"
+ ],
+ "tags": [
+ "library science",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 25686,
+ "created": "2011-08-24T18:37:23.000Z",
+ "lastUpdated": "2021-03-12T13:56:08.936Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle d'étude et de lecture",
+ "hasLocution": false,
+ "plural": "salles d'étude et de lecture"
+ },
+ {
+ "keyword": "salle d'études",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "salles d'étude"
+ },
+ {
+ "keyword": "salle de lecture",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "salles de lecture"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "library science",
+ "signaling system"
+ ],
+ "synsets": [
+ "04065208-n"
+ ],
+ "tags": [
+ "library science",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 25684,
+ "created": "2011-08-24T18:34:44.000Z",
+ "lastUpdated": "2021-07-27T10:22:45.172Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de lecture ",
+ "hasLocution": false,
+ "plural": "salles de lecture "
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "02821967-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 25690,
+ "created": "2011-08-26T11:36:08.000Z",
+ "lastUpdated": "2021-07-27T10:24:58.919Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lit",
+ "hasLocution": true,
+ "plural": "lits"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "categorization"
+ ],
+ "synsets": [
+ "04516244-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "categorization"
+ ],
+ "_id": 25680,
+ "created": "2011-08-24T18:28:32.000Z",
+ "lastUpdated": "2021-07-27T10:21:05.026Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sous-vêtement",
+ "hasLocution": true,
+ "plural": "sous-vêtements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "personal services"
+ ],
+ "synsets": [
+ "03170132-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "tertiary sector",
+ "personal services"
+ ],
+ "_id": 25692,
+ "created": "2011-08-26T11:41:09.000Z",
+ "lastUpdated": "2021-07-27T10:28:04.248Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "plural": "accueils de jour",
+ "keyword": "accueil de jour"
+ },
+ {
+ "keyword": "hôpital de jour",
+ "hasLocution": false,
+ "plural": "hôpitaux de jour",
+ "type": 2
+ },
+ {
+ "keyword": "centre de jour",
+ "hasLocution": false,
+ "plural": "centres de jour",
+ "type": 2
+ },
+ {
+ "keyword": "foyer de jour",
+ "hasLocution": false,
+ "plural": "foyers de jour",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish"
+ ],
+ "synsets": [
+ "02535840-n",
+ "02535706-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 25670,
+ "created": "2011-08-24T18:19:45.000Z",
+ "lastUpdated": "2021-07-27T10:19:36.035Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sardine",
+ "hasLocution": true,
+ "plural": "sardines"
+ },
+ {
+ "keyword": "pilchard",
+ "hasLocution": false,
+ "plural": "pilchards",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical document",
+ "medical documentation"
+ ],
+ "synsets": [
+ "07190514-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "document"
+ ],
+ "_id": 25698,
+ "created": "2011-08-26T11:48:12.000Z",
+ "lastUpdated": "2021-07-27T10:31:35.892Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "consentement éclairé",
+ "hasLocution": false,
+ "plural": "consentements éclairés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "personal services",
+ "signaling system"
+ ],
+ "synsets": [
+ "03170132-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 25693,
+ "created": "2011-08-26T11:41:44.000Z",
+ "lastUpdated": "2021-07-27T10:29:35.391Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "accueil de jour",
+ "plural": "accueils de jour"
+ },
+ {
+ "keyword": "hôpital de jour",
+ "hasLocution": false,
+ "plural": "hôpitaux de jour",
+ "type": 2
+ },
+ {
+ "keyword": "centre de jour",
+ "hasLocution": false,
+ "plural": "centres de jour",
+ "type": 2
+ },
+ {
+ "keyword": "foyer de jour",
+ "hasLocution": false,
+ "plural": "foyers de jour",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "court document"
+ ],
+ "synsets": [
+ "06702412-n"
+ ],
+ "tags": [
+ "document",
+ "justice"
+ ],
+ "_id": 25696,
+ "created": "2011-08-26T11:46:11.000Z",
+ "lastUpdated": "2021-07-27T10:30:49.944Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "consentement",
+ "hasLocution": false,
+ "plural": "consentements"
+ },
+ {
+ "keyword": "autorisation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "autorisations"
+ },
+ {
+ "keyword": "permission",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "permission"
+ },
+ {
+ "keyword": "accord",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "accords"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03780732-n",
+ "02853991-n",
+ "01544805-s"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 25688,
+ "created": "2011-08-26T11:33:02.000Z",
+ "lastUpdated": "2021-07-27T10:24:38.814Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "batteur",
+ "hasLocution": true,
+ "plural": "batteurs"
+ },
+ {
+ "type": 2,
+ "keyword": "mixeur",
+ "hasLocution": true,
+ "plural": "mixeurs"
+ },
+ {
+ "type": 2,
+ "keyword": "mixeur adapté",
+ "hasLocution": false,
+ "plural": "mixeurs adaptés"
+ },
+ {
+ "keyword": "appareil ménager adapté",
+ "hasLocution": false,
+ "plural": "appareils ménagers adaptés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "04630289-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 25702,
+ "created": "2011-08-26T11:56:32.000Z",
+ "lastUpdated": "2021-07-30T01:07:37.333Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "intimité",
+ "hasLocution": false
+ },
+ {
+ "keyword": "vie privée",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "vie personnelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "vie intime",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of manner"
+ ],
+ "synsets": [
+ "00032295-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of manner"
+ ],
+ "_id": 25708,
+ "created": "2011-08-26T12:07:39.000Z",
+ "lastUpdated": "2021-07-28T09:18:19.238Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "très",
+ "hasLocution": true
+ },
+ {
+ "keyword": "trop",
+ "type": 4,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food",
+ "cold meat"
+ ],
+ "synsets": [
+ "07670047-n",
+ "07694173-n",
+ "07663340-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 25700,
+ "created": "2011-08-26T11:52:24.000Z",
+ "lastUpdated": "2021-07-28T09:17:45.256Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charcuterie de dinde",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "psychology"
+ ],
+ "synsets": [
+ "06150250-n",
+ "10508450-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "psychology"
+ ],
+ "_id": 25710,
+ "created": "2011-08-26T12:13:20.000Z",
+ "lastUpdated": "2021-07-28T09:18:38.132Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "neuropsychologue",
+ "hasLocution": false,
+ "plural": "neuropsychologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "psychology"
+ ],
+ "synsets": [
+ "06150250-n",
+ "10508450-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "psychology"
+ ],
+ "_id": 25713,
+ "created": "2011-08-26T12:14:50.000Z",
+ "lastUpdated": "2021-07-28T09:18:43.731Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "neuropsychologue",
+ "hasLocution": false,
+ "plural": "neuropsychologues"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day time",
+ "core vocabulary-time",
+ "adverb",
+ "adverb of time"
+ ],
+ "synsets": [
+ "15190336-n",
+ "15193837-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "core vocabulary",
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time"
+ ],
+ "_id": 25704,
+ "created": "2011-08-26T11:59:43.000Z",
+ "lastUpdated": "2024-11-29T07:24:53.101Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "matin",
+ "hasLocution": true,
+ "plural": "matins"
+ },
+ {
+ "keyword": "matinée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "matinées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "00786536-v",
+ "01765887-s"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 25714,
+ "created": "2011-08-26T12:21:14.000Z",
+ "lastUpdated": "2021-08-07T05:42:45.609Z",
+ "keywords": [
+ {
+ "type": 5,
+ "hasLocution": false,
+ "keyword": "interdit d'espionner"
+ },
+ {
+ "keyword": "interdit de regarder par le trou de la serrure",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "02134989-v",
+ "01765887-s"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 25716,
+ "created": "2011-08-26T12:23:06.000Z",
+ "lastUpdated": "2021-07-28T09:19:56.672Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "interdit de regarder",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "person according to their age"
+ ],
+ "synsets": [
+ "05990115-n",
+ "05911139-n"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 25720,
+ "created": "2011-08-26T12:34:59.000Z",
+ "lastUpdated": "2021-07-28T09:20:25.472Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "projet de vie",
+ "hasLocution": false,
+ "plural": "projets de vie"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "00521099-v",
+ "01765887-s"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 25718,
+ "created": "2011-08-26T12:24:56.000Z",
+ "lastUpdated": "2021-07-28T09:20:10.787Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "interdit de déranger",
+ "hasLocution": false
+ },
+ {
+ "keyword": "Ne pas déranger",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "person according to their age"
+ ],
+ "synsets": [
+ "05990115-n",
+ "05911139-n"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 25721,
+ "created": "2011-08-26T12:35:34.000Z",
+ "lastUpdated": "2021-07-28T09:20:33.540Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "projet de vie",
+ "hasLocution": false,
+ "plural": "projets de vie"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "personal services"
+ ],
+ "synsets": [
+ "03533280-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "personal services"
+ ],
+ "_id": 25724,
+ "created": "2011-08-26T12:45:24.000Z",
+ "lastUpdated": "2021-08-02T22:33:08.627Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maison de retraite",
+ "hasLocution": true,
+ "plural": "maisons de retraite"
+ },
+ {
+ "keyword": "EHPAD",
+ "hasLocution": false,
+ "plural": "EHPAD",
+ "type": 2
+ },
+ {
+ "keyword": "résidence pour personnes âgées",
+ "hasLocution": false,
+ "plural": "résidences pour personnes âgées",
+ "type": 2
+ },
+ {
+ "keyword": "RPA",
+ "hasLocution": false,
+ "plural": "RPA",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "personal services"
+ ],
+ "synsets": [
+ "03533280-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "personal services"
+ ],
+ "_id": 25725,
+ "created": "2011-08-26T12:46:03.000Z",
+ "lastUpdated": "2021-07-30T08:18:08.535Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maison de retraite",
+ "hasLocution": true,
+ "plural": "maisons de retraite"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospitality industry"
+ ],
+ "synsets": [],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 25706,
+ "created": "2011-08-26T12:04:57.000Z",
+ "lastUpdated": "2021-07-30T08:18:03.225Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "demi-pension",
+ "hasLocution": false,
+ "plural": "demi-pensions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "08428658-n",
+ "03484480-n",
+ "08576500-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 25728,
+ "created": "2011-08-26T12:49:31.000Z",
+ "lastUpdated": "2021-07-28T09:21:08.055Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "résidence",
+ "hasLocution": false,
+ "plural": "résidences"
+ },
+ {
+ "type": 2,
+ "keyword": "internat",
+ "hasLocution": false,
+ "plural": "internats"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "personal services",
+ "signaling system"
+ ],
+ "synsets": [
+ "03533280-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 25733,
+ "created": "2011-08-26T12:58:30.000Z",
+ "lastUpdated": "2021-08-01T17:28:46.710Z",
+ "keywords": [
+ {
+ "keyword": "maison d'accueil spécialisé",
+ "hasLocution": false,
+ "plural": "maisons d'accueil spécialisé",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "MAS",
+ "plural": "MAS",
+ "type": 2
+ },
+ {
+ "keyword": "foyer d'accueil médicalisé",
+ "hasLocution": false,
+ "plural": "foyers d'accueil médicalisé",
+ "type": 2
+ },
+ {
+ "keyword": "FAM",
+ "hasLocution": false,
+ "plural": "FAM",
+ "type": 2
+ },
+ {
+ "keyword": "foyer double tarification",
+ "hasLocution": false,
+ "plural": "foyers double tarification",
+ "type": 2
+ },
+ {
+ "keyword": "FDT",
+ "hasLocution": false,
+ "plural": "FDT",
+ "type": 2
+ },
+ {
+ "keyword": "foyer d'hébergement",
+ "hasLocution": false,
+ "plural": "foyers d'hébergement",
+ "type": 2
+ },
+ {
+ "keyword": "résidence pour personnes handicapées",
+ "hasLocution": false,
+ "plural": "résidences pour personnes handicapées",
+ "type": 2
+ },
+ {
+ "keyword": "internat pour enfants handicapés",
+ "hasLocution": false,
+ "plural": "internats pour enfants handicapés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "08428658-n",
+ "03229596-n",
+ "03484480-n",
+ "08576500-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 25729,
+ "created": "2011-08-26T12:50:09.000Z",
+ "lastUpdated": "2021-07-28T09:21:21.231Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "résidence",
+ "hasLocution": false,
+ "plural": "résidences"
+ },
+ {
+ "type": 2,
+ "keyword": "internat",
+ "hasLocution": false,
+ "plural": "internats"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of time"
+ ],
+ "synsets": [
+ "15144861-n",
+ "00049758-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time"
+ ],
+ "_id": 25736,
+ "created": "2011-08-26T16:13:14.000Z",
+ "lastUpdated": "2021-07-28T09:21:41.312Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "maintenant",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "baking"
+ ],
+ "synsets": [
+ "01614650-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 25740,
+ "created": "2011-08-26T16:23:30.000Z",
+ "lastUpdated": "2021-07-11T09:21:58.851Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étaler avec la poche à douille",
+ "hasLocution": false
+ },
+ {
+ "hasLocution": false,
+ "keyword": "répandre vec la poche à douilles",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "personal services"
+ ],
+ "synsets": [
+ "03533280-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "personal services"
+ ],
+ "_id": 25732,
+ "created": "2011-08-26T12:57:57.000Z",
+ "lastUpdated": "2021-08-01T17:29:08.493Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "maison d'accueil spécialisé",
+ "plural": "maisons d'accueil spécialisé"
+ },
+ {
+ "keyword": "MAS",
+ "hasLocution": false,
+ "plural": "MAS",
+ "type": 2
+ },
+ {
+ "keyword": "foyer d'accueil médicalisé",
+ "hasLocution": false,
+ "plural": "foyers d'accueil médicalisé",
+ "type": 2
+ },
+ {
+ "keyword": "FAM",
+ "hasLocution": false,
+ "plural": "FAM",
+ "type": 2
+ },
+ {
+ "keyword": "résidence pour personnes handicapées",
+ "hasLocution": false,
+ "plural": "résidences pour personnes handicapées",
+ "type": 2
+ },
+ {
+ "keyword": "foyer double tarification",
+ "hasLocution": false,
+ "plural": "foyers double tarification",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "FDT",
+ "type": 2,
+ "plural": "FDT"
+ },
+ {
+ "keyword": "foyer d'hébergement",
+ "hasLocution": false,
+ "plural": "foyers d'hébergement",
+ "type": 2
+ },
+ {
+ "keyword": "internat pour enfants handicapés",
+ "hasLocution": false,
+ "plural": "internats pour enfants handicapés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "01898313-v",
+ "01544249-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 25738,
+ "created": "2011-08-26T16:19:09.000Z",
+ "lastUpdated": "2021-07-28T09:22:05.201Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mélanger",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "remuer avec le fouet",
+ "hasLocution": false
+ },
+ {
+ "keyword": "remuer",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "fouetter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "04974018-n",
+ "00379560-s"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 25744,
+ "created": "2011-09-13T12:30:02.000Z",
+ "lastUpdated": "2021-07-28T09:22:41.069Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "moutarde",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ocre",
+ "type": 2,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "14754732-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 25742,
+ "created": "2011-08-26T16:33:44.000Z",
+ "lastUpdated": "2021-07-28T09:22:28.735Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sachet de gélatine",
+ "hasLocution": false,
+ "plural": "sachets de gélatine"
+ },
+ {
+ "keyword": "gélatine",
+ "hasLocution": true,
+ "plural": "gélatines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid",
+ "computing"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid",
+ "computing"
+ ],
+ "_id": 25748,
+ "created": "2011-09-13T13:00:59.000Z",
+ "lastUpdated": "2021-07-28T09:23:07.506Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "AraWord",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "04243483-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 25746,
+ "created": "2011-09-13T12:32:01.000Z",
+ "lastUpdated": "2021-07-28T09:23:01.670Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "manche",
+ "hasLocution": true,
+ "plural": "manches"
+ },
+ {
+ "keyword": "bras",
+ "hasLocution": true,
+ "plural": "bras",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid",
+ "computing"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid",
+ "computing"
+ ],
+ "_id": 25749,
+ "created": "2011-09-13T13:01:16.000Z",
+ "lastUpdated": "2021-07-28T09:23:10.970Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "AraWord",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "gardening",
+ "agriculture"
+ ],
+ "synsets": [
+ "00503838-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "gardening",
+ "agriculture"
+ ],
+ "_id": 25750,
+ "created": "2011-12-10T17:37:23.000Z",
+ "lastUpdated": "2021-07-28T09:23:33.124Z",
+ "keywords": [
+ {
+ "keyword": "fertiliser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "amender",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "00503838-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 25751,
+ "created": "2011-12-10T17:40:06.000Z",
+ "lastUpdated": "2021-07-28T09:23:48.672Z",
+ "keywords": [
+ {
+ "keyword": "fertiliser",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "amender",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02722040-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 25762,
+ "created": "2011-12-10T18:01:00.000Z",
+ "lastUpdated": "2021-07-28T09:25:22.833Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "accompagner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "aller avec",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "00162222-s"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 25764,
+ "created": "2011-12-10T18:05:19.000Z",
+ "lastUpdated": "2021-08-02T22:36:51.239Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mitoyen",
+ "hasLocution": false,
+ "plural": "mitoyens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "energy"
+ ],
+ "synsets": [
+ "04598820-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "work",
+ "secondary sector",
+ "energy"
+ ],
+ "_id": 25768,
+ "created": "2011-12-10T18:28:47.000Z",
+ "lastUpdated": "2021-07-28T09:26:12.346Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éolienne",
+ "hasLocution": false,
+ "plural": "éoliennes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "verb"
+ ],
+ "synsets": [
+ "00721155-v",
+ "00799359-v",
+ "00525762-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "verb"
+ ],
+ "_id": 25757,
+ "created": "2011-12-10T17:54:55.000Z",
+ "lastUpdated": "2024-12-05T08:55:30.215Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "Tu as réussi !",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "accepter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "être d'accord",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "agriculture"
+ ],
+ "synsets": [
+ "03592374-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 25758,
+ "created": "2011-12-10T17:56:35.000Z",
+ "lastUpdated": "2021-07-28T09:25:10.927Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canal d'irrigation",
+ "hasLocution": false,
+ "plural": "canaux d'irrigation"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "cutlery"
+ ],
+ "synsets": [
+ "03465229-n",
+ "01249165-v"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "object",
+ "household",
+ "cutlery",
+ "home"
+ ],
+ "_id": 25772,
+ "created": "2011-12-10T18:32:52.000Z",
+ "lastUpdated": "2021-07-28T09:26:23.291Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aiguiseur",
+ "hasLocution": false,
+ "plural": "aiguiseurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "03302032-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 25778,
+ "created": "2011-12-10T18:39:55.000Z",
+ "lastUpdated": "2021-07-28T10:36:08.681Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "espadrilles",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "bullying"
+ ],
+ "synsets": [
+ "00496744-v",
+ "14438119-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "bullying"
+ ],
+ "_id": 25776,
+ "created": "2011-12-10T18:36:50.000Z",
+ "lastUpdated": "2021-07-28T10:36:04.420Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "isoler",
+ "hasLocution": false
+ },
+ {
+ "keyword": "isolement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "isolements"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "10132360-n",
+ "09783207-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "core vocabulary"
+ ],
+ "_id": 25790,
+ "created": "2011-12-10T18:50:26.000Z",
+ "lastUpdated": "2021-07-28T10:36:25.898Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ami",
+ "hasLocution": true,
+ "plural": "amis"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "verb"
+ ],
+ "synsets": [
+ "00721155-v",
+ "00799359-v",
+ "00525762-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "verb"
+ ],
+ "_id": 25752,
+ "created": "2011-12-10T17:45:22.000Z",
+ "lastUpdated": "2024-12-05T08:55:23.824Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "Tu as réussi !",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "accepter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "être d'accord",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "10132360-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 25792,
+ "created": "2011-12-10T18:51:49.000Z",
+ "lastUpdated": "2021-07-28T10:36:29.080Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amis",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "elderly",
+ "core vocabulary-living being",
+ "person according to their age"
+ ],
+ "synsets": [
+ "01648667-s"
+ ],
+ "tags": [
+ "person",
+ "elderly",
+ "core vocabulary"
+ ],
+ "_id": 25796,
+ "created": "2011-12-10T18:55:03.000Z",
+ "lastUpdated": "2024-12-12T15:45:33.208Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "vieux",
+ "hasLocution": true
+ },
+ {
+ "keyword": "âgé",
+ "type": 4,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "04552757-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 25800,
+ "created": "2011-12-10T18:59:39.000Z",
+ "lastUpdated": "2021-07-30T01:09:41.822Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "draisienne",
+ "hasLocution": false,
+ "plural": "draisiennes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "10132360-n",
+ "09783207-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 25786,
+ "created": "2011-12-10T18:47:32.000Z",
+ "lastUpdated": "2023-04-28T10:35:03.516Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amie",
+ "hasLocution": true,
+ "plural": "amies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "03896748-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 25804,
+ "created": "2011-12-10T20:32:40.000Z",
+ "lastUpdated": "2021-07-28T10:37:43.951Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "anorak",
+ "hasLocution": false,
+ "plural": "anoraks"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work machine",
+ "agriculture"
+ ],
+ "synsets": [
+ "03973894-n"
+ ],
+ "tags": [
+ "work",
+ "work machine",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 25808,
+ "created": "2011-12-10T20:36:36.000Z",
+ "lastUpdated": "2021-07-28T10:37:50.741Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charrue",
+ "hasLocution": false,
+ "plural": "charrues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "verb"
+ ],
+ "synsets": [
+ "01745745-v"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 25812,
+ "created": "2011-12-10T20:40:04.000Z",
+ "lastUpdated": "2021-07-28T10:37:55.167Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "labourer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02357879-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 25815,
+ "created": "2011-12-10T20:42:22.000Z",
+ "lastUpdated": "2021-07-28T10:38:05.217Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écureuil",
+ "hasLocution": true,
+ "plural": "écureuils"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mollusc",
+ "terrestrial animal",
+ "oviparous"
+ ],
+ "synsets": [
+ "01948326-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "mollusc",
+ "terrestrial animal",
+ "oviparous"
+ ],
+ "_id": 25827,
+ "created": "2011-12-10T20:57:32.000Z",
+ "lastUpdated": "2021-07-28T10:40:06.063Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "limace",
+ "hasLocution": false,
+ "plural": "limaces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "03701635-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 25831,
+ "created": "2011-12-10T21:01:53.000Z",
+ "lastUpdated": "2021-07-28T10:40:23.636Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "galerie",
+ "hasLocution": true,
+ "plural": "galeries"
+ },
+ {
+ "type": 2,
+ "keyword": "coffre à bagages",
+ "hasLocution": false,
+ "plural": "coffres à bagages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "03918940-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 25819,
+ "created": "2011-12-10T20:47:24.000Z",
+ "lastUpdated": "2021-07-28T10:39:26.121Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "appartement-terrasse",
+ "hasLocution": false,
+ "plural": "appartements-terrasses"
+ },
+ {
+ "keyword": "penthouse",
+ "hasLocution": false,
+ "plural": "penthouses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "02525030-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 25835,
+ "created": "2011-12-10T21:30:55.000Z",
+ "lastUpdated": "2021-07-28T10:40:52.762Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "morue",
+ "hasLocution": false,
+ "plural": "morues"
+ },
+ {
+ "keyword": "cabillaud",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cabillauds"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming pool",
+ "beach",
+ "river",
+ "sea and oceans"
+ ],
+ "synsets": [
+ "01965193-v",
+ "01581362-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "swimming pool",
+ "beach",
+ "geography",
+ "physical geography",
+ "landform",
+ "river",
+ "sea",
+ "ocean"
+ ],
+ "_id": 25843,
+ "created": "2011-12-10T21:38:04.000Z",
+ "lastUpdated": "2024-12-05T12:13:44.540Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se baigner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se tremper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming pool",
+ "river",
+ "beach",
+ "sea and oceans"
+ ],
+ "synsets": [
+ "01965193-v",
+ "01581362-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "swimming pool",
+ "geography",
+ "physical geography",
+ "landform",
+ "river",
+ "beach",
+ "sea",
+ "ocean"
+ ],
+ "_id": 25844,
+ "created": "2011-12-10T21:38:47.000Z",
+ "lastUpdated": "2024-12-05T12:14:05.772Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se baigner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se tremper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming pool",
+ "beach",
+ "river",
+ "sea and oceans"
+ ],
+ "synsets": [
+ "01965193-v",
+ "01581362-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "swimming pool",
+ "beach",
+ "geography",
+ "physical geography",
+ "landform",
+ "river",
+ "sea",
+ "ocean"
+ ],
+ "_id": 25845,
+ "created": "2011-12-10T21:39:30.000Z",
+ "lastUpdated": "2024-12-05T12:14:21.903Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se baigner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se tremper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge",
+ "physical features"
+ ],
+ "synsets": [
+ "02395180-a",
+ "01397927-s",
+ "01395201-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary",
+ "human body",
+ "physical features"
+ ],
+ "_id": 25839,
+ "created": "2011-12-10T21:34:12.000Z",
+ "lastUpdated": "2024-12-09T11:31:24.012Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "petit",
+ "hasLocution": true
+ },
+ {
+ "keyword": "plus petit",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling",
+ "human response"
+ ],
+ "synsets": [
+ "07522337-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion",
+ "human response"
+ ],
+ "_id": 25823,
+ "created": "2011-12-10T20:53:18.000Z",
+ "lastUpdated": "2021-07-28T10:39:58.949Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gêne",
+ "hasLocution": false,
+ "plural": "gênes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bush"
+ ],
+ "synsets": [
+ "12766866-n"
+ ],
+ "tags": [
+ "plant",
+ "bush"
+ ],
+ "_id": 25853,
+ "created": "2011-12-24T18:01:41.000Z",
+ "lastUpdated": "2021-07-28T10:43:12.196Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "buis",
+ "hasLocution": false,
+ "plural": "buis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "urban area"
+ ],
+ "synsets": [
+ "08659906-n",
+ "08658688-n",
+ "08571977-n"
+ ],
+ "tags": [
+ "place",
+ "urban area"
+ ],
+ "_id": 25849,
+ "created": "2011-12-10T21:43:42.000Z",
+ "lastUpdated": "2021-07-28T10:42:38.283Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quartier",
+ "hasLocution": true,
+ "plural": "quartiers"
+ },
+ {
+ "keyword": "banlieue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "banlieues"
+ },
+ {
+ "keyword": "voisinage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "voisinages"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02393670-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 25782,
+ "created": "2011-12-10T18:45:05.000Z",
+ "lastUpdated": "2024-10-09T10:49:12.030Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "grand",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "02536465-n",
+ "02536796-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 25861,
+ "created": "2011-12-24T18:30:42.000Z",
+ "lastUpdated": "2021-07-28T10:43:24.350Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "anchois",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "popular event"
+ ],
+ "synsets": [
+ "01177764-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "popular event"
+ ],
+ "_id": 25873,
+ "created": "2011-12-24T19:04:02.000Z",
+ "lastUpdated": "2021-07-28T10:45:37.495Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "trinquer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "forestry"
+ ],
+ "synsets": [
+ "00223243-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "forestry"
+ ],
+ "_id": 25869,
+ "created": "2011-12-24T18:49:01.000Z",
+ "lastUpdated": "2021-07-28T10:45:29.884Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "forêt coupée",
+ "hasLocution": false,
+ "plural": "forêts coupée"
+ },
+ {
+ "keyword": "forêt abattue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "forêts abattues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character",
+ "halloween",
+ "costume"
+ ],
+ "synsets": [
+ "10787430-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature",
+ "event",
+ "popular event",
+ "halloween",
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 25875,
+ "created": "2011-12-24T19:07:20.000Z",
+ "lastUpdated": "2021-07-28T10:45:59.775Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sorcier",
+ "hasLocution": false,
+ "plural": "sorciers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "03691456-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 25879,
+ "created": "2011-12-24T19:28:24.000Z",
+ "lastUpdated": "2021-07-28T10:46:53.654Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mansarde",
+ "hasLocution": true,
+ "plural": "mansardes"
+ },
+ {
+ "keyword": "grenier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "greniers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat"
+ ],
+ "synsets": [
+ "07691372-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 25883,
+ "created": "2011-12-24T19:36:22.000Z",
+ "lastUpdated": "2021-07-28T10:47:07.674Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saucisse",
+ "hasLocution": true,
+ "plural": "saucisses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal",
+ "core vocabulary-living being",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "02419165-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic",
+ "core vocabulary"
+ ],
+ "_id": 25887,
+ "created": "2011-12-24T19:38:58.000Z",
+ "lastUpdated": "2021-07-28T10:47:15.058Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chèvre",
+ "hasLocution": true,
+ "plural": "chèvres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing",
+ "fish"
+ ],
+ "synsets": [
+ "07796603-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing",
+ "feeding",
+ "food",
+ "animal-based food"
+ ],
+ "_id": 25857,
+ "created": "2011-12-24T18:12:00.000Z",
+ "lastUpdated": "2024-12-09T11:44:15.632Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "thon",
+ "hasLocution": true,
+ "plural": "thons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "alcoholism"
+ ],
+ "synsets": [
+ "00800854-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "alcohol"
+ ],
+ "_id": 25863,
+ "created": "2011-12-24T18:34:48.000Z",
+ "lastUpdated": "2021-07-28T10:44:24.669Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "soule",
+ "hasLocution": false
+ },
+ {
+ "keyword": "ivre",
+ "type": 4,
+ "hasLocution": true
+ },
+ {
+ "keyword": "en état d'ébriété",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetal origin material",
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07770870-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "vegetal origin material",
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 25891,
+ "created": "2011-12-24T19:43:03.000Z",
+ "lastUpdated": "2021-07-28T10:47:37.582Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fève de cacao",
+ "hasLocution": false,
+ "plural": "fèves de cacao"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "02821967-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "core vocabulary"
+ ],
+ "_id": 25900,
+ "created": "2011-12-24T19:52:22.000Z",
+ "lastUpdated": "2021-07-28T10:49:27.083Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lit",
+ "hasLocution": true,
+ "plural": "lits"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance",
+ "photography",
+ "hardware"
+ ],
+ "synsets": [
+ "02946154-n",
+ "03993624-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "visual art",
+ "photography",
+ "computing",
+ "hardware"
+ ],
+ "_id": 25904,
+ "created": "2011-12-24T19:55:18.000Z",
+ "lastUpdated": "2021-07-28T10:49:43.758Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "appareil photo",
+ "hasLocution": true,
+ "plural": "appareils photo"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mountain"
+ ],
+ "synsets": [
+ "02949049-n",
+ "02948616-n",
+ "08495029-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 25912,
+ "created": "2011-12-24T20:10:13.000Z",
+ "lastUpdated": "2021-07-28T10:51:28.965Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "camping",
+ "hasLocution": true,
+ "plural": "campings"
+ },
+ {
+ "type": 2,
+ "keyword": "campement",
+ "hasLocution": true,
+ "plural": "campements"
+ },
+ {
+ "keyword": "camp",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "camps"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower"
+ ],
+ "synsets": [
+ "11814248-n"
+ ],
+ "tags": [
+ "plant",
+ "flower"
+ ],
+ "_id": 25894,
+ "created": "2011-12-24T19:47:18.000Z",
+ "lastUpdated": "2021-07-28T10:47:44.282Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arum",
+ "hasLocution": false,
+ "plural": "arums"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "worksite",
+ "workplace",
+ "rural area"
+ ],
+ "synsets": [
+ "08587527-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "workplace",
+ "place",
+ "rural area"
+ ],
+ "_id": 25916,
+ "created": "2011-12-24T20:17:13.000Z",
+ "lastUpdated": "2021-07-28T10:51:48.328Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "champ",
+ "hasLocution": false,
+ "plural": "champs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "agriculture"
+ ],
+ "synsets": [
+ "02950684-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 25920,
+ "created": "2011-12-24T20:21:18.000Z",
+ "lastUpdated": "2021-07-28T10:52:00.181Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canal",
+ "hasLocution": true,
+ "plural": "canaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "02264624-a",
+ "03600807-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 25908,
+ "created": "2011-12-24T20:05:11.000Z",
+ "lastUpdated": "2021-07-28T10:49:55.841Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tee-shirt à manches longes",
+ "hasLocution": false,
+ "plural": "tee-shirts à manches longes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming pool"
+ ],
+ "synsets": [
+ "02101482-v",
+ "01966872-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 25932,
+ "created": "2011-12-24T21:07:21.000Z",
+ "lastUpdated": "2021-07-30T01:08:37.321Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sauter dans l'eau",
+ "hasLocution": false
+ },
+ {
+ "keyword": "plonger",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnival",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "00512566-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "carnival",
+ "core vocabulary"
+ ],
+ "_id": 25924,
+ "created": "2011-12-24T20:25:08.000Z",
+ "lastUpdated": "2021-07-28T10:52:07.517Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carnaval",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "09420482-n"
+ ],
+ "tags": [],
+ "_id": 25936,
+ "created": "2011-12-24T21:13:11.000Z",
+ "lastUpdated": "2021-07-28T10:54:47.700Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "flaque",
+ "hasLocution": true,
+ "plural": "flaques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "prehistory"
+ ],
+ "synsets": [
+ "09922184-n",
+ "02477989-n",
+ "02477709-n"
+ ],
+ "tags": [
+ "history",
+ "prehistory"
+ ],
+ "_id": 25928,
+ "created": "2011-12-24T20:32:29.000Z",
+ "lastUpdated": "2021-07-28T10:54:11.519Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "homme préhistorique",
+ "hasLocution": false,
+ "plural": "hommes préhistoriques"
+ },
+ {
+ "keyword": "homme de néandertal",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "hommes de néandertal"
+ },
+ {
+ "keyword": "homme de Cromagnon",
+ "hasLocution": false,
+ "plural": "hommes de Cromagnon",
+ "type": 2
+ },
+ {
+ "keyword": "homme des cavernes",
+ "plural": "hommes des cavernes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular festival"
+ ],
+ "synsets": [
+ "00104239-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "popular festival"
+ ],
+ "_id": 25944,
+ "created": "2011-12-25T18:32:09.000Z",
+ "lastUpdated": "2021-07-30T05:58:47.150Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fusée",
+ "hasLocution": true,
+ "plural": "fusées"
+ },
+ {
+ "keyword": "tir de fusée",
+ "hasLocution": false,
+ "plural": "tirs de fusée",
+ "type": 2
+ },
+ {
+ "keyword": "coup",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "coups"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food",
+ "core vocabulary-feeding",
+ "food"
+ ],
+ "synsets": [
+ "07617570-n",
+ "07619120-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "core vocabulary"
+ ],
+ "_id": 25940,
+ "created": "2011-12-25T18:27:53.000Z",
+ "lastUpdated": "2024-12-12T16:05:01.002Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chocolat",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "tablette",
+ "hasLocution": false,
+ "plural": "tablettes"
+ },
+ {
+ "type": 2,
+ "keyword": "tablette de chocolat",
+ "hasLocution": false,
+ "plural": "tablettes de chocolat"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "05635568-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 25948,
+ "created": "2011-12-25T18:35:30.000Z",
+ "lastUpdated": "2021-07-28T10:57:05.937Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "paradis",
+ "hasLocution": false
+ },
+ {
+ "keyword": "ciel",
+ "type": 2,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "04541815-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 25950,
+ "created": "2011-12-25T18:37:25.000Z",
+ "lastUpdated": "2021-03-12T13:51:12.740Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cassette vidéo",
+ "hasLocution": true,
+ "plural": "cassettes vidéos"
+ },
+ {
+ "keyword": "K7 vidéo",
+ "hasLocution": false,
+ "plural": "K7 vidéos",
+ "type": 2
+ },
+ {
+ "keyword": "bande VHS",
+ "hasLocution": false,
+ "plural": "bandes VHS",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "03037347-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 25954,
+ "created": "2011-12-25T18:41:43.000Z",
+ "lastUpdated": "2024-12-05T15:20:29.112Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "circuit",
+ "hasLocution": false,
+ "plural": "circuits"
+ },
+ {
+ "type": 2,
+ "keyword": "circuit électrique",
+ "hasLocution": false,
+ "plural": "circuits électriques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chemistry",
+ "medicament",
+ "osseous system"
+ ],
+ "synsets": [
+ "14656826-n"
+ ],
+ "tags": [
+ "chemistry",
+ "health",
+ "medicine",
+ "medicament",
+ "human body",
+ "physiology",
+ "human physiology",
+ "osseous system"
+ ],
+ "_id": 25898,
+ "created": "2011-12-24T19:51:11.000Z",
+ "lastUpdated": "2021-07-28T15:28:07.482Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "calcium",
+ "hasLocution": false
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "Ca"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "color"
+ ],
+ "synsets": [
+ "00409737-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "color"
+ ],
+ "_id": 25958,
+ "created": "2011-12-25T18:45:10.000Z",
+ "lastUpdated": "2021-07-28T10:57:31.032Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "clair",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "entertainment facility",
+ "core vocabulary-place",
+ "summer"
+ ],
+ "synsets": [
+ "02949049-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "leisure",
+ "facility",
+ "recreational facility",
+ "core vocabulary",
+ "summer"
+ ],
+ "_id": 25974,
+ "created": "2011-12-25T19:07:40.000Z",
+ "lastUpdated": "2024-12-06T06:28:07.575Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "camp de vacances",
+ "hasLocution": false,
+ "plural": "camps de vacances"
+ },
+ {
+ "keyword": "camp",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "camps"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "entertainment facility",
+ "summer"
+ ],
+ "synsets": [
+ "02949049-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "leisure",
+ "facility",
+ "recreational facility",
+ "summer"
+ ],
+ "_id": 25976,
+ "created": "2011-12-25T19:10:30.000Z",
+ "lastUpdated": "2024-12-06T06:28:17.028Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "colonie de vacances",
+ "hasLocution": true,
+ "plural": "colonies de vacances"
+ },
+ {
+ "keyword": "séjour de vacances",
+ "hasLocution": false,
+ "plural": "séjours de vacances",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid"
+ ],
+ "synsets": [
+ "03082291-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 25982,
+ "created": "2011-12-25T19:17:20.000Z",
+ "lastUpdated": "2021-07-28T11:01:17.496Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "communicateur",
+ "hasLocution": true,
+ "plural": "communicateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "hunting",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01809208-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "hunting",
+ "domestic"
+ ],
+ "_id": 25970,
+ "created": "2011-12-25T19:01:43.000Z",
+ "lastUpdated": "2021-07-28T10:58:49.362Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caille",
+ "hasLocution": false,
+ "plural": "cailles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "death"
+ ],
+ "synsets": [
+ "03512024-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 25962,
+ "created": "2011-12-25T18:49:17.000Z",
+ "lastUpdated": "2021-07-28T10:58:04.754Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corbillard",
+ "hasLocution": false,
+ "plural": "corbillards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "death"
+ ],
+ "synsets": [
+ "01818782-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 25986,
+ "created": "2011-12-25T19:25:10.000Z",
+ "lastUpdated": "2021-07-28T11:04:00.421Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "consoler",
+ "hasLocution": false
+ },
+ {
+ "keyword": "réconforter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "présenter ses condoléances",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "construction"
+ ],
+ "synsets": [
+ "01658171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 25988,
+ "created": "2011-12-25T19:27:21.000Z",
+ "lastUpdated": "2021-07-28T11:04:13.808Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "construire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bâtir",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "03103457-n",
+ "04082075-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 25990,
+ "created": "2011-12-25T19:34:35.000Z",
+ "lastUpdated": "2021-08-02T22:37:50.059Z",
+ "keywords": [
+ {
+ "keyword": "domotique",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "contrôle d'environnement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "contrôles d'environnement"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "04613372-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 25992,
+ "created": "2011-12-25T19:37:47.000Z",
+ "lastUpdated": "2021-07-28T11:05:43.733Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couronne",
+ "hasLocution": true,
+ "plural": "couronnes"
+ },
+ {
+ "keyword": "couronne mortuaire",
+ "hasLocution": false,
+ "plural": "couronnes mortuaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pet",
+ "animal"
+ ],
+ "synsets": [
+ "04340267-n"
+ ],
+ "tags": [
+ "animal",
+ "pet"
+ ],
+ "_id": 25996,
+ "created": "2011-12-25T20:03:39.000Z",
+ "lastUpdated": "2024-12-11T17:28:57.063Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "laisse",
+ "hasLocution": true,
+ "plural": "laisses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "gardening"
+ ],
+ "synsets": [
+ "00430013-v",
+ "01323084-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 26000,
+ "created": "2011-12-25T20:06:37.000Z",
+ "lastUpdated": "2021-07-28T11:05:59.142Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tondre la pelouse",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faucher",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "03625562-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 25966,
+ "created": "2011-12-25T18:56:48.000Z",
+ "lastUpdated": "2021-07-28T10:58:33.279Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dinette",
+ "hasLocution": false,
+ "plural": "dinettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "death"
+ ],
+ "synsets": [
+ "03134717-n",
+ "03134884-n",
+ "00379825-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 26008,
+ "created": "2011-12-25T20:15:36.000Z",
+ "lastUpdated": "2021-07-28T11:07:47.457Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crématorium",
+ "hasLocution": false,
+ "plural": "crématoriums"
+ },
+ {
+ "type": 3,
+ "keyword": "incinérer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "chambre de crémation",
+ "hasLocution": false,
+ "plural": "chambres de crémation",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology"
+ ],
+ "synsets": [
+ "02315292-n"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology"
+ ],
+ "_id": 26012,
+ "created": "2011-12-25T20:18:41.000Z",
+ "lastUpdated": "2021-07-28T11:08:31.816Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chrysalide",
+ "hasLocution": false,
+ "plural": "chrysalides"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hobby",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "04473030-n"
+ ],
+ "tags": [
+ "leisure",
+ "hobby"
+ ],
+ "_id": 26016,
+ "created": "2011-12-25T20:21:40.000Z",
+ "lastUpdated": "2021-07-30T05:58:44.403Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "autocollants",
+ "hasLocution": false
+ },
+ {
+ "keyword": "cartes de collection",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chronological device",
+ "sport material",
+ "chronological instrument"
+ ],
+ "synsets": [
+ "03030684-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "time",
+ "chronological device",
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 26018,
+ "created": "2011-12-25T20:24:25.000Z",
+ "lastUpdated": "2021-07-30T01:48:11.700Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chronomètre",
+ "hasLocution": true,
+ "plural": "chronomètres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "interrogative pronoun",
+ "adjective"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "interrogative pronoun",
+ "adverb",
+ "adjective"
+ ],
+ "_id": 26022,
+ "created": "2011-12-25T20:26:42.000Z",
+ "lastUpdated": "2024-11-14T07:18:44.500Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "quel ?",
+ "hasLocution": false
+ },
+ {
+ "keyword": "quelle ?",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01339317-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 26024,
+ "created": "2011-12-25T20:30:26.000Z",
+ "lastUpdated": "2021-07-30T05:35:42.224Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couvrir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "protéger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "clothing industry"
+ ],
+ "synsets": [
+ "04186773-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "work",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 26004,
+ "created": "2011-12-25T20:11:45.000Z",
+ "lastUpdated": "2021-07-28T11:07:10.824Z",
+ "keywords": [
+ {
+ "keyword": "boite à couture",
+ "hasLocution": false,
+ "plural": "boites à couture",
+ "type": 2
+ },
+ {
+ "keyword": "panier à couture",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "paniers à couture"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mountain"
+ ],
+ "synsets": [
+ "04115362-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 26026,
+ "created": "2011-12-25T20:35:06.000Z",
+ "lastUpdated": "2021-07-30T01:47:50.007Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corde",
+ "hasLocution": true,
+ "plural": "cordes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05567360-n",
+ "05566889-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "core vocabulary"
+ ],
+ "_id": 26030,
+ "created": "2011-12-25T20:38:39.000Z",
+ "lastUpdated": "2021-07-30T05:35:38.345Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fesses",
+ "hasLocution": true
+ },
+ {
+ "keyword": "derrière",
+ "hasLocution": true,
+ "plural": "derrières",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "02105605-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 26037,
+ "created": "2011-12-25T20:50:55.000Z",
+ "lastUpdated": "2021-07-30T01:47:30.455Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "égoïste",
+ "hasLocution": false,
+ "plural": "égoïstes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05585041-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 26035,
+ "created": "2011-12-25T20:47:06.000Z",
+ "lastUpdated": "2021-03-25T21:39:24.495Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "doigts de pied",
+ "hasLocution": false
+ },
+ {
+ "keyword": "orteils",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01438878-a",
+ "02395180-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 26002,
+ "created": "2011-12-25T20:09:28.000Z",
+ "lastUpdated": "2021-07-28T11:06:03.460Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "court",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "02105605-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 26038,
+ "created": "2011-12-25T20:51:18.000Z",
+ "lastUpdated": "2021-07-30T01:47:04.631Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "égoïste",
+ "hasLocution": false,
+ "plural": "égoïstes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "popular festival",
+ "bullfighting"
+ ],
+ "synsets": [
+ "00440979-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "popular festival",
+ "scenic art",
+ "bullfighting"
+ ],
+ "_id": 26055,
+ "created": "2011-12-25T21:26:32.000Z",
+ "lastUpdated": "2022-06-14T09:50:32.016Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "course de taureaux",
+ "plural": "courses de taureaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "02105605-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 26039,
+ "created": "2011-12-25T20:51:42.000Z",
+ "lastUpdated": "2021-07-30T01:46:49.838Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "égoïste",
+ "hasLocution": false,
+ "plural": "égoïstes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "alcoholism"
+ ],
+ "synsets": [
+ "14042038-n",
+ "00749813-n",
+ "01173463-v"
+ ],
+ "tags": [
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "alcohol"
+ ],
+ "_id": 26053,
+ "created": "2011-12-25T21:20:29.000Z",
+ "lastUpdated": "2021-07-30T01:44:44.918Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuite",
+ "hasLocution": false,
+ "plural": "cuites"
+ },
+ {
+ "keyword": "ivresse",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "11472635-n",
+ "11472496-n"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 26059,
+ "created": "2011-12-25T21:29:58.000Z",
+ "lastUpdated": "2021-07-30T01:43:50.371Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "énergie",
+ "hasLocution": true,
+ "plural": "énergies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics",
+ "energy"
+ ],
+ "synsets": [
+ "11547345-n"
+ ],
+ "tags": [
+ "physics",
+ "work",
+ "secondary sector",
+ "energy"
+ ],
+ "_id": 26061,
+ "created": "2011-12-25T21:33:13.000Z",
+ "lastUpdated": "2021-07-30T05:35:12.765Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "énergie éolienne",
+ "hasLocution": false,
+ "plural": "énergies éoliennes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "07747563-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable",
+ "plant",
+ "hervaceouos plant"
+ ],
+ "_id": 26067,
+ "created": "2011-12-25T21:39:47.000Z",
+ "lastUpdated": "2021-07-30T01:43:21.546Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scarole",
+ "hasLocution": false,
+ "plural": "scaroles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "students",
+ "educational building",
+ "educational_building"
+ ],
+ "synsets": [
+ "00049744-n",
+ "03295682-n",
+ "02718424-n"
+ ],
+ "tags": [
+ "education",
+ "students",
+ "building",
+ "place"
+ ],
+ "_id": 26063,
+ "created": "2011-12-25T21:36:38.000Z",
+ "lastUpdated": "2021-07-30T05:34:44.735Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entrée",
+ "hasLocution": true,
+ "plural": "entrées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04615687-n",
+ "04171929-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 26071,
+ "created": "2011-12-25T21:42:39.000Z",
+ "lastUpdated": "2021-07-30T05:34:28.269Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bureau",
+ "hasLocution": true,
+ "plural": "bureaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure"
+ ],
+ "synsets": [
+ "04085859-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure"
+ ],
+ "_id": 26049,
+ "created": "2011-12-25T21:17:55.000Z",
+ "lastUpdated": "2021-07-30T01:46:16.782Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "réservoir",
+ "plural": "réservoirs"
+ },
+ {
+ "keyword": "barrage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "barrages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "egypt",
+ "archaeology"
+ ],
+ "synsets": [
+ "10440761-n"
+ ],
+ "tags": [
+ "history",
+ "civilization",
+ "Egypt",
+ "archaeology"
+ ],
+ "_id": 26086,
+ "created": "2011-12-25T22:00:15.000Z",
+ "lastUpdated": "2021-07-30T05:58:39.217Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pharaon",
+ "hasLocution": false,
+ "plural": "pharaons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00222548-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary"
+ ],
+ "_id": 26090,
+ "created": "2011-12-25T22:02:02.000Z",
+ "lastUpdated": "2021-07-30T05:58:37.031Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "laid",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03536726-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 26077,
+ "created": "2011-12-25T21:47:49.000Z",
+ "lastUpdated": "2021-07-30T05:34:02.849Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hotte",
+ "hasLocution": false,
+ "plural": "hottes"
+ },
+ {
+ "type": 2,
+ "keyword": "extracteur",
+ "hasLocution": false,
+ "plural": "extracteurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy",
+ "professional",
+ "core vocabulary-knowledge",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "10447528-n"
+ ],
+ "tags": [
+ "health",
+ "physiotherapy",
+ "work",
+ "professional",
+ "core vocabulary"
+ ],
+ "_id": 26094,
+ "created": "2011-12-25T22:06:43.000Z",
+ "lastUpdated": "2021-07-30T05:32:52.934Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kinésithérapeute",
+ "hasLocution": true,
+ "plural": "kinésithérapeutes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fossil"
+ ],
+ "synsets": [
+ "09307495-n"
+ ],
+ "tags": [
+ "extinct being",
+ "fossil",
+ "paleontology"
+ ],
+ "_id": 26098,
+ "created": "2011-12-26T12:53:26.000Z",
+ "lastUpdated": "2021-07-30T05:32:45.109Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fossile",
+ "hasLocution": false,
+ "plural": "fossiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fossil"
+ ],
+ "synsets": [
+ "09307495-n",
+ "09218836-n"
+ ],
+ "tags": [
+ "extinct being",
+ "fossil",
+ "paleontology"
+ ],
+ "_id": 26102,
+ "created": "2011-12-26T12:57:49.000Z",
+ "lastUpdated": "2021-07-30T05:58:34.908Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fossile",
+ "hasLocution": false,
+ "plural": "fossiles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03117520-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 26081,
+ "created": "2011-12-25T21:52:15.000Z",
+ "lastUpdated": "2021-07-30T05:33:32.510Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gaine",
+ "hasLocution": false,
+ "plural": "gaines"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00220542-s",
+ "00219320-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary"
+ ],
+ "_id": 26114,
+ "created": "2011-12-26T13:06:53.000Z",
+ "lastUpdated": "2021-07-30T05:58:32.829Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "beau",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03150741-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 26106,
+ "created": "2011-12-26T13:00:19.000Z",
+ "lastUpdated": "2021-07-30T05:32:30.040Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boutons de manchettes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "09563541-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 26118,
+ "created": "2011-12-26T13:11:19.000Z",
+ "lastUpdated": "2021-07-30T05:58:30.513Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fée",
+ "hasLocution": true,
+ "plural": "fées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food",
+ "meat"
+ ],
+ "synsets": [
+ "07679752-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 26122,
+ "created": "2011-12-26T13:14:31.000Z",
+ "lastUpdated": "2024-12-09T18:37:07.402Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hamburger",
+ "hasLocution": true,
+ "plural": "hamburgers"
+ },
+ {
+ "keyword": "steak haché",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "steaks hachés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "aromatic herb"
+ ],
+ "synsets": [
+ "10191128-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "plant-based food",
+ "aromatic plant"
+ ],
+ "_id": 26126,
+ "created": "2011-12-26T13:18:02.000Z",
+ "lastUpdated": "2021-07-30T05:31:11.138Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "herboristerie",
+ "hasLocution": false,
+ "plural": "herboristeries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01548893-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 26075,
+ "created": "2011-12-25T21:44:15.000Z",
+ "lastUpdated": "2021-07-30T05:58:41.993Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "être debout",
+ "hasLocution": false
+ },
+ {
+ "keyword": "se tenir debout",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "biology"
+ ],
+ "synsets": [
+ "14888511-n",
+ "05276464-n"
+ ],
+ "tags": [
+ "biology"
+ ],
+ "_id": 26110,
+ "created": "2011-12-26T13:04:40.000Z",
+ "lastUpdated": "2021-07-30T05:32:18.795Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "graisse",
+ "hasLocution": false,
+ "plural": "graisses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "biology"
+ ],
+ "synsets": [
+ "14816873-n"
+ ],
+ "tags": [
+ "biology"
+ ],
+ "_id": 26130,
+ "created": "2011-12-26T13:27:56.000Z",
+ "lastUpdated": "2021-07-30T05:58:28.064Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hydrate de carbone",
+ "hasLocution": false,
+ "plural": "hydrates de carbone"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "05637465-n",
+ "05637164-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 26142,
+ "created": "2011-12-26T13:44:49.000Z",
+ "lastUpdated": "2021-07-30T05:30:18.728Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enfer",
+ "hasLocution": false,
+ "plural": "enfers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02537291-v",
+ "02535833-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 26144,
+ "created": "2011-12-26T13:46:43.000Z",
+ "lastUpdated": "2021-07-30T05:54:58.223Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "essayer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "teenager",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01651383-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "person",
+ "teenager",
+ "core vocabulary"
+ ],
+ "_id": 26146,
+ "created": "2011-12-26T15:42:00.000Z",
+ "lastUpdated": "2021-07-30T05:30:07.640Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "jeune",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional game",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "00456623-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 26150,
+ "created": "2011-12-26T16:12:47.000Z",
+ "lastUpdated": "2021-07-30T05:30:04.143Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Jeu de l'espion",
+ "hasLocution": false
+ },
+ {
+ "keyword": "jeu de devinettes",
+ "hasLocution": false,
+ "plural": "jeux de devinettes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "verb"
+ ],
+ "synsets": [
+ "01745745-v"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 26152,
+ "created": "2011-12-26T17:20:24.000Z",
+ "lastUpdated": "2021-07-30T05:58:25.841Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "labourer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "cultiver",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "verb"
+ ],
+ "synsets": [
+ "01745745-v"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 26153,
+ "created": "2011-12-26T17:20:43.000Z",
+ "lastUpdated": "2021-07-30T05:25:50.794Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "labourer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "cultiver",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "verb"
+ ],
+ "synsets": [
+ "01745745-v"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 26154,
+ "created": "2011-12-26T17:21:59.000Z",
+ "lastUpdated": "2021-07-30T05:25:27.283Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "labourer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "03649051-n",
+ "04011143-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware",
+ "core vocabulary"
+ ],
+ "_id": 26138,
+ "created": "2011-12-26T13:42:06.000Z",
+ "lastUpdated": "2021-07-30T05:30:39.110Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "imprimante",
+ "hasLocution": true,
+ "plural": "imprimantes"
+ },
+ {
+ "type": 2,
+ "keyword": "imprimante laser",
+ "hasLocution": true,
+ "plural": "imprimantes laser"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "03460432-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 26158,
+ "created": "2011-12-26T17:25:26.000Z",
+ "lastUpdated": "2021-07-30T05:25:22.230Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pierre tombale",
+ "hasLocution": false,
+ "plural": "pierres tombales"
+ },
+ {
+ "keyword": "tombe",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "tombes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01436368-a",
+ "01385012-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 26162,
+ "created": "2011-12-26T17:27:16.000Z",
+ "lastUpdated": "2021-07-30T05:58:23.244Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "long",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "trousseau",
+ "core vocabulary-communication",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "00418932-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "object",
+ "household",
+ "trousseau",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 26172,
+ "created": "2011-12-26T17:41:24.000Z",
+ "lastUpdated": "2021-07-30T05:57:21.233Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "propre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "urban area"
+ ],
+ "synsets": [
+ "04562284-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "urban area"
+ ],
+ "_id": 26168,
+ "created": "2011-12-26T17:32:57.000Z",
+ "lastUpdated": "2021-07-30T05:58:18.151Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lavoir",
+ "hasLocution": false,
+ "plural": "lavoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "insect",
+ "terrestrial animal",
+ "herbivorous",
+ "oviparous"
+ ],
+ "synsets": [
+ "02313712-n"
+ ],
+ "tags": [
+ "animal",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "terrestrial animal",
+ "herbivorous",
+ "oviparous"
+ ],
+ "_id": 26164,
+ "created": "2011-12-26T17:29:48.000Z",
+ "lastUpdated": "2021-07-30T05:58:20.891Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "larve",
+ "hasLocution": false,
+ "plural": "larves"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01086845-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 26176,
+ "created": "2011-12-26T17:44:52.000Z",
+ "lastUpdated": "2021-07-30T05:24:25.574Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "plein",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rempli",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "core vocabulary-feeding",
+ "meat"
+ ],
+ "synsets": [
+ "07674287-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "core vocabulary",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 26178,
+ "created": "2011-12-26T17:48:35.000Z",
+ "lastUpdated": "2024-12-12T15:40:09.190Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "filet",
+ "hasLocution": true,
+ "plural": "filets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "14012765-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 26180,
+ "created": "2011-12-26T17:51:21.000Z",
+ "lastUpdated": "2021-07-30T05:58:14.401Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "deuil",
+ "hasLocution": false,
+ "plural": "deuils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hardware"
+ ],
+ "synsets": [
+ "01214679-v",
+ "01213301-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "computing",
+ "hardware"
+ ],
+ "_id": 26186,
+ "created": "2011-12-26T17:56:22.000Z",
+ "lastUpdated": "2021-07-30T05:23:33.257Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "manipuler",
+ "hasLocution": false
+ },
+ {
+ "keyword": "manier",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "04082075-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 26182,
+ "created": "2011-12-26T17:54:10.000Z",
+ "lastUpdated": "2021-07-30T05:23:48.591Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "télécommande",
+ "hasLocution": true,
+ "plural": "télécommandes"
+ },
+ {
+ "type": 2,
+ "keyword": "commande",
+ "hasLocution": true,
+ "plural": "commandes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "reptile",
+ "oviparous",
+ "terrestrial animal",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01680007-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "reptile",
+ "oviparous",
+ "terrestrial animal",
+ "domestic"
+ ],
+ "_id": 26134,
+ "created": "2011-12-26T13:39:07.000Z",
+ "lastUpdated": "2021-07-30T05:30:46.965Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "iguane",
+ "hasLocution": false,
+ "plural": "iguanes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance"
+ ],
+ "synsets": [
+ "03491080-n",
+ "03131675-n"
+ ],
+ "tags": [
+ "object",
+ "appliance"
+ ],
+ "_id": 26188,
+ "created": "2011-12-26T18:03:36.000Z",
+ "lastUpdated": "2021-07-30T05:22:39.838Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "manivelle",
+ "hasLocution": true,
+ "plural": "manivelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "raw material"
+ ],
+ "synsets": [
+ "14620880-n"
+ ],
+ "tags": [
+ "material",
+ "raw material"
+ ],
+ "_id": 26204,
+ "created": "2011-12-26T18:15:55.000Z",
+ "lastUpdated": "2021-07-30T05:20:42.212Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "matière première",
+ "hasLocution": false,
+ "plural": "matières premières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "derived material"
+ ],
+ "synsets": [
+ "00678636-s",
+ "04014270-n"
+ ],
+ "tags": [
+ "material",
+ "derived material"
+ ],
+ "_id": 26208,
+ "created": "2011-12-26T18:22:03.000Z",
+ "lastUpdated": "2021-07-30T05:20:28.390Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "produit manufacturé",
+ "hasLocution": false,
+ "plural": "produits manufacturés"
+ },
+ {
+ "type": 2,
+ "keyword": "manufacturé",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "04193498-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 26192,
+ "created": "2011-12-26T18:06:38.000Z",
+ "lastUpdated": "2021-07-30T05:21:13.202Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "châle",
+ "hasLocution": false,
+ "plural": "châles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07688659-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 26196,
+ "created": "2011-12-26T18:09:36.000Z",
+ "lastUpdated": "2021-07-30T05:21:03.776Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "margarine",
+ "hasLocution": true,
+ "plural": "margarines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mining industry",
+ "worksite",
+ "workplace"
+ ],
+ "synsets": [
+ "03773881-n",
+ "01166397-v"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "mining",
+ "workplace",
+ "place"
+ ],
+ "_id": 26220,
+ "created": "2011-12-26T18:38:21.000Z",
+ "lastUpdated": "2021-07-30T05:18:58.208Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mine",
+ "hasLocution": true,
+ "plural": "mines"
+ },
+ {
+ "keyword": "mine de surface",
+ "hasLocution": false,
+ "plural": "mines de surface",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mineral origin material"
+ ],
+ "synsets": [
+ "14686753-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "mineral origin material"
+ ],
+ "_id": 26224,
+ "created": "2011-12-26T18:43:13.000Z",
+ "lastUpdated": "2021-07-30T05:18:24.151Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "minéral",
+ "hasLocution": false,
+ "plural": "minéraux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "arthropod",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01789287-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 26216,
+ "created": "2011-12-26T18:30:13.000Z",
+ "lastUpdated": "2021-07-30T05:19:05.907Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mille-pattes",
+ "hasLocution": false,
+ "plural": "mille-pattes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "raw material"
+ ],
+ "synsets": [
+ "14686753-n",
+ "03098402-a"
+ ],
+ "tags": [
+ "material",
+ "raw material"
+ ],
+ "_id": 26226,
+ "created": "2011-12-26T18:44:48.000Z",
+ "lastUpdated": "2021-07-30T05:58:10.197Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "minéraux",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "02276911-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "core vocabulary"
+ ],
+ "_id": 26200,
+ "created": "2011-12-26T18:12:25.000Z",
+ "lastUpdated": "2021-07-30T05:58:12.199Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "papillon",
+ "hasLocution": true,
+ "plural": "papillons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "hairdresser"
+ ],
+ "synsets": [
+ "04462319-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 26230,
+ "created": "2011-12-26T19:09:38.000Z",
+ "lastUpdated": "2021-07-30T05:56:07.585Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chignon",
+ "hasLocution": true,
+ "plural": "chignons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "07962243-n",
+ "00096133-a",
+ "10014481-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 26234,
+ "created": "2011-12-26T19:15:07.000Z",
+ "lastUpdated": "2021-07-30T05:17:52.708Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mort",
+ "hasLocution": true,
+ "plural": "morts"
+ },
+ {
+ "type": 2,
+ "keyword": "défunt",
+ "hasLocution": false,
+ "plural": "défunts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "03223838-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 26238,
+ "created": "2011-12-26T19:19:05.000Z",
+ "lastUpdated": "2021-07-30T05:58:08.086Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poupée",
+ "hasLocution": true,
+ "plural": "poupées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument",
+ "keyboard instrument"
+ ],
+ "synsets": [
+ "05726882-n",
+ "05726503-n",
+ "07034009-n",
+ "03859585-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument",
+ "keyboard instrument"
+ ],
+ "_id": 26242,
+ "created": "2011-12-26T19:23:13.000Z",
+ "lastUpdated": "2021-07-30T05:17:28.775Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "musique d'orgue",
+ "hasLocution": false,
+ "plural": "musiques d'orgue"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03753493-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 26212,
+ "created": "2011-12-26T18:26:45.000Z",
+ "lastUpdated": "2021-07-30T05:19:43.288Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mercurochrome",
+ "hasLocution": false
+ },
+ {
+ "keyword": "désinfectant",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "désinfectants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character",
+ "egypt"
+ ],
+ "synsets": [
+ "11222712-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "civilization",
+ "Egypt"
+ ],
+ "_id": 26252,
+ "created": "2011-12-26T19:37:03.000Z",
+ "lastUpdated": "2021-07-30T05:17:04.726Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Néfertiti",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology",
+ "animal group"
+ ],
+ "synsets": [
+ "08007266-n"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology",
+ "group"
+ ],
+ "_id": 26254,
+ "created": "2011-12-26T19:39:21.000Z",
+ "lastUpdated": "2021-07-30T05:16:59.936Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nichée",
+ "hasLocution": false,
+ "plural": "nichées"
+ },
+ {
+ "keyword": "couvée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "couvées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cattle farming"
+ ],
+ "synsets": [
+ "00194514-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "cattle farming"
+ ],
+ "_id": 26260,
+ "created": "2011-12-26T19:44:51.000Z",
+ "lastUpdated": "2021-07-30T05:56:16.304Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "traire",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00610654-v",
+ "00614532-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "core vocabulary"
+ ],
+ "_id": 26258,
+ "created": "2011-12-26T19:42:49.000Z",
+ "lastUpdated": "2021-07-30T05:16:22.771Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "oublier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "keyboard instrument",
+ "wind instrument",
+ "musical art"
+ ],
+ "synsets": [
+ "03859585-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "keyboard instrument",
+ "wind instrument"
+ ],
+ "_id": 26262,
+ "created": "2011-12-26T19:48:20.000Z",
+ "lastUpdated": "2024-12-07T13:41:48.047Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "orgue",
+ "hasLocution": false,
+ "plural": "orgues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "00410517-a"
+ ],
+ "tags": [],
+ "_id": 26266,
+ "created": "2011-12-26T19:53:01.000Z",
+ "lastUpdated": "2021-07-30T05:15:59.817Z",
+ "keywords": [
+ {
+ "keyword": "foncé",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "sombre",
+ "type": 4,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mollusc",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "01961555-n",
+ "01961670-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 26248,
+ "created": "2011-12-26T19:32:07.000Z",
+ "lastUpdated": "2021-07-30T05:58:06.079Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couteau",
+ "hasLocution": true,
+ "plural": "couteaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "herbivorous",
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "flying animal"
+ ],
+ "synsets": [
+ "01505702-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "herbivorous",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal"
+ ],
+ "_id": 26271,
+ "created": "2011-12-26T19:56:51.000Z",
+ "lastUpdated": "2021-07-30T05:15:01.683Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oiseau",
+ "hasLocution": true,
+ "plural": "oiseaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "herbivorous",
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "flying animal"
+ ],
+ "synsets": [
+ "01505702-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "herbivorous",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal"
+ ],
+ "_id": 26270,
+ "created": "2011-12-26T19:56:30.000Z",
+ "lastUpdated": "2021-07-30T05:15:34.140Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oiseau",
+ "hasLocution": true,
+ "plural": "oiseaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "04056865-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 26286,
+ "created": "2011-12-26T20:08:57.000Z",
+ "lastUpdated": "2021-07-30T05:54:17.851Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bâton de pluie",
+ "hasLocution": false,
+ "plural": "bâtons de pluie"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "03664618-n",
+ "03665135-n",
+ "01596175-v"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 26278,
+ "created": "2011-12-26T20:02:55.000Z",
+ "lastUpdated": "2021-07-30T05:56:19.070Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "levier",
+ "hasLocution": false,
+ "plural": "leviers"
+ },
+ {
+ "type": 3,
+ "keyword": "soulever",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "03664618-n",
+ "03665135-n",
+ "01596175-v"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 26279,
+ "created": "2011-12-26T20:03:29.000Z",
+ "lastUpdated": "2021-07-30T05:56:25.099Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "levier",
+ "hasLocution": false,
+ "plural": "leviers"
+ },
+ {
+ "type": 3,
+ "keyword": "soulever",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport",
+ "traffic accident"
+ ],
+ "synsets": [
+ "07367675-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "traffic accident"
+ ],
+ "_id": 26244,
+ "created": "2011-12-26T19:28:26.000Z",
+ "lastUpdated": "2021-03-26T15:06:25.059Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "naufrage",
+ "hasLocution": true,
+ "plural": "naufrages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform",
+ "natural habitat"
+ ],
+ "synsets": [
+ "09370676-n",
+ "09475525-n",
+ "02558836-s"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "natural habitat"
+ ],
+ "_id": 26290,
+ "created": "2011-12-26T20:14:11.000Z",
+ "lastUpdated": "2021-07-30T05:14:23.014Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marais",
+ "hasLocution": false,
+ "plural": "marais"
+ },
+ {
+ "type": 4,
+ "keyword": "marécageux",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "pet",
+ "dog-assisted therapy"
+ ],
+ "synsets": [
+ "01910816-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "pet",
+ "animal-assisted therapy",
+ "dog-assisted therapy"
+ ],
+ "_id": 26302,
+ "created": "2011-12-26T20:27:08.000Z",
+ "lastUpdated": "2021-07-30T05:13:21.465Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "promener le chien",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07644479-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 26304,
+ "created": "2011-12-26T20:28:56.000Z",
+ "lastUpdated": "2021-07-30T05:13:15.549Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gâteaux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "reproductive system",
+ "excretory system"
+ ],
+ "synsets": [
+ "05522556-n",
+ "05534035-n",
+ "05521732-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "reproductive system",
+ "excretory system"
+ ],
+ "_id": 26306,
+ "created": "2011-12-26T20:43:49.000Z",
+ "lastUpdated": "2021-07-30T05:13:08.785Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pénis",
+ "hasLocution": true,
+ "plural": "pénis"
+ },
+ {
+ "keyword": "sexe masculin",
+ "hasLocution": false,
+ "plural": "sexes masculins",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01886163-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "babycare"
+ ],
+ "_id": 26300,
+ "created": "2011-12-26T20:25:40.000Z",
+ "lastUpdated": "2022-12-18T05:38:33.710Z",
+ "keywords": [
+ {
+ "keyword": "promener le bébé",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport"
+ ],
+ "synsets": [
+ "02026505-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 26314,
+ "created": "2011-12-26T20:50:19.000Z",
+ "lastUpdated": "2021-07-30T05:11:49.988Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rater",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "12411002-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "hervaceouos plant"
+ ],
+ "_id": 26310,
+ "created": "2011-12-26T20:48:23.000Z",
+ "lastUpdated": "2021-07-30T05:12:35.567Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pensée",
+ "hasLocution": false,
+ "plural": "pensées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "02527155-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 26316,
+ "created": "2011-12-26T20:52:27.000Z",
+ "lastUpdated": "2021-07-30T01:26:47.497Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "merlu",
+ "hasLocution": true,
+ "plural": "merlus"
+ },
+ {
+ "keyword": "merlan",
+ "hasLocution": false,
+ "plural": "merlans",
+ "type": 2
+ },
+ {
+ "keyword": "églefin",
+ "hasLocution": false,
+ "plural": "églefins",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "construction"
+ ],
+ "synsets": [
+ "01365439-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 26324,
+ "created": "2011-12-26T21:01:07.000Z",
+ "lastUpdated": "2021-07-30T01:20:56.362Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "peindre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "entertainment facility",
+ "recreational facility"
+ ],
+ "synsets": [
+ "08680652-n"
+ ],
+ "tags": [
+ "leisure",
+ "place",
+ "facility",
+ "recreational facility"
+ ],
+ "_id": 26296,
+ "created": "2011-12-26T20:22:16.000Z",
+ "lastUpdated": "2021-07-30T05:14:00.139Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parc à thème",
+ "hasLocution": false,
+ "plural": "parcs à thème"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "nervous system"
+ ],
+ "synsets": [
+ "05481387-n",
+ "05312635-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "nervous system"
+ ],
+ "_id": 26294,
+ "created": "2011-12-26T20:18:53.000Z",
+ "lastUpdated": "2021-07-30T05:14:05.017Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "papilles",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "papilles gustatives",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity",
+ "christmas"
+ ],
+ "synsets": [
+ "06202643-n",
+ "15221021-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 26320,
+ "created": "2011-12-26T20:55:37.000Z",
+ "lastUpdated": "2021-07-30T01:23:46.746Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "crèche",
+ "plural": "crèches"
+ },
+ {
+ "type": 2,
+ "keyword": "mangeoire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "04026692-n"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 26334,
+ "created": "2011-12-26T21:10:55.000Z",
+ "lastUpdated": "2021-07-30T05:54:10.041Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poulie",
+ "hasLocution": true,
+ "plural": "poulies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "03631305-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 26338,
+ "created": "2011-12-28T15:47:01.000Z",
+ "lastUpdated": "2021-07-30T01:41:45.916Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pommeau",
+ "hasLocution": true,
+ "plural": "pommeaux"
+ },
+ {
+ "keyword": "bouton",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "boutons"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "poignée",
+ "plural": "poignées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03987232-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 26342,
+ "created": "2011-12-28T15:51:03.000Z",
+ "lastUpdated": "2021-07-30T01:18:35.510Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poncho",
+ "hasLocution": false,
+ "plural": "ponchos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "01393487-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 26330,
+ "created": "2011-12-26T21:07:24.000Z",
+ "lastUpdated": "2021-07-30T01:19:11.411Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Soumettre un tissu, un vêtement à l'action d'un fer chaud ou d'un instrument analogue pour en enlever les plis ou les mettre en forme.",
+ "keyword": "repasser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "biology"
+ ],
+ "synsets": [
+ "14752903-n"
+ ],
+ "tags": [
+ "biology"
+ ],
+ "_id": 26346,
+ "created": "2011-12-28T15:57:27.000Z",
+ "lastUpdated": "2021-07-30T01:18:22.841Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "protéine",
+ "hasLocution": false,
+ "plural": "protéines"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mollusc",
+ "oviparous",
+ "marine animal",
+ "fishing",
+ "wild animal"
+ ],
+ "synsets": [
+ "01972805-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing",
+ "wild"
+ ],
+ "_id": 26350,
+ "created": "2011-12-28T16:00:53.000Z",
+ "lastUpdated": "2021-07-30T01:17:56.792Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poulpe",
+ "hasLocution": true,
+ "plural": "poulpes"
+ },
+ {
+ "keyword": "pieuvre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pieuvres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "communication aid"
+ ],
+ "synsets": [
+ "01449876-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 26354,
+ "created": "2011-12-28T16:03:12.000Z",
+ "lastUpdated": "2021-07-30T01:17:20.034Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "appuyer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "05639232-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 26356,
+ "created": "2011-12-28T16:06:05.000Z",
+ "lastUpdated": "2021-07-30T01:16:49.540Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "purgatoire",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "insect",
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "08012854-n"
+ ],
+ "tags": [
+ "animal",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 26326,
+ "created": "2011-12-26T21:05:04.000Z",
+ "lastUpdated": "2021-07-30T01:20:46.456Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fléau",
+ "hasLocution": false,
+ "plural": "fléaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "medicament"
+ ],
+ "synsets": [
+ "01074284-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "medicament"
+ ],
+ "_id": 26366,
+ "created": "2011-12-28T16:18:08.000Z",
+ "lastUpdated": "2021-07-28T15:29:45.397Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "faire une ordonnance"
+ },
+ {
+ "type": 3,
+ "keyword": "prescrire",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "02550878-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 26362,
+ "created": "2011-12-28T16:14:42.000Z",
+ "lastUpdated": "2021-07-30T00:55:00.794Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lotte",
+ "hasLocution": false,
+ "plural": "lottes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07735584-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 26370,
+ "created": "2011-12-28T16:24:46.000Z",
+ "lastUpdated": "2021-07-30T00:54:27.378Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "betterave",
+ "hasLocution": false,
+ "plural": "betteraves"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "00116112-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 26372,
+ "created": "2011-12-28T16:26:28.000Z",
+ "lastUpdated": "2021-07-30T00:54:00.824Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "remorque",
+ "hasLocution": false,
+ "plural": "remorques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02206426-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 26376,
+ "created": "2011-12-28T16:31:06.000Z",
+ "lastUpdated": "2021-07-30T05:53:34.640Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "partager",
+ "hasLocution": true
+ },
+ {
+ "keyword": "distribuer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02206426-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 26377,
+ "created": "2011-12-28T16:31:41.000Z",
+ "lastUpdated": "2021-07-30T05:53:23.534Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "partager",
+ "hasLocution": true
+ },
+ {
+ "keyword": "distribuer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "mass media",
+ "mass media device",
+ "core vocabulary-object",
+ "appliance"
+ ],
+ "synsets": [
+ "04050813-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "communication",
+ "mass media",
+ "mass media device",
+ "core vocabulary"
+ ],
+ "_id": 26358,
+ "created": "2011-12-28T16:10:17.000Z",
+ "lastUpdated": "2024-12-08T06:51:56.366Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "radio",
+ "hasLocution": true,
+ "plural": "radios"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "01393487-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 26331,
+ "created": "2011-12-26T21:07:41.000Z",
+ "lastUpdated": "2021-07-30T01:19:05.230Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Soumettre un tissu, un vêtement à l'action d'un fer chaud ou d'un instrument analogue pour en enlever les plis ou les mettre en forme.",
+ "keyword": "repasser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pollution"
+ ],
+ "synsets": [
+ "00277831-n",
+ "14540345-n",
+ "00493642-v",
+ "14880414-n"
+ ],
+ "tags": [
+ "environmental science",
+ "pollution"
+ ],
+ "_id": 26388,
+ "created": "2011-12-28T16:51:49.000Z",
+ "lastUpdated": "2021-07-30T05:52:49.625Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pollution",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "contaminer ",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "résidus",
+ "hasLocution": false
+ },
+ {
+ "keyword": "polluer",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "déchets",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity",
+ "christmas",
+ "core vocabulary-religion",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15219341-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity",
+ "event",
+ "popular event",
+ "christmas",
+ "core vocabulary"
+ ],
+ "_id": 26390,
+ "created": "2011-12-28T16:53:50.000Z",
+ "lastUpdated": "2021-03-26T03:13:23.125Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Rois Mages",
+ "hasLocution": true
+ },
+ {
+ "keyword": "3 Rois Mages",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology"
+ ],
+ "synsets": [
+ "00851153-n",
+ "13571521-n",
+ "00054856-v"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology"
+ ],
+ "_id": 26380,
+ "created": "2011-12-28T16:36:02.000Z",
+ "lastUpdated": "2021-07-30T05:53:01.882Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "reproduction",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se reproduire",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14168983-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 26384,
+ "created": "2011-12-28T16:43:49.000Z",
+ "lastUpdated": "2021-07-30T01:38:58.985Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rhume",
+ "hasLocution": false,
+ "plural": "rhumes"
+ },
+ {
+ "keyword": "refroidissement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "refroidissements"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01033904-s",
+ "05265220-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features",
+ "core vocabulary"
+ ],
+ "_id": 26392,
+ "created": "2011-12-28T16:59:22.000Z",
+ "lastUpdated": "2021-07-30T05:52:19.953Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "frisé",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "boucle",
+ "hasLocution": true,
+ "plural": "boucles"
+ },
+ {
+ "keyword": "frisure",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "frisures"
+ },
+ {
+ "keyword": "bouclé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01571714-v",
+ "01469999-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 26396,
+ "created": "2011-12-28T17:03:02.000Z",
+ "lastUpdated": "2021-07-30T05:58:02.546Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "entourer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology",
+ "verb"
+ ],
+ "synsets": [
+ "01448216-v",
+ "01176591-v"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 26398,
+ "created": "2011-12-28T17:05:09.000Z",
+ "lastUpdated": "2021-07-30T00:51:01.821Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ronger",
+ "hasLocution": false
+ },
+ {
+ "keyword": "grignoter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mordiller",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "educational material"
+ ],
+ "synsets": [
+ "04034791-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "education",
+ "educational material"
+ ],
+ "_id": 26403,
+ "created": "2011-12-28T17:14:48.000Z",
+ "lastUpdated": "2021-07-30T00:52:54.329Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casse-tête",
+ "hasLocution": false,
+ "plural": "casse-têtes"
+ },
+ {
+ "hasLocution": true,
+ "type": 2,
+ "keyword": "puzzle",
+ "plural": "puzzles"
+ },
+ {
+ "keyword": "cubes",
+ "hasLocution": false,
+ "plural": "cubes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "students"
+ ],
+ "synsets": [
+ "00596016-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "students"
+ ],
+ "_id": 26405,
+ "created": "2011-12-28T17:17:20.000Z",
+ "lastUpdated": "2021-07-30T05:50:46.869Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "savoir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "lever le doigt",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant physiology",
+ "verb"
+ ],
+ "synsets": [
+ "00851153-n",
+ "13571521-n",
+ "00054856-v"
+ ],
+ "tags": [
+ "plant",
+ "plant physiology",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 26381,
+ "created": "2011-12-28T16:37:07.000Z",
+ "lastUpdated": "2021-07-30T05:52:55.737Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "reproduction",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se reproduire",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "students",
+ "educational building",
+ "educational_building"
+ ],
+ "synsets": [
+ "00059339-n"
+ ],
+ "tags": [
+ "education",
+ "students",
+ "building",
+ "place"
+ ],
+ "_id": 26412,
+ "created": "2011-12-28T17:24:22.000Z",
+ "lastUpdated": "2021-07-30T05:50:09.976Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sortie",
+ "hasLocution": true,
+ "plural": "sorties"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "fish"
+ ],
+ "synsets": [
+ "07811727-n",
+ "07670276-n"
+ ],
+ "tags": [
+ "animal-based food",
+ "gastronomy",
+ "feeding",
+ "food",
+ "fish"
+ ],
+ "_id": 26419,
+ "created": "2011-12-28T17:31:34.000Z",
+ "lastUpdated": "2024-12-07T15:39:45.283Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "saumon",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "tranche de saumon",
+ "hasLocution": false,
+ "plural": "tranches de saumon"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01376685-v",
+ "01377960-v",
+ "01377432-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 26423,
+ "created": "2011-12-28T17:35:09.000Z",
+ "lastUpdated": "2021-07-30T01:02:19.275Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éclabousser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "arroser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming pool"
+ ],
+ "synsets": [
+ "01966872-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 26425,
+ "created": "2011-12-28T18:00:59.000Z",
+ "lastUpdated": "2021-07-30T01:01:44.056Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": true,
+ "keyword": "plonger"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "sauter dans l'eau",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "archaeology",
+ "book character",
+ "movie character",
+ "halloween",
+ "egypt"
+ ],
+ "synsets": [
+ "04143128-n",
+ "05225904-n"
+ ],
+ "tags": [
+ "history",
+ "archaeology",
+ "character",
+ "book character",
+ "literature",
+ "movie character",
+ "cinema",
+ "event",
+ "popular event",
+ "halloween",
+ "civilization",
+ "Egypt"
+ ],
+ "_id": 26427,
+ "created": "2011-12-28T18:05:22.000Z",
+ "lastUpdated": "2021-07-30T01:00:58.716Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "momie",
+ "hasLocution": true,
+ "plural": "momies"
+ },
+ {
+ "type": 2,
+ "keyword": "sarcophage",
+ "hasLocution": true,
+ "plural": "sarcophage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03256469-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 26431,
+ "created": "2011-12-28T18:10:22.000Z",
+ "lastUpdated": "2021-07-30T01:00:17.229Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "séchoir",
+ "hasLocution": true,
+ "plural": "séchoir"
+ },
+ {
+ "keyword": "séchoir à linge",
+ "hasLocution": false,
+ "plural": "séchoirs à linge",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01246915-v",
+ "01516062-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 26407,
+ "created": "2011-12-28T17:20:02.000Z",
+ "lastUpdated": "2021-07-30T05:56:48.705Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "secouer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01246915-v",
+ "01516062-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 26408,
+ "created": "2011-12-28T17:20:22.000Z",
+ "lastUpdated": "2021-07-30T05:50:25.833Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "secouer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "students",
+ "educational building",
+ "educational_building"
+ ],
+ "synsets": [
+ "00059339-n"
+ ],
+ "tags": [
+ "education",
+ "students",
+ "building",
+ "place"
+ ],
+ "_id": 26411,
+ "created": "2011-12-28T17:24:07.000Z",
+ "lastUpdated": "2021-07-30T05:50:19.729Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sortie",
+ "hasLocution": true,
+ "plural": "sorties"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07585586-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 26435,
+ "created": "2011-12-28T18:14:44.000Z",
+ "lastUpdated": "2021-07-30T00:59:32.793Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "semoule",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "08446124-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 26439,
+ "created": "2011-12-28T18:19:26.000Z",
+ "lastUpdated": "2021-07-30T05:49:59.160Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "proches",
+ "hasLocution": false
+ },
+ {
+ "keyword": "entourage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "entourages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "08446124-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 26440,
+ "created": "2011-12-28T18:19:50.000Z",
+ "lastUpdated": "2021-07-30T05:49:35.727Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "proches",
+ "hasLocution": false
+ },
+ {
+ "keyword": "entourage",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "texture"
+ ],
+ "synsets": [
+ "02244586-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "texture"
+ ],
+ "_id": 26455,
+ "created": "2011-12-28T18:38:18.000Z",
+ "lastUpdated": "2021-07-30T00:46:42.823Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "doux",
+ "hasLocution": true,
+ "plural": "doux"
+ },
+ {
+ "keyword": "souple",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "souples"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07674703-n",
+ "07675429-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 26451,
+ "created": "2011-12-28T18:35:10.000Z",
+ "lastUpdated": "2021-07-30T05:55:48.007Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "faux-filet",
+ "hasLocution": false,
+ "plural": "faux-filets"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "trousseau"
+ ],
+ "synsets": [
+ "00420808-a",
+ "00403065-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 26459,
+ "created": "2011-12-28T18:42:41.000Z",
+ "lastUpdated": "2021-07-30T00:44:51.097Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sale",
+ "hasLocution": true,
+ "plural": "sales"
+ },
+ {
+ "type": 4,
+ "keyword": "taché",
+ "hasLocution": true,
+ "plural": "tachés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "00223352-n",
+ "10693108-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 26463,
+ "created": "2011-12-28T18:47:37.000Z",
+ "lastUpdated": "2021-07-30T00:43:11.985Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "suicide",
+ "hasLocution": false,
+ "plural": "suicides"
+ },
+ {
+ "keyword": "se suicider",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "00223352-n",
+ "10693108-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 26464,
+ "created": "2011-12-28T18:47:54.000Z",
+ "lastUpdated": "2021-07-30T00:42:42.227Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "suicide",
+ "hasLocution": false,
+ "plural": "suicides"
+ },
+ {
+ "keyword": "se suicider",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "legume"
+ ],
+ "synsets": [
+ "07745461-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "legume"
+ ],
+ "_id": 26447,
+ "created": "2011-12-28T18:24:54.000Z",
+ "lastUpdated": "2021-07-30T00:57:29.220Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "soja",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "graines de soja",
+ "hasLocution": false,
+ "plural": "graines de soja"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "halloween"
+ ],
+ "synsets": [
+ "00080947-s",
+ "00080219-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 26483,
+ "created": "2011-12-28T19:04:17.000Z",
+ "lastUpdated": "2021-07-30T05:49:00.857Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "peureuse",
+ "hasLocution": false
+ },
+ {
+ "keyword": "craintive",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "effrayée",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes"
+ ],
+ "synsets": [
+ "01483990-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 26487,
+ "created": "2011-12-28T19:06:44.000Z",
+ "lastUpdated": "2021-07-11T09:24:11.047Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étendre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "accrocher",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "suspendre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "cattle farming",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01890537-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic"
+ ],
+ "_id": 26489,
+ "created": "2011-12-28T19:10:46.000Z",
+ "lastUpdated": "2021-07-30T00:40:10.165Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "génisse",
+ "hasLocution": false,
+ "plural": "génisses"
+ },
+ {
+ "keyword": "veau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "veaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "01966872-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 26493,
+ "created": "2011-12-28T19:13:09.000Z",
+ "lastUpdated": "2021-07-30T00:26:53.402Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "plonger",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se jeter dans l'eau",
+ "hasLocution": false
+ },
+ {
+ "keyword": "plonger la tête la première",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "playground",
+ "street furniture",
+ "recreational facility"
+ ],
+ "synsets": [
+ "04450567-n",
+ "04245234-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground",
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 26495,
+ "created": "2011-12-28T19:16:18.000Z",
+ "lastUpdated": "2021-03-27T21:35:23.727Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toboggan",
+ "hasLocution": true,
+ "plural": "toboggans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beach"
+ ],
+ "synsets": [
+ "00103780-v",
+ "00103901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 26499,
+ "created": "2011-12-28T19:20:50.000Z",
+ "lastUpdated": "2021-07-30T00:24:47.880Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bronzer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beach"
+ ],
+ "synsets": [
+ "00103780-v",
+ "00103901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 26500,
+ "created": "2011-12-28T19:21:19.000Z",
+ "lastUpdated": "2021-07-30T00:24:42.000Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bronzer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid"
+ ],
+ "synsets": [
+ "03082291-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 26475,
+ "created": "2011-12-28T18:53:59.000Z",
+ "lastUpdated": "2021-07-30T00:41:35.371Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tableau de communication",
+ "hasLocution": true,
+ "plural": "tableaux de communication"
+ },
+ {
+ "type": 2,
+ "keyword": "tableau",
+ "hasLocution": true,
+ "plural": "tableaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "reptile",
+ "oviparous",
+ "terrestrial animal",
+ "aquatic animal",
+ "domestic animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01672733-n",
+ "01665425-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "reptile",
+ "oviparous",
+ "terrestrial animal",
+ "aquatic animal",
+ "domestic",
+ "core vocabulary"
+ ],
+ "_id": 26503,
+ "created": "2011-12-28T19:24:55.000Z",
+ "lastUpdated": "2021-07-30T00:23:32.863Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tortue",
+ "hasLocution": true,
+ "plural": "tortues"
+ },
+ {
+ "type": 2,
+ "keyword": "tortue géante",
+ "hasLocution": false,
+ "plural": "tortues géantes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media device",
+ "mass media",
+ "core vocabulary-object",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "04408223-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media",
+ "communication",
+ "core vocabulary"
+ ],
+ "_id": 26479,
+ "created": "2011-12-28T18:59:03.000Z",
+ "lastUpdated": "2021-07-30T00:41:00.095Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "téléphone",
+ "hasLocution": true,
+ "plural": "téléphones"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom",
+ "covid-19"
+ ],
+ "synsets": [
+ "00005815-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom",
+ "covid-19"
+ ],
+ "_id": 26508,
+ "created": "2011-12-28T19:29:45.000Z",
+ "lastUpdated": "2021-07-30T00:20:30.372Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tousser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "éternuer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room"
+ ],
+ "synsets": [
+ "04336615-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room"
+ ],
+ "_id": 26511,
+ "created": "2011-12-28T19:34:27.000Z",
+ "lastUpdated": "2021-07-30T00:19:58.168Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "débarras",
+ "hasLocution": false,
+ "plural": "débarras"
+ },
+ {
+ "keyword": "réserve",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "réserves"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "04436510-n"
+ ],
+ "tags": [],
+ "_id": 26515,
+ "created": "2011-12-28T19:37:53.000Z",
+ "lastUpdated": "2021-07-30T00:17:17.178Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trône",
+ "hasLocution": false,
+ "plural": "trônes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "death"
+ ],
+ "synsets": [
+ "00223352-n",
+ "10693108-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 26465,
+ "created": "2011-12-28T18:48:14.000Z",
+ "lastUpdated": "2021-07-30T00:42:19.688Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "suicide",
+ "hasLocution": false,
+ "plural": "suicides"
+ },
+ {
+ "keyword": "se suicider",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom",
+ "covid-19"
+ ],
+ "synsets": [
+ "00005815-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom",
+ "covid-19"
+ ],
+ "_id": 26507,
+ "created": "2011-12-28T19:29:24.000Z",
+ "lastUpdated": "2021-07-30T00:20:43.139Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tousser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "éternuer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01904401-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 26519,
+ "created": "2011-12-28T19:43:01.000Z",
+ "lastUpdated": "2021-07-30T00:17:03.561Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "trébucher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire un faux pas",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character",
+ "egypt"
+ ],
+ "synsets": [
+ "11373842-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "civilization",
+ "Egypt"
+ ],
+ "_id": 26521,
+ "created": "2011-12-28T19:45:55.000Z",
+ "lastUpdated": "2021-07-30T00:16:13.490Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Toutankhamon",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01090234-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 26527,
+ "created": "2011-12-28T19:51:01.000Z",
+ "lastUpdated": "2021-07-30T00:15:27.860Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "vide",
+ "hasLocution": true,
+ "plural": "vides"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "core vocabulary-living being",
+ "building"
+ ],
+ "synsets": [
+ "08242011-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "core vocabulary",
+ "place",
+ "building"
+ ],
+ "_id": 26529,
+ "created": "2011-12-28T19:56:23.000Z",
+ "lastUpdated": "2024-12-13T07:22:44.355Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voisins",
+ "hasLocution": true,
+ "plural": "voisins"
+ },
+ {
+ "keyword": "quartier",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "quartiers"
+ },
+ {
+ "keyword": "voisinage",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "agriculture"
+ ],
+ "synsets": [
+ "01322669-v",
+ "01017252-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 26533,
+ "created": "2011-12-28T19:58:52.000Z",
+ "lastUpdated": "2021-07-29T23:58:33.707Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "récolter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "vendanger",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ramasser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "04412675-n",
+ "04541097-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 26535,
+ "created": "2011-12-28T20:03:48.000Z",
+ "lastUpdated": "2021-07-30T05:48:17.824Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lecteur vidéo",
+ "hasLocution": true,
+ "plural": "lecteurs vidéos"
+ },
+ {
+ "keyword": "magnétoscope",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "magnétoscopes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "christianity"
+ ],
+ "synsets": [
+ "06443410-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "christianity"
+ ],
+ "_id": 26539,
+ "created": "2011-12-29T11:16:24.000Z",
+ "lastUpdated": "2021-03-26T03:20:41.555Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Bible",
+ "hasLocution": true,
+ "plural": "bibles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "meat"
+ ],
+ "synsets": [
+ "07682266-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 26547,
+ "created": "2011-12-29T11:25:26.000Z",
+ "lastUpdated": "2024-12-11T06:46:43.408Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lapin",
+ "hasLocution": true,
+ "plural": "lapins"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware",
+ "appliance",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03037971-n",
+ "04010586-n",
+ "03582259-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 26543,
+ "created": "2011-12-29T11:22:41.000Z",
+ "lastUpdated": "2024-12-05T15:21:12.582Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "circuit",
+ "hasLocution": false,
+ "plural": "circuits"
+ },
+ {
+ "type": 2,
+ "keyword": "circuit électronique",
+ "hasLocution": false,
+ "plural": "circuits électroniques"
+ },
+ {
+ "keyword": "circuit imprimé",
+ "hasLocution": false,
+ "plural": "circuits imprimés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product",
+ "cutlery"
+ ],
+ "synsets": [
+ "04291140-n",
+ "01544805-s"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product",
+ "household",
+ "cutlery",
+ "home"
+ ],
+ "_id": 26549,
+ "created": "2011-12-29T13:35:31.000Z",
+ "lastUpdated": "2021-07-30T00:11:45.772Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuillère adaptée",
+ "hasLocution": false,
+ "plural": "cuillères adaptées"
+ },
+ {
+ "keyword": "cuiller adaptée",
+ "hasLocution": false,
+ "plural": "cuillers adaptées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product",
+ "cutlery"
+ ],
+ "synsets": [
+ "03628765-n",
+ "01544805-s"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product",
+ "household",
+ "cutlery",
+ "home"
+ ],
+ "_id": 26553,
+ "created": "2011-12-29T13:38:21.000Z",
+ "lastUpdated": "2021-07-30T00:11:10.429Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couteau adapté",
+ "hasLocution": false,
+ "plural": "couteaux adaptés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product",
+ "cutlery"
+ ],
+ "synsets": [
+ "03388794-n",
+ "01544805-s"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product",
+ "household",
+ "cutlery",
+ "home"
+ ],
+ "_id": 26557,
+ "created": "2011-12-29T13:54:51.000Z",
+ "lastUpdated": "2021-07-30T00:10:52.068Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fourchette adaptée",
+ "hasLocution": false,
+ "plural": "fourchettes adaptées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "construction"
+ ],
+ "synsets": [
+ "01660001-v",
+ "00336968-v",
+ "01415000-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 26561,
+ "created": "2011-12-29T13:58:45.000Z",
+ "lastUpdated": "2021-07-30T00:10:34.941Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "démolir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "abattre",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'effondrer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "détruire",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "meat"
+ ],
+ "synsets": [
+ "07667661-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 26569,
+ "created": "2011-12-29T12:10:11.000Z",
+ "lastUpdated": "2024-12-09T18:37:44.901Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "foie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "02757108-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 26571,
+ "created": "2011-12-29T12:15:24.000Z",
+ "lastUpdated": "2021-07-28T15:23:39.740Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nébulisateur",
+ "hasLocution": false,
+ "plural": "nébulisateurs"
+ },
+ {
+ "type": 2,
+ "keyword": "spray nasal",
+ "hasLocution": false,
+ "plural": "spray nasalux"
+ },
+ {
+ "keyword": "spray",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "sprays"
+ },
+ {
+ "keyword": "pulvérisateur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pulvérisateurs"
+ },
+ {
+ "keyword": "vaporisateur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "vaporisateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious person",
+ "christianity"
+ ],
+ "synsets": [
+ "10297512-n",
+ "02966904-a",
+ "10003102-n"
+ ],
+ "tags": [
+ "religion",
+ "person",
+ "christianity"
+ ],
+ "_id": 26575,
+ "created": "2011-12-29T12:21:12.000Z",
+ "lastUpdated": "2021-03-26T03:21:40.915Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pasteur luthérien",
+ "hasLocution": false,
+ "plural": "pasteurs luthériens"
+ },
+ {
+ "keyword": "pasteur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pasteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "04523411-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 26523,
+ "created": "2011-12-28T19:48:28.000Z",
+ "lastUpdated": "2021-07-30T00:16:06.438Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "urne",
+ "hasLocution": true,
+ "plural": "urnes"
+ },
+ {
+ "keyword": "urne funéraire",
+ "hasLocution": false,
+ "plural": "urnes funéraires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "04540337-n"
+ ],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 26581,
+ "created": "2011-12-29T14:35:50.000Z",
+ "lastUpdated": "2021-07-30T05:47:52.354Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "appareil de massage",
+ "plural": "appareils de massage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "death"
+ ],
+ "synsets": [
+ "02498679-v",
+ "03459977-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 26585,
+ "created": "2011-12-29T15:21:04.000Z",
+ "lastUpdated": "2021-07-29T23:50:43.912Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "aller au cimetière"
+ },
+ {
+ "keyword": "aller sur la tombe",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "death"
+ ],
+ "synsets": [
+ "10351554-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 26563,
+ "created": "2011-12-29T14:03:27.000Z",
+ "lastUpdated": "2021-07-30T00:08:02.853Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "employé de pompes funèbres",
+ "hasLocution": false,
+ "plural": "employé de pompes funèbres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03533443-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 26587,
+ "created": "2012-02-09T11:31:05.000Z",
+ "lastUpdated": "2021-07-29T23:49:25.145Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "appareils électroménagers",
+ "hasLocution": false,
+ "plural": "appareils électroménagers"
+ },
+ {
+ "keyword": "appareils ménagers",
+ "hasLocution": false,
+ "plural": "appareils ménagers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational organization"
+ ],
+ "synsets": [
+ "08293641-n"
+ ],
+ "tags": [
+ "education",
+ "organization"
+ ],
+ "_id": 26589,
+ "created": "2012-02-09T12:08:55.000Z",
+ "lastUpdated": "2021-08-01T17:11:27.279Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "école des parents",
+ "hasLocution": false,
+ "plural": "écoles des parents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "child"
+ ],
+ "synsets": [
+ "02553648-s",
+ "05905605-n",
+ "09937051-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "child"
+ ],
+ "_id": 26591,
+ "created": "2012-02-23T13:24:20.000Z",
+ "lastUpdated": "2021-07-30T00:39:15.182Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enfants avec autisme",
+ "hasLocution": false,
+ "plural": "enfants avec autisme"
+ },
+ {
+ "keyword": "enfants autistes",
+ "hasLocution": false,
+ "plural": "enfants autistes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "02553648-s",
+ "05905605-n",
+ "10305010-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 26594,
+ "created": "2012-02-23T13:26:15.000Z",
+ "lastUpdated": "2021-07-30T00:45:42.341Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": " garçon autiste",
+ "hasLocution": false,
+ "plural": " garçons autistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "02553648-s",
+ "05905605-n",
+ "10104064-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 26595,
+ "created": "2012-02-23T13:26:52.000Z",
+ "lastUpdated": "2021-07-29T23:36:50.098Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": " fille autiste",
+ "hasLocution": false,
+ "plural": " filles autistes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "person according to their age"
+ ],
+ "synsets": [
+ "02553648-s",
+ "05905605-n",
+ "00007846-n"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 26603,
+ "created": "2012-02-23T13:38:09.000Z",
+ "lastUpdated": "2021-07-29T23:34:34.964Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "personne autiste",
+ "hasLocution": false,
+ "plural": "personnes autistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "02553648-s",
+ "05905605-n",
+ "09642198-n"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 26599,
+ "created": "2012-02-23T13:35:07.000Z",
+ "lastUpdated": "2021-07-29T23:35:45.153Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "femme autiste",
+ "hasLocution": false,
+ "plural": "femmes autistes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "02553648-s",
+ "05905605-n",
+ "09937051-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 26606,
+ "created": "2012-02-23T13:40:07.000Z",
+ "lastUpdated": "2021-07-29T23:34:17.588Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enfant autiste",
+ "hasLocution": false,
+ "plural": "enfants autistes"
+ },
+ {
+ "keyword": "garçon autiste",
+ "hasLocution": false,
+ "plural": "garçons autistes",
+ "type": 2
+ },
+ {
+ "keyword": "fille autiste",
+ "hasLocution": false,
+ "plural": "filles autistes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "05905605-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 26607,
+ "created": "2012-02-23T13:40:42.000Z",
+ "lastUpdated": "2021-07-29T23:33:03.850Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "autisme",
+ "hasLocution": false
+ },
+ {
+ "keyword": "troubles du spectre de l'autisme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "troubles du spectre de l'autisme"
+ },
+ {
+ "keyword": "TSA",
+ "hasLocution": false,
+ "plural": "TSA",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "02553648-s",
+ "05905605-n",
+ "09647338-n"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 26598,
+ "created": "2012-02-23T13:34:41.000Z",
+ "lastUpdated": "2021-07-29T23:36:06.809Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "homme autiste",
+ "hasLocution": false,
+ "plural": "hommes autistes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00850100-v",
+ "00851872-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 26611,
+ "created": "2012-05-26T19:27:40.000Z",
+ "lastUpdated": "2021-07-29T23:31:54.884Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "insulter",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "keyword": "huer",
+ "type": 3
+ },
+ {
+ "keyword": "injurier",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport event"
+ ],
+ "synsets": [
+ "00863389-v",
+ "00860463-v",
+ "00863593-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "event",
+ "sport event"
+ ],
+ "_id": 26615,
+ "created": "2012-05-26T19:32:55.000Z",
+ "lastUpdated": "2021-07-29T23:30:00.726Z",
+ "keywords": [
+ {
+ "hasLocution": true,
+ "keyword": "applaudir",
+ "type": 3
+ },
+ {
+ "keyword": "acclamer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14245594-n",
+ "14357268-n",
+ "14357527-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 26616,
+ "created": "2012-05-26T19:36:14.000Z",
+ "lastUpdated": "2021-07-29T23:28:24.257Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boutons",
+ "hasLocution": true,
+ "plural": "boutons"
+ },
+ {
+ "keyword": "acné",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "points noirs",
+ "hasLocution": false,
+ "plural": "points noirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00872241-v",
+ "00873067-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 26622,
+ "created": "2012-05-26T19:45:57.000Z",
+ "lastUpdated": "2021-07-29T23:25:24.297Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "avertir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prévenir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "menacer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07900542-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 26626,
+ "created": "2012-05-26T19:49:39.000Z",
+ "lastUpdated": "2021-07-29T23:24:04.926Z",
+ "keywords": [
+ {
+ "keyword": "boissons alcoolisées",
+ "hasLocution": false,
+ "plural": "boissons alcoolisées",
+ "type": 2
+ },
+ {
+ "keyword": "alcool",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "alcools"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "adult"
+ ],
+ "synsets": [
+ "02553648-s",
+ "05905605-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "adult"
+ ],
+ "_id": 26602,
+ "created": "2012-02-23T13:37:19.000Z",
+ "lastUpdated": "2021-07-29T23:35:16.062Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "personnes autistes",
+ "hasLocution": false,
+ "plural": "personnes autistes"
+ },
+ {
+ "keyword": "personne avec autisme",
+ "hasLocution": false,
+ "plural": "personnes avec autisme",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "music device"
+ ],
+ "synsets": [
+ "03696785-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "music device"
+ ],
+ "_id": 26628,
+ "created": "2012-05-26T19:51:33.000Z",
+ "lastUpdated": "2021-07-29T23:22:31.402Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "haut-parleur",
+ "hasLocution": true,
+ "plural": "hauts-parleurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture"
+ ],
+ "synsets": [
+ "02839034-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 26632,
+ "created": "2012-05-26T19:58:05.000Z",
+ "lastUpdated": "2021-07-29T21:16:30.901Z",
+ "keywords": [
+ {
+ "keyword": "garage à vélos",
+ "hasLocution": false,
+ "plural": "garages à vélos",
+ "type": 2
+ },
+ {
+ "keyword": "parking à vélos",
+ "hasLocution": false,
+ "plural": "parkings à vélos",
+ "type": 2
+ },
+ {
+ "keyword": "arceau à vélos",
+ "hasLocution": false,
+ "plural": "arceaux à vélos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00872241-v",
+ "00873067-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 26623,
+ "created": "2012-05-26T19:46:26.000Z",
+ "lastUpdated": "2021-07-29T23:25:02.529Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "avertir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prévenir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "menacer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "students"
+ ],
+ "synsets": [
+ "00599310-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "students"
+ ],
+ "_id": 26636,
+ "created": "2012-05-26T20:01:18.000Z",
+ "lastUpdated": "2021-07-29T21:13:57.250Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "apprendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming"
+ ],
+ "synsets": [
+ "00599310-v",
+ "01964770-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 26638,
+ "created": "2012-05-26T20:07:32.000Z",
+ "lastUpdated": "2021-07-29T21:13:52.543Z",
+ "keywords": [
+ {
+ "keyword": "apprendre à nager",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming"
+ ],
+ "synsets": [
+ "00599310-v",
+ "01964770-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 26639,
+ "created": "2012-05-26T20:07:51.000Z",
+ "lastUpdated": "2021-07-29T21:13:44.444Z",
+ "keywords": [
+ {
+ "keyword": "apprendre à nager",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming"
+ ],
+ "synsets": [
+ "00599310-v",
+ "01964770-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 26640,
+ "created": "2012-05-26T20:08:21.000Z",
+ "lastUpdated": "2021-07-29T21:13:36.027Z",
+ "keywords": [
+ {
+ "keyword": "apprendre à nager",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming"
+ ],
+ "synsets": [
+ "00599310-v",
+ "01964770-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 26641,
+ "created": "2012-05-26T20:08:42.000Z",
+ "lastUpdated": "2021-07-29T21:13:15.698Z",
+ "keywords": [
+ {
+ "keyword": "apprendre à nager",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "entertainment facility",
+ "recreational facility"
+ ],
+ "synsets": [
+ "02735077-n"
+ ],
+ "tags": [
+ "leisure",
+ "place",
+ "facility",
+ "recreational facility"
+ ],
+ "_id": 26618,
+ "created": "2012-05-26T19:39:58.000Z",
+ "lastUpdated": "2021-07-29T23:26:29.677Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aquarium",
+ "hasLocution": true,
+ "plural": "aquariums"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity",
+ "death"
+ ],
+ "synsets": [
+ "03068762-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 26646,
+ "created": "2012-05-26T20:13:28.000Z",
+ "lastUpdated": "2021-07-29T21:13:03.993Z",
+ "keywords": [
+ {
+ "keyword": "cercueil",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cercueils"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "literature"
+ ],
+ "synsets": [
+ "04269788-n"
+ ],
+ "tags": [
+ "literature"
+ ],
+ "_id": 26650,
+ "created": "2012-05-26T20:23:58.000Z",
+ "lastUpdated": "2021-07-29T21:12:49.708Z",
+ "keywords": [
+ {
+ "keyword": "audiolivre",
+ "hasLocution": false,
+ "plural": "audiolivres",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "road safety",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "02927500-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety",
+ "work",
+ "core vocabulary"
+ ],
+ "_id": 26654,
+ "created": "2012-05-26T20:27:32.000Z",
+ "lastUpdated": "2022-02-03T05:57:49.066Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "autobus",
+ "hasLocution": true,
+ "plural": "autobus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "sport",
+ "olympic games"
+ ],
+ "synsets": [
+ "00481519-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "event",
+ "sport event",
+ "olympic games"
+ ],
+ "_id": 26658,
+ "created": "2012-05-26T20:33:05.000Z",
+ "lastUpdated": "2024-12-09T11:46:24.700Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "badminton",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine",
+ "furniture"
+ ],
+ "synsets": [
+ "01977139-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine",
+ "object",
+ "furniture"
+ ],
+ "_id": 26661,
+ "created": "2012-05-26T20:40:31.000Z",
+ "lastUpdated": "2024-12-05T12:02:40.441Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baisser le lit",
+ "hasLocution": true
+ },
+ {
+ "keyword": "descendre le lit",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09045488-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26666,
+ "created": "2012-06-04T13:23:02.000Z",
+ "lastUpdated": "2021-07-29T21:11:35.491Z",
+ "keywords": [
+ {
+ "keyword": "Andorre",
+ "type": 1,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08725731-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26667,
+ "created": "2012-06-04T13:25:30.000Z",
+ "lastUpdated": "2021-07-29T21:11:25.662Z",
+ "keywords": [
+ {
+ "keyword": "Angola",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09039896-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26669,
+ "created": "2012-06-04T13:31:36.000Z",
+ "lastUpdated": "2021-07-29T21:11:05.053Z",
+ "keywords": [
+ {
+ "keyword": "Arménie",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09040532-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26670,
+ "created": "2012-06-04T13:35:22.000Z",
+ "lastUpdated": "2021-07-29T21:10:57.140Z",
+ "keywords": [
+ {
+ "keyword": "Azerbaïdjan",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "onomatopoeia",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01050202-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "interjection",
+ "onomatopoeia",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 26664,
+ "created": "2012-05-26T20:44:39.000Z",
+ "lastUpdated": "2021-07-29T21:11:38.078Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bêler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08866260-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26671,
+ "created": "2012-06-04T13:37:25.000Z",
+ "lastUpdated": "2021-07-29T21:10:27.726Z",
+ "keywords": [
+ {
+ "keyword": "Bahamas",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08773269-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26672,
+ "created": "2012-06-04T13:43:30.000Z",
+ "lastUpdated": "2021-07-29T21:10:17.801Z",
+ "keywords": [
+ {
+ "keyword": "Barbade",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09033521-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26673,
+ "created": "2012-06-04T13:46:13.000Z",
+ "lastUpdated": "2021-07-29T21:09:47.257Z",
+ "keywords": [
+ {
+ "keyword": "Biélorussie",
+ "type": 1,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08871381-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26674,
+ "created": "2012-06-04T13:49:26.000Z",
+ "lastUpdated": "2021-07-29T21:09:10.314Z",
+ "keywords": [
+ {
+ "keyword": "Botswana",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08723211-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26668,
+ "created": "2012-06-04T13:28:32.000Z",
+ "lastUpdated": "2021-07-29T21:11:14.618Z",
+ "keywords": [
+ {
+ "keyword": "Algérie",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine",
+ "furniture"
+ ],
+ "synsets": [
+ "01977139-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine",
+ "object",
+ "furniture"
+ ],
+ "_id": 26660,
+ "created": "2012-05-26T20:38:17.000Z",
+ "lastUpdated": "2024-12-05T12:02:27.191Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baisser le lit",
+ "hasLocution": true
+ },
+ {
+ "keyword": "descendre le lit",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08735748-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26677,
+ "created": "2012-06-04T14:02:24.000Z",
+ "lastUpdated": "2021-07-29T21:08:16.232Z",
+ "keywords": [
+ {
+ "keyword": "Cap Vert",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "03969492-n",
+ "04183251-n",
+ "03211629-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 26678,
+ "created": "2012-06-07T18:00:06.000Z",
+ "lastUpdated": "2021-07-29T21:08:05.274Z",
+ "keywords": [
+ {
+ "keyword": "plat",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "plats"
+ },
+ {
+ "keyword": "plateau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "plateaux"
+ },
+ {
+ "keyword": "plat à four",
+ "hasLocution": false,
+ "plural": "plats à four",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming"
+ ],
+ "synsets": [
+ "02097668-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 26682,
+ "created": "2012-06-07T18:16:07.000Z",
+ "lastUpdated": "2021-07-29T21:07:16.356Z",
+ "keywords": [
+ {
+ "keyword": "battre",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "battredes jambes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming"
+ ],
+ "synsets": [
+ "02097668-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 26683,
+ "created": "2012-06-07T18:16:39.000Z",
+ "lastUpdated": "2021-07-29T21:07:01.725Z",
+ "keywords": [
+ {
+ "keyword": "battre",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "battre des jambes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08916686-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26675,
+ "created": "2012-06-04T13:52:09.000Z",
+ "lastUpdated": "2021-07-29T21:08:59.685Z",
+ "keywords": [
+ {
+ "keyword": "Burkina Faso",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08734052-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26676,
+ "created": "2012-06-04T13:54:33.000Z",
+ "lastUpdated": "2021-07-29T21:08:46.611Z",
+ "keywords": [
+ {
+ "keyword": "Burundi",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming"
+ ],
+ "synsets": [
+ "02097668-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 26684,
+ "created": "2012-06-07T18:16:58.000Z",
+ "lastUpdated": "2021-07-29T21:06:45.257Z",
+ "keywords": [
+ {
+ "keyword": "battre",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "battre des jambes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "verb"
+ ],
+ "synsets": [
+ "03212950-n",
+ "02727132-n",
+ "00089076-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 26688,
+ "created": "2012-06-07T18:40:48.000Z",
+ "lastUpdated": "2024-12-11T12:17:16.016Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "désinfecter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "désinfectant",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "désinfectants"
+ },
+ {
+ "keyword": "antiseptique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "antiseptiques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "13316680-n",
+ "02837983-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 26692,
+ "created": "2012-06-07T18:49:07.000Z",
+ "lastUpdated": "2021-07-29T21:05:54.759Z",
+ "keywords": [
+ {
+ "keyword": "location de vélos",
+ "hasLocution": false,
+ "plural": "locations de vélos",
+ "type": 2
+ },
+ {
+ "keyword": "vélos à louer",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beach"
+ ],
+ "synsets": [
+ "07280883-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 26696,
+ "created": "2012-06-07T18:53:19.000Z",
+ "lastUpdated": "2021-07-29T21:05:18.876Z",
+ "keywords": [
+ {
+ "keyword": "bouée",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "bouées"
+ },
+ {
+ "keyword": "balise",
+ "type": 2,
+ "plural": "balises",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "04563490-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 26700,
+ "created": "2012-06-07T18:58:26.000Z",
+ "lastUpdated": "2021-07-29T21:04:48.755Z",
+ "keywords": [
+ {
+ "keyword": "bracelet",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "bracelets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "15219341-n",
+ "08445442-n"
+ ],
+ "tags": [],
+ "_id": 26708,
+ "created": "2012-06-08T18:50:29.000Z",
+ "lastUpdated": "2021-07-29T21:03:30.762Z",
+ "keywords": [
+ {
+ "keyword": "parade",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "parades"
+ },
+ {
+ "keyword": "défilé",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "défilés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "04302017-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 26712,
+ "created": "2012-06-08T18:54:40.000Z",
+ "lastUpdated": "2021-07-29T21:03:10.698Z",
+ "keywords": [
+ {
+ "keyword": "étable",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "étables"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "swimming"
+ ],
+ "synsets": [
+ "03645974-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "swimming"
+ ],
+ "_id": 26720,
+ "created": "2012-06-08T19:01:56.000Z",
+ "lastUpdated": "2021-07-29T21:02:20.993Z",
+ "keywords": [
+ {
+ "keyword": "ligne",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "lignes"
+ },
+ {
+ "keyword": "ligne d'eau",
+ "hasLocution": false,
+ "plural": "lignes d'eau",
+ "type": 2
+ },
+ {
+ "keyword": "couloir de nage",
+ "hasLocution": false,
+ "plural": "couloirs de nage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physics",
+ "cookery"
+ ],
+ "synsets": [
+ "01250274-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "physics",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 26716,
+ "created": "2012-06-08T18:58:18.000Z",
+ "lastUpdated": "2021-07-29T21:02:24.938Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "chaud",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "brûlant",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 26724,
+ "created": "2012-06-09T12:08:57.000Z",
+ "lastUpdated": "2021-07-29T21:01:41.916Z",
+ "keywords": [
+ {
+ "keyword": "panier",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "paniers"
+ },
+ {
+ "keyword": "panier du chat",
+ "hasLocution": false,
+ "plural": "paniers du chat",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body position",
+ "routine"
+ ],
+ "synsets": [
+ "01882942-v",
+ "01871802-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "position",
+ "person",
+ "routine"
+ ],
+ "_id": 26728,
+ "created": "2012-06-09T12:16:27.000Z",
+ "lastUpdated": "2021-07-29T21:01:04.234Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se retourner",
+ "hasLocution": false
+ },
+ {
+ "keyword": "tourner",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "rouler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00851012-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 26704,
+ "created": "2012-06-08T18:43:13.000Z",
+ "lastUpdated": "2021-07-29T21:04:35.640Z",
+ "keywords": [
+ {
+ "keyword": "plaisanter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se moquer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00851012-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 26705,
+ "created": "2012-06-08T18:46:27.000Z",
+ "lastUpdated": "2021-07-29T21:04:14.138Z",
+ "keywords": [
+ {
+ "keyword": "plaisanter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se moquer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "feeding"
+ ],
+ "synsets": [
+ "04183129-n",
+ "03489166-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "feeding"
+ ],
+ "_id": 26732,
+ "created": "2012-06-09T12:26:23.000Z",
+ "lastUpdated": "2024-12-05T06:30:48.201Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charriot",
+ "hasLocution": true,
+ "plural": "charriots"
+ },
+ {
+ "keyword": "desserte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dessertes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts"
+ ],
+ "synsets": [
+ "00330729-a"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 26740,
+ "created": "2012-06-09T12:41:45.000Z",
+ "lastUpdated": "2021-07-29T20:59:31.382Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "central",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "00551194-v",
+ "03010002-n",
+ "00140571-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 26730,
+ "created": "2012-06-09T12:19:43.000Z",
+ "lastUpdated": "2021-07-29T21:00:34.887Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "changer de chaîne",
+ "hasLocution": true
+ },
+ {
+ "keyword": "zapper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "03279176-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 26744,
+ "created": "2012-06-09T12:47:46.000Z",
+ "lastUpdated": "2021-07-29T20:59:26.036Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brosse électrique",
+ "hasLocution": true,
+ "plural": "brosses électriques"
+ },
+ {
+ "keyword": "brosse à dent électrique",
+ "hasLocution": false,
+ "plural": "brosses à dent électriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "trade"
+ ],
+ "synsets": [
+ "04211284-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 26748,
+ "created": "2012-06-09T12:58:26.000Z",
+ "lastUpdated": "2021-07-29T20:58:56.175Z",
+ "keywords": [
+ {
+ "keyword": "panier",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "paniers"
+ },
+ {
+ "keyword": "panier de courses",
+ "hasLocution": false,
+ "plural": "paniers de courses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08737870-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26752,
+ "created": "2012-06-09T13:04:34.000Z",
+ "lastUpdated": "2021-07-29T20:58:29.339Z",
+ "keywords": [
+ {
+ "keyword": "Tchad",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "03314159-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 26757,
+ "created": "2012-06-09T13:12:41.000Z",
+ "lastUpdated": "2021-08-04T09:03:48.031Z",
+ "keywords": [
+ {
+ "keyword": "collyre",
+ "hasLocution": false,
+ "plural": "collyres",
+ "type": 2
+ },
+ {
+ "keyword": "gouttes pour les yeux",
+ "hasLocution": false,
+ "plural": "gouttes pour les yeux",
+ "type": 2
+ },
+ {
+ "keyword": "gouttes oculaires",
+ "hasLocution": false,
+ "plural": "gouttes oculaires",
+ "type": 2
+ },
+ {
+ "keyword": "bain d'œil",
+ "hasLocution": false,
+ "plural": "bains d'oeil",
+ "type": 2
+ },
+ {
+ "keyword": "lavage oculaire",
+ "hasLocution": false,
+ "plural": "lavages oculaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00270855-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 26753,
+ "created": "2012-06-09T13:07:53.000Z",
+ "lastUpdated": "2021-07-29T20:58:18.771Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "clair",
+ "hasLocution": true
+ },
+ {
+ "keyword": "lumineux",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "03615737-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 26736,
+ "created": "2012-06-09T12:36:39.000Z",
+ "lastUpdated": "2021-07-29T20:59:42.785Z",
+ "keywords": [
+ {
+ "keyword": "niche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "niches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "02826007-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 26761,
+ "created": "2012-06-09T13:20:01.000Z",
+ "lastUpdated": "2021-07-29T20:58:06.534Z",
+ "keywords": [
+ {
+ "keyword": "nid d'abeilles",
+ "hasLocution": false,
+ "plural": "nids d'abeilles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03158739-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 26774,
+ "created": "2012-06-09T17:15:56.000Z",
+ "lastUpdated": "2021-07-29T20:56:03.076Z",
+ "keywords": [
+ {
+ "keyword": "roulette à pizza",
+ "hasLocution": false,
+ "plural": "roulettes à pizza",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08754350-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26778,
+ "created": "2012-06-09T17:20:27.000Z",
+ "lastUpdated": "2021-07-29T20:55:18.078Z",
+ "keywords": [
+ {
+ "keyword": "Côte d'Ivoire",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indefinite adjective",
+ "indefinite pronoun"
+ ],
+ "synsets": [
+ "02275443-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "indefinite adjective",
+ "pronoun",
+ "indefinite pronoun"
+ ],
+ "_id": 26779,
+ "created": "2012-06-09T17:28:27.000Z",
+ "lastUpdated": "2024-10-13T05:08:43.020Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "n'importe qui",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "tout",
+ "hasLocution": true
+ },
+ {
+ "keyword": "quoi qu'il en soit",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "n'importe lequel",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "n'importe laquelle ",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "n'importe qui",
+ "hasLocution": true,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "birthday"
+ ],
+ "synsets": [
+ "15277233-n",
+ "15274989-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 26781,
+ "created": "2012-06-09T17:31:02.000Z",
+ "lastUpdated": "2021-07-29T20:53:11.962Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "anniversaire",
+ "hasLocution": true,
+ "plural": "anniversaires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "00249273-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 26784,
+ "created": "2012-06-09T17:32:17.000Z",
+ "lastUpdated": "2021-07-30T00:37:41.052Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "avoir ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "atteindre",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "birthday"
+ ],
+ "synsets": [
+ "15274989-n",
+ "00249273-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 26786,
+ "created": "2012-06-09T17:33:13.000Z",
+ "lastUpdated": "2021-07-29T20:50:44.429Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "Joyeux Anniversaire !",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "Joyeux Anniversaire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "birthday"
+ ],
+ "synsets": [
+ "15274989-n",
+ "00249273-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 26788,
+ "created": "2012-06-09T17:33:57.000Z",
+ "lastUpdated": "2021-07-29T20:50:40.127Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "Joyeux Anniversaire !",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "Joyeux Anniversaire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage"
+ ],
+ "synsets": [
+ "01426447-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 26797,
+ "created": "2012-06-09T17:43:01.000Z",
+ "lastUpdated": "2021-07-29T20:50:36.978Z",
+ "keywords": [
+ {
+ "keyword": "déboucher",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day time",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15190004-n",
+ "00681933-a"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "core vocabulary"
+ ],
+ "_id": 26799,
+ "created": "2012-06-09T17:46:43.000Z",
+ "lastUpdated": "2021-07-29T20:50:16.324Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jour",
+ "hasLocution": true,
+ "plural": "jours"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "corporal hygiene",
+ "routine",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "00035252-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine",
+ "core vocabulary"
+ ],
+ "_id": 26803,
+ "created": "2012-06-23T19:10:36.000Z",
+ "lastUpdated": "2021-07-29T20:50:09.881Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "doucher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prendre une douche",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se doucher",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "swimming"
+ ],
+ "synsets": [
+ "03645974-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "swimming"
+ ],
+ "_id": 26770,
+ "created": "2012-06-09T13:40:10.000Z",
+ "lastUpdated": "2021-07-29T20:57:00.084Z",
+ "keywords": [
+ {
+ "keyword": "ligne",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "lignes"
+ },
+ {
+ "keyword": "ligne d'eau",
+ "hasLocution": false,
+ "plural": "lignes d'eau",
+ "type": 2
+ },
+ {
+ "keyword": "couloir de nage",
+ "hasLocution": false,
+ "plural": "couloirs de nage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "01340335-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 26805,
+ "created": "2012-06-23T19:15:28.000Z",
+ "lastUpdated": "2021-07-29T20:49:48.674Z",
+ "keywords": [
+ {
+ "keyword": "paner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "02826007-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 26765,
+ "created": "2012-06-09T13:22:45.000Z",
+ "lastUpdated": "2021-07-29T20:57:31.350Z",
+ "keywords": [
+ {
+ "keyword": "ruche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ruches"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "education"
+ ],
+ "synsets": [
+ "00830768-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education"
+ ],
+ "_id": 26809,
+ "created": "2012-06-23T19:24:55.000Z",
+ "lastUpdated": "2021-07-29T20:49:12.330Z",
+ "keywords": [
+ {
+ "keyword": "enseigner",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "instruire",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "apprendre",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08752218-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26769,
+ "created": "2012-06-09T13:37:06.000Z",
+ "lastUpdated": "2021-07-29T20:57:18.165Z",
+ "keywords": [
+ {
+ "keyword": "République démocratique du Congo",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "01264514-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 26807,
+ "created": "2012-06-23T19:20:32.000Z",
+ "lastUpdated": "2021-07-29T20:49:24.774Z",
+ "keywords": [
+ {
+ "keyword": "fariner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic concepts"
+ ],
+ "synsets": [
+ "01092289-v",
+ "01660471-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 26817,
+ "created": "2012-06-23T19:33:02.000Z",
+ "lastUpdated": "2021-07-29T20:47:45.986Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rassembler",
+ "hasLocution": false
+ },
+ {
+ "keyword": "rejoindre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "additionner",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic concepts"
+ ],
+ "synsets": [
+ "01092289-v",
+ "01660471-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 26818,
+ "created": "2012-06-23T19:33:57.000Z",
+ "lastUpdated": "2021-07-29T20:47:49.243Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rassembler",
+ "hasLocution": false
+ },
+ {
+ "keyword": "rejoindre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "additionner",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "sport",
+ "football"
+ ],
+ "synsets": [
+ "08225481-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "leisure",
+ "sport",
+ "football"
+ ],
+ "_id": 26821,
+ "created": "2012-06-23T19:38:43.000Z",
+ "lastUpdated": "2021-07-29T20:46:14.915Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "équipe",
+ "hasLocution": true,
+ "plural": "équipes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "14025764-n",
+ "02748895-v",
+ "02678923-v",
+ "00896734-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 26825,
+ "created": "2012-06-23T19:49:52.000Z",
+ "lastUpdated": "2021-07-29T20:46:05.297Z",
+ "keywords": [
+ {
+ "keyword": "équilibre",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "équilibres"
+ },
+ {
+ "keyword": "équilibrer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "équilibré",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "terrestrial animal",
+ "viviparous",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01896466-n",
+ "02349279-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "terrestrial animal",
+ "viviparous",
+ "domestic"
+ ],
+ "_id": 26829,
+ "created": "2012-06-23T19:56:12.000Z",
+ "lastUpdated": "2021-07-29T20:44:00.467Z",
+ "keywords": [
+ {
+ "keyword": "hérisson",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "hérissons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08795396-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26833,
+ "created": "2012-07-22T23:00:16.000Z",
+ "lastUpdated": "2021-07-29T20:43:48.004Z",
+ "keywords": [
+ {
+ "keyword": "Érythrée",
+ "type": 1,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural disaster"
+ ],
+ "synsets": [
+ "07451075-n"
+ ],
+ "tags": [
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 26834,
+ "created": "2012-07-22T23:05:14.000Z",
+ "lastUpdated": "2021-07-29T23:19:08.704Z",
+ "keywords": [
+ {
+ "keyword": "éruption",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "éruptions"
+ },
+ {
+ "keyword": "éruption volcanique",
+ "hasLocution": false,
+ "plural": "éruptions volcanique",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "02020375-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 26811,
+ "created": "2012-06-23T19:27:08.000Z",
+ "lastUpdated": "2022-05-05T05:54:39.763Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Passer de l'extérieur à l'intérieur d'un lieu ; pénétrer",
+ "keyword": "entrer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "accéder",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "01174134-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 26838,
+ "created": "2012-07-22T23:10:02.000Z",
+ "lastUpdated": "2021-07-29T23:18:37.887Z",
+ "keywords": [
+ {
+ "keyword": "escrime",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08795913-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26844,
+ "created": "2012-07-22T23:24:51.000Z",
+ "lastUpdated": "2021-07-29T23:17:11.742Z",
+ "keywords": [
+ {
+ "keyword": "Éthiopie",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport modality",
+ "mountain"
+ ],
+ "synsets": [
+ "01925957-v",
+ "09805100-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport modality",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 26814,
+ "created": "2012-06-23T19:30:46.000Z",
+ "lastUpdated": "2021-07-29T20:48:21.352Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "escalader",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "grimper",
+ "hasLocution": true
+ },
+ {
+ "keyword": "alpinisme",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "escalade",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "13289169-n",
+ "04736044-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "core vocabulary"
+ ],
+ "_id": 26845,
+ "created": "2012-07-22T23:29:32.000Z",
+ "lastUpdated": "2021-07-29T23:17:05.890Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prix",
+ "hasLocution": true,
+ "plural": "prix"
+ },
+ {
+ "keyword": "récompense",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "récompenses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14315592-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 26849,
+ "created": "2012-07-22T23:34:13.000Z",
+ "lastUpdated": "2021-07-29T23:16:05.209Z",
+ "keywords": [
+ {
+ "keyword": "fracture",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fractures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "04302017-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 26840,
+ "created": "2012-07-22T23:13:07.000Z",
+ "lastUpdated": "2021-07-29T23:18:08.690Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étable",
+ "hasLocution": true,
+ "plural": "étables"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fossil"
+ ],
+ "synsets": [
+ "09307495-n",
+ "09218836-n"
+ ],
+ "tags": [
+ "extinct being",
+ "fossil",
+ "paleontology"
+ ],
+ "_id": 26857,
+ "created": "2012-07-22T23:45:58.000Z",
+ "lastUpdated": "2021-07-29T23:15:46.957Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ammonite",
+ "hasLocution": false,
+ "plural": "ammonites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14315592-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 26861,
+ "created": "2012-07-22T23:54:02.000Z",
+ "lastUpdated": "2021-07-29T20:39:03.011Z",
+ "keywords": [
+ {
+ "keyword": "fracture",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fractures"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physics",
+ "cookery",
+ "meteorology"
+ ],
+ "synsets": [
+ "01254201-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "physics",
+ "feeding",
+ "cookery",
+ "meteorology"
+ ],
+ "_id": 26865,
+ "created": "2012-07-22T23:58:22.000Z",
+ "lastUpdated": "2024-12-11T13:15:52.317Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "froid",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "03367736-n"
+ ],
+ "tags": [],
+ "_id": 26853,
+ "created": "2012-07-22T23:41:01.000Z",
+ "lastUpdated": "2021-07-29T23:15:56.620Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fleur de lys",
+ "hasLocution": false,
+ "plural": "fleurs de lys"
+ },
+ {
+ "keyword": "fleur de lis",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fleurs de lis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08965302-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26871,
+ "created": "2012-07-23T16:17:39.000Z",
+ "lastUpdated": "2021-07-29T23:15:16.441Z",
+ "keywords": [
+ {
+ "keyword": "Gabon",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09041218-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26872,
+ "created": "2012-07-23T16:19:58.000Z",
+ "lastUpdated": "2021-07-29T20:38:10.498Z",
+ "keywords": [
+ {
+ "keyword": "Géorgie",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08965960-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26873,
+ "created": "2012-07-23T16:23:05.000Z",
+ "lastUpdated": "2021-07-29T20:37:59.835Z",
+ "keywords": [
+ {
+ "keyword": "Ghana",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08966682-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26874,
+ "created": "2012-07-23T16:25:51.000Z",
+ "lastUpdated": "2021-07-29T23:15:09.528Z",
+ "keywords": [
+ {
+ "keyword": "Grenade",
+ "hasLocution": true,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08837249-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26875,
+ "created": "2012-07-23T16:30:20.000Z",
+ "lastUpdated": "2021-07-29T20:37:04.005Z",
+ "keywords": [
+ {
+ "keyword": "Groenland",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "mountain"
+ ],
+ "synsets": [
+ "01925957-v",
+ "09805100-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 26813,
+ "created": "2012-06-23T19:30:22.000Z",
+ "lastUpdated": "2021-07-29T20:48:43.469Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "alpiniste",
+ "hasLocution": false,
+ "plural": "alpinistes"
+ },
+ {
+ "type": 2,
+ "keyword": "grimpeur",
+ "hasLocution": true,
+ "plural": "grimpeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "03020043-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 26867,
+ "created": "2012-07-23T00:25:09.000Z",
+ "lastUpdated": "2021-07-29T23:15:38.425Z",
+ "keywords": [
+ {
+ "keyword": "poulailler",
+ "hasLocution": false,
+ "plural": "poulaillers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08967092-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26876,
+ "created": "2012-07-23T16:33:46.000Z",
+ "lastUpdated": "2021-07-29T17:51:34.819Z",
+ "keywords": [
+ {
+ "keyword": "Guinée",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08771766-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26880,
+ "created": "2012-07-23T16:53:27.000Z",
+ "lastUpdated": "2021-07-29T17:48:14.483Z",
+ "keywords": [
+ {
+ "keyword": "Jamaïque",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architecture"
+ ],
+ "synsets": [
+ "03782816-n",
+ "00900502-n"
+ ],
+ "tags": [
+ "architecture",
+ "building"
+ ],
+ "_id": 26881,
+ "created": "2012-08-26T16:43:26.000Z",
+ "lastUpdated": "2021-07-29T17:47:57.286Z",
+ "keywords": [
+ {
+ "keyword": "maquette",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "maquettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "law and justice"
+ ],
+ "synsets": [
+ "08431076-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 26885,
+ "created": "2012-08-26T16:48:57.000Z",
+ "lastUpdated": "2021-07-29T17:47:41.374Z",
+ "keywords": [
+ {
+ "keyword": "jury",
+ "plural": "jurys",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01189951-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 26889,
+ "created": "2012-08-26T16:53:38.000Z",
+ "lastUpdated": "2021-07-29T17:47:29.230Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "léger",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "légère",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "02923643-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 26893,
+ "created": "2012-08-26T16:58:25.000Z",
+ "lastUpdated": "2021-07-29T17:47:24.977Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lits superposés",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "04031744-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 26897,
+ "created": "2012-08-26T17:02:20.000Z",
+ "lastUpdated": "2021-07-29T17:47:16.658Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marionnette",
+ "hasLocution": true,
+ "plural": "marionnettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08967928-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26879,
+ "created": "2012-07-23T16:51:03.000Z",
+ "lastUpdated": "2021-07-29T17:48:32.361Z",
+ "keywords": [
+ {
+ "keyword": "Guyane française",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "06657802-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 26901,
+ "created": "2012-08-26T17:06:23.000Z",
+ "lastUpdated": "2021-07-29T17:47:08.943Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "traces de pas",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "traces",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08781333-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26877,
+ "created": "2012-07-23T16:36:21.000Z",
+ "lastUpdated": "2021-07-29T17:51:12.011Z",
+ "keywords": [
+ {
+ "keyword": "Guinée équatoriale",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08968119-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 26878,
+ "created": "2012-07-23T16:41:47.000Z",
+ "lastUpdated": "2021-07-29T17:49:44.238Z",
+ "keywords": [
+ {
+ "keyword": "Guyana",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "00428583-n"
+ ],
+ "tags": [],
+ "_id": 26905,
+ "created": "2012-08-26T17:10:51.000Z",
+ "lastUpdated": "2021-07-29T17:47:05.194Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "farce",
+ "hasLocution": true,
+ "plural": "farces"
+ },
+ {
+ "keyword": "plaisanterie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "plaisanteries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "02280420-s",
+ "02279294-a",
+ "00164580-s"
+ ],
+ "tags": [],
+ "_id": 26909,
+ "created": "2012-08-26T17:16:57.000Z",
+ "lastUpdated": "2021-07-29T17:46:42.117Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ingénu",
+ "hasLocution": false
+ },
+ {
+ "keyword": "naïf",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "crédule",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media device"
+ ],
+ "synsets": [
+ "03748770-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media"
+ ],
+ "_id": 26921,
+ "created": "2012-08-26T17:38:49.000Z",
+ "lastUpdated": "2021-07-29T17:44:48.552Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mégaphone",
+ "hasLocution": false,
+ "plural": "mégaphones"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of degree"
+ ],
+ "synsets": [
+ "00099891-r",
+ "00100262-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of degree"
+ ],
+ "_id": 26913,
+ "created": "2012-08-26T17:20:58.000Z",
+ "lastUpdated": "2021-07-29T17:45:39.303Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "plus",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "road safety",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "03762667-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety",
+ "core vocabulary"
+ ],
+ "_id": 26925,
+ "created": "2012-08-26T17:43:18.000Z",
+ "lastUpdated": "2021-07-29T17:44:31.019Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "métro",
+ "hasLocution": false,
+ "plural": "métros"
+ },
+ {
+ "keyword": "métropolitain",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "métropolitains"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "christianity",
+ "musical notation"
+ ],
+ "synsets": [
+ "06429901-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "christianity",
+ "music",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 26933,
+ "created": "2012-08-26T17:53:57.000Z",
+ "lastUpdated": "2021-07-29T17:43:12.580Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hymnaire",
+ "hasLocution": false,
+ "plural": "hymnaires"
+ },
+ {
+ "keyword": "livre des hymnes",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "livres des hymnes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "03784903-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 26929,
+ "created": "2012-08-26T17:48:25.000Z",
+ "lastUpdated": "2021-07-29T17:43:44.169Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moule",
+ "hasLocution": true,
+ "plural": "moules"
+ },
+ {
+ "keyword": "mouler",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "energy"
+ ],
+ "synsets": [
+ "00359614-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "work",
+ "secondary sector",
+ "energy"
+ ],
+ "_id": 26937,
+ "created": "2012-08-26T17:59:36.000Z",
+ "lastUpdated": "2021-07-30T08:19:21.076Z",
+ "keywords": [
+ {
+ "keyword": "négatif",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "chargé négativement",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indefinite adjective"
+ ],
+ "synsets": [
+ "00526784-s",
+ "02276797-s",
+ "00024946-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "indefinite adjective",
+ "pronoun",
+ "indefinite pronoun"
+ ],
+ "_id": 26941,
+ "created": "2012-08-26T18:14:47.000Z",
+ "lastUpdated": "2024-10-13T05:07:37.339Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "aucun",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "aucune",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ni ni",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "childcare"
+ ],
+ "synsets": [
+ "03487335-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "babycare"
+ ],
+ "_id": 26917,
+ "created": "2012-08-26T17:29:23.000Z",
+ "lastUpdated": "2022-12-18T05:37:22.264Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "transat",
+ "hasLocution": false,
+ "plural": "transats"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "01538034-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 26945,
+ "created": "2012-08-26T18:49:17.000Z",
+ "lastUpdated": "2021-07-29T17:40:33.584Z",
+ "keywords": [
+ {
+ "keyword": "savonner les cheveux",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "shampouiner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "09998419-n",
+ "01022380-s",
+ "01023066-s"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 26949,
+ "created": "2012-08-26T19:00:58.000Z",
+ "lastUpdated": "2021-07-29T23:13:56.363Z",
+ "keywords": [
+ {
+ "keyword": "personne à mobilité réduite",
+ "plural": "personnes à mobilité réduite",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "PMR",
+ "hasLocution": false,
+ "plural": "PMR",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "hairdresser",
+ "routine",
+ "usual verbs",
+ "core vocabulary-communication",
+ "core vocabulary-living being",
+ "core vocabulary-object",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "01599566-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser",
+ "person",
+ "routine",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 26947,
+ "created": "2012-08-26T18:51:13.000Z",
+ "lastUpdated": "2021-07-29T17:39:48.905Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Arranger la chevelure avec soin : Cheveux faciles, difficiles à coiffer.",
+ "keyword": "peigner",
+ "hasLocution": false
+ },
+ {
+ "keyword": "coiffer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "person according to their age"
+ ],
+ "synsets": [
+ "09998419-n",
+ "01022380-s",
+ "01023066-s"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 26951,
+ "created": "2012-08-26T19:02:06.000Z",
+ "lastUpdated": "2021-07-29T23:13:05.852Z",
+ "keywords": [
+ {
+ "keyword": "personne à mobilité réduite",
+ "hasLocution": false,
+ "plural": "personnes à mobilité réduite",
+ "type": 2
+ },
+ {
+ "keyword": "PMR",
+ "hasLocution": false,
+ "plural": "PMR",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "09998419-n",
+ "01022380-s",
+ "01023066-s"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 26950,
+ "created": "2012-08-26T19:01:41.000Z",
+ "lastUpdated": "2021-07-29T23:13:29.804Z",
+ "keywords": [
+ {
+ "keyword": "personne à mobilité réduite",
+ "plural": "personnes à mobilité réduite",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "PMR",
+ "hasLocution": false,
+ "plural": "PMR"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of degree"
+ ],
+ "synsets": [
+ "00100077-r",
+ "00100418-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of degree"
+ ],
+ "_id": 26915,
+ "created": "2012-08-26T17:22:44.000Z",
+ "lastUpdated": "2021-07-29T17:45:34.946Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "moins",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "09809007-n",
+ "09998419-n",
+ "01022380-s",
+ "01023066-s"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 26953,
+ "created": "2012-08-26T19:08:08.000Z",
+ "lastUpdated": "2021-08-01T17:10:15.925Z",
+ "keywords": [
+ {
+ "keyword": "personne à mobilité réduite",
+ "hasLocution": false,
+ "plural": "personnes à mobilité réduite",
+ "type": 2
+ },
+ {
+ "keyword": "personne handicapée",
+ "hasLocution": false,
+ "plural": "personnes handicapées",
+ "type": 2
+ },
+ {
+ "keyword": "amputée",
+ "hasLocution": false,
+ "plural": "amputée",
+ "type": 4
+ },
+ {
+ "keyword": "personne amputée",
+ "hasLocution": false,
+ "plural": "personnes amputées",
+ "type": 2
+ },
+ {
+ "keyword": "amputée",
+ "hasLocution": false,
+ "plural": "amputées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "09809007-n",
+ "09998419-n",
+ "01022380-s",
+ "01023066-s"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 26952,
+ "created": "2012-08-26T19:07:07.000Z",
+ "lastUpdated": "2021-08-01T17:11:17.347Z",
+ "keywords": [
+ {
+ "keyword": "personne à mobilité réduite",
+ "plural": "personnes à mobilité réduite",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "personne handicapée",
+ "hasLocution": false,
+ "plural": "personnes handicapées",
+ "type": 2
+ },
+ {
+ "keyword": "amputé",
+ "hasLocution": false,
+ "plural": "amputés",
+ "type": 2
+ },
+ {
+ "keyword": "amputé",
+ "hasLocution": false,
+ "plural": "amputés",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "09998419-n",
+ "01022380-s"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 26956,
+ "created": "2012-08-26T19:11:59.000Z",
+ "lastUpdated": "2021-07-29T23:12:02.484Z",
+ "keywords": [
+ {
+ "keyword": "personne à mobilité réduite",
+ "hasLocution": false,
+ "plural": "personnes à mobilité réduite",
+ "type": 2
+ },
+ {
+ "keyword": "PMR",
+ "hasLocution": false,
+ "plural": "PMR",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "00826475-s",
+ "01771015-v",
+ "01769760-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 26985,
+ "created": "2012-08-27T11:49:07.000Z",
+ "lastUpdated": "2021-07-29T17:36:29.452Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "inquiet",
+ "hasLocution": true
+ },
+ {
+ "keyword": "inquiéter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "09998419-n",
+ "01022380-s"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 26955,
+ "created": "2012-08-26T19:11:26.000Z",
+ "lastUpdated": "2021-07-29T23:12:20.557Z",
+ "keywords": [
+ {
+ "keyword": "personne à mobilité réduite",
+ "hasLocution": false,
+ "plural": "personnes à mobilité réduite",
+ "type": 2
+ },
+ {
+ "keyword": "PMR",
+ "hasLocution": false,
+ "plural": "PMR",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "00826475-s",
+ "01771015-v",
+ "01769760-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 26986,
+ "created": "2012-08-27T11:50:32.000Z",
+ "lastUpdated": "2021-07-29T17:36:07.209Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "inquiet",
+ "hasLocution": true
+ },
+ {
+ "keyword": "inquiéter",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "inquiète",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "communication system"
+ ],
+ "synsets": [
+ "00931122-v",
+ "06888747-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "augmentative communication",
+ "communication system"
+ ],
+ "_id": 26989,
+ "created": "2012-08-27T11:59:25.000Z",
+ "lastUpdated": "2021-07-29T23:10:58.414Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "signer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "personne qui signe",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "core vocabulary-communication",
+ "electrical appliance",
+ "appliance",
+ "light fixture"
+ ],
+ "synsets": [
+ "00273948-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "light fixture"
+ ],
+ "_id": 26993,
+ "created": "2012-08-27T12:06:24.000Z",
+ "lastUpdated": "2024-12-09T06:35:16.748Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sombre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "person according to their age"
+ ],
+ "synsets": [
+ "09998419-n",
+ "01022380-s"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 26957,
+ "created": "2012-08-26T19:12:28.000Z",
+ "lastUpdated": "2021-07-30T00:37:25.886Z",
+ "keywords": [
+ {
+ "keyword": "personne à mobilité réduite",
+ "hasLocution": false,
+ "plural": "personnes à mobilité réduite",
+ "type": 2
+ },
+ {
+ "keyword": "PMR",
+ "hasLocution": false,
+ "plural": "PMR",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day time",
+ "halloween",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15180707-n",
+ "15192074-n",
+ "15192396-n",
+ "15192521-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "event",
+ "popular event",
+ "halloween",
+ "core vocabulary"
+ ],
+ "_id": 26997,
+ "created": "2012-08-27T12:12:08.000Z",
+ "lastUpdated": "2021-07-29T17:33:53.871Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nuit",
+ "hasLocution": true,
+ "plural": "nuits"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "03863703-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 27001,
+ "created": "2012-08-27T12:17:24.000Z",
+ "lastUpdated": "2021-07-29T17:33:36.703Z",
+ "keywords": [
+ {
+ "keyword": "otoscope",
+ "hasLocution": false,
+ "plural": "otoscopes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "person according to their age"
+ ],
+ "synsets": [
+ "09809007-n",
+ "09998419-n",
+ "01022380-s",
+ "01023066-s"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 26954,
+ "created": "2012-08-26T19:09:08.000Z",
+ "lastUpdated": "2021-08-01T13:28:08.689Z",
+ "keywords": [
+ {
+ "keyword": "personne à mobilité réduite",
+ "plural": "personnes à mobilité réduite",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "amputé",
+ "hasLocution": false,
+ "plural": "amputés",
+ "type": 2
+ },
+ {
+ "keyword": "amputé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "amputés"
+ },
+ {
+ "keyword": "personne hanidicapée",
+ "hasLocution": false,
+ "plural": "personnes hanidicapées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "mythological character",
+ "christmas"
+ ],
+ "synsets": [
+ "06383036-n",
+ "01942336-s",
+ "09610740-n"
+ ],
+ "tags": [
+ "character",
+ "mythological character",
+ "mythology",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 27017,
+ "created": "2012-08-27T12:43:48.000Z",
+ "lastUpdated": "2021-07-30T08:20:22.211Z",
+ "keywords": [
+ {
+ "keyword": "Olentzero",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Apalpador",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "charbonnier",
+ "hasLocution": false,
+ "plural": "charbonniers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport rules",
+ "football"
+ ],
+ "synsets": [
+ "05170716-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport rules",
+ "football"
+ ],
+ "_id": 27021,
+ "created": "2012-08-27T12:51:13.000Z",
+ "lastUpdated": "2021-07-29T17:30:46.775Z",
+ "keywords": [
+ {
+ "keyword": "pénalty",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pénaltys"
+ },
+ {
+ "keyword": "tir au but",
+ "hasLocution": false,
+ "plural": "tirs au but",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10702832-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 27013,
+ "created": "2012-08-27T12:37:04.000Z",
+ "lastUpdated": "2021-07-29T17:31:38.854Z",
+ "keywords": [
+ {
+ "keyword": "nageuse",
+ "hasLocution": false,
+ "plural": "nageuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01188475-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 27025,
+ "created": "2012-08-27T12:56:45.000Z",
+ "lastUpdated": "2021-07-29T17:30:02.559Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "lourd",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "swimming"
+ ],
+ "synsets": [
+ "09951098-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 27006,
+ "created": "2012-08-27T12:26:14.000Z",
+ "lastUpdated": "2021-07-29T17:32:18.254Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entraineuse de natation",
+ "hasLocution": false,
+ "plural": "entraineuses de natation"
+ },
+ {
+ "keyword": "coach",
+ "hasLocution": false,
+ "plural": "coachs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "light fixture"
+ ],
+ "synsets": [
+ "03530634-n",
+ "03671250-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 27029,
+ "created": "2012-08-27T13:02:53.000Z",
+ "lastUpdated": "2021-07-29T17:29:56.202Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "douille",
+ "hasLocution": false,
+ "plural": "douilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime"
+ ],
+ "synsets": [
+ "10250498-n",
+ "01473673-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime"
+ ],
+ "_id": 27033,
+ "created": "2012-08-27T13:35:12.000Z",
+ "lastUpdated": "2022-04-09T05:31:02.381Z",
+ "keywords": [
+ {
+ "keyword": "ravisseur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ravisseurs"
+ },
+ {
+ "keyword": "kidnappeur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "kidnappeur"
+ },
+ {
+ "keyword": "enlever",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "00777199-n",
+ "00253820-a"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 27037,
+ "created": "2012-08-27T14:06:55.000Z",
+ "lastUpdated": "2022-04-09T05:28:50.193Z",
+ "keywords": [
+ {
+ "keyword": "enlèvement",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "enlèvements"
+ },
+ {
+ "keyword": "enlevé",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "rapt",
+ "type": 2,
+ "plural": "rapts",
+ "hasLocution": false
+ },
+ {
+ "keyword": "kidnappé",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 27049,
+ "created": "2012-08-27T19:10:20.000Z",
+ "lastUpdated": "2021-07-29T17:25:19.997Z",
+ "keywords": [
+ {
+ "keyword": "se déshabiller",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "déshabiller",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "enlever ses vêtements",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "quitter ses vêtements",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00046251-v",
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 27052,
+ "created": "2012-08-27T19:12:49.000Z",
+ "lastUpdated": "2021-07-29T17:24:29.115Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "habiller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'habiller",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "mettre son manteau",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "00777199-n",
+ "00253820-a"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 27039,
+ "created": "2012-08-27T14:08:08.000Z",
+ "lastUpdated": "2022-04-09T05:28:55.587Z",
+ "keywords": [
+ {
+ "keyword": "enlèvement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "enlèvements"
+ },
+ {
+ "keyword": "enlevé",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "rapt",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "rapts"
+ },
+ {
+ "keyword": "kidnappé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physics",
+ "cookery"
+ ],
+ "synsets": [
+ "01512398-a",
+ "02539986-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "physics",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 27053,
+ "created": "2012-08-27T19:24:50.000Z",
+ "lastUpdated": "2021-07-29T17:24:07.031Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "tiède",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tempéré",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "07876781-n",
+ "01266847-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 27057,
+ "created": "2012-08-27T19:29:09.000Z",
+ "lastUpdated": "2021-07-29T17:23:43.474Z",
+ "keywords": [
+ {
+ "keyword": "enduire de pâte à frire",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rouler dans la pâte à frire",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "tremper dans la pâte à frire",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religion"
+ ],
+ "synsets": [
+ "05955536-n"
+ ],
+ "tags": [
+ "religion"
+ ],
+ "_id": 27059,
+ "created": "2012-08-27T19:35:11.000Z",
+ "lastUpdated": "2021-03-26T03:14:07.292Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "religion",
+ "hasLocution": true,
+ "plural": "religions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01376685-v",
+ "01377960-v",
+ "01377432-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 27063,
+ "created": "2012-08-27T19:38:20.000Z",
+ "lastUpdated": "2021-07-29T17:22:49.103Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éclabousser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "christianity"
+ ],
+ "synsets": [
+ "00098271-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "christianity"
+ ],
+ "_id": 27065,
+ "created": "2012-08-27T19:41:21.000Z",
+ "lastUpdated": "2021-07-29T17:22:39.642Z",
+ "keywords": [
+ {
+ "keyword": "réssusciter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "revenir à la vie",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "00777199-n",
+ "00253820-a"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 27038,
+ "created": "2012-08-27T14:07:30.000Z",
+ "lastUpdated": "2022-04-09T05:29:00.920Z",
+ "keywords": [
+ {
+ "keyword": "enlèvement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "enlèvements"
+ },
+ {
+ "keyword": "enlevée",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "rapt",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "rapts"
+ },
+ {
+ "keyword": "kidnappée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "swimming"
+ ],
+ "synsets": [
+ "09951098-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 27005,
+ "created": "2012-08-27T12:25:22.000Z",
+ "lastUpdated": "2021-07-29T20:36:20.747Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entraineur de natation",
+ "hasLocution": false,
+ "plural": "entraineurs de natation"
+ },
+ {
+ "keyword": "coach",
+ "hasLocution": false,
+ "plural": "coachs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "02019450-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 27067,
+ "created": "2012-08-27T19:44:16.000Z",
+ "lastUpdated": "2021-07-29T17:21:32.172Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Quitter le lieu où l'on se trouve pour aller dehors ou passer dans un autre lieu",
+ "keyword": "sortir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "quitter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic concepts"
+ ],
+ "synsets": [
+ "02473085-v",
+ "02035003-v",
+ "02206426-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 27070,
+ "created": "2012-08-27T19:51:26.000Z",
+ "lastUpdated": "2021-07-29T17:20:53.140Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "diviser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "partager",
+ "hasLocution": true
+ },
+ {
+ "keyword": "distribuer",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "séparer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "04342573-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 27081,
+ "created": "2012-08-27T20:08:01.000Z",
+ "lastUpdated": "2021-07-29T17:19:38.199Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tramway",
+ "hasLocution": true,
+ "plural": "tramways"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "cycling"
+ ],
+ "synsets": [
+ "04209460-n",
+ "02837983-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "leisure",
+ "sport",
+ "cycling"
+ ],
+ "_id": 27077,
+ "created": "2012-08-27T20:03:49.000Z",
+ "lastUpdated": "2021-07-29T17:20:05.552Z",
+ "keywords": [
+ {
+ "keyword": "magasin de vélos",
+ "hasLocution": false,
+ "plural": "magasins de vélos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "04342573-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 27082,
+ "created": "2012-08-27T20:08:30.000Z",
+ "lastUpdated": "2021-07-29T17:19:25.387Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tramway",
+ "hasLocution": true,
+ "plural": "tramways"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "agriculture",
+ "verb"
+ ],
+ "synsets": [
+ "01419018-v"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "agriculture",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 27089,
+ "created": "2012-08-27T20:20:42.000Z",
+ "lastUpdated": "2021-08-01T18:08:33.983Z",
+ "keywords": [
+ {
+ "keyword": "battre les céréales",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "battre le grain",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic concepts"
+ ],
+ "synsets": [
+ "02473085-v",
+ "02035003-v",
+ "02206426-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 27069,
+ "created": "2012-08-27T19:50:35.000Z",
+ "lastUpdated": "2021-07-29T17:21:19.943Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "diviser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "partager",
+ "hasLocution": true
+ },
+ {
+ "keyword": "séparer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "distribuer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts"
+ ],
+ "synsets": [
+ "03938441-n",
+ "13783547-n"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 27093,
+ "created": "2012-08-27T20:32:52.000Z",
+ "lastUpdated": "2021-09-11T16:14:28.750Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "morceau",
+ "hasLocution": true,
+ "plural": "morceaux"
+ },
+ {
+ "keyword": "pièce",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pièces"
+ },
+ {
+ "keyword": "portion",
+ "type": 2,
+ "plural": "portions",
+ "hasLocution": false
+ },
+ {
+ "keyword": "part",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "parts"
+ },
+ {
+ "keyword": "partie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "parties"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indefinite pronoun"
+ ],
+ "synsets": [
+ "00523527-s",
+ "00008423-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "indefinite pronoun"
+ ],
+ "_id": 27091,
+ "created": "2012-08-27T20:25:45.000Z",
+ "lastUpdated": "2021-07-29T17:12:14.374Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "tout",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "tous",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "toutes",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "toute",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tous ensemble",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04262144-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 27097,
+ "created": "2012-08-29T12:02:57.000Z",
+ "lastUpdated": "2021-07-29T17:11:11.183Z",
+ "keywords": [
+ {
+ "keyword": "multiprise",
+ "hasLocution": false,
+ "plural": "multiprises",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "05726201-n",
+ "04988388-n",
+ "11501330-n"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 27073,
+ "created": "2012-08-27T19:57:24.000Z",
+ "lastUpdated": "2021-07-29T17:20:16.083Z",
+ "keywords": [
+ {
+ "keyword": "son",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "sons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "digestive system"
+ ],
+ "synsets": [
+ "01204494-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "human physiology",
+ "physiology",
+ "digestive system"
+ ],
+ "_id": 27099,
+ "created": "2012-08-29T12:12:17.000Z",
+ "lastUpdated": "2021-07-29T17:10:55.122Z",
+ "keywords": [
+ {
+ "keyword": "avaler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child",
+ "special education"
+ ],
+ "synsets": [
+ "10178349-n",
+ "01022875-s",
+ "04583288-n"
+ ],
+ "tags": [
+ "person",
+ "child",
+ "education",
+ "special education"
+ ],
+ "_id": 27101,
+ "created": "2012-08-29T12:21:40.000Z",
+ "lastUpdated": "2021-07-29T23:08:18.234Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "handicap moteur",
+ "hasLocution": true,
+ "plural": "handicaps moteurs"
+ },
+ {
+ "keyword": "handicap physique",
+ "hasLocution": false,
+ "plural": "handicaps physiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00465546-n",
+ "01075360-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 27111,
+ "created": "2012-08-29T12:43:40.000Z",
+ "lastUpdated": "2021-07-29T23:07:34.980Z",
+ "keywords": [
+ {
+ "keyword": "water-polo",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "02940098-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 27113,
+ "created": "2012-08-29T12:51:20.000Z",
+ "lastUpdated": "2021-07-29T20:36:08.767Z",
+ "keywords": [
+ {
+ "keyword": "cage de voyage",
+ "hasLocution": false,
+ "plural": "cages de voyage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "rhythmic gymnastics"
+ ],
+ "synsets": [
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "gymnastics",
+ "rhythmic gymnastics"
+ ],
+ "_id": 27109,
+ "created": "2012-08-29T12:39:26.000Z",
+ "lastUpdated": "2021-11-10T15:15:27.284Z",
+ "keywords": [
+ {
+ "keyword": "gymnastique rythmique",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "gymnastique rythmique et sportive",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "GRS",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03369186-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 27117,
+ "created": "2012-08-29T12:59:48.000Z",
+ "lastUpdated": "2021-07-29T17:08:56.754Z",
+ "keywords": [
+ {
+ "keyword": "flotteur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "flotteurs"
+ },
+ {
+ "keyword": "pull buoy",
+ "hasLocution": false,
+ "plural": "pull buoys",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "15305913-n",
+ "07415506-n",
+ "00524175-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 27122,
+ "created": "2012-08-29T16:34:39.000Z",
+ "lastUpdated": "2021-07-29T17:07:06.543Z",
+ "keywords": [
+ {
+ "keyword": "pouls",
+ "hasLocution": false,
+ "plural": "pouls",
+ "type": 2
+ },
+ {
+ "keyword": "prendre le pouls",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "pulsation cardiaque",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pulsations cardiaque"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "15305913-n",
+ "07415506-n",
+ "00524175-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 27121,
+ "created": "2012-08-29T16:34:07.000Z",
+ "lastUpdated": "2021-07-29T17:07:43.936Z",
+ "keywords": [
+ {
+ "keyword": "pouls",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pouls"
+ },
+ {
+ "keyword": "prendre le pouls",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "pulsation",
+ "type": 2,
+ "plural": "pulsations",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02625504-v",
+ "02493222-v",
+ "01235721-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 27126,
+ "created": "2012-08-29T16:38:17.000Z",
+ "lastUpdated": "2021-07-29T17:05:43.811Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "visiter",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "visite",
+ "hasLocution": true,
+ "plural": "visites"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02625504-v",
+ "02493222-v",
+ "01235721-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 27125,
+ "created": "2012-08-29T16:37:28.000Z",
+ "lastUpdated": "2021-07-29T17:05:51.994Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "visiter",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "visite",
+ "hasLocution": true,
+ "plural": "visites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00469063-n",
+ "01075360-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 27105,
+ "created": "2012-08-29T12:33:25.000Z",
+ "lastUpdated": "2021-07-29T17:10:32.112Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hockey",
+ "hasLocution": true
+ },
+ {
+ "keyword": "hockey sur gazon",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00464604-n",
+ "01075360-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 27106,
+ "created": "2012-08-29T12:34:22.000Z",
+ "lastUpdated": "2021-07-29T17:10:18.038Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hockey",
+ "hasLocution": true
+ },
+ {
+ "keyword": "hockey sur glace",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "processed food"
+ ],
+ "synsets": [
+ "07870160-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "processed food"
+ ],
+ "_id": 27136,
+ "created": "2012-08-29T20:04:30.000Z",
+ "lastUpdated": "2021-07-29T10:01:10.841Z",
+ "keywords": [
+ {
+ "keyword": "mozzarella",
+ "plural": "mozzarellas",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "04541241-n",
+ "01721028-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 27140,
+ "created": "2012-08-29T20:09:41.000Z",
+ "lastUpdated": "2021-07-29T10:00:54.347Z",
+ "keywords": [
+ {
+ "keyword": "lire un DVD",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "regarder un DVD",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "covid-19"
+ ],
+ "synsets": [
+ "00143181-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "covid-19"
+ ],
+ "_id": 27142,
+ "created": "2012-08-29T20:19:32.000Z",
+ "lastUpdated": "2021-07-29T10:00:23.059Z",
+ "keywords": [
+ {
+ "keyword": "examen médical",
+ "plural": "examens médicaux",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "examen de santé",
+ "hasLocution": false,
+ "plural": "examens de santé",
+ "type": 2
+ },
+ {
+ "keyword": "bilan médical",
+ "hasLocution": false,
+ "plural": "bilans médicaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "covid-19"
+ ],
+ "synsets": [
+ "00143181-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "covid-19"
+ ],
+ "_id": 27143,
+ "created": "2012-08-29T20:20:26.000Z",
+ "lastUpdated": "2021-07-29T09:59:19.096Z",
+ "keywords": [
+ {
+ "keyword": "examen médical",
+ "hasLocution": false,
+ "plural": "examens médicaux",
+ "type": 2
+ },
+ {
+ "keyword": "examen de santé",
+ "hasLocution": false,
+ "plural": "examens de santé",
+ "type": 2
+ },
+ {
+ "keyword": "bilan médical",
+ "hasLocution": false,
+ "plural": "bilans médicaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular event",
+ "christianity"
+ ],
+ "synsets": [
+ "15216951-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "religion",
+ "christianity"
+ ],
+ "_id": 27152,
+ "created": "2012-08-29T20:35:12.000Z",
+ "lastUpdated": "2021-07-29T23:06:50.011Z",
+ "keywords": [
+ {
+ "keyword": "Jour des Saints Innocents",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07736022-n",
+ "11853140-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 27154,
+ "created": "2012-08-29T20:46:17.000Z",
+ "lastUpdated": "2021-07-29T23:05:34.043Z",
+ "keywords": [
+ {
+ "keyword": "pommes de terre avec des blettes",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "pommes de terre avec des bettes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "12837268-n",
+ "07832374-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 27155,
+ "created": "2012-08-29T20:46:41.000Z",
+ "lastUpdated": "2021-07-29T23:05:55.433Z",
+ "keywords": [
+ {
+ "keyword": "pommes de terre avec de la bourrache",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07908788-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 27129,
+ "created": "2012-08-29T16:52:57.000Z",
+ "lastUpdated": "2021-07-29T17:05:33.072Z",
+ "keywords": [
+ {
+ "keyword": "vin blanc",
+ "hasLocution": false,
+ "plural": "vins blancs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07909503-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 27130,
+ "created": "2012-08-29T16:54:11.000Z",
+ "lastUpdated": "2021-07-29T17:05:11.083Z",
+ "keywords": [
+ {
+ "keyword": "vin pétillant",
+ "hasLocution": false,
+ "plural": "vins pétillants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07743844-n",
+ "12599160-n",
+ "07741018-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 27156,
+ "created": "2012-08-29T20:47:01.000Z",
+ "lastUpdated": "2021-07-29T09:57:33.375Z",
+ "keywords": [
+ {
+ "keyword": "haricots verts et pommes de terre",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00472041-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 27160,
+ "created": "2012-08-29T20:50:15.000Z",
+ "lastUpdated": "2021-07-29T09:57:10.616Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rugby",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09637714-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 27163,
+ "created": "2012-08-30T11:21:43.000Z",
+ "lastUpdated": "2021-07-29T23:00:29.186Z",
+ "keywords": [
+ {
+ "keyword": "tuteur",
+ "plural": "tuteurs",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09637714-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 27162,
+ "created": "2012-08-30T11:21:09.000Z",
+ "lastUpdated": "2021-07-29T23:00:34.566Z",
+ "keywords": [
+ {
+ "keyword": "tuteur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tuteurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09637714-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 27164,
+ "created": "2012-08-30T11:22:17.000Z",
+ "lastUpdated": "2021-07-29T23:00:23.730Z",
+ "keywords": [
+ {
+ "keyword": "tuteur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tuteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07907701-n",
+ "07909228-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 27131,
+ "created": "2012-08-29T16:54:53.000Z",
+ "lastUpdated": "2021-07-29T10:01:36.828Z",
+ "keywords": [
+ {
+ "keyword": "rosé",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "rosés"
+ },
+ {
+ "keyword": "vin rosé",
+ "hasLocution": false,
+ "plural": "vins rosés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09637714-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 27165,
+ "created": "2012-08-30T11:22:59.000Z",
+ "lastUpdated": "2021-07-29T23:00:18.148Z",
+ "keywords": [
+ {
+ "keyword": "tuteurs",
+ "plural": "tuteurs",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09637714-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 27169,
+ "created": "2012-08-30T11:26:42.000Z",
+ "lastUpdated": "2021-07-29T22:59:52.384Z",
+ "keywords": [
+ {
+ "keyword": "tutrice",
+ "hasLocution": false,
+ "plural": "tutrices",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09637714-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 27170,
+ "created": "2012-08-30T11:27:07.000Z",
+ "lastUpdated": "2021-07-29T22:59:46.259Z",
+ "keywords": [
+ {
+ "keyword": "tutrice",
+ "hasLocution": false,
+ "plural": "tutrices",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09637714-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 27168,
+ "created": "2012-08-30T11:26:16.000Z",
+ "lastUpdated": "2021-07-29T23:00:00.389Z",
+ "keywords": [
+ {
+ "keyword": "tuteur",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "tuteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09637714-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 27166,
+ "created": "2012-08-30T11:23:43.000Z",
+ "lastUpdated": "2021-07-29T23:00:11.721Z",
+ "keywords": [
+ {
+ "keyword": "tuteur",
+ "type": 2,
+ "plural": "tuteurs",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09637714-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 27172,
+ "created": "2012-08-30T11:28:17.000Z",
+ "lastUpdated": "2021-07-29T22:59:28.843Z",
+ "keywords": [
+ {
+ "keyword": "tutrice",
+ "hasLocution": false,
+ "plural": "tutrices",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02643676-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 27206,
+ "created": "2012-08-30T11:49:08.000Z",
+ "lastUpdated": "2021-07-29T09:54:49.966Z",
+ "keywords": [
+ {
+ "hasLocution": true,
+ "keyword": "rester",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recycling"
+ ],
+ "synsets": [
+ "01164741-v",
+ "02228020-v",
+ "01516062-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "environmental science",
+ "recycling"
+ ],
+ "_id": 27208,
+ "created": "2012-08-30T11:56:49.000Z",
+ "lastUpdated": "2021-07-29T09:54:29.743Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "recycler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sortir la poubelle",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "jeter",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09637714-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 27171,
+ "created": "2012-08-30T11:27:46.000Z",
+ "lastUpdated": "2021-07-29T22:59:36.861Z",
+ "keywords": [
+ {
+ "keyword": "tutrice",
+ "hasLocution": false,
+ "plural": "tutrices",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09637714-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 27167,
+ "created": "2012-08-30T11:24:13.000Z",
+ "lastUpdated": "2021-07-29T23:00:06.208Z",
+ "keywords": [
+ {
+ "keyword": "tuteur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tuteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recycling"
+ ],
+ "synsets": [
+ "01164741-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "environmental science",
+ "recycling"
+ ],
+ "_id": 27216,
+ "created": "2012-08-30T12:03:31.000Z",
+ "lastUpdated": "2021-07-29T09:53:58.338Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "recycler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03949089-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 27218,
+ "created": "2012-08-30T12:10:51.000Z",
+ "lastUpdated": "2021-07-29T16:47:41.258Z",
+ "keywords": [
+ {
+ "keyword": "balle de ping pong",
+ "hasLocution": false,
+ "plural": "balles de ping pong",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recycling"
+ ],
+ "synsets": [
+ "01164741-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "environmental science",
+ "recycling"
+ ],
+ "_id": 27212,
+ "created": "2012-08-30T12:00:38.000Z",
+ "lastUpdated": "2021-07-29T09:54:03.778Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "recycler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "energy"
+ ],
+ "synsets": [
+ "00359758-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "work",
+ "secondary sector",
+ "energy"
+ ],
+ "_id": 27222,
+ "created": "2012-08-30T12:25:34.000Z",
+ "lastUpdated": "2021-07-30T08:20:38.571Z",
+ "keywords": [
+ {
+ "keyword": "positif",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "chargé positivement",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03447680-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 27226,
+ "created": "2012-08-30T12:46:51.000Z",
+ "lastUpdated": "2021-07-29T09:53:02.955Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "buts",
+ "hasLocution": true
+ },
+ {
+ "keyword": "cage de hockey sur glace",
+ "hasLocution": false,
+ "plural": "cages de hockey sur glace",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03447680-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 27230,
+ "created": "2012-08-30T12:50:52.000Z",
+ "lastUpdated": "2021-07-29T09:52:38.586Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "buts",
+ "hasLocution": true
+ },
+ {
+ "keyword": "cage de hockey sur gazon",
+ "hasLocution": false,
+ "plural": "cages de hockey sur gazon",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "polite set expression",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "06644865-n",
+ "10582611-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression",
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 27238,
+ "created": "2012-08-30T13:04:42.000Z",
+ "lastUpdated": "2021-07-29T16:47:35.877Z",
+ "keywords": [
+ {
+ "keyword": "salut scout",
+ "hasLocution": false,
+ "plural": "saluts scouts",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03447680-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 27234,
+ "created": "2012-08-30T12:54:36.000Z",
+ "lastUpdated": "2021-07-29T09:52:01.131Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "buts",
+ "hasLocution": true
+ },
+ {
+ "keyword": "cage de water-polo",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cages de water-polo"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "students",
+ "educational building",
+ "educational_building"
+ ],
+ "synsets": [
+ "00049744-n",
+ "03295682-n",
+ "02718424-n"
+ ],
+ "tags": [
+ "education",
+ "students",
+ "building",
+ "place"
+ ],
+ "_id": 27240,
+ "created": "2012-08-30T13:32:19.000Z",
+ "lastUpdated": "2021-07-29T09:48:32.268Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entrée",
+ "hasLocution": true,
+ "plural": "entrées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "students",
+ "educational building",
+ "routine"
+ ],
+ "synsets": [
+ "00049744-n",
+ "03295682-n",
+ "02718424-n"
+ ],
+ "tags": [
+ "education",
+ "students",
+ "building",
+ "place",
+ "person",
+ "routine"
+ ],
+ "_id": 27241,
+ "created": "2012-08-30T13:33:07.000Z",
+ "lastUpdated": "2024-12-09T18:28:49.079Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entrée",
+ "hasLocution": true,
+ "plural": "entrées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "students",
+ "educational building",
+ "educational_building"
+ ],
+ "synsets": [
+ "00059339-n"
+ ],
+ "tags": [
+ "education",
+ "students",
+ "building",
+ "place"
+ ],
+ "_id": 27248,
+ "created": "2012-08-30T13:43:46.000Z",
+ "lastUpdated": "2021-07-29T09:48:09.888Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sortie",
+ "hasLocution": true,
+ "plural": "sorties"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recycling"
+ ],
+ "synsets": [
+ "01164741-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "environmental science",
+ "recycling"
+ ],
+ "_id": 27214,
+ "created": "2012-08-30T12:01:53.000Z",
+ "lastUpdated": "2021-07-29T09:54:02.227Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "recycler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware",
+ "communication aid"
+ ],
+ "synsets": [
+ "04379457-n",
+ "04033499-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware",
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 27252,
+ "created": "2012-08-30T13:51:22.000Z",
+ "lastUpdated": "2021-07-29T22:58:13.710Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "contacteur",
+ "plural": "contacteurs"
+ },
+ {
+ "keyword": "interrupteur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "interrupteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "land transport"
+ ],
+ "synsets": [
+ "06530710-n",
+ "04025495-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 27256,
+ "created": "2012-08-30T18:55:37.000Z",
+ "lastUpdated": "2021-07-29T09:47:36.200Z",
+ "keywords": [
+ {
+ "keyword": "carte de bus",
+ "hasLocution": false,
+ "plural": "cartes de bus",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recycling"
+ ],
+ "synsets": [
+ "01164741-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "environmental science",
+ "recycling"
+ ],
+ "_id": 27210,
+ "created": "2012-08-30T11:58:29.000Z",
+ "lastUpdated": "2021-07-29T09:54:07.292Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "recycler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04234962-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 27260,
+ "created": "2012-08-30T18:59:34.000Z",
+ "lastUpdated": "2021-07-29T09:47:20.021Z",
+ "keywords": [
+ {
+ "keyword": "brochette",
+ "type": 2,
+ "plural": "brochettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pic à brochette",
+ "hasLocution": false,
+ "plural": "pics à brochette",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "01242902-a",
+ "01545905-v",
+ "01988916-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 27269,
+ "created": "2012-08-30T19:12:41.000Z",
+ "lastUpdated": "2021-08-01T18:59:46.443Z",
+ "keywords": [
+ {
+ "keyword": "s'assoir au bord",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir au bord",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "keyword": "s'assoir au bord de la piscine",
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir au bord de la piscine",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming"
+ ],
+ "synsets": [
+ "00001740-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 27264,
+ "created": "2012-08-30T19:03:32.000Z",
+ "lastUpdated": "2021-07-29T16:47:31.664Z",
+ "keywords": [
+ {
+ "keyword": "souffler dans l'eau",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming"
+ ],
+ "synsets": [
+ "00001740-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 27265,
+ "created": "2012-08-30T19:03:51.000Z",
+ "lastUpdated": "2021-07-29T16:47:28.591Z",
+ "keywords": [
+ {
+ "keyword": "souffler dans l'eau",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "01242902-a",
+ "01545905-v",
+ "01988916-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 27270,
+ "created": "2012-08-30T19:13:14.000Z",
+ "lastUpdated": "2021-08-01T18:51:16.763Z",
+ "keywords": [
+ {
+ "keyword": "s'assoir au bord",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir au bord",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'assoir au bord de la piscine",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir au bord de la piscine",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "sport material",
+ "football"
+ ],
+ "synsets": [
+ "03045434-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "leisure",
+ "sport",
+ "sport material",
+ "football"
+ ],
+ "_id": 27274,
+ "created": "2012-08-30T19:17:28.000Z",
+ "lastUpdated": "2021-07-29T09:44:44.478Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussures de football",
+ "hasLocution": false
+ },
+ {
+ "keyword": "crampons",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "01925957-v",
+ "02019450-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 27278,
+ "created": "2012-08-30T20:09:21.000Z",
+ "lastUpdated": "2021-07-29T09:44:33.677Z",
+ "keywords": [
+ {
+ "keyword": "sortir de l'eau",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sortir de la piscine",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sortir par l'échelle",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "01925957-v",
+ "02019450-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 27279,
+ "created": "2012-08-30T20:10:00.000Z",
+ "lastUpdated": "2021-07-29T09:43:44.463Z",
+ "keywords": [
+ {
+ "keyword": "sortir de l'eau",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "sortir de la piscine",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sortir par l'échelle",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "01925957-v",
+ "02019450-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 27280,
+ "created": "2012-08-30T20:10:37.000Z",
+ "lastUpdated": "2021-07-29T09:43:03.267Z",
+ "keywords": [
+ {
+ "keyword": "sortir de l'eau",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sortir de la piscine",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sortir par l'échelle",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "01242902-a",
+ "01545905-v",
+ "01988916-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 27268,
+ "created": "2012-08-30T19:12:13.000Z",
+ "lastUpdated": "2021-08-01T18:41:16.101Z",
+ "keywords": [
+ {
+ "keyword": "s'assoir au bord",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir au bord",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'assoir au bord de la piscine",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir au bord de la piscine",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "15031944-n",
+ "04581353-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 27284,
+ "created": "2012-08-30T20:17:51.000Z",
+ "lastUpdated": "2021-07-29T09:42:26.743Z",
+ "keywords": [
+ {
+ "keyword": "combinaison",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "combinaisons"
+ },
+ {
+ "keyword": "combinaison néoprène",
+ "hasLocution": false,
+ "plural": "combinaisons néopène",
+ "type": 2
+ },
+ {
+ "keyword": "combinaison de plongée",
+ "hasLocution": false,
+ "plural": "combinaisons de plongée",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "basketball"
+ ],
+ "synsets": [
+ "09861435-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "basketball"
+ ],
+ "_id": 27292,
+ "created": "2012-08-30T20:30:39.000Z",
+ "lastUpdated": "2021-07-29T09:41:09.888Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joueur de basket-ball ",
+ "hasLocution": false,
+ "plural": "joueurs de basket-ball "
+ },
+ {
+ "keyword": "basketteur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "basketteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation",
+ "security and defense"
+ ],
+ "synsets": [
+ "08191297-n"
+ ],
+ "tags": [
+ "international organization",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 27302,
+ "created": "2012-08-30T20:42:37.000Z",
+ "lastUpdated": "2021-07-29T09:38:32.926Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "OTAN",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "regional costume"
+ ],
+ "synsets": [
+ "03659159-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "regional costume"
+ ],
+ "_id": 27298,
+ "created": "2012-08-30T20:39:41.000Z",
+ "lastUpdated": "2021-07-29T09:40:29.110Z",
+ "keywords": [
+ {
+ "keyword": "pantalon autrichien",
+ "hasLocution": false,
+ "plural": "pantalons autrichiens",
+ "type": 2
+ },
+ {
+ "keyword": "Lederhose",
+ "hasLocution": false,
+ "plural": "Lederhoses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08980321-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27303,
+ "created": "2012-08-30T20:46:51.000Z",
+ "lastUpdated": "2021-07-29T09:38:29.528Z",
+ "keywords": [
+ {
+ "keyword": "Liechtenstein",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08963015-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27304,
+ "created": "2012-09-03T16:53:54.000Z",
+ "lastUpdated": "2021-07-29T09:38:17.862Z",
+ "keywords": [
+ {
+ "keyword": "Martinique",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09036956-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27305,
+ "created": "2012-09-03T16:54:57.000Z",
+ "lastUpdated": "2021-07-29T09:38:05.594Z",
+ "keywords": [
+ {
+ "keyword": "Moldavie",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08990219-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27306,
+ "created": "2012-09-03T16:57:42.000Z",
+ "lastUpdated": "2021-07-29T09:37:56.380Z",
+ "keywords": [
+ {
+ "keyword": "Monaco",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Principauté de Monaco",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08835087-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27307,
+ "created": "2012-09-03T17:00:06.000Z",
+ "lastUpdated": "2021-07-29T09:37:32.455Z",
+ "keywords": [
+ {
+ "keyword": "Montenegro",
+ "type": 1,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01978076-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 27296,
+ "created": "2012-08-30T20:35:17.000Z",
+ "lastUpdated": "2021-07-29T09:40:46.408Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "monter le lit",
+ "hasLocution": true
+ },
+ {
+ "keyword": "redresser le lit",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "03668857-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 27288,
+ "created": "2012-08-30T20:27:40.000Z",
+ "lastUpdated": "2021-07-29T09:41:42.158Z",
+ "keywords": [
+ {
+ "keyword": "ceinture",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "ceintures"
+ },
+ {
+ "keyword": "ceinture de natation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ceintures de natation"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08834821-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27311,
+ "created": "2012-09-03T17:13:03.000Z",
+ "lastUpdated": "2021-07-29T09:34:41.037Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Serbie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09053122-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27312,
+ "created": "2012-09-03T17:16:51.000Z",
+ "lastUpdated": "2021-07-29T09:34:38.324Z",
+ "keywords": [
+ {
+ "keyword": "Surinam",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09037349-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27313,
+ "created": "2012-09-03T17:19:35.000Z",
+ "lastUpdated": "2021-07-29T09:34:27.407Z",
+ "keywords": [
+ {
+ "keyword": "Ukraine",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09011401-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27310,
+ "created": "2012-09-03T17:11:27.000Z",
+ "lastUpdated": "2021-07-29T09:35:56.491Z",
+ "keywords": [
+ {
+ "keyword": "Saint-Vincent-et-les Grenadines",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country",
+ "christianity"
+ ],
+ "synsets": [
+ "09184245-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country",
+ "religion",
+ "christianity"
+ ],
+ "_id": 27314,
+ "created": "2012-09-03T17:22:33.000Z",
+ "lastUpdated": "2021-03-26T03:31:37.912Z",
+ "keywords": [
+ {
+ "keyword": "Vatican",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Cité du Vatican",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "07453884-n",
+ "01882712-v",
+ "02097668-v"
+ ],
+ "tags": [
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 27315,
+ "created": "2012-09-05T12:23:22.000Z",
+ "lastUpdated": "2021-07-29T09:34:15.703Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "battement de bras",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "battre des bras",
+ "hasLocution": false
+ },
+ {
+ "keyword": "battre",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "07453884-n",
+ "01882712-v",
+ "02097668-v"
+ ],
+ "tags": [
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 27316,
+ "created": "2012-09-05T12:24:02.000Z",
+ "lastUpdated": "2021-07-29T09:33:56.610Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "battement de bras",
+ "hasLocution": false,
+ "plural": "battements de bras"
+ },
+ {
+ "type": 3,
+ "keyword": "battre des bras",
+ "hasLocution": false
+ },
+ {
+ "keyword": "battre",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts"
+ ],
+ "synsets": [
+ "00128009-s",
+ "02412896-v"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 27319,
+ "created": "2012-09-05T12:31:28.000Z",
+ "lastUpdated": "2021-07-29T09:33:10.715Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "précédent",
+ "hasLocution": true
+ },
+ {
+ "keyword": "précéder",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03042670-n",
+ "02925183-a",
+ "13564621-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27321,
+ "created": "2012-09-05T12:34:29.000Z",
+ "lastUpdated": "2021-07-29T09:32:49.929Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de psychomotricité",
+ "hasLocution": false,
+ "plural": "salles de psychomotricité"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09014551-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27309,
+ "created": "2012-09-03T17:06:46.000Z",
+ "lastUpdated": "2021-07-29T09:36:28.607Z",
+ "keywords": [
+ {
+ "keyword": "Saint-Marin",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid"
+ ],
+ "synsets": [
+ "00645186-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 27323,
+ "created": "2012-09-05T12:43:56.000Z",
+ "lastUpdated": "2021-07-29T22:56:47.632Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "balayage",
+ "plural": "balayages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "02674410-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 27325,
+ "created": "2012-09-05T12:45:55.000Z",
+ "lastUpdated": "2021-07-29T09:31:42.272Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accessoires",
+ "hasLocution": false
+ },
+ {
+ "keyword": "accessoires d'hiver",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "supporting document",
+ "person according to their age",
+ "expression"
+ ],
+ "synsets": [
+ "06348274-n"
+ ],
+ "tags": [
+ "document",
+ "supporting document",
+ "person",
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 27327,
+ "created": "2012-09-05T12:47:39.000Z",
+ "lastUpdated": "2022-09-27T09:05:54.314Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nom de famille",
+ "hasLocution": true,
+ "plural": "noms de famille"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15195551-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "day",
+ "core vocabulary"
+ ],
+ "_id": 27329,
+ "created": "2012-09-05T12:50:49.000Z",
+ "lastUpdated": "2021-07-29T09:31:07.081Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "week-end",
+ "hasLocution": true,
+ "plural": "week-ends"
+ },
+ {
+ "keyword": "fin de semaine",
+ "hasLocution": false,
+ "plural": "fins de semaine",
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts"
+ ],
+ "synsets": [
+ "00128838-s",
+ "00123436-a",
+ "02726572-v"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 27331,
+ "created": "2012-09-05T13:06:20.000Z",
+ "lastUpdated": "2021-07-29T09:30:36.762Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "suivant",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "suivante",
+ "hasLocution": true
+ },
+ {
+ "keyword": "suivre",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08769854-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27308,
+ "created": "2012-09-03T17:03:36.000Z",
+ "lastUpdated": "2021-07-29T09:37:20.001Z",
+ "keywords": [
+ {
+ "keyword": "République dominicaine",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "communication system"
+ ],
+ "synsets": [
+ "06853580-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication system"
+ ],
+ "_id": 27337,
+ "created": "2012-09-05T13:15:18.000Z",
+ "lastUpdated": "2021-07-29T09:27:52.783Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pictogrammes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work organization"
+ ],
+ "synsets": [
+ "07014082-n"
+ ],
+ "tags": [
+ "work",
+ "organization"
+ ],
+ "_id": 27335,
+ "created": "2012-09-05T13:12:59.000Z",
+ "lastUpdated": "2021-07-29T09:28:43.685Z",
+ "keywords": [
+ {
+ "keyword": "organigramme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "organigrammes"
+ },
+ {
+ "keyword": "organigramme de l'entreprise",
+ "hasLocution": false,
+ "plural": "organigrammes de l'entreprise",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "teaching activity",
+ "routine"
+ ],
+ "synsets": [
+ "15163560-n"
+ ],
+ "tags": [
+ "education",
+ "teaching activity",
+ "person",
+ "routine"
+ ],
+ "_id": 27339,
+ "created": "2012-09-05T13:22:18.000Z",
+ "lastUpdated": "2024-12-08T07:21:25.779Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "récréation",
+ "hasLocution": true,
+ "plural": "récréations"
+ },
+ {
+ "keyword": "pause",
+ "type": 2,
+ "plural": "pauses",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05557463-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 27343,
+ "created": "2012-09-05T13:29:00.000Z",
+ "lastUpdated": "2021-07-29T09:26:56.820Z",
+ "keywords": [
+ {
+ "keyword": "torse",
+ "type": 2,
+ "plural": "torses",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts"
+ ],
+ "synsets": [
+ "00449506-s"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 27341,
+ "created": "2012-09-05T13:25:39.000Z",
+ "lastUpdated": "2021-07-30T08:20:42.769Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "suivant",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "06348274-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 27349,
+ "created": "2012-09-06T11:48:16.000Z",
+ "lastUpdated": "2021-07-29T09:26:40.503Z",
+ "keywords": [
+ {
+ "keyword": "quel est ton nom ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quel est votre nom ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy equipment"
+ ],
+ "synsets": [
+ "03106525-a",
+ "03396616-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "physiotherapy equipment"
+ ],
+ "_id": 27345,
+ "created": "2012-09-05T20:04:08.000Z",
+ "lastUpdated": "2021-07-30T06:29:20.331Z",
+ "keywords": [
+ {
+ "keyword": "orthèse ",
+ "hasLocution": false,
+ "plural": "orthèses",
+ "type": 2
+ },
+ {
+ "keyword": "attelle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "attelles"
+ },
+ {
+ "keyword": "posture de lit",
+ "hasLocution": false,
+ "plural": "postures de lit",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human value",
+ "place"
+ ],
+ "synsets": [
+ "04647895-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human value",
+ "place"
+ ],
+ "_id": 27333,
+ "created": "2012-09-05T13:09:56.000Z",
+ "lastUpdated": "2024-12-19T06:55:39.939Z",
+ "keywords": [
+ {
+ "keyword": "patience",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "être patient",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "avoir de la patience",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "supporting document",
+ "person according to their age"
+ ],
+ "synsets": [
+ "06348677-n",
+ "06344646-n"
+ ],
+ "tags": [
+ "document",
+ "supporting document",
+ "person"
+ ],
+ "_id": 27357,
+ "created": "2012-09-06T11:59:16.000Z",
+ "lastUpdated": "2021-07-29T09:23:37.979Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prénom",
+ "hasLocution": true,
+ "plural": "prénoms"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "computing",
+ "mass media"
+ ],
+ "synsets": [
+ "01439891-v",
+ "01034323-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "computing",
+ "mass media"
+ ],
+ "_id": 27359,
+ "created": "2012-09-06T12:16:06.000Z",
+ "lastUpdated": "2021-07-29T16:47:20.106Z",
+ "keywords": [
+ {
+ "keyword": "envoyer un email",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "envoyer un courriel",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "envoyer un courrier électronique",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "computing",
+ "mass media"
+ ],
+ "synsets": [
+ "01034323-v",
+ "02214901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "computing",
+ "mass media"
+ ],
+ "_id": 27361,
+ "created": "2012-09-06T12:23:03.000Z",
+ "lastUpdated": "2021-07-29T09:23:28.077Z",
+ "keywords": [
+ {
+ "keyword": "recevoir un email",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "recevoir un courriel",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "recevoir un courrier électronique",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "computing"
+ ],
+ "synsets": [
+ "06289979-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "computing"
+ ],
+ "_id": 27351,
+ "created": "2012-09-06T11:49:49.000Z",
+ "lastUpdated": "2021-07-29T09:26:11.775Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "quel est ton email?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "quelle est ton adresse électronique?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "uel est ton mail ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "00621541-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 27363,
+ "created": "2012-09-06T12:32:13.000Z",
+ "lastUpdated": "2021-07-29T09:20:53.121Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "je ne comprends pas",
+ "hasLocution": true
+ },
+ {
+ "keyword": "je ne comprends pas ce que tu dis",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "je ne comprends pas ce que vous dites",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "ne pas comprendre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "00045286-r",
+ "00044804-r",
+ "00045164-r"
+ ],
+ "tags": [],
+ "_id": 27365,
+ "created": "2012-09-06T12:37:39.000Z",
+ "lastUpdated": "2021-07-29T09:20:03.771Z",
+ "keywords": [
+ {
+ "keyword": "face à face",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "en face",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public administration",
+ "money"
+ ],
+ "synsets": [
+ "13286803-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "public administration",
+ "economy",
+ "money"
+ ],
+ "_id": 27369,
+ "created": "2012-09-06T12:46:42.000Z",
+ "lastUpdated": "2021-07-29T09:19:08.928Z",
+ "keywords": [
+ {
+ "keyword": "aide financière",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "aides financières"
+ },
+ {
+ "keyword": "assistance économique",
+ "hasLocution": false,
+ "plural": "assistances économiques",
+ "type": 2
+ },
+ {
+ "keyword": "prestations sociales",
+ "type": 2,
+ "hasLocution": false
+ },
+ {
+ "keyword": "assistance municipale",
+ "hasLocution": false,
+ "plural": "assistances municipales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs"
+ ],
+ "synsets": [
+ "01835473-v",
+ "01854282-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs"
+ ],
+ "_id": 27371,
+ "created": "2012-09-06T12:58:10.000Z",
+ "lastUpdated": "2021-07-29T09:17:32.472Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "déplacer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bouger",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "unit of time"
+ ],
+ "synsets": [
+ "00458406-n",
+ "00119765-r",
+ "00022156-r",
+ "07324217-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time"
+ ],
+ "_id": 27385,
+ "created": "2012-10-18T13:53:14.000Z",
+ "lastUpdated": "2021-07-29T09:17:11.708Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fois",
+ "hasLocution": true,
+ "plural": "fois"
+ },
+ {
+ "keyword": "une fois",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "parfois",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "toujours",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "unit of time"
+ ],
+ "synsets": [
+ "00022332-r",
+ "00065694-r"
+ ],
+ "tags": [
+ "time",
+ "unit of time"
+ ],
+ "_id": 27387,
+ "created": "2012-10-18T14:03:54.000Z",
+ "lastUpdated": "2021-07-29T09:16:44.472Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "parfois",
+ "hasLocution": true
+ },
+ {
+ "keyword": "deux fois",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "occasionnellement",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "par moments",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts"
+ ],
+ "synsets": [
+ "00128009-s",
+ "02412896-v"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 27389,
+ "created": "2012-10-18T17:37:07.000Z",
+ "lastUpdated": "2021-07-30T06:29:15.950Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "précédent",
+ "hasLocution": true
+ },
+ {
+ "keyword": "précéder",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "précédente",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "computing"
+ ],
+ "synsets": [
+ "00609334-v",
+ "06686933-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "computing"
+ ],
+ "_id": 27367,
+ "created": "2012-09-06T12:41:29.000Z",
+ "lastUpdated": "2021-07-29T09:19:39.023Z",
+ "keywords": [
+ {
+ "keyword": "se souvenir du mot de passe",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mémoriser le mot de passe",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00780320-v",
+ "02648898-v",
+ "02483178-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 27393,
+ "created": "2012-10-18T17:49:37.000Z",
+ "lastUpdated": "2021-07-29T09:14:06.599Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "arrêter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "annuler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "stopper",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01318273-v",
+ "02158139-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 27391,
+ "created": "2012-10-18T17:45:06.000Z",
+ "lastUpdated": "2021-07-29T09:14:10.888Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chercher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "computing",
+ "mass media"
+ ],
+ "synsets": [
+ "06289979-n"
+ ],
+ "tags": [
+ "computing",
+ "communication",
+ "mass media"
+ ],
+ "_id": 27355,
+ "created": "2012-09-06T11:56:33.000Z",
+ "lastUpdated": "2021-07-29T09:24:11.919Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "courriel",
+ "hasLocution": true,
+ "plural": "courriels"
+ },
+ {
+ "keyword": "adresse mail",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "adresses mail"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "computing"
+ ],
+ "synsets": [
+ "02238486-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "computing"
+ ],
+ "_id": 27397,
+ "created": "2012-10-18T18:47:17.000Z",
+ "lastUpdated": "2021-07-29T09:13:40.229Z",
+ "keywords": [
+ {
+ "keyword": "télécharger",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "computing",
+ "mass media"
+ ],
+ "synsets": [
+ "02628315-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "computing",
+ "mass media"
+ ],
+ "_id": 27399,
+ "created": "2012-10-18T18:52:19.000Z",
+ "lastUpdated": "2021-07-29T09:13:28.249Z",
+ "keywords": [
+ {
+ "keyword": "se connecter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "connecter",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "e connecter à internet",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "computing",
+ "mass media"
+ ],
+ "synsets": [
+ "01358741-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "computing",
+ "mass media"
+ ],
+ "_id": 27402,
+ "created": "2012-10-18T18:54:24.000Z",
+ "lastUpdated": "2021-07-29T09:12:54.796Z",
+ "keywords": [
+ {
+ "keyword": "se déconnecter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "déconnecter",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "se déconnecter d'internet",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work organization"
+ ],
+ "synsets": [
+ "05668113-n",
+ "05669245-n"
+ ],
+ "tags": [
+ "work",
+ "organization"
+ ],
+ "_id": 27403,
+ "created": "2012-10-18T18:58:11.000Z",
+ "lastUpdated": "2021-07-29T16:47:15.047Z",
+ "keywords": [
+ {
+ "keyword": "méthode",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "méthodes"
+ },
+ {
+ "keyword": "méthodologie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "méthodologies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses"
+ ],
+ "synsets": [
+ "01228779-v",
+ "01228534-v",
+ "00145598-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 27407,
+ "created": "2012-10-25T11:50:04.000Z",
+ "lastUpdated": "2021-07-29T09:11:14.232Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "caresser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "caresse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "caresses"
+ },
+ {
+ "keyword": "câlin",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "câlins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "equine-assisted therapy",
+ "horse riding"
+ ],
+ "synsets": [
+ "08633886-n"
+ ],
+ "tags": [
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy",
+ "leisure",
+ "sport",
+ "horse riding"
+ ],
+ "_id": 27406,
+ "created": "2012-10-18T19:01:24.000Z",
+ "lastUpdated": "2021-07-29T16:47:11.716Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parcours",
+ "hasLocution": true,
+ "plural": "parcours"
+ },
+ {
+ "keyword": "chemin",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chemins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container"
+ ],
+ "synsets": [
+ "03666666-n",
+ "04461181-n"
+ ],
+ "tags": [
+ "object",
+ "container"
+ ],
+ "_id": 27395,
+ "created": "2012-10-18T18:43:54.000Z",
+ "lastUpdated": "2021-07-29T09:13:50.437Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couvercle",
+ "hasLocution": true,
+ "plural": "couvercles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "06344646-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 27353,
+ "created": "2012-09-06T11:52:08.000Z",
+ "lastUpdated": "2021-07-29T09:25:05.802Z",
+ "keywords": [
+ {
+ "keyword": "quel est ton nom ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "comment tu t'appelles ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quel est votre nom ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "comment vous appelez-vous ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "cultural building"
+ ],
+ "synsets": [
+ "07255209-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture"
+ ],
+ "_id": 27465,
+ "created": "2012-11-15T11:14:53.000Z",
+ "lastUpdated": "2021-07-29T16:47:10.115Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conférence",
+ "hasLocution": true,
+ "plural": "conférences"
+ },
+ {
+ "keyword": "exposé",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "exposés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses"
+ ],
+ "synsets": [
+ "01228779-v",
+ "01228534-v",
+ "00145598-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 27408,
+ "created": "2012-10-25T11:51:42.000Z",
+ "lastUpdated": "2021-07-29T09:10:52.429Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "caresser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "caresse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "caresses"
+ },
+ {
+ "keyword": "câlin",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "câlins"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "social movement"
+ ],
+ "synsets": [
+ "07225213-n",
+ "02527076-v",
+ "00909100-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "sociology",
+ "social movement"
+ ],
+ "_id": 27469,
+ "created": "2012-11-15T11:22:22.000Z",
+ "lastUpdated": "2021-07-29T09:08:23.379Z",
+ "keywords": [
+ {
+ "keyword": "protester",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se plaindre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "manifester",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "social movement"
+ ],
+ "synsets": [
+ "02527076-v",
+ "00909100-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "sociology",
+ "social movement"
+ ],
+ "_id": 27471,
+ "created": "2012-11-15T11:24:42.000Z",
+ "lastUpdated": "2021-07-29T16:47:02.937Z",
+ "keywords": [
+ {
+ "keyword": "protester",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se plaindre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "manifester",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03697143-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27473,
+ "created": "2012-11-15T11:49:54.000Z",
+ "lastUpdated": "2021-07-29T09:07:35.922Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle d'attente",
+ "hasLocution": false,
+ "plural": "salles d'attente"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "social movement"
+ ],
+ "synsets": [
+ "00799906-n"
+ ],
+ "tags": [
+ "sociology",
+ "social movement"
+ ],
+ "_id": 27467,
+ "created": "2012-11-15T11:17:53.000Z",
+ "lastUpdated": "2021-07-29T16:47:07.388Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "campagne",
+ "hasLocution": true,
+ "plural": "campagnes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04453410-n",
+ "01544805-s"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "health",
+ "medicine",
+ "medical center",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27475,
+ "created": "2012-11-15T11:53:03.000Z",
+ "lastUpdated": "2021-07-29T09:07:26.185Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "wc",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "toilettes",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "toilettes adaptées",
+ "hasLocution": false
+ },
+ {
+ "keyword": "toilettes accessibles",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "03468313-n",
+ "03370837-n",
+ "01017848-a"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 27480,
+ "created": "2012-11-15T12:04:11.000Z",
+ "lastUpdated": "2021-08-02T22:38:48.674Z",
+ "keywords": [
+ {
+ "keyword": "deuxième étage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "deuxièmes étages"
+ },
+ {
+ "keyword": "étage intermédiaire",
+ "hasLocution": false,
+ "plural": "étages intermédiaires",
+ "type": 2
+ },
+ {
+ "keyword": "second étage",
+ "hasLocution": false,
+ "plural": "seconds étages",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "02803656-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 27482,
+ "created": "2012-11-15T12:06:47.000Z",
+ "lastUpdated": "2021-07-29T16:46:57.914Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sous-sol",
+ "hasLocution": false,
+ "plural": "sous-sols"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "02803656-n",
+ "13868743-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 27483,
+ "created": "2012-11-15T12:15:16.000Z",
+ "lastUpdated": "2021-08-02T22:39:17.942Z",
+ "keywords": [
+ {
+ "keyword": "dernier étage",
+ "hasLocution": false,
+ "plural": "derniers étages",
+ "type": 2
+ },
+ {
+ "keyword": "troisième étage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "troisièmes étages"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hairdresser",
+ "routine"
+ ],
+ "synsets": [
+ "00218901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser",
+ "person",
+ "routine"
+ ],
+ "_id": 27485,
+ "created": "2012-11-27T12:39:09.000Z",
+ "lastUpdated": "2021-07-29T16:46:55.463Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "sécher les cheveux",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se sécher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hairdresser",
+ "routine"
+ ],
+ "synsets": [
+ "00218901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser",
+ "person",
+ "routine"
+ ],
+ "_id": 27486,
+ "created": "2012-11-27T12:42:03.000Z",
+ "lastUpdated": "2021-07-29T09:05:04.351Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "sécher les cheveux",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se sécher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "15184543-n",
+ "15185626-n",
+ "01694952-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 27411,
+ "created": "2012-10-25T12:27:33.000Z",
+ "lastUpdated": "2021-07-29T09:09:24.712Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Tracer les signes d'un système d'écriture, de représentation graphique des sons d'un langage, de la parole : Ãcrire un « m », un mot, un chiffre",
+ "keyword": "écrire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mettre la date",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "écrire la date",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "01246546-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 27489,
+ "created": "2012-11-27T12:47:39.000Z",
+ "lastUpdated": "2021-07-29T09:04:47.722Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se brosser les dents",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "laver les dents",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "03468313-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 27477,
+ "created": "2012-11-15T12:01:26.000Z",
+ "lastUpdated": "2021-07-29T09:07:01.373Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rez-de-chaussée",
+ "hasLocution": false,
+ "plural": "rez-de-chaussée"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "architectural element",
+ "signaling system"
+ ],
+ "synsets": [
+ "04305309-n",
+ "04322052-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "architecture",
+ "architectural element",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27491,
+ "created": "2012-11-27T12:50:49.000Z",
+ "lastUpdated": "2021-07-29T06:44:06.258Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "escalier",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "escaliers",
+ "hasLocution": true
+ },
+ {
+ "keyword": "marches d'escalier",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "marine animal",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02080575-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 27501,
+ "created": "2012-11-28T18:28:41.000Z",
+ "lastUpdated": "2021-07-29T06:42:43.924Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lion de mer",
+ "hasLocution": false,
+ "plural": "lions de mer"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "10208334-n",
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 27503,
+ "created": "2012-11-28T18:31:00.000Z",
+ "lastUpdated": "2021-07-30T08:31:05.966Z",
+ "keywords": [
+ {
+ "keyword": "directrice du personnel",
+ "plural": "directrices du personnel",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "library science"
+ ],
+ "synsets": [
+ "10277645-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "library science"
+ ],
+ "_id": 27499,
+ "created": "2012-11-27T13:21:57.000Z",
+ "lastUpdated": "2021-07-29T06:42:53.718Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bibliothécaire",
+ "hasLocution": true,
+ "plural": "bibliothécaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "10208334-n",
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 27504,
+ "created": "2012-11-28T18:32:45.000Z",
+ "lastUpdated": "2021-07-30T06:28:54.084Z",
+ "keywords": [
+ {
+ "keyword": "directrice du personnel",
+ "hasLocution": false,
+ "plural": "directrices du personnel",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "10208334-n",
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 27505,
+ "created": "2012-11-28T18:34:34.000Z",
+ "lastUpdated": "2021-07-30T06:28:32.919Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "directeur du personnel",
+ "hasLocution": false,
+ "plural": "directeurs du personnel"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "10104064-n"
+ ],
+ "tags": [
+ "person",
+ "child",
+ "core vocabulary"
+ ],
+ "_id": 27509,
+ "created": "2013-01-17T11:49:08.000Z",
+ "lastUpdated": "2024-12-11T06:38:42.379Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fille",
+ "hasLocution": true,
+ "plural": "filles"
+ },
+ {
+ "type": 2,
+ "keyword": "petite fille",
+ "hasLocution": true,
+ "plural": "petites filles"
+ },
+ {
+ "keyword": "fillette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fillettes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "container"
+ ],
+ "synsets": [
+ "02285938-v",
+ "02287351-v",
+ "01496967-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "container"
+ ],
+ "_id": 27511,
+ "created": "2013-01-17T17:55:59.000Z",
+ "lastUpdated": "2021-07-29T06:41:44.772Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "empiler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ranger",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "stocker",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "visual art",
+ "signaling system"
+ ],
+ "synsets": [
+ "03308776-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "visual art",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27493,
+ "created": "2012-11-27T12:59:56.000Z",
+ "lastUpdated": "2021-07-29T16:45:48.010Z",
+ "keywords": [
+ {
+ "keyword": "exposition",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "expositions"
+ },
+ {
+ "keyword": "salle d'exposition",
+ "hasLocution": false,
+ "plural": "salles d'exposition",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "02753075-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27495,
+ "created": "2012-11-27T13:03:43.000Z",
+ "lastUpdated": "2021-07-29T16:46:48.330Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de conférence",
+ "hasLocution": false,
+ "plural": "salles de conférence"
+ },
+ {
+ "keyword": "salle de réunion",
+ "hasLocution": false,
+ "plural": "salles de réunion",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "footwear",
+ "routine"
+ ],
+ "synsets": [
+ "00050171-v",
+ "02164101-s",
+ "00279508-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "footwear",
+ "person",
+ "routine"
+ ],
+ "_id": 27519,
+ "created": "2013-01-17T18:03:43.000Z",
+ "lastUpdated": "2021-03-13T14:37:21.907Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "déchausser",
+ "hasLocution": false
+ },
+ {
+ "keyword": "enlever la chaussure",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "retirer la chaussure",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "appliance"
+ ],
+ "synsets": [
+ "01513208-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance"
+ ],
+ "_id": 27518,
+ "created": "2013-01-17T18:02:40.000Z",
+ "lastUpdated": "2021-07-29T06:40:12.611Z",
+ "keywords": [
+ {
+ "keyword": "débrancher",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "cattle farming",
+ "professional"
+ ],
+ "synsets": [
+ "10526010-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "cattle farming",
+ "professional"
+ ],
+ "_id": 27521,
+ "created": "2013-01-17T18:05:50.000Z",
+ "lastUpdated": "2021-07-29T06:40:03.497Z",
+ "keywords": [
+ {
+ "keyword": "fermière",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "fermières"
+ },
+ {
+ "keyword": "éleveuse",
+ "hasLocution": false,
+ "plural": "éleveuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cattle farming"
+ ],
+ "synsets": [
+ "10526010-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "cattle farming"
+ ],
+ "_id": 27523,
+ "created": "2013-01-17T18:07:36.000Z",
+ "lastUpdated": "2021-07-29T06:39:33.748Z",
+ "keywords": [
+ {
+ "keyword": "fermier",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "fermiers"
+ },
+ {
+ "keyword": "éleveur",
+ "type": 2,
+ "plural": "éleveurs",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cattle farming",
+ "professional"
+ ],
+ "synsets": [
+ "10526010-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "cattle farming",
+ "professional"
+ ],
+ "_id": 27524,
+ "created": "2013-01-17T18:08:27.000Z",
+ "lastUpdated": "2021-07-29T06:39:09.936Z",
+ "keywords": [
+ {
+ "keyword": "fermier",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "fermiers"
+ },
+ {
+ "keyword": "éleveur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "éleveurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "container"
+ ],
+ "synsets": [
+ "02285938-v",
+ "02287351-v",
+ "01496967-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "container"
+ ],
+ "_id": 27514,
+ "created": "2013-01-17T17:58:41.000Z",
+ "lastUpdated": "2021-07-29T06:41:14.157Z",
+ "keywords": [
+ {
+ "keyword": "ranger",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "stocker",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "empiler",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "appliance"
+ ],
+ "synsets": [
+ "01423776-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance"
+ ],
+ "_id": 27515,
+ "created": "2013-01-17T17:59:57.000Z",
+ "lastUpdated": "2021-07-29T06:40:25.941Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "brancher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tourism",
+ "public administration"
+ ],
+ "synsets": [
+ "05824413-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "tourism",
+ "public administration"
+ ],
+ "_id": 27527,
+ "created": "2013-01-17T18:10:30.000Z",
+ "lastUpdated": "2024-12-12T07:31:46.498Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "information",
+ "hasLocution": true,
+ "plural": "informations"
+ },
+ {
+ "type": 2,
+ "keyword": "office de tourisme",
+ "hasLocution": true,
+ "plural": "offices de tourisme"
+ },
+ {
+ "keyword": "bureau d'informations",
+ "hasLocution": false,
+ "plural": "bureaux d'informations",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "00851890-s",
+ "00258447-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27529,
+ "created": "2013-01-17T18:12:39.000Z",
+ "lastUpdated": "2021-07-29T06:37:33.658Z",
+ "keywords": [
+ {
+ "keyword": "douche obligatoire",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "workplace",
+ "worksite",
+ "signaling system"
+ ],
+ "synsets": [
+ "03847186-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "workplace",
+ "work",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27533,
+ "created": "2013-01-17T18:17:08.000Z",
+ "lastUpdated": "2021-07-29T06:36:54.627Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bureau",
+ "hasLocution": true,
+ "plural": "bureaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "cattle farming",
+ "professional"
+ ],
+ "synsets": [
+ "10607013-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "cattle farming",
+ "professional"
+ ],
+ "_id": 27535,
+ "created": "2013-01-17T18:20:19.000Z",
+ "lastUpdated": "2021-07-29T06:36:46.616Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "berger",
+ "hasLocution": true,
+ "plural": "bergers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cattle farming",
+ "professional"
+ ],
+ "synsets": [
+ "10607013-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "cattle farming",
+ "professional"
+ ],
+ "_id": 27536,
+ "created": "2013-01-17T18:21:02.000Z",
+ "lastUpdated": "2021-07-29T06:36:41.327Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "berger",
+ "hasLocution": true,
+ "plural": "bergers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "00851890-s",
+ "02810318-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27531,
+ "created": "2013-01-17T18:14:39.000Z",
+ "lastUpdated": "2021-07-29T06:37:20.829Z",
+ "keywords": [
+ {
+ "keyword": "bonnet de bain obligatoire",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "cattle farming",
+ "professional"
+ ],
+ "synsets": [
+ "10608474-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "cattle farming",
+ "professional"
+ ],
+ "_id": 27539,
+ "created": "2013-01-17T18:23:37.000Z",
+ "lastUpdated": "2021-07-29T06:36:33.310Z",
+ "keywords": [
+ {
+ "keyword": "bergère",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bergères"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02644022-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "core vocabulary"
+ ],
+ "_id": 27547,
+ "created": "2013-01-17T18:34:42.000Z",
+ "lastUpdated": "2021-07-29T06:34:24.644Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "signaling system"
+ ],
+ "synsets": [
+ "03689034-n",
+ "03242834-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27549,
+ "created": "2013-01-17T18:38:49.000Z",
+ "lastUpdated": "2021-07-29T06:34:19.120Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vestiaires",
+ "hasLocution": false
+ },
+ {
+ "keyword": "casiers",
+ "type": 2,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "signaling system"
+ ],
+ "synsets": [
+ "03689034-n",
+ "03242834-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27550,
+ "created": "2013-01-17T18:39:21.000Z",
+ "lastUpdated": "2021-07-29T06:34:03.790Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vestiaires",
+ "hasLocution": false
+ },
+ {
+ "keyword": "casiers",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "04220172-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27545,
+ "created": "2013-01-17T18:33:04.000Z",
+ "lastUpdated": "2021-07-29T06:34:54.971Z",
+ "keywords": [
+ {
+ "keyword": "infirmerie",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "infirmeries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04453410-n",
+ "01544805-s"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "home",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27553,
+ "created": "2013-01-17T18:47:58.000Z",
+ "lastUpdated": "2021-07-29T06:33:46.970Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de bain",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "salle de bain adaptée",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "WC adapté",
+ "hasLocution": false
+ },
+ {
+ "keyword": "toilettes accessibles",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04453410-n",
+ "03751977-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "home",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27555,
+ "created": "2013-01-17T18:54:43.000Z",
+ "lastUpdated": "2021-07-29T06:33:19.325Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de bain",
+ "hasLocution": true
+ },
+ {
+ "keyword": "toilettes",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "WC",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04453410-n",
+ "03751977-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "health",
+ "medicine",
+ "medical center",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27559,
+ "created": "2013-01-17T19:08:12.000Z",
+ "lastUpdated": "2021-07-29T06:32:14.907Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "WC",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "toilettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "02810916-n",
+ "04453410-n",
+ "04565764-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "health",
+ "medicine",
+ "medical center",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27561,
+ "created": "2013-01-17T19:09:42.000Z",
+ "lastUpdated": "2021-07-29T06:32:02.132Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toilettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "WC",
+ "type": 2,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "00136799-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 27541,
+ "created": "2013-01-17T18:27:48.000Z",
+ "lastUpdated": "2021-07-29T06:36:18.176Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se retrouver seul",
+ "hasLocution": false
+ },
+ {
+ "keyword": "être seul aux toilettes",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "être laissé seul",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "02810916-n",
+ "04453410-n",
+ "04565764-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "home",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 27557,
+ "created": "2013-01-17T18:58:42.000Z",
+ "lastUpdated": "2021-07-29T06:32:53.327Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "WC",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "toilettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "salle de bain",
+ "hasLocution": true,
+ "plural": "salles de bain",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "00136799-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 27542,
+ "created": "2013-01-17T18:28:57.000Z",
+ "lastUpdated": "2021-07-29T06:35:45.534Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se retrouver seul",
+ "hasLocution": false
+ },
+ {
+ "hasLocution": false,
+ "keyword": "être seul aux toilettes",
+ "type": 3
+ },
+ {
+ "keyword": "être laissé seul",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "unit of time"
+ ],
+ "synsets": [
+ "00022332-r",
+ "00458406-n",
+ "15317305-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time"
+ ],
+ "_id": 27564,
+ "created": "2013-01-23T12:51:48.000Z",
+ "lastUpdated": "2021-08-02T21:43:04.383Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "parfois",
+ "hasLocution": true
+ },
+ {
+ "keyword": "occasionnellement",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "par moment",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "moments",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "moments"
+ },
+ {
+ "keyword": "de temps en temps",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "teaching activity",
+ "routine"
+ ],
+ "synsets": [
+ "08327319-n",
+ "15228025-n"
+ ],
+ "tags": [
+ "education",
+ "teaching activity",
+ "person",
+ "routine"
+ ],
+ "_id": 27574,
+ "created": "2013-01-23T13:32:48.000Z",
+ "lastUpdated": "2024-12-09T06:38:30.465Z",
+ "keywords": [
+ {
+ "keyword": "temps de parole",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "temps de parole"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "temps de groupe",
+ "plural": "temps de groupe"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "teaching activity"
+ ],
+ "synsets": [
+ "08327319-n",
+ "15228025-n"
+ ],
+ "tags": [
+ "education",
+ "teaching activity"
+ ],
+ "_id": 27575,
+ "created": "2013-01-23T13:34:14.000Z",
+ "lastUpdated": "2021-08-01T21:51:16.389Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "temps de parole",
+ "plural": "temps de parole"
+ },
+ {
+ "keyword": "temps de groupe",
+ "hasLocution": false,
+ "plural": "temps de groupe",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00142216-n",
+ "02154469-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 27586,
+ "created": "2013-01-24T10:50:12.000Z",
+ "lastUpdated": "2021-07-29T06:29:19.753Z",
+ "keywords": [
+ {
+ "keyword": "autopsie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "autopsies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "condiment",
+ "cookery"
+ ],
+ "synsets": [
+ "07612023-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment",
+ "cookery"
+ ],
+ "_id": 27590,
+ "created": "2013-01-24T10:58:11.000Z",
+ "lastUpdated": "2021-07-29T06:28:15.447Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sucre roux",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08867086-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27591,
+ "created": "2013-01-24T11:01:09.000Z",
+ "lastUpdated": "2021-07-29T06:28:03.408Z",
+ "keywords": [
+ {
+ "keyword": "Bahrain",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories",
+ "routine"
+ ],
+ "synsets": [
+ "00421085-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories",
+ "person",
+ "routine"
+ ],
+ "_id": 27566,
+ "created": "2013-01-23T13:10:01.000Z",
+ "lastUpdated": "2021-07-29T06:30:52.888Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attacher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "fermer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "04529282-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 27592,
+ "created": "2013-01-24T11:04:15.000Z",
+ "lastUpdated": "2021-07-29T06:27:41.438Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vernis",
+ "hasLocution": true,
+ "plural": "vernis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "01271572-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 27596,
+ "created": "2013-01-24T11:12:03.000Z",
+ "lastUpdated": "2021-07-29T06:27:23.542Z",
+ "keywords": [
+ {
+ "keyword": "vernir",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02422442-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 27570,
+ "created": "2013-01-23T13:25:04.000Z",
+ "lastUpdated": "2021-07-29T06:30:30.038Z",
+ "keywords": [
+ {
+ "keyword": "antilope",
+ "hasLocution": false,
+ "plural": "antilopes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "patient"
+ ],
+ "synsets": [
+ "02493222-v",
+ "02722642-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "person",
+ "patient"
+ ],
+ "_id": 27568,
+ "created": "2013-01-23T13:17:01.000Z",
+ "lastUpdated": "2021-07-29T06:30:41.331Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "visiter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "accompagner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "15064135-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 27599,
+ "created": "2013-01-24T11:18:25.000Z",
+ "lastUpdated": "2021-07-29T06:26:46.041Z",
+ "keywords": [
+ {
+ "keyword": "cirage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cirages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "14997692-n",
+ "14975249-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 27604,
+ "created": "2013-01-24T11:38:00.000Z",
+ "lastUpdated": "2021-07-29T06:43:45.860Z",
+ "keywords": [
+ {
+ "keyword": "carnet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "carnets"
+ },
+ {
+ "keyword": "carnet de notes",
+ "hasLocution": false,
+ "plural": "carnets de notes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room"
+ ],
+ "synsets": [
+ "02995302-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room"
+ ],
+ "_id": 27608,
+ "created": "2013-01-24T11:43:24.000Z",
+ "lastUpdated": "2021-07-29T06:23:38.277Z",
+ "keywords": [
+ {
+ "keyword": "cave",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "caves"
+ },
+ {
+ "keyword": "cellier à vin",
+ "hasLocution": false,
+ "plural": "celliers à vin",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08733223-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27603,
+ "created": "2013-01-24T11:27:54.000Z",
+ "lastUpdated": "2021-07-29T06:25:39.325Z",
+ "keywords": [
+ {
+ "keyword": "Myanmar",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Birmanie",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "02885542-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 27612,
+ "created": "2013-01-24T11:55:17.000Z",
+ "lastUpdated": "2021-07-29T06:23:00.697Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boule de bowling",
+ "hasLocution": false,
+ "plural": "boules de bowling"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "trade"
+ ],
+ "synsets": [
+ "04211127-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 27616,
+ "created": "2013-01-24T12:05:22.000Z",
+ "lastUpdated": "2024-12-09T11:43:42.381Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sac",
+ "hasLocution": true,
+ "plural": "sacs"
+ },
+ {
+ "keyword": "sac de courses",
+ "hasLocution": false,
+ "plural": "sacs de courses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "beach",
+ "summer"
+ ],
+ "synsets": [
+ "02777157-n"
+ ],
+ "tags": [
+ "accessories",
+ "leisure",
+ "outdoor activity",
+ "beach",
+ "summer"
+ ],
+ "_id": 27620,
+ "created": "2013-01-24T12:11:12.000Z",
+ "lastUpdated": "2024-12-09T11:43:01.257Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sac",
+ "hasLocution": true,
+ "plural": "sacs"
+ },
+ {
+ "keyword": "sac à main",
+ "hasLocution": false,
+ "plural": "sacs à main",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "05269065-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 27601,
+ "created": "2013-01-24T11:24:06.000Z",
+ "lastUpdated": "2021-07-29T06:26:09.669Z",
+ "keywords": [
+ {
+ "keyword": "moustaches",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08871201-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27625,
+ "created": "2013-01-24T12:29:33.000Z",
+ "lastUpdated": "2021-07-29T06:20:15.065Z",
+ "keywords": [
+ {
+ "keyword": "Bhoutan",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08916319-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27624,
+ "created": "2013-01-24T12:28:24.000Z",
+ "lastUpdated": "2021-07-29T06:20:54.146Z",
+ "keywords": [
+ {
+ "keyword": "Brunei",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "01961388-v",
+ "01927367-v",
+ "00451320-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 27626,
+ "created": "2013-01-24T12:32:01.000Z",
+ "lastUpdated": "2021-07-29T06:19:19.133Z",
+ "keywords": [
+ {
+ "keyword": "monter",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "monter à cheval",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08755354-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27598,
+ "created": "2013-01-24T11:15:54.000Z",
+ "lastUpdated": "2021-07-29T06:27:14.523Z",
+ "keywords": [
+ {
+ "keyword": "Bélize",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "01961388-v",
+ "01927367-v",
+ "00451320-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 27627,
+ "created": "2013-01-24T12:32:45.000Z",
+ "lastUpdated": "2021-07-29T06:18:51.097Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "équitation",
+ "hasLocution": true
+ },
+ {
+ "keyword": "monter",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "monter à cheval",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "monte",
+ "type": 2,
+ "plural": "montes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02189819-v",
+ "01208838-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 27631,
+ "created": "2013-01-28T11:37:19.000Z",
+ "lastUpdated": "2021-07-29T06:22:40.910Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tape",
+ "hasLocution": false,
+ "plural": "tapes"
+ },
+ {
+ "keyword": "touche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "touches"
+ },
+ {
+ "keyword": "taper dans le dos",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "taper sur l'épaule",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "appeler",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02189819-v",
+ "01208838-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 27632,
+ "created": "2013-01-28T11:37:44.000Z",
+ "lastUpdated": "2021-07-29T06:17:05.342Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tape",
+ "hasLocution": false,
+ "plural": "tapes"
+ },
+ {
+ "keyword": "touche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "touches"
+ },
+ {
+ "keyword": "taper dans le dos",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "taper sur l'épaule",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "appeler",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "domestic animal",
+ "pet"
+ ],
+ "synsets": [
+ "01821756-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "domestic",
+ "pet"
+ ],
+ "_id": 27640,
+ "created": "2013-01-28T11:47:21.000Z",
+ "lastUpdated": "2021-07-29T06:15:08.952Z",
+ "keywords": [
+ {
+ "keyword": "cacatoès",
+ "hasLocution": false,
+ "plural": "cacatoès",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08734571-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27646,
+ "created": "2013-01-28T11:55:37.000Z",
+ "lastUpdated": "2021-07-29T06:14:36.210Z",
+ "keywords": [
+ {
+ "keyword": "Cambodge",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "00371917-v",
+ "00158311-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 27644,
+ "created": "2013-01-28T11:51:54.000Z",
+ "lastUpdated": "2024-12-05T12:18:19.058Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "monter la température",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "réchauffer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "02783939-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 27647,
+ "created": "2013-01-28T12:00:14.000Z",
+ "lastUpdated": "2021-07-29T06:14:25.851Z",
+ "keywords": [
+ {
+ "keyword": "terrain de baseball",
+ "hasLocution": false,
+ "plural": "terrains de baseball",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02189819-v",
+ "01208838-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 27630,
+ "created": "2013-01-28T11:35:16.000Z",
+ "lastUpdated": "2021-07-29T06:17:54.021Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tape",
+ "hasLocution": false,
+ "plural": "tapes"
+ },
+ {
+ "keyword": "touche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "touches"
+ },
+ {
+ "keyword": "taper dans le dos",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "taper sur l'épaule",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "appeler",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03012598-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 27651,
+ "created": "2013-01-28T18:13:25.000Z",
+ "lastUpdated": "2021-07-29T06:12:19.808Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chargeur",
+ "hasLocution": false,
+ "plural": "chargeurs"
+ },
+ {
+ "keyword": "chargeur de batterie",
+ "hasLocution": false,
+ "plural": "chargeurs de batterie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10401503-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 27662,
+ "created": "2013-01-28T19:25:24.000Z",
+ "lastUpdated": "2021-07-28T08:55:34.301Z",
+ "keywords": [
+ {
+ "keyword": "aide-soignant",
+ "hasLocution": false,
+ "plural": "aide-soignants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware",
+ "computing",
+ "document"
+ ],
+ "synsets": [
+ "03576857-n",
+ "02975641-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware",
+ "document"
+ ],
+ "_id": 27655,
+ "created": "2013-01-28T18:28:47.000Z",
+ "lastUpdated": "2024-12-10T06:43:13.299Z",
+ "keywords": [
+ {
+ "keyword": "cartouche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cartouches"
+ },
+ {
+ "keyword": "cartouche d'encre",
+ "hasLocution": false,
+ "plural": "cartouches d'encre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10401503-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 27661,
+ "created": "2013-01-28T19:24:31.000Z",
+ "lastUpdated": "2021-07-28T08:55:47.954Z",
+ "keywords": [
+ {
+ "keyword": "aide-soignant",
+ "hasLocution": false,
+ "plural": "aide-soignants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10401503-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 27663,
+ "created": "2013-01-28T19:25:59.000Z",
+ "lastUpdated": "2021-07-28T08:55:20.657Z",
+ "keywords": [
+ {
+ "keyword": "aide-soignante",
+ "hasLocution": false,
+ "plural": "aide-soignantes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "crustacean",
+ "oviparous",
+ "marine animal",
+ "fishing",
+ "wild animal"
+ ],
+ "synsets": [
+ "01984343-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "crustacean",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing",
+ "wild"
+ ],
+ "_id": 27673,
+ "created": "2013-01-29T09:41:36.000Z",
+ "lastUpdated": "2021-07-28T08:54:45.618Z",
+ "keywords": [
+ {
+ "keyword": "araignée de mer",
+ "hasLocution": false,
+ "plural": "araignées de mer",
+ "type": 2
+ },
+ {
+ "keyword": "crabe araignée",
+ "hasLocution": false,
+ "plural": "crabes araignées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "official document"
+ ],
+ "synsets": [
+ "06483016-n"
+ ],
+ "tags": [
+ "document",
+ "public administration"
+ ],
+ "_id": 27677,
+ "created": "2013-01-29T09:46:07.000Z",
+ "lastUpdated": "2021-07-28T08:53:25.065Z",
+ "keywords": [
+ {
+ "keyword": "certificat",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "certificats"
+ },
+ {
+ "keyword": "certification",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "certifications"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "02683191-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 27681,
+ "created": "2013-01-29T09:52:39.000Z",
+ "lastUpdated": "2021-07-28T08:52:42.397Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ruban adhésif",
+ "hasLocution": true,
+ "plural": "rubans adhésifs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "communication system"
+ ],
+ "synsets": [
+ "00742582-v",
+ "01072124-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "augmentative communication",
+ "communication system"
+ ],
+ "_id": 27685,
+ "created": "2013-01-29T09:57:57.000Z",
+ "lastUpdated": "2021-07-28T08:52:26.669Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "communiquer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "14824204-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 27659,
+ "created": "2013-01-28T18:35:15.000Z",
+ "lastUpdated": "2021-07-28T08:56:19.681Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cartes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "fiches",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "computing"
+ ],
+ "synsets": [
+ "06686933-n",
+ "06365341-n"
+ ],
+ "tags": [
+ "computing"
+ ],
+ "_id": 27691,
+ "created": "2013-01-29T10:08:28.000Z",
+ "lastUpdated": "2021-07-28T08:52:04.004Z",
+ "keywords": [
+ {
+ "keyword": "mot de passe",
+ "hasLocution": false,
+ "plural": "mots de passe",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "domestic animal",
+ "pet"
+ ],
+ "synsets": [
+ "01819528-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "domestic",
+ "pet"
+ ],
+ "_id": 27699,
+ "created": "2013-01-29T10:40:29.000Z",
+ "lastUpdated": "2021-07-28T08:51:40.828Z",
+ "keywords": [
+ {
+ "keyword": "perroquet",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "perroquets"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "hairdresser"
+ ],
+ "synsets": [
+ "00562167-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 27696,
+ "created": "2013-01-29T10:35:17.000Z",
+ "lastUpdated": "2021-07-28T08:51:43.255Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couper les cheveux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00786536-v",
+ "00668361-s",
+ "00667636-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 27703,
+ "created": "2013-01-29T10:47:17.000Z",
+ "lastUpdated": "2021-07-30T00:05:44.650Z",
+ "keywords": [
+ {
+ "keyword": "curieuse",
+ "type": 4,
+ "hasLocution": false,
+ "plural": "curieuses"
+ },
+ {
+ "hasLocution": false,
+ "type": 3,
+ "keyword": "être indiscret"
+ },
+ {
+ "keyword": "fouineuse",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "fouineuses"
+ },
+ {
+ "keyword": "indiscrète",
+ "hasLocution": false,
+ "plural": "indiscrètes",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00786536-v",
+ "00668361-s",
+ "00667636-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 27705,
+ "created": "2013-01-29T10:50:14.000Z",
+ "lastUpdated": "2021-07-30T00:05:37.486Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "curieux",
+ "hasLocution": true,
+ "plural": "curieux"
+ },
+ {
+ "hasLocution": false,
+ "type": 3,
+ "keyword": "être indiscret"
+ },
+ {
+ "keyword": "fouineur",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "fouineurs"
+ },
+ {
+ "keyword": "indiscret",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "indiscrets"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00786536-v",
+ "00668361-s",
+ "00667636-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 27706,
+ "created": "2013-01-29T10:50:47.000Z",
+ "lastUpdated": "2021-07-30T00:05:32.110Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "curieux",
+ "hasLocution": true,
+ "plural": "curieux"
+ },
+ {
+ "hasLocution": false,
+ "type": 3,
+ "keyword": "être indiscret"
+ },
+ {
+ "keyword": "fouineur",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "fouineurs"
+ },
+ {
+ "keyword": "indiscret",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "indiscrets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "christmas"
+ ],
+ "synsets": [
+ "01679858-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 27715,
+ "created": "2013-01-29T10:58:15.000Z",
+ "lastUpdated": "2021-07-28T08:46:03.376Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "décorer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "orner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "building facility",
+ "security and defense"
+ ],
+ "synsets": [
+ "01496967-v",
+ "01496398-v",
+ "01578506-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 27717,
+ "created": "2013-01-29T11:02:22.000Z",
+ "lastUpdated": "2021-07-28T08:45:57.707Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mettre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "laisser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déposer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "01038365-n",
+ "00762447-v"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "religious event",
+ "christianity"
+ ],
+ "_id": 27687,
+ "created": "2013-01-29T10:02:48.000Z",
+ "lastUpdated": "2021-07-28T08:52:21.242Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "communion",
+ "hasLocution": true,
+ "plural": "communions"
+ },
+ {
+ "type": 2,
+ "keyword": "première communion",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "hairdresser"
+ ],
+ "synsets": [
+ "00562167-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 27695,
+ "created": "2013-01-29T10:34:30.000Z",
+ "lastUpdated": "2021-07-28T08:51:47.058Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couper les cheveux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "official document"
+ ],
+ "synsets": [
+ "06490253-n"
+ ],
+ "tags": [
+ "document",
+ "public administration"
+ ],
+ "_id": 27724,
+ "created": "2013-01-29T11:38:26.000Z",
+ "lastUpdated": "2021-07-28T08:44:38.640Z",
+ "keywords": [
+ {
+ "keyword": "diplôme",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "diplômes"
+ },
+ {
+ "keyword": "certificat",
+ "type": 2,
+ "plural": "certificats",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09066665-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27730,
+ "created": "2013-01-29T11:44:28.000Z",
+ "lastUpdated": "2021-07-28T08:43:29.730Z",
+ "keywords": [
+ {
+ "keyword": "Emirats Arabes Unis",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular event"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event"
+ ],
+ "_id": 27723,
+ "created": "2013-01-29T11:34:30.000Z",
+ "lastUpdated": "2021-07-29T06:11:46.224Z",
+ "keywords": [
+ {
+ "keyword": "Fête nationale de la Catalogne",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00035252-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 27728,
+ "created": "2013-01-29T11:41:16.000Z",
+ "lastUpdated": "2021-07-28T08:43:48.832Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "doucher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se doucher",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "prendre une douche",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01483990-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 27731,
+ "created": "2013-01-29T11:45:57.000Z",
+ "lastUpdated": "2021-07-30T00:05:18.770Z",
+ "keywords": [
+ {
+ "keyword": "envoyer sur le toit",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "envoyer en l'air",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01483990-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 27732,
+ "created": "2013-01-29T11:46:16.000Z",
+ "lastUpdated": "2021-07-30T00:05:13.266Z",
+ "keywords": [
+ {
+ "keyword": "envoyer sur le toit",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "envoyer en l'air",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "00268741-v",
+ "00371065-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 27735,
+ "created": "2013-01-29T11:49:01.000Z",
+ "lastUpdated": "2021-07-28T08:42:31.697Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baisser la température",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rafraichir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "carnival"
+ ],
+ "synsets": [
+ "00512566-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "carnival"
+ ],
+ "_id": 27737,
+ "created": "2013-01-29T11:52:04.000Z",
+ "lastUpdated": "2021-07-29T06:10:09.212Z",
+ "keywords": [
+ {
+ "keyword": "L'Enterrement de la sardine",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "mountain"
+ ],
+ "synsets": [
+ "01925957-v",
+ "10555161-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 27739,
+ "created": "2013-01-29T11:57:22.000Z",
+ "lastUpdated": "2021-07-28T08:42:16.669Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grimpeur",
+ "hasLocution": true,
+ "plural": "grimpeurs"
+ },
+ {
+ "type": 2,
+ "keyword": "alpiniste",
+ "hasLocution": false,
+ "plural": "alpiniste"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "verb"
+ ],
+ "synsets": [
+ "04458589-n",
+ "00647592-v",
+ "02135744-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 27719,
+ "created": "2013-01-29T11:06:40.000Z",
+ "lastUpdated": "2024-12-10T08:18:11.189Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "explorer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "examiner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "abaisse-langue",
+ "hasLocution": false,
+ "plural": "abaisse-langues",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "mountain"
+ ],
+ "synsets": [
+ "01925957-v",
+ "10555161-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 27740,
+ "created": "2013-01-29T11:58:17.000Z",
+ "lastUpdated": "2021-07-28T08:41:52.910Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grimpeuse",
+ "hasLocution": false,
+ "plural": "grimpeuses"
+ },
+ {
+ "type": 2,
+ "keyword": "alpiniste",
+ "hasLocution": false,
+ "plural": "alpinistes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage"
+ ],
+ "synsets": [
+ "02074224-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 27746,
+ "created": "2013-01-29T12:56:41.000Z",
+ "lastUpdated": "2021-07-28T08:40:23.439Z",
+ "keywords": [
+ {
+ "keyword": "verser",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "07286877-n",
+ "07287841-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 27749,
+ "created": "2013-01-29T13:01:03.000Z",
+ "lastUpdated": "2021-07-28T08:40:11.968Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étiquette",
+ "hasLocution": true,
+ "plural": "étiquettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01591414-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 27754,
+ "created": "2013-01-29T13:03:53.000Z",
+ "lastUpdated": "2021-07-28T08:40:04.022Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étiqueter",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage"
+ ],
+ "synsets": [
+ "02074224-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 27745,
+ "created": "2013-01-29T12:56:13.000Z",
+ "lastUpdated": "2021-07-28T08:40:31.210Z",
+ "keywords": [
+ {
+ "keyword": "verser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "05555537-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 27755,
+ "created": "2013-01-29T13:05:53.000Z",
+ "lastUpdated": "2021-07-29T06:09:14.301Z",
+ "keywords": [
+ {
+ "keyword": "machoires",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 27757,
+ "created": "2013-01-29T13:09:03.000Z",
+ "lastUpdated": "2021-07-30T08:31:13.106Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fideuá",
+ "hasLocution": false
+ },
+ {
+ "keyword": "paella aux pâtes et poissons",
+ "hasLocution": false,
+ "plural": "paellas aux pâtes et poissons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media"
+ ],
+ "synsets": [
+ "01005094-v",
+ "01000444-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mass media"
+ ],
+ "_id": 27762,
+ "created": "2013-01-29T13:17:07.000Z",
+ "lastUpdated": "2021-07-29T06:09:10.026Z",
+ "keywords": [
+ {
+ "keyword": "filmer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enregistrer une vidéo",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09003614-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27761,
+ "created": "2013-01-29T13:13:31.000Z",
+ "lastUpdated": "2021-07-28T08:38:26.414Z",
+ "keywords": [
+ {
+ "keyword": "Philippines",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "light fixture"
+ ],
+ "synsets": [
+ "04293713-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 27764,
+ "created": "2013-01-29T13:20:42.000Z",
+ "lastUpdated": "2021-07-28T08:37:44.802Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "projecteur",
+ "hasLocution": true,
+ "plural": "projecteurs"
+ },
+ {
+ "keyword": "spot",
+ "type": 2,
+ "plural": "spots",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport modality",
+ "mountain"
+ ],
+ "synsets": [
+ "01925957-v",
+ "10555161-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport modality",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 27741,
+ "created": "2013-01-29T11:58:50.000Z",
+ "lastUpdated": "2021-07-29T06:09:18.339Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "escalader",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "grimpeur",
+ "hasLocution": true,
+ "plural": "grimpeurs"
+ },
+ {
+ "type": 3,
+ "keyword": "grimper",
+ "hasLocution": true
+ },
+ {
+ "keyword": "escalade",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "river animal",
+ "terrestrial animal",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01858313-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "terrestrial animal",
+ "domestic"
+ ],
+ "_id": 27780,
+ "created": "2013-01-29T13:38:56.000Z",
+ "lastUpdated": "2021-07-28T08:35:28.846Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oie",
+ "hasLocution": true,
+ "plural": "oies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07769719-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 27776,
+ "created": "2013-01-29T13:34:15.000Z",
+ "lastUpdated": "2021-07-28T08:35:55.106Z",
+ "keywords": [
+ {
+ "keyword": "fruit de la passion",
+ "hasLocution": false,
+ "plural": "fruits de la passion",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "07398623-n",
+ "00037131-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 27784,
+ "created": "2013-01-29T13:46:21.000Z",
+ "lastUpdated": "2021-07-28T08:35:19.507Z",
+ "keywords": [
+ {
+ "keyword": "gargarisme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gargarismes"
+ },
+ {
+ "keyword": "gargariser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "language",
+ "educational task"
+ ],
+ "synsets": [
+ "06327041-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "education",
+ "educational task"
+ ],
+ "_id": 27768,
+ "created": "2013-01-29T13:24:18.000Z",
+ "lastUpdated": "2021-07-28T08:37:18.983Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "phrase",
+ "hasLocution": true,
+ "plural": "phrase"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "03276676-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 27772,
+ "created": "2013-01-29T13:28:43.000Z",
+ "lastUpdated": "2021-07-29T06:09:07.412Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "friteuse électrique",
+ "hasLocution": true,
+ "plural": "friteuses électriques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "02158792-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 27786,
+ "created": "2013-01-29T13:49:41.000Z",
+ "lastUpdated": "2021-07-29T06:09:03.693Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "griffe",
+ "hasLocution": true,
+ "plural": "griffes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "02158792-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 27787,
+ "created": "2013-01-29T13:50:03.000Z",
+ "lastUpdated": "2021-07-29T06:09:02.351Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "griffe",
+ "hasLocution": true,
+ "plural": "griffes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03435001-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 27794,
+ "created": "2013-01-29T14:02:26.000Z",
+ "lastUpdated": "2021-07-29T06:09:00.074Z",
+ "keywords": [
+ {
+ "keyword": "compresse",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "compresses"
+ },
+ {
+ "keyword": "gaze",
+ "hasLocution": false,
+ "plural": "gazes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "04216200-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 27802,
+ "created": "2013-01-31T10:15:31.000Z",
+ "lastUpdated": "2021-07-28T08:33:14.085Z",
+ "keywords": [
+ {
+ "keyword": "bonnet de douche",
+ "hasLocution": false,
+ "plural": "bonnets de douche",
+ "type": 2
+ },
+ {
+ "keyword": "charlotte",
+ "hasLocution": true,
+ "plural": "charlottes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03445436-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 27798,
+ "created": "2013-01-31T10:08:13.000Z",
+ "lastUpdated": "2021-07-29T06:08:56.652Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "globe",
+ "hasLocution": false,
+ "plural": "globes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "07447435-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 27806,
+ "created": "2013-01-31T10:19:48.000Z",
+ "lastUpdated": "2021-07-28T08:32:41.859Z",
+ "keywords": [
+ {
+ "keyword": "perfusion intraveineuse",
+ "hasLocution": false,
+ "plural": "perfusions intraveineuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "04310233-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 27814,
+ "created": "2013-01-31T10:36:20.000Z",
+ "lastUpdated": "2021-07-29T06:08:50.621Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "agrafes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room"
+ ],
+ "synsets": [
+ "03457393-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room"
+ ],
+ "_id": 27810,
+ "created": "2013-01-31T10:32:39.000Z",
+ "lastUpdated": "2021-07-28T08:32:18.495Z",
+ "keywords": [
+ {
+ "keyword": "grenier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "greniers"
+ },
+ {
+ "keyword": "grenier à grains",
+ "hasLocution": false,
+ "plural": "greniers à grains",
+ "type": 2
+ },
+ {
+ "keyword": "grange",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "granges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "covid-19",
+ "core vocabulary-knowledge",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "03446036-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "covid-19",
+ "core vocabulary"
+ ],
+ "_id": 27817,
+ "created": "2013-01-31T12:40:20.000Z",
+ "lastUpdated": "2021-07-28T08:31:06.924Z",
+ "keywords": [
+ {
+ "keyword": "gants chirurgicaux",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "10171090-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 27822,
+ "created": "2013-02-07T12:07:21.000Z",
+ "lastUpdated": "2021-07-29T06:08:46.370Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guide",
+ "hasLocution": true,
+ "plural": "guides"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "body sensation"
+ ],
+ "synsets": [
+ "00145265-n",
+ "02124605-v"
+ ],
+ "tags": [
+ "human body",
+ "body sensation"
+ ],
+ "_id": 27833,
+ "created": "2013-02-07T12:12:56.000Z",
+ "lastUpdated": "2021-07-28T08:30:32.304Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chatouilles",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "chatouiller",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08769327-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27835,
+ "created": "2013-02-07T12:18:39.000Z",
+ "lastUpdated": "2021-07-28T08:30:25.635Z",
+ "keywords": [
+ {
+ "keyword": "Haïti",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "03026168-a",
+ "03568890-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 27840,
+ "created": "2013-02-07T13:08:16.000Z",
+ "lastUpdated": "2021-07-28T08:29:04.932Z",
+ "keywords": [
+ {
+ "keyword": "implant cochléaire",
+ "plural": "implants cochléaires",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "03026168-a",
+ "03568890-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 27841,
+ "created": "2013-02-07T13:10:22.000Z",
+ "lastUpdated": "2021-07-29T06:08:41.510Z",
+ "keywords": [
+ {
+ "keyword": "implant cochléaire",
+ "plural": "implants cochléaires",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "03026168-a",
+ "03568890-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 27842,
+ "created": "2013-02-07T13:10:44.000Z",
+ "lastUpdated": "2021-07-29T06:08:38.325Z",
+ "keywords": [
+ {
+ "keyword": "implant cochléaire",
+ "hasLocution": false,
+ "plural": "implants cochléaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "07856780-n",
+ "02974815-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 27836,
+ "created": "2013-02-07T12:22:04.000Z",
+ "lastUpdated": "2021-07-28T08:30:11.162Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boite à oeufs",
+ "hasLocution": false,
+ "plural": "boites à oeufs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "domestic animal",
+ "pet"
+ ],
+ "synsets": [
+ "01533819-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "domestic",
+ "pet"
+ ],
+ "_id": 27853,
+ "created": "2013-02-07T13:25:14.000Z",
+ "lastUpdated": "2021-07-28T08:22:38.610Z",
+ "keywords": [
+ {
+ "keyword": "chardonneret",
+ "hasLocution": false,
+ "plural": "chardonnerets",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08946959-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27857,
+ "created": "2013-02-07T13:31:39.000Z",
+ "lastUpdated": "2021-07-28T08:22:19.205Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Jordanie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "10171090-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 27823,
+ "created": "2013-02-07T12:07:47.000Z",
+ "lastUpdated": "2021-07-29T06:08:44.058Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guide",
+ "hasLocution": true,
+ "plural": "guides"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08927379-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27852,
+ "created": "2013-02-07T13:21:05.000Z",
+ "lastUpdated": "2021-07-28T08:27:56.382Z",
+ "keywords": [
+ {
+ "keyword": "Indonésie",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09042096-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27858,
+ "created": "2013-02-13T10:01:47.000Z",
+ "lastUpdated": "2021-07-28T08:22:16.093Z",
+ "keywords": [
+ {
+ "keyword": "Kazakhstan",
+ "type": 1,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09042810-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27859,
+ "created": "2013-02-13T10:04:34.000Z",
+ "lastUpdated": "2021-07-28T08:21:48.662Z",
+ "keywords": [
+ {
+ "keyword": "Kirghizistan",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08949016-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27860,
+ "created": "2013-02-13T10:06:21.000Z",
+ "lastUpdated": "2021-07-28T08:21:15.267Z",
+ "keywords": [
+ {
+ "keyword": "Koweit",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08976533-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27861,
+ "created": "2013-02-13T10:08:26.000Z",
+ "lastUpdated": "2021-07-28T08:21:03.005Z",
+ "keywords": [
+ {
+ "keyword": "Laos",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08977154-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27862,
+ "created": "2013-02-13T10:10:26.000Z",
+ "lastUpdated": "2021-07-28T08:20:52.405Z",
+ "keywords": [
+ {
+ "keyword": "Liban",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "10171090-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 27821,
+ "created": "2013-02-07T12:03:14.000Z",
+ "lastUpdated": "2021-07-29T06:08:48.720Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guide",
+ "hasLocution": true,
+ "plural": "guides"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08983142-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27863,
+ "created": "2013-02-13T10:14:36.000Z",
+ "lastUpdated": "2021-07-28T08:20:43.145Z",
+ "keywords": [
+ {
+ "keyword": "Malaisie",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08987602-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 27864,
+ "created": "2013-02-13T10:17:20.000Z",
+ "lastUpdated": "2021-07-28T08:20:10.650Z",
+ "keywords": [
+ {
+ "keyword": "Maldives",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "10285087-n",
+ "00884232-n",
+ "00629632-v"
+ ],
+ "tags": [],
+ "_id": 27873,
+ "created": "2013-02-20T13:51:32.000Z",
+ "lastUpdated": "2021-07-29T06:08:35.601Z",
+ "keywords": [
+ {
+ "keyword": "lire sur les lèvres",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "lecture sur les lèvres",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cosmetic",
+ "carnival"
+ ],
+ "synsets": [
+ "00040659-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "cosmetic",
+ "event",
+ "popular event",
+ "carnival"
+ ],
+ "_id": 27875,
+ "created": "2013-02-20T13:58:38.000Z",
+ "lastUpdated": "2021-07-28T08:16:08.166Z",
+ "keywords": [
+ {
+ "keyword": "maquillage",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "maquillages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "medical equipment"
+ ],
+ "synsets": [
+ "03875968-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "medical equipment"
+ ],
+ "_id": 27877,
+ "created": "2013-02-21T10:31:47.000Z",
+ "lastUpdated": "2021-07-29T06:08:02.328Z",
+ "keywords": [
+ {
+ "keyword": "pacemaker",
+ "hasLocution": false,
+ "plural": "pacemakers",
+ "type": 2
+ },
+ {
+ "keyword": "stimulateur cardiaque",
+ "hasLocution": false,
+ "plural": "stimulateurs cardiaques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "protective equipment"
+ ],
+ "synsets": [
+ "03730526-n",
+ "03429235-n"
+ ],
+ "tags": [
+ "work",
+ "clothes",
+ "workwear",
+ "protective equipment"
+ ],
+ "_id": 27881,
+ "created": "2013-02-21T10:40:14.000Z",
+ "lastUpdated": "2021-07-28T08:14:59.195Z",
+ "keywords": [
+ {
+ "keyword": "masque à gaz",
+ "hasLocution": false,
+ "plural": "masques à gaz",
+ "type": 2
+ },
+ {
+ "keyword": "masque",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "masques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "rural area"
+ ],
+ "synsets": [
+ "08694988-n"
+ ],
+ "tags": [
+ "place",
+ "rural area"
+ ],
+ "_id": 27885,
+ "created": "2013-02-21T10:45:09.000Z",
+ "lastUpdated": "2021-07-28T08:14:15.404Z",
+ "keywords": [
+ {
+ "keyword": "point de vue",
+ "hasLocution": false,
+ "plural": "points de vue",
+ "type": 2
+ },
+ {
+ "keyword": "panorama",
+ "type": 2,
+ "plural": "panoramas",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00035769-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 27869,
+ "created": "2013-02-20T13:31:38.000Z",
+ "lastUpdated": "2021-07-28T08:18:49.936Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "nettoyer le derrière",
+ "hasLocution": false
+ },
+ {
+ "keyword": "nettoyer les fesses",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "essuyer les fesses",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "keyword": "essuyer le derrière",
+ "type": 3
+ },
+ {
+ "keyword": "s'essuyer",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'essuyer les fesses",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "footwear"
+ ],
+ "synsets": [
+ "01248201-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 27871,
+ "created": "2013-02-20T13:35:02.000Z",
+ "lastUpdated": "2021-03-13T14:34:45.250Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "nettoyer les chaussures ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "cirer les chaussures",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire briller les chaussures",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "rural area",
+ "sea and oceans"
+ ],
+ "synsets": [
+ "08694988-n"
+ ],
+ "tags": [
+ "place",
+ "rural area",
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean"
+ ],
+ "_id": 27889,
+ "created": "2013-02-21T10:47:54.000Z",
+ "lastUpdated": "2021-07-28T08:14:21.671Z",
+ "keywords": [
+ {
+ "keyword": "point de vue",
+ "hasLocution": false,
+ "plural": "points de vue",
+ "type": 2
+ },
+ {
+ "keyword": "panorama",
+ "type": 2,
+ "plural": "panoramas",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "official document",
+ "construction"
+ ],
+ "synsets": [
+ "01141515-n"
+ ],
+ "tags": [
+ "document",
+ "public administration",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 27865,
+ "created": "2013-02-20T13:27:51.000Z",
+ "lastUpdated": "2021-07-28T08:19:59.814Z",
+ "keywords": [
+ {
+ "keyword": "permis de construire",
+ "plural": "permis de construire",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "autorisation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "autorisations"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02838476-n",
+ "02106676-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 27900,
+ "created": "2013-02-21T11:11:33.000Z",
+ "lastUpdated": "2021-07-28T08:10:56.284Z",
+ "keywords": [
+ {
+ "keyword": "faire du tandem",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rouler en tandem",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07706018-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 27903,
+ "created": "2013-02-21T11:29:29.000Z",
+ "lastUpdated": "2021-07-28T08:10:35.700Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "muffin",
+ "hasLocution": true,
+ "plural": "muffins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "02167732-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 27897,
+ "created": "2013-02-21T10:58:38.000Z",
+ "lastUpdated": "2021-07-29T06:07:57.897Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "monitorer"
+ },
+ {
+ "keyword": "surveiller",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport"
+ ],
+ "synsets": [
+ "02838476-n",
+ "02106676-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 27899,
+ "created": "2013-02-21T11:10:58.000Z",
+ "lastUpdated": "2021-07-28T08:27:46.488Z",
+ "keywords": [
+ {
+ "keyword": "faire du tandem",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rouler en tandem",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07706018-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 27904,
+ "created": "2013-02-21T11:30:21.000Z",
+ "lastUpdated": "2021-07-28T08:10:30.845Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "muffin",
+ "hasLocution": true,
+ "plural": "muffins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "crustacean",
+ "oviparous",
+ "marine animal",
+ "fishing",
+ "wild animal"
+ ],
+ "synsets": [
+ "01979598-n",
+ "01982167-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "crustacean",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing",
+ "wild"
+ ],
+ "_id": 27909,
+ "created": "2013-02-21T11:35:15.000Z",
+ "lastUpdated": "2021-07-29T06:07:52.275Z",
+ "keywords": [
+ {
+ "keyword": "étrille",
+ "hasLocution": false,
+ "plural": "étrilles",
+ "type": 2
+ },
+ {
+ "keyword": "crabe",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "crabes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "13857084-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 27915,
+ "created": "2013-02-21T11:44:14.000Z",
+ "lastUpdated": "2021-07-28T08:07:58.702Z",
+ "keywords": [
+ {
+ "keyword": "nord-ouest",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "NO",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "13854042-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 27913,
+ "created": "2013-02-21T11:41:24.000Z",
+ "lastUpdated": "2021-07-28T08:08:20.280Z",
+ "keywords": [
+ {
+ "keyword": "nord-est",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "NE",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "07954834-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 27893,
+ "created": "2013-02-21T10:53:05.000Z",
+ "lastUpdated": "2021-07-28T08:12:29.404Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moule",
+ "hasLocution": true,
+ "plural": "moules"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "opera",
+ "show"
+ ],
+ "synsets": [
+ "07039821-n"
+ ],
+ "tags": [
+ "music",
+ "show",
+ "opera",
+ "leisure",
+ "work"
+ ],
+ "_id": 27921,
+ "created": "2013-03-02T11:27:13.000Z",
+ "lastUpdated": "2021-07-28T08:07:24.618Z",
+ "keywords": [
+ {
+ "keyword": "opéra",
+ "hasLocution": false,
+ "plural": "opéras",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "patient",
+ "covid-19"
+ ],
+ "synsets": [
+ "10425439-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "person",
+ "patient",
+ "covid-19"
+ ],
+ "_id": 27933,
+ "created": "2013-03-04T12:38:13.000Z",
+ "lastUpdated": "2021-07-28T08:06:11.832Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patient",
+ "hasLocution": true,
+ "plural": "patients"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "patient",
+ "covid-19"
+ ],
+ "synsets": [
+ "10425439-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "person",
+ "patient",
+ "covid-19"
+ ],
+ "_id": 27934,
+ "created": "2013-03-04T12:38:36.000Z",
+ "lastUpdated": "2021-07-28T08:06:05.023Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patiente",
+ "hasLocution": false,
+ "plural": "patientes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03265722-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 27929,
+ "created": "2013-03-04T12:34:42.000Z",
+ "lastUpdated": "2021-07-28T08:06:34.417Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oreillettes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "medicine"
+ ],
+ "synsets": [
+ "00672594-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 27925,
+ "created": "2013-03-04T12:27:21.000Z",
+ "lastUpdated": "2024-12-12T07:32:32.938Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "opération",
+ "hasLocution": true,
+ "plural": "opérations"
+ },
+ {
+ "keyword": "opération chirurgicale",
+ "hasLocution": false,
+ "plural": "opérations chirurgicales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport"
+ ],
+ "synsets": [
+ "03893954-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 27949,
+ "created": "2013-03-04T12:49:11.000Z",
+ "lastUpdated": "2021-07-28T08:05:41.324Z",
+ "keywords": [
+ {
+ "keyword": "parachute",
+ "hasLocution": false,
+ "plural": "parachutes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "patient",
+ "covid-19"
+ ],
+ "synsets": [
+ "10425439-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "person",
+ "patient",
+ "covid-19"
+ ],
+ "_id": 27935,
+ "created": "2013-03-04T12:38:54.000Z",
+ "lastUpdated": "2021-07-28T08:05:57.329Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patient",
+ "hasLocution": true,
+ "plural": "patients"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07607532-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 27945,
+ "created": "2013-03-04T12:45:14.000Z",
+ "lastUpdated": "2021-07-28T08:05:49.476Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "paëlla",
+ "hasLocution": true,
+ "plural": "paëllas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "05569140-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 27953,
+ "created": "2013-03-04T12:56:02.000Z",
+ "lastUpdated": "2021-07-28T08:05:28.610Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patte",
+ "hasLocution": true,
+ "plural": "pattes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "opera",
+ "show"
+ ],
+ "synsets": [
+ "07039821-n"
+ ],
+ "tags": [
+ "music",
+ "show",
+ "opera",
+ "leisure",
+ "work"
+ ],
+ "_id": 27917,
+ "created": "2013-03-02T11:21:21.000Z",
+ "lastUpdated": "2021-07-28T08:07:38.661Z",
+ "keywords": [
+ {
+ "keyword": "opéra",
+ "hasLocution": false,
+ "plural": "opéras",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "wild animal",
+ "pet"
+ ],
+ "synsets": [
+ "02609831-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "wild",
+ "pet"
+ ],
+ "_id": 27968,
+ "created": "2013-03-05T12:16:25.000Z",
+ "lastUpdated": "2021-07-28T08:03:55.359Z",
+ "keywords": [
+ {
+ "keyword": "poisson-clown",
+ "hasLocution": false,
+ "plural": "poissons-clowns",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "road safety",
+ "land transport",
+ "aerial transport",
+ "traffic"
+ ],
+ "synsets": [
+ "03364796-n",
+ "07329258-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "road safety",
+ "land transport",
+ "air transport"
+ ],
+ "_id": 27972,
+ "created": "2013-03-05T12:24:25.000Z",
+ "lastUpdated": "2024-12-08T15:33:56.424Z",
+ "keywords": [
+ {
+ "keyword": "crevaison",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "crevaisons"
+ },
+ {
+ "keyword": "pneu crevé",
+ "hasLocution": false,
+ "plural": "pneus crevés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool"
+ ],
+ "synsets": [
+ "01365439-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool"
+ ],
+ "_id": 27976,
+ "created": "2013-03-05T12:27:01.000Z",
+ "lastUpdated": "2021-03-25T21:47:23.550Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "peindre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "09848006-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 27957,
+ "created": "2013-03-04T12:59:57.000Z",
+ "lastUpdated": "2021-07-28T08:05:18.288Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pédiatre",
+ "hasLocution": true,
+ "plural": "pédiatres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00043211-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 27961,
+ "created": "2013-03-04T13:02:01.000Z",
+ "lastUpdated": "2021-07-29T06:07:50.348Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se parfumer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "parfumer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "vaporiser du parfum",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "porter du parfum",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "03896748-n",
+ "03061006-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 27978,
+ "created": "2013-03-05T12:30:55.000Z",
+ "lastUpdated": "2021-07-28T08:02:03.065Z",
+ "keywords": [
+ {
+ "keyword": "anorak",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "anoraks"
+ },
+ {
+ "keyword": "blouson",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "blousons"
+ },
+ {
+ "keyword": "coupe-vent",
+ "plural": "coupe-vents",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "parka",
+ "type": 2,
+ "plural": "parkas",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02285853-n",
+ "02286269-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "invertebrate",
+ "arthropod",
+ "insect",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 27982,
+ "created": "2013-03-05T12:35:00.000Z",
+ "lastUpdated": "2021-07-28T08:00:47.285Z",
+ "keywords": [
+ {
+ "keyword": "papillon de nuit",
+ "hasLocution": false,
+ "plural": "papillons de nuit",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "01173077-s"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 27986,
+ "created": "2013-03-05T12:42:55.000Z",
+ "lastUpdated": "2021-07-29T06:07:38.595Z",
+ "keywords": [
+ {
+ "keyword": "soins préopératoires",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "période préopératoire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "périodes préopératoires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "communication system"
+ ],
+ "synsets": [
+ "00931122-v",
+ "06888747-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "augmentative communication",
+ "communication system"
+ ],
+ "_id": 27963,
+ "created": "2013-03-04T13:03:26.000Z",
+ "lastUpdated": "2021-07-29T22:40:20.171Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "signer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "personne signant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "personnes signant"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective",
+ "athlete"
+ ],
+ "synsets": [
+ "13868396-n",
+ "00229886-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective",
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 27990,
+ "created": "2013-03-05T12:57:54.000Z",
+ "lastUpdated": "2021-07-28T07:58:37.004Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "première",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective",
+ "athlete"
+ ],
+ "synsets": [
+ "13868396-n",
+ "00229886-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective",
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 27992,
+ "created": "2013-03-05T13:01:39.000Z",
+ "lastUpdated": "2021-07-28T07:58:34.045Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "premier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals"
+ ],
+ "synsets": [
+ "10713754-n",
+ "10579780-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work"
+ ],
+ "_id": 28003,
+ "created": "2013-03-05T13:10:41.000Z",
+ "lastUpdated": "2021-07-28T07:58:00.921Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enseignante",
+ "hasLocution": false,
+ "plural": "enseignantes"
+ },
+ {
+ "type": 2,
+ "keyword": "professeure",
+ "hasLocution": false,
+ "plural": "professeures"
+ },
+ {
+ "keyword": "maîtresse",
+ "type": 2,
+ "plural": "maîtresses",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "01765887-s"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 28010,
+ "created": "2013-03-05T13:26:20.000Z",
+ "lastUpdated": "2021-07-29T06:08:23.952Z",
+ "keywords": [
+ {
+ "keyword": "pacemaker interdits",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "stimulateurs cardiaques interdits",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "01765887-s"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 28013,
+ "created": "2013-03-05T13:28:54.000Z",
+ "lastUpdated": "2021-07-29T06:07:20.572Z",
+ "keywords": [
+ {
+ "keyword": "implants cochléaires interdits",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals"
+ ],
+ "synsets": [
+ "10713754-n",
+ "10579780-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work"
+ ],
+ "_id": 28002,
+ "created": "2013-03-05T13:09:54.000Z",
+ "lastUpdated": "2021-07-28T07:58:25.512Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enseignant",
+ "hasLocution": false,
+ "plural": "enseignants"
+ },
+ {
+ "type": 2,
+ "keyword": "professeur",
+ "hasLocution": true
+ },
+ {
+ "keyword": "maitre",
+ "type": 2,
+ "plural": "maitres",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "international organziation",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "00962799-n"
+ ],
+ "tags": [
+ "international organization",
+ "work",
+ "professional",
+ "medicine"
+ ],
+ "_id": 28014,
+ "created": "2013-03-05T13:32:13.000Z",
+ "lastUpdated": "2024-06-02T09:25:19.733Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 1,
+ "keyword": "protection civile"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "processed food"
+ ],
+ "synsets": [
+ "07868021-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "processed food"
+ ],
+ "_id": 28018,
+ "created": "2013-03-05T13:39:09.000Z",
+ "lastUpdated": "2021-07-28T07:54:38.383Z",
+ "keywords": [
+ {
+ "keyword": "bleu",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "bleus"
+ },
+ {
+ "keyword": "fromage bleu",
+ "hasLocution": false,
+ "plural": "fromages bleus",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03855765-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 28019,
+ "created": "2013-03-05T13:49:59.000Z",
+ "lastUpdated": "2021-07-29T06:07:15.550Z",
+ "keywords": [
+ {
+ "keyword": "salle d'opération",
+ "hasLocution": false,
+ "plural": "salles d'opération",
+ "type": 2
+ },
+ {
+ "keyword": "chirurgie",
+ "hasLocution": false,
+ "plural": "chirurgies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "02775705-n",
+ "04045857-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 28023,
+ "created": "2013-03-06T11:31:53.000Z",
+ "lastUpdated": "2021-07-29T06:07:12.436Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "raquette",
+ "hasLocution": true,
+ "plural": "raquettes"
+ },
+ {
+ "keyword": "raquette de badminton",
+ "hasLocution": false,
+ "plural": "raquettes de badminto",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "00300122-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 28027,
+ "created": "2013-03-06T11:46:48.000Z",
+ "lastUpdated": "2021-07-29T06:07:08.495Z",
+ "keywords": [
+ {
+ "keyword": "réguler",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "réguler la température",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "régler la température",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "01903478-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 28016,
+ "created": "2013-03-05T13:35:16.000Z",
+ "lastUpdated": "2021-07-28T07:55:32.961Z",
+ "keywords": [
+ {
+ "keyword": "piquants",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective",
+ "athlete"
+ ],
+ "synsets": [
+ "13868396-n",
+ "00229886-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective",
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 27993,
+ "created": "2013-03-05T13:01:58.000Z",
+ "lastUpdated": "2021-07-28T07:58:29.161Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "premier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes"
+ ],
+ "synsets": [
+ "00436806-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 28029,
+ "created": "2013-03-06T11:49:50.000Z",
+ "lastUpdated": "2021-07-29T06:07:02.375Z",
+ "keywords": [
+ {
+ "keyword": "rouler",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "remonter la manche",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01889838-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 28039,
+ "created": "2013-03-06T11:58:59.000Z",
+ "lastUpdated": "2021-07-28T07:50:06.207Z",
+ "keywords": [
+ {
+ "keyword": "ramper",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01889838-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 28040,
+ "created": "2013-03-06T11:59:25.000Z",
+ "lastUpdated": "2021-07-28T07:49:56.191Z",
+ "keywords": [
+ {
+ "keyword": "ramper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport modality"
+ ],
+ "synsets": [
+ "01951746-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 28032,
+ "created": "2013-03-06T11:53:15.000Z",
+ "lastUpdated": "2021-07-28T07:50:39.767Z",
+ "keywords": [
+ {
+ "keyword": "pagayer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "ramer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00833580-n",
+ "00021058-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 28043,
+ "created": "2013-03-06T12:07:46.000Z",
+ "lastUpdated": "2021-07-29T06:06:59.294Z",
+ "keywords": [
+ {
+ "keyword": "ventilation mécanique",
+ "hasLocution": false,
+ "plural": "ventilations mécaniques",
+ "type": 2
+ },
+ {
+ "keyword": "respiration artificielle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "anesthésier",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "work tool",
+ "hairdresser"
+ ],
+ "synsets": [
+ "03155177-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "work",
+ "tool",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 28045,
+ "created": "2013-03-06T12:11:46.000Z",
+ "lastUpdated": "2021-07-29T06:06:04.052Z",
+ "keywords": [
+ {
+ "keyword": "fer à friser",
+ "hasLocution": false,
+ "plural": "fers à friser",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03546271-n",
+ "04071974-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 28049,
+ "created": "2013-03-06T12:32:28.000Z",
+ "lastUpdated": "2021-07-29T23:47:30.637Z",
+ "keywords": [
+ {
+ "keyword": "salle d'observation",
+ "hasLocution": false,
+ "plural": "salles d'observation",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "outdoor activity",
+ "group"
+ ],
+ "synsets": [
+ "10582611-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "person",
+ "group"
+ ],
+ "_id": 28053,
+ "created": "2013-03-06T12:41:45.000Z",
+ "lastUpdated": "2021-07-28T07:48:31.394Z",
+ "keywords": [
+ {
+ "keyword": "scout",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "scouts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport modality"
+ ],
+ "synsets": [
+ "01951746-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 28031,
+ "created": "2013-03-06T11:52:40.000Z",
+ "lastUpdated": "2021-07-28T07:50:53.602Z",
+ "keywords": [
+ {
+ "keyword": "pagayer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "ramer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "04474542-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28035,
+ "created": "2013-03-06T11:55:47.000Z",
+ "lastUpdated": "2021-07-28T07:50:23.558Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "remorque",
+ "hasLocution": false,
+ "plural": "remorques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08926147-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 28062,
+ "created": "2013-03-07T10:09:08.000Z",
+ "lastUpdated": "2021-07-29T06:05:44.791Z",
+ "keywords": [
+ {
+ "keyword": "Népal",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09009275-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 28064,
+ "created": "2013-03-07T10:14:26.000Z",
+ "lastUpdated": "2021-07-27T20:53:54.395Z",
+ "keywords": [
+ {
+ "keyword": "Qatar",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08997476-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 28063,
+ "created": "2013-03-07T10:11:54.000Z",
+ "lastUpdated": "2021-07-28T07:47:40.824Z",
+ "keywords": [
+ {
+ "keyword": "Oman",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09019857-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 28065,
+ "created": "2013-03-07T10:17:07.000Z",
+ "lastUpdated": "2021-07-27T20:53:20.414Z",
+ "keywords": [
+ {
+ "keyword": "Singapour",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09055808-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 28066,
+ "created": "2013-03-07T10:20:44.000Z",
+ "lastUpdated": "2021-07-27T20:53:00.542Z",
+ "keywords": [
+ {
+ "keyword": "Syrie",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08736933-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 28067,
+ "created": "2013-03-07T10:24:09.000Z",
+ "lastUpdated": "2021-07-27T20:52:46.861Z",
+ "keywords": [
+ {
+ "keyword": "Sri Lanka",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09043331-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 28068,
+ "created": "2013-03-07T10:27:12.000Z",
+ "lastUpdated": "2021-07-27T20:52:17.108Z",
+ "keywords": [
+ {
+ "keyword": "Tadjikistan",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09043873-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 28069,
+ "created": "2013-03-07T10:30:23.000Z",
+ "lastUpdated": "2021-07-27T20:51:22.072Z",
+ "keywords": [
+ {
+ "keyword": "Turkménistan",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09044635-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 28070,
+ "created": "2013-03-07T10:33:07.000Z",
+ "lastUpdated": "2021-07-27T20:51:07.495Z",
+ "keywords": [
+ {
+ "keyword": "Ouzbekistan",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09185985-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 28071,
+ "created": "2013-03-07T10:35:51.000Z",
+ "lastUpdated": "2021-07-27T20:50:01.812Z",
+ "keywords": [
+ {
+ "keyword": "Vietnam",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08991230-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 28061,
+ "created": "2013-03-07T10:02:29.000Z",
+ "lastUpdated": "2021-07-29T06:05:47.555Z",
+ "keywords": [
+ {
+ "keyword": "Mongolie",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "outdoor activity",
+ "group"
+ ],
+ "synsets": [
+ "10582611-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "person",
+ "group"
+ ],
+ "_id": 28054,
+ "created": "2013-03-06T12:42:09.000Z",
+ "lastUpdated": "2021-07-29T06:05:52.219Z",
+ "keywords": [
+ {
+ "keyword": "scoute",
+ "hasLocution": false,
+ "plural": "scoutes",
+ "type": 2
+ },
+ {
+ "keyword": "scout",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "scouts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09187354-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 28072,
+ "created": "2013-03-07T10:38:32.000Z",
+ "lastUpdated": "2021-07-27T20:49:36.352Z",
+ "keywords": [
+ {
+ "keyword": "Yemen",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "furniture",
+ "childcare"
+ ],
+ "synsets": [
+ "01927367-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "furniture",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 28073,
+ "created": "2013-03-07T10:52:52.000Z",
+ "lastUpdated": "2021-07-29T06:05:41.688Z",
+ "keywords": [
+ {
+ "keyword": "monter dans la chaise haute",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "furniture",
+ "childcare"
+ ],
+ "synsets": [
+ "01927367-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "furniture",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 28074,
+ "created": "2013-03-07T10:53:47.000Z",
+ "lastUpdated": "2021-07-29T06:05:28.200Z",
+ "keywords": [
+ {
+ "keyword": "monter dans la chaise haute",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03900076-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 28078,
+ "created": "2013-03-07T11:03:25.000Z",
+ "lastUpdated": "2021-07-27T20:47:55.367Z",
+ "keywords": [
+ {
+ "keyword": "intercalaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "intercalaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03900076-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 28077,
+ "created": "2013-03-07T11:02:52.000Z",
+ "lastUpdated": "2021-07-27T20:48:14.006Z",
+ "keywords": [
+ {
+ "keyword": "intercalaire",
+ "type": 2,
+ "plural": "intercalaires",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04380791-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 28085,
+ "created": "2013-03-07T11:11:34.000Z",
+ "lastUpdated": "2021-07-24T21:45:30.751Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fauteuil pivotant",
+ "hasLocution": false,
+ "plural": "fauteuils pivotants"
+ },
+ {
+ "keyword": "siège pivotant",
+ "hasLocution": false,
+ "plural": "sièges pivotants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "13858217-n",
+ "13856085-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 28096,
+ "created": "2013-03-07T11:48:13.000Z",
+ "lastUpdated": "2021-07-27T20:45:11.775Z",
+ "keywords": [
+ {
+ "keyword": "sud-ouest",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "SO",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "hardware",
+ "core vocabulary-object",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "03490490-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "computing",
+ "hardware",
+ "core vocabulary"
+ ],
+ "_id": 28099,
+ "created": "2013-03-07T11:55:30.000Z",
+ "lastUpdated": "2021-07-27T20:44:36.115Z",
+ "keywords": [
+ {
+ "keyword": "tablette",
+ "hasLocution": false,
+ "plural": "tablettes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "13857980-n",
+ "13855040-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 28095,
+ "created": "2013-03-07T11:46:56.000Z",
+ "lastUpdated": "2021-07-27T20:46:22.338Z",
+ "keywords": [
+ {
+ "keyword": "sud-est",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "SE",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "02838476-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28103,
+ "created": "2013-03-07T11:59:58.000Z",
+ "lastUpdated": "2021-07-29T06:04:52.093Z",
+ "keywords": [
+ {
+ "keyword": "tandem",
+ "hasLocution": false,
+ "plural": "tandems",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "land transport"
+ ],
+ "synsets": [
+ "06530710-n",
+ "04025495-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28107,
+ "created": "2013-03-07T12:07:27.000Z",
+ "lastUpdated": "2021-07-29T06:04:49.040Z",
+ "keywords": [
+ {
+ "keyword": "carte de bus",
+ "hasLocution": false,
+ "plural": "cartes de bus",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "land transport"
+ ],
+ "synsets": [
+ "04025495-n",
+ "06530710-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28111,
+ "created": "2013-03-07T12:12:56.000Z",
+ "lastUpdated": "2021-07-29T06:04:30.555Z",
+ "keywords": [
+ {
+ "keyword": "carte de transport",
+ "hasLocution": false,
+ "plural": "cartes de transport",
+ "type": 2
+ },
+ {
+ "keyword": "carte de transports en commun",
+ "hasLocution": false,
+ "plural": "cartes de transports en commun",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "land transport"
+ ],
+ "synsets": [
+ "04025495-n",
+ "06530710-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28115,
+ "created": "2013-03-07T12:15:42.000Z",
+ "lastUpdated": "2021-07-29T06:03:27.670Z",
+ "keywords": [
+ {
+ "keyword": "carte de transport",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cartes de transport"
+ },
+ {
+ "keyword": "carte de transports en commun",
+ "hasLocution": false,
+ "plural": "cartes de transport en commun",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "water transport",
+ "aerial transport",
+ "land transport"
+ ],
+ "synsets": [
+ "04025495-n",
+ "06530710-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "air transport",
+ "land transport"
+ ],
+ "_id": 28119,
+ "created": "2013-03-07T12:22:59.000Z",
+ "lastUpdated": "2021-07-27T20:43:49.145Z",
+ "keywords": [
+ {
+ "keyword": "carte de transport",
+ "hasLocution": false,
+ "plural": "cartes de transport",
+ "type": 2
+ },
+ {
+ "keyword": "billet de transport",
+ "hasLocution": false,
+ "plural": "billets de transport",
+ "type": 2
+ },
+ {
+ "keyword": "ticket de transport",
+ "hasLocution": false,
+ "plural": "tickets de transport",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport"
+ ],
+ "synsets": [
+ "00754770-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28089,
+ "created": "2013-03-07T11:38:19.000Z",
+ "lastUpdated": "2021-07-29T06:04:54.793Z",
+ "keywords": [
+ {
+ "keyword": "demander l'arrêt",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "communication aid",
+ "mass media"
+ ],
+ "synsets": [
+ "06358958-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid",
+ "mass media"
+ ],
+ "_id": 28091,
+ "created": "2013-03-07T11:42:36.000Z",
+ "lastUpdated": "2021-07-28T23:24:42.550Z",
+ "keywords": [
+ {
+ "keyword": "sous-titre",
+ "hasLocution": false,
+ "plural": "sous-titres",
+ "type": 2
+ },
+ {
+ "keyword": "sous-titrage",
+ "hasLocution": false,
+ "plural": "sous-titrage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "04282104-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 28123,
+ "created": "2013-03-07T12:36:18.000Z",
+ "lastUpdated": "2021-07-29T06:02:39.176Z",
+ "keywords": [
+ {
+ "keyword": "sphygmomanomètre",
+ "hasLocution": false,
+ "plural": "sphygmomanomètres",
+ "type": 2
+ },
+ {
+ "keyword": "brassard de tension",
+ "plural": "brassards de tension",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "06440207-n",
+ "14964038-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 28139,
+ "created": "2013-03-20T12:51:12.000Z",
+ "lastUpdated": "2021-07-28T17:19:20.805Z",
+ "keywords": [
+ {
+ "keyword": "correcteur",
+ "type": 2,
+ "plural": "correcteurs",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility",
+ "mountain"
+ ],
+ "synsets": [
+ "03676175-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 28141,
+ "created": "2013-03-20T12:58:32.000Z",
+ "lastUpdated": "2021-07-27T20:41:36.504Z",
+ "keywords": [
+ {
+ "keyword": "tyrolienne",
+ "hasLocution": false,
+ "plural": "tyroliennes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "urban area"
+ ],
+ "synsets": [
+ "03905846-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "urban area"
+ ],
+ "_id": 28131,
+ "created": "2013-03-07T13:51:28.000Z",
+ "lastUpdated": "2021-07-27T20:42:28.247Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "terrasse",
+ "hasLocution": false,
+ "plural": "terrasses"
+ },
+ {
+ "keyword": "terrasse de café",
+ "hasLocution": false,
+ "plural": "terrasses de café",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "processed food"
+ ],
+ "synsets": [
+ "07866305-n",
+ "07867274-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "processed food"
+ ],
+ "_id": 28149,
+ "created": "2013-03-20T13:23:35.000Z",
+ "lastUpdated": "2021-07-29T06:00:27.315Z",
+ "keywords": [
+ {
+ "keyword": "Torta del Casar",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "fromage de brebis",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07703766-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 28145,
+ "created": "2013-03-20T13:02:18.000Z",
+ "lastUpdated": "2021-07-27T20:40:39.973Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "galette de maïs",
+ "hasLocution": false,
+ "plural": "galettes de maïs"
+ },
+ {
+ "keyword": "pain de maïs",
+ "hasLocution": false,
+ "plural": "pains de maïs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "00331892-v",
+ "00339895-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 28157,
+ "created": "2013-03-20T13:35:05.000Z",
+ "lastUpdated": "2021-07-27T20:39:49.968Z",
+ "keywords": [
+ {
+ "keyword": "écraser",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "04489649-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28153,
+ "created": "2013-03-20T13:27:56.000Z",
+ "lastUpdated": "2021-07-27T20:39:57.163Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tricycle",
+ "hasLocution": true,
+ "plural": "tricycles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "04282104-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 28127,
+ "created": "2013-03-07T12:39:14.000Z",
+ "lastUpdated": "2021-07-29T06:02:01.631Z",
+ "keywords": [
+ {
+ "keyword": "sphygmomanomètre",
+ "hasLocution": false,
+ "plural": "sphygmomanomètres",
+ "type": 2
+ },
+ {
+ "keyword": "brassard de tension",
+ "hasLocution": false,
+ "plural": "brassards de tension",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "04155119-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 28135,
+ "created": "2013-03-07T13:57:47.000Z",
+ "lastUpdated": "2021-07-27T20:41:55.720Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ciseaux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "04523286-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 28159,
+ "created": "2013-03-20T13:40:06.000Z",
+ "lastUpdated": "2021-07-27T20:39:02.642Z",
+ "keywords": [
+ {
+ "keyword": "urinoir",
+ "hasLocution": false,
+ "plural": "urinoirs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "03775257-n",
+ "03796586-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28167,
+ "created": "2013-03-21T10:14:44.000Z",
+ "lastUpdated": "2021-07-28T17:18:47.298Z",
+ "keywords": [
+ {
+ "keyword": "scooter",
+ "hasLocution": false,
+ "plural": "scooters",
+ "type": 2
+ },
+ {
+ "keyword": "vespa",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vespas"
+ },
+ {
+ "keyword": "moto",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "motos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tourism",
+ "land transport"
+ ],
+ "synsets": [
+ "01849662-v",
+ "09652940-n",
+ "01846632-v",
+ "02021901-v"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "tourism",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28171,
+ "created": "2013-03-21T10:42:12.000Z",
+ "lastUpdated": "2021-07-28T17:18:05.610Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voyageuse",
+ "hasLocution": false,
+ "plural": "voyageuses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "land transport",
+ "tourism",
+ "core vocabulary-communication",
+ "core vocabulary-movement",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "01849662-v",
+ "09652940-n",
+ "01846632-v",
+ "02021901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "tertiary sector",
+ "tourism",
+ "core vocabulary"
+ ],
+ "_id": 28173,
+ "created": "2013-03-21T10:45:00.000Z",
+ "lastUpdated": "2021-07-27T20:37:36.639Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voyager",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "voyageur",
+ "hasLocution": true,
+ "plural": "voyageurs"
+ },
+ {
+ "type": 2,
+ "keyword": "voyageuse",
+ "hasLocution": false,
+ "plural": "voyageuses"
+ },
+ {
+ "keyword": "prendre le bus",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "monter dans le bus",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tourism",
+ "land transport"
+ ],
+ "synsets": [
+ "10423621-n",
+ "09652940-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "tourism",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28179,
+ "created": "2013-03-21T10:51:34.000Z",
+ "lastUpdated": "2021-07-27T20:36:59.792Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "passagère",
+ "hasLocution": false,
+ "plural": "passagères"
+ },
+ {
+ "type": 2,
+ "keyword": "voyageuse",
+ "hasLocution": false,
+ "plural": "voyageuses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tourism",
+ "land transport"
+ ],
+ "synsets": [
+ "10423621-n",
+ "09652940-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "tourism",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28181,
+ "created": "2013-03-21T10:54:56.000Z",
+ "lastUpdated": "2021-07-27T20:36:43.828Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voyageur",
+ "hasLocution": true,
+ "plural": "voyageurs"
+ },
+ {
+ "type": 2,
+ "keyword": "passager",
+ "hasLocution": false,
+ "plural": "passagers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "patient"
+ ],
+ "synsets": [
+ "02493222-v",
+ "02722642-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "person",
+ "patient"
+ ],
+ "_id": 28187,
+ "created": "2013-03-21T11:01:09.000Z",
+ "lastUpdated": "2021-07-27T20:36:08.170Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "visiter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "accompagner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "02703861-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28163,
+ "created": "2013-03-20T13:46:36.000Z",
+ "lastUpdated": "2021-07-28T23:23:23.875Z",
+ "keywords": [
+ {
+ "keyword": "ambulance de réanimation",
+ "hasLocution": false,
+ "plural": "ambulances de réanimation",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "ambulance du SAMU",
+ "plural": "ambulances du SAMU",
+ "type": 2
+ },
+ {
+ "keyword": "ambulance du SMUR",
+ "hasLocution": false,
+ "plural": "ambulances du SMUR",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "skating"
+ ],
+ "synsets": [
+ "03518281-n",
+ "03132398-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "skating"
+ ],
+ "_id": 28191,
+ "created": "2013-03-21T11:14:47.000Z",
+ "lastUpdated": "2021-07-27T20:35:09.989Z",
+ "keywords": [
+ {
+ "keyword": "casque de skate",
+ "hasLocution": false,
+ "plural": "casques de skate",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01551500-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 28189,
+ "created": "2013-03-21T11:07:51.000Z",
+ "lastUpdated": "2021-07-28T17:17:44.550Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "effacer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "effacer au correcteur",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "adult",
+ "person according to their age"
+ ],
+ "synsets": [
+ "01491979-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "person",
+ "adult"
+ ],
+ "_id": 28201,
+ "created": "2013-03-21T11:59:24.000Z",
+ "lastUpdated": "2025-01-10T15:34:18.763Z",
+ "keywords": [
+ {
+ "keyword": "adulte",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "adultes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01175702-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 28205,
+ "created": "2013-03-21T12:26:50.000Z",
+ "lastUpdated": "2021-07-27T20:31:00.222Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "en-cas",
+ "hasLocution": true,
+ "plural": "en-cas"
+ },
+ {
+ "keyword": "gouter",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gouters"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility"
+ ],
+ "synsets": [
+ "08696353-n",
+ "09328804-n",
+ "00712380-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 28203,
+ "created": "2013-03-21T12:02:36.000Z",
+ "lastUpdated": "2021-07-29T05:59:23.991Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "station thermale",
+ "hasLocution": true,
+ "plural": "stations thermales"
+ },
+ {
+ "type": 2,
+ "keyword": "spa",
+ "hasLocution": true,
+ "plural": "spas"
+ },
+ {
+ "type": 2,
+ "keyword": "eaux thermales",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "dietetics"
+ ],
+ "synsets": [
+ "00045548-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "dietetics"
+ ],
+ "_id": 28199,
+ "created": "2013-03-21T11:56:15.000Z",
+ "lastUpdated": "2021-07-27T20:34:13.512Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "maigrir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "perdre du poids",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01175702-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 28206,
+ "created": "2013-03-21T12:27:15.000Z",
+ "lastUpdated": "2021-07-27T20:30:37.529Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "en-cas",
+ "hasLocution": true,
+ "plural": "en-cas"
+ },
+ {
+ "keyword": "gouter",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gouters"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01175702-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 28207,
+ "created": "2013-03-21T12:27:33.000Z",
+ "lastUpdated": "2021-07-27T20:30:12.633Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "en-cas",
+ "hasLocution": true,
+ "plural": "en-cas"
+ },
+ {
+ "keyword": "gouter",
+ "type": 2,
+ "plural": "gouters",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "architecture",
+ "construction"
+ ],
+ "synsets": [
+ "09824898-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "architecture",
+ "building",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 28211,
+ "created": "2013-03-21T12:33:18.000Z",
+ "lastUpdated": "2021-07-27T20:29:42.070Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "architecte",
+ "hasLocution": true,
+ "plural": "architectes"
+ },
+ {
+ "type": 2,
+ "keyword": "métreur",
+ "hasLocution": true,
+ "plural": "métreurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04453410-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 28213,
+ "created": "2013-03-21T12:36:38.000Z",
+ "lastUpdated": "2021-07-28T17:17:15.849Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toilettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baby",
+ "childcare"
+ ],
+ "synsets": [
+ "09846929-n",
+ "10372747-n",
+ "01653626-s"
+ ],
+ "tags": [
+ "person",
+ "baby",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 28215,
+ "created": "2013-03-21T12:43:24.000Z",
+ "lastUpdated": "2021-07-27T20:28:21.463Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bébé",
+ "hasLocution": true,
+ "plural": "bébés"
+ },
+ {
+ "keyword": "nouveau né",
+ "hasLocution": false,
+ "plural": "nouveaux nés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "sport",
+ "horse riding"
+ ],
+ "synsets": [
+ "03518281-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "horse riding"
+ ],
+ "_id": 28195,
+ "created": "2013-03-21T11:23:54.000Z",
+ "lastUpdated": "2024-12-05T06:33:00.040Z",
+ "keywords": [
+ {
+ "keyword": "bombe",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "bombes"
+ },
+ {
+ "keyword": "bombe de cheval",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bombes de cheval"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "02906451-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 28221,
+ "created": "2013-03-21T12:52:18.000Z",
+ "lastUpdated": "2021-07-28T17:16:53.312Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brochette de crevettes",
+ "hasLocution": false,
+ "plural": "brochettes de crevettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 28219,
+ "created": "2013-03-21T12:48:48.000Z",
+ "lastUpdated": "2021-09-23T23:10:29.752Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baisser le pantalon",
+ "hasLocution": true
+ },
+ {
+ "keyword": "enlever son pantalon",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "descendre le pantalon",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "hospitality industry",
+ "tourism"
+ ],
+ "synsets": [
+ "02923176-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "hospitality industry",
+ "tourism"
+ ],
+ "_id": 28225,
+ "created": "2013-03-21T13:03:13.000Z",
+ "lastUpdated": "2022-04-09T05:16:25.305Z",
+ "keywords": [
+ {
+ "keyword": "maison de vacances",
+ "hasLocution": false,
+ "plural": "maisons de vacances",
+ "type": 2
+ },
+ {
+ "keyword": "tourisme rural",
+ "hasLocution": false,
+ "plural": "tourismes ruraux"
+ },
+ {
+ "keyword": "gite",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gites"
+ },
+ {
+ "keyword": "gite rural",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gites ruraux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "entertainment facility"
+ ],
+ "synsets": [
+ "02981395-n"
+ ],
+ "tags": [
+ "leisure",
+ "place",
+ "facility",
+ "recreational facility"
+ ],
+ "_id": 28227,
+ "created": "2013-03-21T13:06:36.000Z",
+ "lastUpdated": "2021-07-27T20:26:09.620Z",
+ "keywords": [
+ {
+ "keyword": "casino",
+ "plural": "casinos",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "entertainment facility",
+ "signaling system"
+ ],
+ "synsets": [
+ "02981395-n"
+ ],
+ "tags": [
+ "leisure",
+ "place",
+ "facility",
+ "recreational facility",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 28228,
+ "created": "2013-03-21T13:07:18.000Z",
+ "lastUpdated": "2021-07-27T20:25:34.392Z",
+ "keywords": [
+ {
+ "keyword": "casino",
+ "hasLocution": false,
+ "plural": "casinos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01171984-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 28231,
+ "created": "2013-03-21T13:31:30.000Z",
+ "lastUpdated": "2021-07-27T20:25:17.447Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sucer son pouce",
+ "hasLocution": false
+ },
+ {
+ "keyword": "se sucer le doigt",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01171984-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 28232,
+ "created": "2013-03-21T13:32:23.000Z",
+ "lastUpdated": "2021-07-27T20:24:34.276Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sucer son pouce",
+ "hasLocution": false
+ },
+ {
+ "keyword": "se sucer le pouce",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "mass media"
+ ],
+ "synsets": [
+ "09961910-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "communication",
+ "mass media"
+ ],
+ "_id": 28237,
+ "created": "2013-03-21T13:36:34.000Z",
+ "lastUpdated": "2021-07-27T20:23:32.293Z",
+ "keywords": [
+ {
+ "keyword": "commentateur",
+ "type": 2,
+ "plural": "commentateurs",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01171984-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 28233,
+ "created": "2013-03-21T13:32:57.000Z",
+ "lastUpdated": "2021-07-27T20:24:00.848Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sucer son pouce",
+ "hasLocution": false
+ },
+ {
+ "keyword": "se sucer le pouce",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "tale character"
+ ],
+ "synsets": [
+ "10365535-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 28241,
+ "created": "2013-03-21T13:42:08.000Z",
+ "lastUpdated": "2021-07-27T20:23:00.737Z",
+ "keywords": [
+ {
+ "keyword": "conteur",
+ "type": 2,
+ "plural": "conteur",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "mass media"
+ ],
+ "synsets": [
+ "09961910-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "communication",
+ "mass media"
+ ],
+ "_id": 28238,
+ "created": "2013-03-21T13:37:00.000Z",
+ "lastUpdated": "2021-07-27T20:23:20.952Z",
+ "keywords": [
+ {
+ "keyword": "commentateur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "commentateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "tale character"
+ ],
+ "synsets": [
+ "10365535-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 28242,
+ "created": "2013-03-21T13:42:42.000Z",
+ "lastUpdated": "2021-07-27T20:22:20.838Z",
+ "keywords": [
+ {
+ "keyword": "conteuse",
+ "hasLocution": false,
+ "plural": "conteuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14141287-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 28245,
+ "created": "2013-03-21T13:46:49.000Z",
+ "lastUpdated": "2021-07-27T20:22:03.356Z",
+ "keywords": [
+ {
+ "keyword": "diabète",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "diabètes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baby",
+ "childcare"
+ ],
+ "synsets": [
+ "09846929-n",
+ "10372747-n"
+ ],
+ "tags": [
+ "person",
+ "baby",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 28216,
+ "created": "2013-03-21T12:45:30.000Z",
+ "lastUpdated": "2021-07-27T20:28:00.014Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bébé",
+ "hasLocution": true,
+ "plural": "bébés"
+ },
+ {
+ "keyword": "nouveau né",
+ "hasLocution": false,
+ "plural": "nouveaux nés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "meat"
+ ],
+ "synsets": [
+ "07672350-n",
+ "07682896-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 28223,
+ "created": "2013-03-21T12:56:37.000Z",
+ "lastUpdated": "2024-12-11T17:31:43.771Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "viande d'agneau",
+ "hasLocution": true,
+ "plural": "viandes d'agneaux"
+ },
+ {
+ "type": 2,
+ "keyword": "côtelettes d'agneau",
+ "hasLocution": false,
+ "plural": "côtelettes d'agneau"
+ },
+ {
+ "keyword": "ribs",
+ "hasLocution": false,
+ "plural": "ribs",
+ "type": 2
+ },
+ {
+ "keyword": "agneau",
+ "hasLocution": true,
+ "plural": "agneaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00118398-n",
+ "00003443-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 28249,
+ "created": "2013-03-21T13:51:44.000Z",
+ "lastUpdated": "2021-07-27T20:21:07.160Z",
+ "keywords": [
+ {
+ "keyword": "roter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "éructer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "literature"
+ ],
+ "synsets": [
+ "07066331-n"
+ ],
+ "tags": [
+ "literature"
+ ],
+ "_id": 28251,
+ "created": "2013-03-21T13:58:10.000Z",
+ "lastUpdated": "2021-07-27T20:20:38.696Z",
+ "keywords": [
+ {
+ "keyword": "strophe",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "strophes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "computing"
+ ],
+ "synsets": [
+ "00155053-n"
+ ],
+ "tags": [
+ "computing"
+ ],
+ "_id": 28253,
+ "created": "2013-03-22T13:36:03.000Z",
+ "lastUpdated": "2021-07-27T20:19:45.365Z",
+ "keywords": [
+ {
+ "keyword": "authentification",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "authentifications"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "furniture",
+ "childcare"
+ ],
+ "synsets": [
+ "01962311-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "furniture",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 28255,
+ "created": "2013-03-22T13:48:50.000Z",
+ "lastUpdated": "2021-07-29T05:57:55.704Z",
+ "keywords": [
+ {
+ "keyword": "descendre de la chaise haute",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "furniture",
+ "childcare"
+ ],
+ "synsets": [
+ "01962311-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "furniture",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 28256,
+ "created": "2013-03-22T13:49:16.000Z",
+ "lastUpdated": "2021-07-29T05:57:38.862Z",
+ "keywords": [
+ {
+ "keyword": "descendre de la chaise haute",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "00950727-s"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 28259,
+ "created": "2013-03-22T13:51:32.000Z",
+ "lastUpdated": "2021-07-27T20:19:13.952Z",
+ "keywords": [
+ {
+ "keyword": "chateau gonflable",
+ "hasLocution": false,
+ "plural": "chateaux gonflables",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility",
+ "outdoor activity"
+ ],
+ "synsets": [
+ "00311492-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 28263,
+ "created": "2013-03-22T13:55:50.000Z",
+ "lastUpdated": "2024-12-05T15:21:55.128Z",
+ "keywords": [
+ {
+ "keyword": "parc d'aventures",
+ "hasLocution": false,
+ "plural": "parcs d'aventures",
+ "type": 2
+ },
+ {
+ "keyword": "accrobranche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "accrobranches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "popular event"
+ ],
+ "synsets": [
+ "11016281-n"
+ ],
+ "tags": [
+ "event",
+ "religious event",
+ "popular event"
+ ],
+ "_id": 28267,
+ "created": "2013-03-24T11:40:43.000Z",
+ "lastUpdated": "2021-09-03T16:53:31.387Z",
+ "keywords": [
+ {
+ "keyword": "jour de la Saint-Georges",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "patient"
+ ],
+ "synsets": [
+ "01875972-v",
+ "01452567-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "person",
+ "patient"
+ ],
+ "_id": 28269,
+ "created": "2013-03-24T12:01:30.000Z",
+ "lastUpdated": "2021-07-27T20:17:12.156Z",
+ "keywords": [
+ {
+ "keyword": "pousser le brancard",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "transporter un patient",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "photography"
+ ],
+ "synsets": [
+ "03931348-n"
+ ],
+ "tags": [
+ "visual art",
+ "photography"
+ ],
+ "_id": 28271,
+ "created": "2013-03-25T13:03:36.000Z",
+ "lastUpdated": "2021-07-27T20:16:30.410Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "photo",
+ "hasLocution": true,
+ "plural": "photos"
+ },
+ {
+ "type": 2,
+ "keyword": "photographie",
+ "hasLocution": true,
+ "plural": "photographies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "protective equipment"
+ ],
+ "synsets": [
+ "03448836-n"
+ ],
+ "tags": [
+ "work",
+ "clothes",
+ "workwear",
+ "protective equipment"
+ ],
+ "_id": 28275,
+ "created": "2013-03-25T13:40:42.000Z",
+ "lastUpdated": "2021-07-27T20:16:13.045Z",
+ "keywords": [
+ {
+ "keyword": "lunettes de sécurité",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "lunettes de protection",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnival"
+ ],
+ "synsets": [
+ "00512566-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "carnival"
+ ],
+ "_id": 28279,
+ "created": "2013-03-26T12:42:11.000Z",
+ "lastUpdated": "2021-07-27T20:15:35.125Z",
+ "keywords": [
+ {
+ "keyword": "Mardi Gras",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnival"
+ ],
+ "synsets": [
+ "00512566-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "carnival"
+ ],
+ "_id": 28281,
+ "created": "2013-03-26T12:46:23.000Z",
+ "lastUpdated": "2021-07-27T20:15:20.788Z",
+ "keywords": [
+ {
+ "keyword": "Mardi Gras",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "10104064-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 28283,
+ "created": "2013-03-26T12:48:21.000Z",
+ "lastUpdated": "2021-07-29T06:22:26.363Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fille",
+ "hasLocution": true,
+ "plural": "filles"
+ },
+ {
+ "type": 2,
+ "keyword": "petite fille",
+ "hasLocution": true,
+ "plural": "petite filles"
+ },
+ {
+ "keyword": "fillette",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "fillettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport"
+ ],
+ "synsets": [
+ "00449245-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28291,
+ "created": "2013-03-26T13:02:01.000Z",
+ "lastUpdated": "2021-07-28T17:15:04.630Z",
+ "keywords": [
+ {
+ "keyword": "valider",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "badger",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport"
+ ],
+ "synsets": [
+ "00449245-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28292,
+ "created": "2013-03-26T13:02:26.000Z",
+ "lastUpdated": "2021-07-28T17:14:41.395Z",
+ "keywords": [
+ {
+ "keyword": "valider",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "composter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "unhealthy habit",
+ "dietetics"
+ ],
+ "synsets": [
+ "00045868-v",
+ "00046099-v",
+ "01197471-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "dietetics"
+ ],
+ "_id": 28247,
+ "created": "2013-03-21T13:49:20.000Z",
+ "lastUpdated": "2021-07-27T20:21:45.476Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "grossir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prendre du poids",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07826507-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 28297,
+ "created": "2013-03-26T13:12:28.000Z",
+ "lastUpdated": "2021-07-28T17:14:30.298Z",
+ "keywords": [
+ {
+ "keyword": "bouillon cube",
+ "hasLocution": false,
+ "plural": "bouillons cubes",
+ "type": 2
+ },
+ {
+ "keyword": "cube de bouillon",
+ "hasLocution": false,
+ "plural": "cubes de bouillon",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport modality"
+ ],
+ "synsets": [
+ "01891317-v",
+ "01148973-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 28295,
+ "created": "2013-03-26T13:08:42.000Z",
+ "lastUpdated": "2021-11-03T10:39:20.005Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "lancer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media",
+ "communication aid"
+ ],
+ "synsets": [
+ "06358958-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 28301,
+ "created": "2013-03-26T13:16:10.000Z",
+ "lastUpdated": "2021-07-28T17:13:19.758Z",
+ "keywords": [
+ {
+ "keyword": "sous-titre",
+ "hasLocution": false,
+ "plural": "sous-titres",
+ "type": 2
+ },
+ {
+ "keyword": "sous-titrage",
+ "hasLocution": false,
+ "plural": "sous-titrages",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sweets"
+ ],
+ "synsets": [
+ "07618025-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets"
+ ],
+ "_id": 28305,
+ "created": "2013-03-26T13:20:23.000Z",
+ "lastUpdated": "2021-07-28T17:12:49.907Z",
+ "keywords": [
+ {
+ "keyword": "Smarties",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "pastilles au chocolat",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "10305010-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 28287,
+ "created": "2013-03-26T12:56:44.000Z",
+ "lastUpdated": "2021-07-29T05:57:03.541Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enfant",
+ "hasLocution": true,
+ "plural": "enfants"
+ },
+ {
+ "type": 2,
+ "keyword": "garçon",
+ "hasLocution": true,
+ "plural": "garçons"
+ },
+ {
+ "type": 2,
+ "keyword": "petit garçon",
+ "hasLocution": true,
+ "plural": "petits garçons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective",
+ "athlete"
+ ],
+ "synsets": [
+ "02209815-s",
+ "00103431-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective",
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 28315,
+ "created": "2013-03-27T10:18:10.000Z",
+ "lastUpdated": "2021-07-27T13:35:26.043Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "deuxième",
+ "hasLocution": true
+ },
+ {
+ "keyword": "seconde",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "2e",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "2ème",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective",
+ "athlete"
+ ],
+ "synsets": [
+ "02209815-s",
+ "00103431-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective",
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 28319,
+ "created": "2013-03-27T10:21:51.000Z",
+ "lastUpdated": "2021-07-27T13:34:45.521Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "deuxième",
+ "hasLocution": true
+ },
+ {
+ "keyword": "second",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "2e",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "2ème",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building"
+ ],
+ "synsets": [
+ "03847532-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade"
+ ],
+ "_id": 28311,
+ "created": "2013-03-26T13:49:26.000Z",
+ "lastUpdated": "2021-07-28T17:12:01.600Z",
+ "keywords": [
+ {
+ "keyword": "bureau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "bureaux"
+ },
+ {
+ "keyword": "immeuble de bureaux",
+ "hasLocution": false,
+ "plural": "immeubles de bureaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective",
+ "athlete"
+ ],
+ "synsets": [
+ "00103536-r",
+ "02209976-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective",
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 28327,
+ "created": "2013-03-27T10:30:31.000Z",
+ "lastUpdated": "2021-07-27T13:33:20.023Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "troisième",
+ "hasLocution": true
+ },
+ {
+ "keyword": "3e",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "3ème",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective",
+ "athlete"
+ ],
+ "synsets": [
+ "13869097-n",
+ "00103536-r",
+ "02209976-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective",
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 28329,
+ "created": "2013-03-27T10:31:39.000Z",
+ "lastUpdated": "2021-07-27T13:32:49.614Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "troisième",
+ "hasLocution": true
+ },
+ {
+ "keyword": "3e",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "3ème",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective",
+ "athlete"
+ ],
+ "synsets": [
+ "00103536-r",
+ "02209976-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective",
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 28330,
+ "created": "2013-03-27T10:32:32.000Z",
+ "lastUpdated": "2021-07-27T13:32:15.346Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "troisième",
+ "hasLocution": true
+ },
+ {
+ "keyword": "3e",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "3ème",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "13155706-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit",
+ "core vocabulary"
+ ],
+ "_id": 28339,
+ "created": "2013-03-27T10:42:04.000Z",
+ "lastUpdated": "2021-07-27T13:31:11.146Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fruit",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "fruits",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "photography",
+ "computing"
+ ],
+ "synsets": [
+ "06528395-n"
+ ],
+ "tags": [
+ "visual art",
+ "photography",
+ "computing"
+ ],
+ "_id": 28307,
+ "created": "2013-03-26T13:22:36.000Z",
+ "lastUpdated": "2021-10-03T20:29:46.282Z",
+ "keywords": [
+ {
+ "keyword": "photo",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "photos"
+ },
+ {
+ "keyword": "photo d'identité",
+ "hasLocution": false,
+ "plural": "photos d'identité",
+ "type": 2
+ },
+ {
+ "keyword": "photographie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "photographies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective",
+ "athlete"
+ ],
+ "synsets": [
+ "02209815-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective",
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 28320,
+ "created": "2013-03-27T10:23:41.000Z",
+ "lastUpdated": "2021-07-27T13:34:16.204Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "deuxième",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "second",
+ "hasLocution": true
+ },
+ {
+ "keyword": "2e",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "2ème",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tourism"
+ ],
+ "synsets": [
+ "05824413-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 28347,
+ "created": "2013-03-27T10:57:17.000Z",
+ "lastUpdated": "2021-07-28T17:11:23.742Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "information",
+ "hasLocution": true,
+ "plural": "informations"
+ },
+ {
+ "type": 2,
+ "keyword": "office de tourisme",
+ "hasLocution": true,
+ "plural": "offices de tourisme"
+ },
+ {
+ "keyword": "bureau d'information",
+ "hasLocution": false,
+ "plural": "bureaux d'information",
+ "type": 2
+ },
+ {
+ "keyword": "guichet d'information",
+ "hasLocution": false,
+ "plural": "guichets d'information",
+ "type": 2
+ },
+ {
+ "keyword": "point d'informations touristiques",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "points d'informations touristiques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "engineering",
+ "professional services",
+ "industry",
+ "construction"
+ ],
+ "synsets": [
+ "09638837-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "engineering",
+ "tertiary sector",
+ "professional services",
+ "secondary sector",
+ "industry",
+ "manufacturing industry",
+ "construction"
+ ],
+ "_id": 28349,
+ "created": "2013-03-27T11:00:29.000Z",
+ "lastUpdated": "2021-07-28T17:10:17.420Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ingénieur technique",
+ "hasLocution": true,
+ "plural": "ingénieurs techniques"
+ },
+ {
+ "type": 2,
+ "keyword": "ingénieur",
+ "hasLocution": true,
+ "plural": "ingénieurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "hospitality industry",
+ "beach"
+ ],
+ "synsets": [
+ "03547513-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "hospitality industry",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 28345,
+ "created": "2013-03-27T10:53:59.000Z",
+ "lastUpdated": "2022-07-04T06:45:23.996Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hôtel",
+ "hasLocution": true,
+ "plural": "hôtels"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "law and justice"
+ ],
+ "synsets": [
+ "00891468-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 28353,
+ "created": "2013-03-27T11:11:17.000Z",
+ "lastUpdated": "2021-07-27T13:27:49.071Z",
+ "keywords": [
+ {
+ "keyword": "jurer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "law and justice"
+ ],
+ "synsets": [
+ "00891468-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 28354,
+ "created": "2013-03-27T11:11:59.000Z",
+ "lastUpdated": "2021-07-27T13:27:33.785Z",
+ "keywords": [
+ {
+ "keyword": "jurer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07785560-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 28357,
+ "created": "2013-03-27T11:20:09.000Z",
+ "lastUpdated": "2021-07-28T17:08:29.750Z",
+ "keywords": [
+ {
+ "keyword": "pâte de coing",
+ "hasLocution": false,
+ "plural": "pâtes de coing",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "photography",
+ "verb"
+ ],
+ "synsets": [
+ "01005294-v"
+ ],
+ "tags": [
+ "visual art",
+ "photography",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 28341,
+ "created": "2013-03-27T10:48:30.000Z",
+ "lastUpdated": "2021-07-27T13:31:01.388Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "photographier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prendre une photo",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "hospitality industry",
+ "signaling system"
+ ],
+ "synsets": [
+ "03547513-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "hospitality industry",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 28351,
+ "created": "2013-03-27T11:07:00.000Z",
+ "lastUpdated": "2021-07-28T17:10:02.253Z",
+ "keywords": [
+ {
+ "keyword": "hôtel accessible",
+ "hasLocution": false,
+ "plural": "hôtels accessibles",
+ "type": 2
+ },
+ {
+ "keyword": "hôtel adapté",
+ "hasLocution": false,
+ "plural": "hôtels adaptés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07723196-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 28343,
+ "created": "2013-03-27T10:51:25.000Z",
+ "lastUpdated": "2021-07-27T13:30:47.159Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "légumes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "conjunction",
+ "conditional conjunction"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "conjunction",
+ "conditional conjunction"
+ ],
+ "_id": 28359,
+ "created": "2013-03-27T11:23:07.000Z",
+ "lastUpdated": "2024-11-19T06:17:22.123Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "si",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "07592003-n"
+ ],
+ "tags": [
+ "event",
+ "feeding"
+ ],
+ "_id": 28361,
+ "created": "2013-03-27T11:26:14.000Z",
+ "lastUpdated": "2021-07-27T13:25:53.345Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pique-nique",
+ "hasLocution": false,
+ "plural": "pique-niques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "hospitality industry",
+ "signaling system"
+ ],
+ "synsets": [
+ "02860757-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "hospitality industry",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 28363,
+ "created": "2013-03-27T11:29:22.000Z",
+ "lastUpdated": "2021-08-02T22:27:32.036Z",
+ "keywords": [
+ {
+ "keyword": "pension de famille",
+ "plural": "pensions de famille",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "foyer logement",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "07685636-n",
+ "03530634-n",
+ "03040851-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 28367,
+ "created": "2013-04-30T17:27:05.000Z",
+ "lastUpdated": "2021-07-27T13:24:34.849Z",
+ "keywords": [
+ {
+ "keyword": "porte-jambon",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "porte-jambons"
+ },
+ {
+ "keyword": "support à jambon",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "supports à jambon"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "06009578-n",
+ "06009822-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28372,
+ "created": "2013-04-30T17:39:03.000Z",
+ "lastUpdated": "2021-09-13T14:08:11.734Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU MATHÉMATIQUES SCIENCES DE LA NATURE",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "06527818-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28370,
+ "created": "2013-04-30T17:34:29.000Z",
+ "lastUpdated": "2021-10-07T22:51:46.577Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle Biographies",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "CDU Biographies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "06152605-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28373,
+ "created": "2013-04-30T17:42:31.000Z",
+ "lastUpdated": "2021-09-13T14:07:26.602Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "type": 2,
+ "hasLocution": false
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU SCIENCES SOCIALES",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "06608568-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28374,
+ "created": "2013-04-30T17:45:37.000Z",
+ "lastUpdated": "2021-10-06T21:53:41.440Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle Contes",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU Bandes Dessinées",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "00524569-n",
+ "00935235-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28375,
+ "created": "2013-04-30T17:46:36.000Z",
+ "lastUpdated": "2021-09-13T14:15:10.521Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU ARTS SPORTS LOISIRS",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "09049830-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28369,
+ "created": "2013-04-30T17:31:41.000Z",
+ "lastUpdated": "2021-10-06T21:54:24.362Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle Aragon",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU Aragon",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "06439057-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28376,
+ "created": "2013-04-30T17:47:13.000Z",
+ "lastUpdated": "2021-08-10T09:10:54.172Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "05646331-n",
+ "05762896-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28377,
+ "created": "2013-04-30T17:48:03.000Z",
+ "lastUpdated": "2021-09-13T14:08:31.818Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU LITTÉRATURE",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "06168062-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28378,
+ "created": "2013-04-30T17:48:40.000Z",
+ "lastUpdated": "2021-09-13T14:08:49.101Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU PHILOSOPHIE PSYCHOLOGIE",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "07107220-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28381,
+ "created": "2013-04-30T17:50:45.000Z",
+ "lastUpdated": "2021-10-06T21:52:46.405Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle Poésie",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU Poésies",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "07235754-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28380,
+ "created": "2013-04-30T17:50:04.000Z",
+ "lastUpdated": "2021-10-06T21:52:39.753Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle Nouvelles",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU Nouvelles",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "05955536-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28382,
+ "created": "2013-04-30T17:51:19.000Z",
+ "lastUpdated": "2021-09-13T14:17:15.774Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU RELIGIONS",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "07019235-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28383,
+ "created": "2013-04-30T17:51:59.000Z",
+ "lastUpdated": "2021-09-10T14:05:23.903Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle théâtre",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "06134474-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28371,
+ "created": "2013-04-30T17:35:45.000Z",
+ "lastUpdated": "2021-09-13T14:16:08.820Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU SCIENCES APPLIQUÉES",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "06435021-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28384,
+ "created": "2013-04-30T17:53:56.000Z",
+ "lastUpdated": "2021-09-10T14:04:41.093Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDD",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "CDU",
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle voyages",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tourism"
+ ],
+ "synsets": [
+ "10737780-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 28385,
+ "created": "2013-04-30T17:55:16.000Z",
+ "lastUpdated": "2021-07-27T13:18:24.227Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "touriste",
+ "hasLocution": true,
+ "plural": "touristes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "06131785-n",
+ "06165265-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 28379,
+ "created": "2013-04-30T17:49:31.000Z",
+ "lastUpdated": "2021-09-13T14:17:01.457Z",
+ "keywords": [
+ {
+ "keyword": "classification décimale Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "CDD",
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU GÉOGRAPHIE HISTOIRE",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tourism"
+ ],
+ "synsets": [
+ "10737780-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 28386,
+ "created": "2013-04-30T17:56:06.000Z",
+ "lastUpdated": "2021-07-27T13:18:18.390Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "touriste",
+ "hasLocution": true,
+ "plural": "touristes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "03775416-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28405,
+ "created": "2013-04-30T18:45:16.000Z",
+ "lastUpdated": "2021-07-27T13:18:09.448Z",
+ "keywords": [
+ {
+ "keyword": "minibus",
+ "hasLocution": false,
+ "plural": "minibus",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00361585-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 28411,
+ "created": "2013-04-30T18:52:34.000Z",
+ "lastUpdated": "2021-07-27T13:16:59.589Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "naître",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "food",
+ "basic needs"
+ ],
+ "synsets": [
+ "01168667-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "person",
+ "basic needs"
+ ],
+ "_id": 28413,
+ "created": "2013-04-30T20:45:20.000Z",
+ "lastUpdated": "2021-07-27T13:16:54.281Z",
+ "keywords": [
+ {
+ "keyword": "manger un sandwich",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "manger un en-cas",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "food",
+ "basic needs"
+ ],
+ "synsets": [
+ "01168667-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "person",
+ "basic needs"
+ ],
+ "_id": 28414,
+ "created": "2013-04-30T20:46:07.000Z",
+ "lastUpdated": "2021-07-27T13:16:48.400Z",
+ "keywords": [
+ {
+ "keyword": "manger un sandwich",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "manger un en-cas",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "food",
+ "basic needs"
+ ],
+ "synsets": [
+ "01168667-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "person",
+ "basic needs"
+ ],
+ "_id": 28415,
+ "created": "2013-04-30T20:46:58.000Z",
+ "lastUpdated": "2021-07-27T13:15:46.284Z",
+ "keywords": [
+ {
+ "keyword": "manger un sandwich",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "manger un en-cas",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01978076-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 28420,
+ "created": "2013-04-30T21:07:16.000Z",
+ "lastUpdated": "2021-07-27T13:14:40.520Z",
+ "keywords": [
+ {
+ "keyword": "lever la main",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01978076-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 28421,
+ "created": "2013-04-30T21:07:55.000Z",
+ "lastUpdated": "2021-07-27T13:14:28.575Z",
+ "keywords": [
+ {
+ "keyword": "lever la main",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs"
+ ],
+ "synsets": [
+ "00860309-n",
+ "00015491-v",
+ "00860015-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs"
+ ],
+ "_id": 28425,
+ "created": "2013-04-30T21:12:36.000Z",
+ "lastUpdated": "2021-07-27T13:14:16.854Z",
+ "keywords": [
+ {
+ "keyword": "sieste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "siestes"
+ },
+ {
+ "keyword": "somme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sommes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology",
+ "verb"
+ ],
+ "synsets": [
+ "00062866-v"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 28409,
+ "created": "2013-04-30T18:50:41.000Z",
+ "lastUpdated": "2021-07-27T13:17:23.703Z",
+ "keywords": [
+ {
+ "keyword": "éclore",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic needs"
+ ],
+ "synsets": [
+ "00860309-n",
+ "00860015-n"
+ ],
+ "tags": [
+ "person",
+ "basic needs"
+ ],
+ "_id": 28426,
+ "created": "2013-04-30T21:13:14.000Z",
+ "lastUpdated": "2021-07-27T13:13:48.092Z",
+ "keywords": [
+ {
+ "keyword": "sieste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "siestes"
+ },
+ {
+ "keyword": "somme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sommes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02615799-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 28429,
+ "created": "2013-05-03T11:31:26.000Z",
+ "lastUpdated": "2021-07-28T17:04:49.749Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mener quelque chose à son terme, le finir, l'achever : Terminer un tableau. J'ai terminé la lecture de votre rapport.",
+ "keyword": "terminer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "finir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "j'ai fini",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "c'est fini !",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "ça suffit !",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01978076-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 28419,
+ "created": "2013-04-30T21:06:09.000Z",
+ "lastUpdated": "2021-07-27T13:15:13.929Z",
+ "keywords": [
+ {
+ "keyword": "lever la main",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02204104-v",
+ "02302103-v",
+ "02235554-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 28431,
+ "created": "2013-05-25T01:15:41.000Z",
+ "lastUpdated": "2021-07-27T13:12:42.542Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Ofrrir",
+ "keyword": "donner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "offrir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00817348-v",
+ "00637941-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 28433,
+ "created": "2013-05-25T01:23:07.000Z",
+ "lastUpdated": "2021-07-27T13:12:40.515Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "répondre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "digestive system"
+ ],
+ "synsets": [
+ "05394510-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "human physiology",
+ "physiology",
+ "digestive system"
+ ],
+ "_id": 28407,
+ "created": "2013-04-30T18:48:22.000Z",
+ "lastUpdated": "2021-07-27T13:17:42.312Z",
+ "keywords": [
+ {
+ "keyword": "pancréas",
+ "hasLocution": false,
+ "plural": "pancréas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "road safety",
+ "land transport",
+ "transport services"
+ ],
+ "synsets": [
+ "10054631-n",
+ "09928311-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "road safety",
+ "mode of transport",
+ "land transport",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 28435,
+ "created": "2013-05-27T20:28:36.000Z",
+ "lastUpdated": "2021-07-27T13:12:36.609Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conducteur",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "chauffeur",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01970868-v",
+ "02099066-v",
+ "02099200-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 28445,
+ "created": "2013-05-27T20:46:18.000Z",
+ "lastUpdated": "2021-07-27T13:12:20.196Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sauter à cloche-pied",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01967949-v",
+ "01970868-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 28447,
+ "created": "2013-05-27T20:50:22.000Z",
+ "lastUpdated": "2021-07-27T13:12:11.336Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Quitter le contact avec un sol ou une surface : Sauter à pieds joints, à cloche-pied.",
+ "keyword": "sauter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "02099200-v",
+ "02099066-v",
+ "01967949-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 28443,
+ "created": "2013-05-27T20:44:54.000Z",
+ "lastUpdated": "2021-07-27T13:12:24.493Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sauter à pieds joints",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01511000-v",
+ "01516062-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 28449,
+ "created": "2013-05-27T21:03:48.000Z",
+ "lastUpdated": "2021-07-27T13:12:06.548Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "lancer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "jeter",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01974840-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 28451,
+ "created": "2013-05-27T21:18:20.000Z",
+ "lastUpdated": "2021-07-27T13:11:53.923Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Aller de haut en bas, quitter un lieu pour un autre moins élevé",
+ "keyword": "descendre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "descendre les escaliers",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01973223-v",
+ "01925957-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 28453,
+ "created": "2013-05-27T21:23:39.000Z",
+ "lastUpdated": "2021-07-27T13:11:39.346Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Aller de bas en haut, aller en un lieu plus élevé",
+ "keyword": "monter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "remonter",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "monter les escaliers",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01930264-v",
+ "01918940-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 28439,
+ "created": "2013-05-27T20:41:31.000Z",
+ "lastUpdated": "2021-07-27T13:12:31.901Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se déplacer rapidement, en s'appuyant alternativement sur une jambe puis sur l'autre ou sur une patte puis sur l'autre",
+ "keyword": "courir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01348685-v",
+ "00220389-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 28455,
+ "created": "2013-05-27T21:27:44.000Z",
+ "lastUpdated": "2021-07-27T13:11:12.461Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir la porte",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "01347791-v",
+ "01876870-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 28457,
+ "created": "2013-05-27T21:28:42.000Z",
+ "lastUpdated": "2021-07-27T13:11:08.737Z",
+ "keywords": [
+ {
+ "keyword": "fermer la porte",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "toy",
+ "sport material",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01970868-v",
+ "03610446-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "toy",
+ "sport material",
+ "physical exercise"
+ ],
+ "_id": 28441,
+ "created": "2013-05-27T20:43:38.000Z",
+ "lastUpdated": "2021-07-27T13:12:27.707Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sauter à la corde",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mollusc",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "01962626-n",
+ "07803589-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 28461,
+ "created": "2013-05-27T21:32:42.000Z",
+ "lastUpdated": "2021-07-27T13:10:38.300Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coque",
+ "hasLocution": true,
+ "plural": "coques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00521099-v",
+ "02513385-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 28459,
+ "created": "2013-05-27T21:30:34.000Z",
+ "lastUpdated": "2021-07-28T17:03:36.945Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "embêter",
+ "hasLocution": false
+ },
+ {
+ "keyword": "ennuyer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "déranger",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mollusc",
+ "oviparous",
+ "marine animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01975182-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "wild"
+ ],
+ "_id": 28466,
+ "created": "2013-05-27T22:33:18.000Z",
+ "lastUpdated": "2021-07-27T13:10:10.565Z",
+ "keywords": [
+ {
+ "keyword": "seiche",
+ "hasLocution": false,
+ "plural": "seiches",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "river animal",
+ "oviparous",
+ "flying animal",
+ "cattle farming",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01848972-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "oviparous",
+ "flying animal",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "domestic"
+ ],
+ "_id": 28477,
+ "created": "2013-05-28T12:17:43.000Z",
+ "lastUpdated": "2021-07-27T13:09:34.094Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canard",
+ "hasLocution": true,
+ "plural": "canards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "river animal",
+ "flying animal",
+ "hunting",
+ "core vocabulary-living being",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "01848972-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "flying animal",
+ "work",
+ "primary sector",
+ "hunting",
+ "core vocabulary"
+ ],
+ "_id": 28479,
+ "created": "2013-05-28T12:30:32.000Z",
+ "lastUpdated": "2021-07-27T13:09:26.296Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canard",
+ "hasLocution": true,
+ "plural": "canards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "annelid",
+ "omnivorous",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01924944-n"
+ ],
+ "tags": [
+ "animal",
+ "invertebrate",
+ "annelid",
+ "omnivorous",
+ "oviparous",
+ "terrestrial animal",
+ "wild",
+ "core vocabulary"
+ ],
+ "_id": 28485,
+ "created": "2013-05-28T12:44:04.000Z",
+ "lastUpdated": "2021-07-27T13:09:19.337Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ver",
+ "hasLocution": true,
+ "plural": "vers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "flag"
+ ],
+ "synsets": [
+ "01458383-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "geography",
+ "political geography",
+ "flag"
+ ],
+ "_id": 28489,
+ "created": "2013-05-28T12:46:33.000Z",
+ "lastUpdated": "2021-07-27T13:09:13.496Z",
+ "keywords": [
+ {
+ "keyword": "hisser",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mollusc",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "01975182-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 28465,
+ "created": "2013-05-27T22:33:14.000Z",
+ "lastUpdated": "2021-07-27T13:10:21.111Z",
+ "keywords": [
+ {
+ "keyword": "seiche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "seiches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "amphibian",
+ "oviparous",
+ "river animal",
+ "terrestrial animal",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01642406-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "amphibian",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "terrestrial animal",
+ "core vocabulary"
+ ],
+ "_id": 28473,
+ "created": "2013-05-28T11:53:53.000Z",
+ "lastUpdated": "2021-07-27T13:09:43.898Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grenouille",
+ "hasLocution": true,
+ "plural": "grenouilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "birthday"
+ ],
+ "synsets": [
+ "15277233-n",
+ "15274989-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 28492,
+ "created": "2013-05-28T12:48:32.000Z",
+ "lastUpdated": "2021-07-27T13:08:44.560Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "anniversaire",
+ "hasLocution": true,
+ "plural": "anniversaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "building facility",
+ "geography",
+ "history"
+ ],
+ "synsets": [
+ "02736529-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility",
+ "geography",
+ "history"
+ ],
+ "_id": 28495,
+ "created": "2013-05-28T13:24:50.000Z",
+ "lastUpdated": "2024-12-14T08:02:35.719Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arche",
+ "hasLocution": false,
+ "plural": "arches"
+ },
+ {
+ "keyword": "arc",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "arcs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "birthday"
+ ],
+ "synsets": [
+ "15277233-n",
+ "15274989-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 28491,
+ "created": "2013-05-28T12:48:29.000Z",
+ "lastUpdated": "2021-07-27T13:08:51.078Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "anniversaire",
+ "hasLocution": true,
+ "plural": "anniversaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hairdresser",
+ "routine"
+ ],
+ "synsets": [
+ "00218901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser",
+ "person",
+ "routine"
+ ],
+ "_id": 28503,
+ "created": "2013-05-29T10:15:30.000Z",
+ "lastUpdated": "2021-07-27T13:07:56.088Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "sécher les cheveux",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se sécher les cheveux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "03098615-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "ophthalmology"
+ ],
+ "_id": 28511,
+ "created": "2013-05-29T10:39:15.000Z",
+ "lastUpdated": "2021-07-27T13:07:06.941Z",
+ "keywords": [
+ {
+ "keyword": "lentilles de contact",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "04474542-n",
+ "00116112-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28499,
+ "created": "2013-05-29T09:57:52.000Z",
+ "lastUpdated": "2021-07-27T13:08:03.115Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "remorque",
+ "hasLocution": false,
+ "plural": "remorques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "literature"
+ ],
+ "synsets": [
+ "09885879-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "literature"
+ ],
+ "_id": 28513,
+ "created": "2013-05-29T10:55:10.000Z",
+ "lastUpdated": "2021-07-27T13:06:50.089Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "libraire",
+ "hasLocution": false,
+ "plural": "libraires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03842122-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 28517,
+ "created": "2013-05-29T11:00:43.000Z",
+ "lastUpdated": "2021-07-27T13:06:42.230Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "casse-noix",
+ "hasLocution": true,
+ "plural": "casse-noix"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "09452291-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 28521,
+ "created": "2013-05-29T11:04:13.000Z",
+ "lastUpdated": "2021-07-27T13:06:29.996Z",
+ "keywords": [
+ {
+ "keyword": "tranche",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "tranches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "jewelry",
+ "accessories"
+ ],
+ "synsets": [
+ "03914950-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "jewelry",
+ "accessories"
+ ],
+ "_id": 28525,
+ "created": "2013-05-29T11:10:33.000Z",
+ "lastUpdated": "2021-07-27T13:05:38.780Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pendentif",
+ "hasLocution": false,
+ "plural": "pendentifs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "03537522-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 28529,
+ "created": "2013-05-29T11:16:59.000Z",
+ "lastUpdated": "2021-07-27T13:04:57.244Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crochet",
+ "hasLocution": true,
+ "plural": "crochets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04326912-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 28533,
+ "created": "2013-05-29T11:23:45.000Z",
+ "lastUpdated": "2021-07-27T13:04:42.481Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clé serre-tube",
+ "hasLocution": false,
+ "plural": "clés serre-tube"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine",
+ "hairdresser"
+ ],
+ "synsets": [
+ "01538956-v",
+ "00257176-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 28505,
+ "created": "2013-05-29T10:16:57.000Z",
+ "lastUpdated": "2024-12-05T08:59:32.063Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rincer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00218901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 28507,
+ "created": "2013-05-29T10:20:44.000Z",
+ "lastUpdated": "2021-09-23T22:44:14.730Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "essuyer le visage",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'essuyer le visage",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se sécher la figure",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item"
+ ],
+ "synsets": [
+ "04529463-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item"
+ ],
+ "_id": 28541,
+ "created": "2013-05-29T11:32:16.000Z",
+ "lastUpdated": "2021-07-27T13:02:15.602Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vase",
+ "hasLocution": true,
+ "plural": "vases"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "03620246-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 28537,
+ "created": "2013-05-29T11:28:02.000Z",
+ "lastUpdated": "2021-08-02T22:39:54.269Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "porte-clés",
+ "hasLocution": true,
+ "plural": "porte-clés"
+ },
+ {
+ "keyword": "porte-clefs",
+ "hasLocution": false,
+ "plural": "porte-clefs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry",
+ "construction"
+ ],
+ "synsets": [
+ "03720925-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry",
+ "construction"
+ ],
+ "_id": 28549,
+ "created": "2013-05-29T11:39:23.000Z",
+ "lastUpdated": "2024-12-12T15:46:43.039Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masse en caoutchouc",
+ "hasLocution": false,
+ "plural": "masses en caoutchouc"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical notation"
+ ],
+ "synsets": [
+ "03763133-n"
+ ],
+ "tags": [
+ "music",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 28553,
+ "created": "2013-05-29T11:42:34.000Z",
+ "lastUpdated": "2021-07-27T12:59:31.637Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "métronome",
+ "hasLocution": true,
+ "plural": "métronomes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "beverage"
+ ],
+ "synsets": [
+ "03067488-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 28557,
+ "created": "2013-05-29T11:45:52.000Z",
+ "lastUpdated": "2021-07-27T12:59:21.873Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moulin à café",
+ "hasLocution": true,
+ "plural": "moulins à café"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "rhythmic gymnastics",
+ "olympic games"
+ ],
+ "synsets": [
+ "03573092-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "gymnastics",
+ "rhythmic gymnastics",
+ "event",
+ "sport event",
+ "olympic games"
+ ],
+ "_id": 28545,
+ "created": "2013-05-29T11:36:42.000Z",
+ "lastUpdated": "2024-12-12T15:46:31.985Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "massue",
+ "hasLocution": true,
+ "plural": "massues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04295410-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 28563,
+ "created": "2013-05-29T11:50:52.000Z",
+ "lastUpdated": "2021-03-27T21:55:12.970Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ressort",
+ "hasLocution": true,
+ "plural": "ressorts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower"
+ ],
+ "synsets": [
+ "12442188-n"
+ ],
+ "tags": [
+ "plant",
+ "flower"
+ ],
+ "_id": 28567,
+ "created": "2013-05-29T11:56:12.000Z",
+ "lastUpdated": "2021-03-26T13:56:17.979Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "jonquille",
+ "plural": "jonquilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hardware"
+ ],
+ "synsets": [
+ "01214679-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "computing",
+ "hardware"
+ ],
+ "_id": 28561,
+ "created": "2013-05-29T11:47:59.000Z",
+ "lastUpdated": "2021-07-27T12:58:43.417Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "déplacer la souris",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "déplacer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bouger la souris",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "autumn"
+ ],
+ "synsets": [
+ "02502815-s",
+ "13173519-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "autumn"
+ ],
+ "_id": 28571,
+ "created": "2013-05-29T12:00:26.000Z",
+ "lastUpdated": "2021-07-27T12:58:02.310Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "feuilles mortes",
+ "hasLocution": false
+ },
+ {
+ "keyword": "feuilles sèches",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mineral origin material"
+ ],
+ "synsets": [
+ "14720954-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "mineral origin material"
+ ],
+ "_id": 28585,
+ "created": "2013-05-29T12:20:04.000Z",
+ "lastUpdated": "2021-07-27T12:54:57.339Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pierres",
+ "hasLocution": true
+ },
+ {
+ "keyword": "galets",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00050369-v",
+ "04279164-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 28587,
+ "created": "2013-05-29T12:24:12.000Z",
+ "lastUpdated": "2021-07-27T12:54:39.928Z",
+ "keywords": [
+ {
+ "keyword": "mettre ses lunettes",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre les lunettes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00050369-v",
+ "04279164-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 28588,
+ "created": "2013-05-29T12:24:14.000Z",
+ "lastUpdated": "2021-07-27T12:54:15.451Z",
+ "keywords": [
+ {
+ "keyword": "mettre ses lunettes",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre les lunettes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "meat"
+ ],
+ "synsets": [
+ "02930437-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 28573,
+ "created": "2013-05-29T12:04:58.000Z",
+ "lastUpdated": "2021-07-27T12:57:33.102Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hachoir à viande",
+ "hasLocution": false,
+ "plural": "hachoirs à viande"
+ },
+ {
+ "keyword": "hachoir de boucher",
+ "hasLocution": false,
+ "plural": "hachoirs de boucher",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "01848972-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 28577,
+ "created": "2013-05-29T12:12:11.000Z",
+ "lastUpdated": "2021-07-27T12:56:11.976Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "canard en plastique",
+ "hasLocution": false,
+ "plural": "canards en plastique"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03078859-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 28581,
+ "created": "2013-05-29T12:15:24.000Z",
+ "lastUpdated": "2021-07-28T17:02:23.873Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peigne de mantille",
+ "hasLocution": true,
+ "plural": "peignes de mantille"
+ },
+ {
+ "keyword": "peigne",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "peignes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 28593,
+ "created": "2013-05-29T12:26:45.000Z",
+ "lastUpdated": "2021-07-27T12:53:21.184Z",
+ "keywords": [
+ {
+ "keyword": "enlever ses lunettes",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enlever les lunettes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport material",
+ "chronological device",
+ "chronological instrument"
+ ],
+ "synsets": [
+ "00491904-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport material",
+ "object",
+ "appliance",
+ "time",
+ "chronological device"
+ ],
+ "_id": 28599,
+ "created": "2013-05-29T12:29:53.000Z",
+ "lastUpdated": "2021-07-27T11:57:41.956Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chronométrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07604518-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 28601,
+ "created": "2013-05-29T12:30:48.000Z",
+ "lastUpdated": "2021-07-28T17:01:34.335Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pommes de terre au chorizo",
+ "hasLocution": false
+ },
+ {
+ "keyword": "pommes de terre saucisse",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "03976514-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 28603,
+ "created": "2013-05-29T12:33:54.000Z",
+ "lastUpdated": "2021-07-27T11:57:35.478Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "déboucheur",
+ "hasLocution": true,
+ "plural": "déboucheurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "building facility"
+ ],
+ "synsets": [
+ "01481768-v",
+ "01619364-v",
+ "00181809-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 28607,
+ "created": "2013-05-29T12:37:51.000Z",
+ "lastUpdated": "2021-07-27T11:57:27.164Z",
+ "keywords": [
+ {
+ "keyword": "déboucher",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00050369-v",
+ "04279164-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 28589,
+ "created": "2013-05-29T12:24:14.000Z",
+ "lastUpdated": "2021-07-27T12:53:51.220Z",
+ "keywords": [
+ {
+ "keyword": "mettre ses lunettes",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre les lunettes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 28594,
+ "created": "2013-05-29T12:26:49.000Z",
+ "lastUpdated": "2021-07-28T17:02:00.628Z",
+ "keywords": [
+ {
+ "keyword": "enlever ses lunettes",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enlever les lunettes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00105359-n",
+ "02791712-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 28611,
+ "created": "2013-05-29T12:50:13.000Z",
+ "lastUpdated": "2021-07-28T17:00:58.174Z",
+ "keywords": [
+ {
+ "keyword": "lancer de barre",
+ "hasLocution": false,
+ "plural": "lancers de barre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "03879526-n",
+ "00524569-n",
+ "01075360-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 28609,
+ "created": "2013-05-29T12:40:45.000Z",
+ "lastUpdated": "2021-07-27T11:57:13.280Z",
+ "keywords": [
+ {
+ "keyword": "paddle-tennis",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "jouer au paddle-tennis",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "body sensation",
+ "routine"
+ ],
+ "synsets": [
+ "00071765-v",
+ "13518175-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "human body",
+ "body sensation",
+ "routine"
+ ],
+ "_id": 28614,
+ "created": "2013-05-29T13:00:05.000Z",
+ "lastUpdated": "2021-07-28T16:59:28.078Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "j'ai envie de faire pipi",
+ "type": 5
+ },
+ {
+ "keyword": "avoir envie de faire pipi",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "avoir envie d'uriner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "urgence urinaire",
+ "hasLocution": false,
+ "plural": "urgences urinaires",
+ "type": 2
+ },
+ {
+ "keyword": "j'ai envie de pisser",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "00018519-v",
+ "00018151-v",
+ "15194183-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 28617,
+ "created": "2013-05-29T13:08:44.000Z",
+ "lastUpdated": "2021-07-27T11:43:42.075Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se lever tôt",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00036355-v",
+ "01538956-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 28621,
+ "created": "2013-05-29T13:12:02.000Z",
+ "lastUpdated": "2021-07-27T11:43:33.125Z",
+ "keywords": [
+ {
+ "keyword": "savonner le visage",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se savonner le visage",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "00018519-v",
+ "00018151-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 28618,
+ "created": "2013-05-29T13:08:46.000Z",
+ "lastUpdated": "2021-07-27T11:43:38.230Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se lever tôt",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "routine"
+ ],
+ "synsets": [
+ "00014735-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "routine"
+ ],
+ "_id": 28623,
+ "created": "2013-05-29T13:13:21.000Z",
+ "lastUpdated": "2021-07-27T11:43:04.266Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Ãtre plongé dans le sommeil",
+ "keyword": "dormir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "00018519-v",
+ "00027261-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 28625,
+ "created": "2013-05-29T13:16:23.000Z",
+ "lastUpdated": "2021-07-27T11:42:43.612Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réveiller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se réveiller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'étirer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "body sensation",
+ "routine"
+ ],
+ "synsets": [
+ "00071765-v",
+ "13518175-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "human body",
+ "body sensation",
+ "routine"
+ ],
+ "_id": 28613,
+ "created": "2013-05-29T13:00:04.000Z",
+ "lastUpdated": "2021-07-29T05:53:23.375Z",
+ "keywords": [
+ {
+ "keyword": "j'ai envie de faire pipi",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "avoir envie de faire pipi",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "avoir envie d'uriner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "urgence urinaire",
+ "hasLocution": false,
+ "plural": "urgences urinaire",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "j'ai envie de pisser",
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "land transport"
+ ],
+ "synsets": [
+ "04103160-n",
+ "03906828-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28627,
+ "created": "2013-05-29T13:20:35.000Z",
+ "lastUpdated": "2021-07-27T11:42:37.892Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussée romaine",
+ "hasLocution": false,
+ "plural": "chaussées romaine"
+ },
+ {
+ "type": 4,
+ "keyword": "pavée",
+ "hasLocution": false
+ },
+ {
+ "keyword": "chaussée",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chaussées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "routine"
+ ],
+ "synsets": [
+ "00188104-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "person",
+ "routine"
+ ],
+ "_id": 28631,
+ "created": "2013-05-29T13:23:44.000Z",
+ "lastUpdated": "2021-07-27T11:38:34.012Z",
+ "keywords": [
+ {
+ "keyword": "réveillée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "smoking"
+ ],
+ "synsets": [
+ "01200739-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs",
+ "smoking"
+ ],
+ "_id": 28637,
+ "created": "2013-05-29T13:35:31.000Z",
+ "lastUpdated": "2021-07-27T11:38:15.406Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fumer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00084491-v",
+ "01614420-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 28639,
+ "created": "2013-05-29T13:36:49.000Z",
+ "lastUpdated": "2021-07-28T16:58:08.576Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "doser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire couler goutte à goutte",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 28595,
+ "created": "2013-05-29T12:26:50.000Z",
+ "lastUpdated": "2021-07-27T11:58:10.173Z",
+ "keywords": [
+ {
+ "keyword": "enlever ses lunettes",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enlever les lunettes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00065962-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 28645,
+ "created": "2013-05-30T18:09:46.000Z",
+ "lastUpdated": "2021-07-27T11:35:08.644Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Laisser des larmes s'échapper, en parlant des yeux ; avoir des larmes qui s'échappent des yeux",
+ "keyword": "pleurer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "food",
+ "basic needs"
+ ],
+ "synsets": [
+ "01170802-v",
+ "01159300-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "person",
+ "basic needs"
+ ],
+ "_id": 28641,
+ "created": "2013-05-29T13:46:07.000Z",
+ "lastUpdated": "2021-07-28T16:57:46.162Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "manger",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "prendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "literature"
+ ],
+ "synsets": [
+ "00626756-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "literature"
+ ],
+ "_id": 28643,
+ "created": "2013-05-29T13:55:06.000Z",
+ "lastUpdated": "2021-07-27T11:35:11.804Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Reconnaître les signes graphiques d'une langue, former mentalement ou à voix haute les sons que ces signes ou leurs combinaisons représentent et leur associer un sens",
+ "keyword": "lire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00591490-a",
+ "01151786-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 28647,
+ "created": "2013-05-31T16:21:33.000Z",
+ "lastUpdated": "2021-07-27T11:35:03.342Z",
+ "keywords": [
+ {
+ "keyword": "contente",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "heureuse",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs"
+ ],
+ "synsets": [
+ "00014398-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs"
+ ],
+ "_id": 28649,
+ "created": "2013-05-31T16:32:01.000Z",
+ "lastUpdated": "2021-07-27T11:34:42.590Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se reposer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se détendre",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14350016-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28651,
+ "created": "2013-05-31T16:54:19.000Z",
+ "lastUpdated": "2021-07-27T11:33:29.052Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de tête",
+ "hasLocution": true,
+ "plural": "maux de tête"
+ },
+ {
+ "keyword": "migraine",
+ "hasLocution": false,
+ "plural": "migraines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "body sensation"
+ ],
+ "synsets": [
+ "01257098-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 28653,
+ "created": "2013-05-31T17:02:46.000Z",
+ "lastUpdated": "2021-07-27T11:33:05.830Z",
+ "keywords": [
+ {
+ "keyword": "frileuse",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "tremblante",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses"
+ ],
+ "synsets": [
+ "02175483-v",
+ "02174146-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 28659,
+ "created": "2013-06-01T22:43:38.000Z",
+ "lastUpdated": "2021-07-27T11:31:56.063Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Percevoir par l'ouïe les bruits, les sons produits par quelque chose ou quelqu'un, les paroles, la musique, le chant, produits par quelqu'un",
+ "keyword": "entendre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "écouter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "body sensation"
+ ],
+ "synsets": [
+ "01250274-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 28655,
+ "created": "2013-05-31T17:07:04.000Z",
+ "lastUpdated": "2021-07-28T16:56:39.427Z",
+ "keywords": [
+ {
+ "keyword": "chaud",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "en sueur",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "02155378-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 28661,
+ "created": "2013-06-01T23:00:06.000Z",
+ "lastUpdated": "2021-07-27T11:31:53.293Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "regarder la télévision",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "regarder la télé",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00980581-v",
+ "01011267-v",
+ "00942415-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 28663,
+ "created": "2013-06-01T23:07:09.000Z",
+ "lastUpdated": "2021-07-27T11:22:25.643Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Transmettre par la parole une information ; communiquer",
+ "keyword": "dire",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "exprimer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "verbaliser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "trade"
+ ],
+ "synsets": [
+ "02211988-v",
+ "02330964-v",
+ "02471557-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 28665,
+ "created": "2013-06-01T23:19:50.000Z",
+ "lastUpdated": "2021-07-27T11:22:06.719Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": " tr. Obtenir un bien, un droit contre paiement ; acquérir",
+ "keyword": "acheter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire des courses",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire les courses",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01188273-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 28667,
+ "created": "2013-06-01T23:23:52.000Z",
+ "lastUpdated": "2021-07-27T11:22:00.037Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prendre le petit déjeuner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déjeuner",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01187837-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 28669,
+ "created": "2013-06-01T23:44:06.000Z",
+ "lastUpdated": "2021-07-27T11:21:36.466Z",
+ "keywords": [
+ {
+ "keyword": "déjeuner",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "manger",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00114629-a",
+ "00115265-s",
+ "01811355-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 28671,
+ "created": "2013-06-10T10:04:26.000Z",
+ "lastUpdated": "2021-07-27T11:21:01.836Z",
+ "keywords": [
+ {
+ "keyword": "en colère",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "fâchée",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "énervée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical art"
+ ],
+ "synsets": [
+ "01733312-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music"
+ ],
+ "_id": 28657,
+ "created": "2013-06-01T22:38:55.000Z",
+ "lastUpdated": "2021-07-27T11:32:01.024Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Faire entendre un chant ; produire par la voix des sons mélodieux, une Åuvre musicale",
+ "keyword": "chanter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses"
+ ],
+ "synsets": [
+ "02133754-v",
+ "02134989-v",
+ "02134765-v",
+ "02173796-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 28673,
+ "created": "2013-06-10T10:12:06.000Z",
+ "lastUpdated": "2021-07-27T11:20:19.910Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Percevoir quelqu'un, quelque chose par les yeux, les organes de la vue",
+ "keyword": "voir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "regarder",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "observer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event"
+ ],
+ "synsets": [
+ "02644022-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event"
+ ],
+ "_id": 28677,
+ "created": "2013-06-10T10:14:05.000Z",
+ "lastUpdated": "2021-07-27T11:19:38.196Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spices"
+ ],
+ "synsets": [
+ "12107056-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "spices"
+ ],
+ "_id": 28679,
+ "created": "2013-06-10T10:16:06.000Z",
+ "lastUpdated": "2021-07-27T12:50:48.447Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vanille",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "05266592-n",
+ "05262259-n",
+ "01438878-a"
+ ],
+ "tags": [
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 28683,
+ "created": "2013-06-10T10:45:32.000Z",
+ "lastUpdated": "2021-07-27T11:19:01.561Z",
+ "keywords": [
+ {
+ "keyword": "cheveux courts",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "coupe courte",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07820299-n",
+ "00619151-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 28685,
+ "created": "2013-06-10T10:48:36.000Z",
+ "lastUpdated": "2021-07-28T16:55:55.948Z",
+ "keywords": [
+ {
+ "keyword": "riz au four",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "02020375-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 28687,
+ "created": "2013-06-10T10:50:35.000Z",
+ "lastUpdated": "2021-07-27T11:18:30.779Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Passer de l'extérieur à l'intérieur d'un lieu ; pénétrer",
+ "keyword": "entrer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "accéder",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01170315-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 28675,
+ "created": "2013-06-10T10:13:23.000Z",
+ "lastUpdated": "2021-07-27T11:19:54.258Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "dîner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "souper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "02019450-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 28689,
+ "created": "2013-06-10T10:53:18.000Z",
+ "lastUpdated": "2021-07-27T11:18:22.516Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Quitter le lieu où l'on se trouve pour aller dehors ou passer dans un autre lieu",
+ "keyword": "sortir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "quitter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "01436368-a",
+ "05262259-n"
+ ],
+ "tags": [
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 28681,
+ "created": "2013-06-10T10:44:37.000Z",
+ "lastUpdated": "2021-07-27T11:19:21.794Z",
+ "keywords": [
+ {
+ "keyword": "cheveux longs",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "coupe longue",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "trousseau"
+ ],
+ "synsets": [
+ "01483990-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 28691,
+ "created": "2013-06-10T10:55:43.000Z",
+ "lastUpdated": "2021-07-27T11:18:07.699Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "accrocher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pendre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00456623-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 28693,
+ "created": "2013-06-10T10:58:32.000Z",
+ "lastUpdated": "2021-07-27T11:17:52.172Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Colin-maillard",
+ "hasLocution": false
+ },
+ {
+ "keyword": "colin-maillard",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00456623-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 28695,
+ "created": "2013-06-10T10:58:59.000Z",
+ "lastUpdated": "2021-07-27T11:17:35.031Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Colin-maillard",
+ "hasLocution": false
+ },
+ {
+ "keyword": "colin-maillard",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport",
+ "sport modality"
+ ],
+ "synsets": [
+ "03893954-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport",
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 28697,
+ "created": "2013-06-10T11:01:18.000Z",
+ "lastUpdated": "2021-07-27T11:17:16.480Z",
+ "keywords": [
+ {
+ "keyword": "parachute",
+ "hasLocution": false,
+ "plural": "parachutes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "historical character",
+ "christianity"
+ ],
+ "synsets": [],
+ "tags": [
+ "religion",
+ "character",
+ "historical character",
+ "history",
+ "christianity"
+ ],
+ "_id": 28701,
+ "created": "2013-06-10T11:03:55.000Z",
+ "lastUpdated": "2021-07-27T11:16:57.346Z",
+ "keywords": [
+ {
+ "keyword": "Saint Valérius",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Saint Valérius de Saragosse",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10702573-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 28703,
+ "created": "2013-06-10T11:05:44.000Z",
+ "lastUpdated": "2021-07-27T11:14:15.013Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nageur",
+ "hasLocution": true,
+ "plural": "nageurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01348155-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 28705,
+ "created": "2013-06-10T11:11:20.000Z",
+ "lastUpdated": "2021-09-04T10:19:36.645Z",
+ "keywords": [
+ {
+ "keyword": "ennuyeux",
+ "type": 4,
+ "hasLocution": true,
+ "plural": "ennuyeux"
+ },
+ {
+ "keyword": "monotone",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "monotones"
+ },
+ {
+ "keyword": "s'ennuyer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "s'endormir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "body sensation",
+ "symptom",
+ "covid-19"
+ ],
+ "synsets": [
+ "02440540-a",
+ "02442263-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion",
+ "human body",
+ "body sensation",
+ "health",
+ "medicine",
+ "symptom",
+ "covid-19"
+ ],
+ "_id": 28709,
+ "created": "2013-06-10T11:18:05.000Z",
+ "lastUpdated": "2021-07-27T11:10:36.118Z",
+ "keywords": [
+ {
+ "keyword": "fatiguée",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "épuisée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "00826475-s",
+ "01771015-v",
+ "01769760-v",
+ "07539481-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 28713,
+ "created": "2013-06-10T11:22:06.000Z",
+ "lastUpdated": "2021-07-27T11:09:57.010Z",
+ "keywords": [
+ {
+ "keyword": "inquiète",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "s'inquiéter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se faire du souci",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "soucieuse",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document"
+ ],
+ "synsets": [
+ "06427849-n"
+ ],
+ "tags": [
+ "document",
+ "trade"
+ ],
+ "_id": 28717,
+ "created": "2013-06-10T11:27:31.000Z",
+ "lastUpdated": "2021-07-27T11:09:10.230Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "catalogue",
+ "hasLocution": true,
+ "plural": "catalogues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "toy",
+ "christmas"
+ ],
+ "synsets": [
+ "06427849-n",
+ "03971038-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "leisure",
+ "sport",
+ "toy",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 28721,
+ "created": "2013-06-10T11:28:36.000Z",
+ "lastUpdated": "2021-07-27T12:50:40.993Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "catalogue de jouets ",
+ "hasLocution": false,
+ "plural": "catalogues de jouets "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bush"
+ ],
+ "synsets": [
+ "11819447-n"
+ ],
+ "tags": [
+ "plant",
+ "bush"
+ ],
+ "_id": 28725,
+ "created": "2013-06-10T11:30:13.000Z",
+ "lastUpdated": "2021-07-27T11:08:18.767Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lierre",
+ "hasLocution": true,
+ "plural": "lierres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00166433-s",
+ "00166720-s",
+ "00759397-s",
+ "00166125-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 28635,
+ "created": "2013-05-29T13:30:47.000Z",
+ "lastUpdated": "2021-07-27T12:52:37.984Z",
+ "keywords": [
+ {
+ "keyword": "distraite",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "inattentive",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "tête en l'air",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport material"
+ ],
+ "synsets": [
+ "01511000-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 28727,
+ "created": "2013-06-10T11:31:28.000Z",
+ "lastUpdated": "2021-07-27T12:50:38.633Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "lancer une fléchette",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14394566-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28737,
+ "created": "2013-06-10T11:40:15.000Z",
+ "lastUpdated": "2021-07-27T12:50:29.719Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "constipation",
+ "hasLocution": true,
+ "plural": "constipations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom"
+ ],
+ "synsets": [
+ "00076153-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28739,
+ "created": "2013-06-10T11:41:09.000Z",
+ "lastUpdated": "2021-07-27T11:07:05.878Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "vomir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disease",
+ "patient"
+ ],
+ "synsets": [
+ "02552072-a",
+ "14085287-n",
+ "10425439-n",
+ "00087206-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "medicine",
+ "disease",
+ "person",
+ "patient"
+ ],
+ "_id": 28741,
+ "created": "2013-06-10T11:44:32.000Z",
+ "lastUpdated": "2021-07-27T11:07:00.832Z",
+ "keywords": [
+ {
+ "keyword": "malade",
+ "type": 2,
+ "hasLocution": true
+ },
+ {
+ "keyword": "souffrant",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14145979-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 28749,
+ "created": "2013-06-10T11:56:23.000Z",
+ "lastUpdated": "2021-07-27T11:06:33.063Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grippe",
+ "hasLocution": true,
+ "plural": "grippes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14388761-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28729,
+ "created": "2013-06-10T11:33:06.000Z",
+ "lastUpdated": "2021-07-27T12:50:31.841Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fièvre",
+ "hasLocution": true,
+ "plural": "fièvres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "covid-19"
+ ],
+ "synsets": [
+ "02154622-v",
+ "02135744-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "covid-19"
+ ],
+ "_id": 28751,
+ "created": "2013-06-10T12:03:32.000Z",
+ "lastUpdated": "2021-07-27T12:50:26.025Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "examiner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "ausculter",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14395318-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28732,
+ "created": "2013-06-10T11:36:28.000Z",
+ "lastUpdated": "2021-07-27T11:07:54.519Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "diarrhée",
+ "hasLocution": true,
+ "plural": "diarrhées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14350016-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28753,
+ "created": "2013-06-10T12:13:12.000Z",
+ "lastUpdated": "2021-07-29T05:55:25.734Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de tête",
+ "hasLocution": true,
+ "plural": "maux de tête"
+ },
+ {
+ "keyword": "migraine",
+ "hasLocution": false,
+ "plural": "migraines",
+ "type": 2
+ },
+ {
+ "keyword": "douleur à la tête",
+ "hasLocution": false,
+ "plural": "douleurs à la tête",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "odontology"
+ ],
+ "synsets": [
+ "14347383-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "odontology"
+ ],
+ "_id": 28757,
+ "created": "2013-06-10T12:17:50.000Z",
+ "lastUpdated": "2021-07-29T06:43:29.102Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de dent",
+ "hasLocution": true,
+ "plural": "maux de dent"
+ },
+ {
+ "keyword": "douleur dentaire",
+ "plural": "douleurs dentaires",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "odontology"
+ ],
+ "synsets": [
+ "14347383-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "odontology"
+ ],
+ "_id": 28758,
+ "created": "2013-06-10T12:17:51.000Z",
+ "lastUpdated": "2021-07-29T05:50:59.337Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de dent",
+ "hasLocution": true,
+ "plural": "maux de dent"
+ },
+ {
+ "keyword": "douleur dentaire",
+ "hasLocution": false,
+ "plural": "douleurs dentaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "covid-19"
+ ],
+ "synsets": [
+ "14208468-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "covid-19"
+ ],
+ "_id": 28761,
+ "created": "2013-06-10T12:20:05.000Z",
+ "lastUpdated": "2021-07-29T05:50:19.772Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de gorge",
+ "hasLocution": true,
+ "plural": "maux de gorge"
+ },
+ {
+ "keyword": "douleur à la gorge",
+ "plural": "douleurs à la gorge",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "covid-19"
+ ],
+ "synsets": [
+ "14208468-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "covid-19"
+ ],
+ "_id": 28762,
+ "created": "2013-06-10T12:20:05.000Z",
+ "lastUpdated": "2021-07-29T05:49:49.709Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de gorge",
+ "hasLocution": true,
+ "plural": "maux de gorge"
+ },
+ {
+ "keyword": "douleur à la gorge",
+ "hasLocution": false,
+ "plural": "douleurs à la gorge",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14350671-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28765,
+ "created": "2013-06-10T12:30:08.000Z",
+ "lastUpdated": "2021-07-29T05:55:35.908Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de ventre",
+ "hasLocution": true,
+ "plural": "maux de ventre"
+ },
+ {
+ "keyword": "mal au ventre",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "douleur au ventre",
+ "hasLocution": false,
+ "plural": "douleurs au ventre",
+ "type": 2
+ },
+ {
+ "keyword": "mal d'estomac",
+ "plural": "maux d'estomac",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14350671-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28766,
+ "created": "2013-06-10T12:30:08.000Z",
+ "lastUpdated": "2021-07-29T05:48:54.406Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de ventre",
+ "hasLocution": true,
+ "plural": "maux de ventre"
+ },
+ {
+ "keyword": "mal au ventre",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "douleur au ventre",
+ "hasLocution": false,
+ "plural": "douleurs au ventre",
+ "type": 2
+ },
+ {
+ "keyword": "mal d'estomac",
+ "hasLocution": false,
+ "plural": "maux d'estomac",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14350016-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28754,
+ "created": "2013-06-10T12:13:13.000Z",
+ "lastUpdated": "2021-07-29T05:53:17.114Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de tête",
+ "hasLocution": true,
+ "plural": "maux de tête"
+ },
+ {
+ "keyword": "migraine",
+ "hasLocution": false,
+ "plural": "migraines",
+ "type": 2
+ },
+ {
+ "keyword": "douleur à la tête",
+ "plural": "douleurs à la tête",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disease",
+ "patient"
+ ],
+ "synsets": [
+ "02552072-a",
+ "14085287-n",
+ "10425439-n",
+ "00087206-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "medicine",
+ "disease",
+ "person",
+ "patient"
+ ],
+ "_id": 28742,
+ "created": "2013-06-10T11:44:33.000Z",
+ "lastUpdated": "2021-07-27T11:06:44.886Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "malade",
+ "hasLocution": true
+ },
+ {
+ "keyword": "souffrant",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "05568420-n",
+ "14346126-n",
+ "14383864-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28770,
+ "created": "2013-06-10T12:52:02.000Z",
+ "lastUpdated": "2021-07-29T05:48:06.227Z",
+ "keywords": [
+ {
+ "keyword": "douleur à la jambe",
+ "hasLocution": false,
+ "plural": "douleurs à la jambe",
+ "type": 2
+ },
+ {
+ "keyword": "mal à la jambe",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "crampe",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "crampes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "05571403-n",
+ "14346126-n",
+ "14383864-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28773,
+ "created": "2013-06-10T12:53:10.000Z",
+ "lastUpdated": "2021-07-29T05:47:41.371Z",
+ "keywords": [
+ {
+ "keyword": "douleur au bras",
+ "hasLocution": false,
+ "plural": "douleurs aux bras",
+ "type": 2
+ },
+ {
+ "keyword": "mal de bras",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "05568420-n",
+ "14346126-n",
+ "14383864-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28769,
+ "created": "2013-06-10T12:52:00.000Z",
+ "lastUpdated": "2021-07-29T05:55:57.552Z",
+ "keywords": [
+ {
+ "keyword": "douleur à la jambe",
+ "plural": "douleurs à la jambe",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "mal de jambe",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "crampe",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "crampes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "covid-19"
+ ],
+ "synsets": [
+ "14349311-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "covid-19"
+ ],
+ "_id": 28781,
+ "created": "2013-06-10T13:05:05.000Z",
+ "lastUpdated": "2021-07-29T06:43:20.465Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "douleur de poitrine",
+ "hasLocution": true,
+ "plural": "douleurs de poitrine"
+ },
+ {
+ "keyword": "mal à la poitrine",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14347092-n",
+ "05328447-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28777,
+ "created": "2013-06-10T12:55:59.000Z",
+ "lastUpdated": "2021-07-29T05:47:02.639Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal à l'oreille",
+ "hasLocution": true,
+ "plural": "maux d'oreille"
+ },
+ {
+ "keyword": "douleur à l'oreille",
+ "hasLocution": false,
+ "plural": "douleurs à l'oreille"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "05566350-n",
+ "14346126-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28785,
+ "created": "2013-06-10T13:07:14.000Z",
+ "lastUpdated": "2021-07-28T16:53:27.516Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de dos",
+ "hasLocution": true
+ },
+ {
+ "keyword": "douleur au dos",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "douleurs au dos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "05566350-n",
+ "14346126-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28786,
+ "created": "2013-06-10T13:07:14.000Z",
+ "lastUpdated": "2021-07-28T16:53:16.512Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de dos",
+ "hasLocution": true
+ },
+ {
+ "keyword": "douleur au dos",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "douleurs au dos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "05566889-n",
+ "14346126-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28789,
+ "created": "2013-06-10T13:11:23.000Z",
+ "lastUpdated": "2021-07-28T16:52:41.037Z",
+ "keywords": [
+ {
+ "keyword": "mal aux fesses",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "douleur aux fesses",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "douleurs aux fesses"
+ },
+ {
+ "keyword": "mal au cul",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "05566889-n",
+ "14346126-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28790,
+ "created": "2013-06-10T13:11:24.000Z",
+ "lastUpdated": "2021-07-28T16:52:16.839Z",
+ "keywords": [
+ {
+ "keyword": "mal aux fesses",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "douleur aux fesses",
+ "hasLocution": false,
+ "plural": "douleurs aux fesses"
+ },
+ {
+ "keyword": "mal au cul",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "05571403-n",
+ "14346126-n",
+ "14383864-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28774,
+ "created": "2013-06-10T12:53:11.000Z",
+ "lastUpdated": "2021-07-29T05:47:29.859Z",
+ "keywords": [
+ {
+ "keyword": "douleur au bras",
+ "hasLocution": false,
+ "plural": "douleurs au bras",
+ "type": 2
+ },
+ {
+ "keyword": "mal de bras",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14347092-n",
+ "05328447-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 28778,
+ "created": "2013-06-10T12:56:00.000Z",
+ "lastUpdated": "2021-07-29T05:46:48.447Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal à l'oreille",
+ "hasLocution": true,
+ "plural": "maux d'oreilles"
+ },
+ {
+ "keyword": "douleur à l'oreille",
+ "hasLocution": false,
+ "plural": "douleurs à l'oreille",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "covid-19"
+ ],
+ "synsets": [
+ "14349311-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "covid-19"
+ ],
+ "_id": 28782,
+ "created": "2013-06-10T13:05:07.000Z",
+ "lastUpdated": "2021-07-28T16:53:58.915Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "douleur de poitrine",
+ "hasLocution": true,
+ "plural": "douleurs de poitrine"
+ },
+ {
+ "keyword": "mal à la poitrine",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00034941-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 28793,
+ "created": "2013-06-10T13:16:56.000Z",
+ "lastUpdated": "2021-07-27T12:47:48.444Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "moucher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se moucher le nez",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00034941-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 28794,
+ "created": "2013-06-10T13:16:57.000Z",
+ "lastUpdated": "2021-07-27T11:00:19.740Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "moucher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se moucher le nez",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features"
+ ],
+ "synsets": [
+ "01612154-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features"
+ ],
+ "_id": 28807,
+ "created": "2013-06-10T13:36:34.000Z",
+ "lastUpdated": "2021-07-28T16:51:24.537Z",
+ "keywords": [
+ {
+ "keyword": "avec le nez retroussé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical features",
+ "hairdresser"
+ ],
+ "synsets": [
+ "05266468-n"
+ ],
+ "tags": [
+ "human body",
+ "physical features",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 28803,
+ "created": "2013-06-10T13:30:30.000Z",
+ "lastUpdated": "2021-07-27T11:00:11.187Z",
+ "keywords": [
+ {
+ "keyword": "frange",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "franges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "physical features"
+ ],
+ "synsets": [
+ "01612154-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physical features"
+ ],
+ "_id": 28809,
+ "created": "2013-06-10T13:37:08.000Z",
+ "lastUpdated": "2021-07-28T16:51:19.600Z",
+ "keywords": [
+ {
+ "keyword": "avec le nez retroussé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "sport material"
+ ],
+ "synsets": [
+ "04235643-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 28815,
+ "created": "2013-06-10T13:41:12.000Z",
+ "lastUpdated": "2021-07-27T12:47:40.317Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussures de ski",
+ "hasLocution": false
+ },
+ {
+ "keyword": "bottes de ski",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01620084-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 28819,
+ "created": "2013-06-10T13:43:46.000Z",
+ "lastUpdated": "2021-07-27T10:56:47.072Z",
+ "keywords": [
+ {
+ "keyword": "gypaète",
+ "plural": "gypaètes",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00633959-n",
+ "05746988-n",
+ "00637093-n",
+ "04256815-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "ophthalmology"
+ ],
+ "_id": 28823,
+ "created": "2013-06-10T13:50:02.000Z",
+ "lastUpdated": "2021-07-28T10:35:03.206Z",
+ "keywords": [
+ {
+ "keyword": "examen des yeux",
+ "plural": "examens des yeux",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "test de vue",
+ "hasLocution": false,
+ "plural": "tests de vue",
+ "type": 2
+ },
+ {
+ "keyword": "test de vision",
+ "hasLocution": false,
+ "plural": "tests de vision",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00633959-n",
+ "05746988-n",
+ "00637093-n",
+ "04256815-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "ophthalmology"
+ ],
+ "_id": 28824,
+ "created": "2013-06-10T13:50:13.000Z",
+ "lastUpdated": "2021-07-27T10:56:01.277Z",
+ "keywords": [
+ {
+ "keyword": "examen des yeux",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "examens des yeux"
+ },
+ {
+ "keyword": "test de vue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tests de vue"
+ },
+ {
+ "keyword": "test de vision",
+ "hasLocution": false,
+ "plural": "tests de vision"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "02537291-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "ophthalmology"
+ ],
+ "_id": 28825,
+ "created": "2013-06-10T13:50:13.000Z",
+ "lastUpdated": "2021-07-27T10:53:31.999Z",
+ "keywords": [
+ {
+ "keyword": "tester",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "tester les yeux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "02537291-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "ophthalmology"
+ ],
+ "_id": 28826,
+ "created": "2013-06-10T13:50:14.000Z",
+ "lastUpdated": "2021-07-27T10:53:14.146Z",
+ "keywords": [
+ {
+ "keyword": "tester",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "tester les yeux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "01159300-v",
+ "01175702-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "feeding"
+ ],
+ "_id": 28835,
+ "created": "2013-06-19T19:05:21.000Z",
+ "lastUpdated": "2021-07-27T10:51:36.145Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "gouter",
+ "hasLocution": false,
+ "plural": "gouters"
+ },
+ {
+ "keyword": "prendre un gouter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "01298740-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 28837,
+ "created": "2013-06-19T19:09:54.000Z",
+ "lastUpdated": "2021-07-27T10:50:52.341Z",
+ "keywords": [
+ {
+ "keyword": "suture",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sutures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "trade",
+ "money"
+ ],
+ "synsets": [
+ "13408652-n",
+ "02314987-v",
+ "02364552-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "trade",
+ "economy",
+ "money"
+ ],
+ "_id": 28833,
+ "created": "2013-06-19T19:00:33.000Z",
+ "lastUpdated": "2021-07-27T10:52:17.372Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "monnaie",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rendre la monnaie",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner la monnaie",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology",
+ "verb"
+ ],
+ "synsets": [
+ "00015939-v"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 28831,
+ "created": "2013-06-10T13:56:07.000Z",
+ "lastUpdated": "2021-07-27T10:52:56.151Z",
+ "keywords": [
+ {
+ "keyword": "hiberner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "01298740-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 28838,
+ "created": "2013-06-19T19:09:55.000Z",
+ "lastUpdated": "2021-07-27T10:50:39.133Z",
+ "keywords": [
+ {
+ "keyword": "suture",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "sutures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant"
+ ],
+ "synsets": [
+ "11557957-n"
+ ],
+ "tags": [
+ "plant"
+ ],
+ "_id": 28843,
+ "created": "2013-06-19T19:14:31.000Z",
+ "lastUpdated": "2021-07-27T10:50:17.062Z",
+ "keywords": [
+ {
+ "keyword": "mousse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mousses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "domestic animal"
+ ],
+ "synsets": [
+ "02332897-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "domestic"
+ ],
+ "_id": 28845,
+ "created": "2013-06-19T19:15:51.000Z",
+ "lastUpdated": "2021-07-27T10:50:05.667Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "souris",
+ "hasLocution": true,
+ "plural": "souris"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12283070-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 28849,
+ "created": "2013-06-19T19:20:58.000Z",
+ "lastUpdated": "2021-07-27T10:49:55.406Z",
+ "keywords": [
+ {
+ "keyword": "chataignier",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "chataignier"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "chataigne",
+ "type": 2,
+ "plural": "chataignes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "covid-19"
+ ],
+ "synsets": [
+ "02154622-v",
+ "02135744-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "covid-19"
+ ],
+ "_id": 28801,
+ "created": "2013-06-10T13:28:43.000Z",
+ "lastUpdated": "2021-07-27T11:00:16.122Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "examiner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "ausculter",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bush"
+ ],
+ "synsets": [
+ "13140629-n"
+ ],
+ "tags": [
+ "plant",
+ "bush"
+ ],
+ "_id": 28861,
+ "created": "2013-06-19T20:05:40.000Z",
+ "lastUpdated": "2021-07-27T10:47:21.608Z",
+ "keywords": [
+ {
+ "keyword": "ronces",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "outdoor activity"
+ ],
+ "synsets": [
+ "10582611-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 28866,
+ "created": "2013-06-19T20:11:15.000Z",
+ "lastUpdated": "2021-07-27T10:46:43.719Z",
+ "keywords": [
+ {
+ "keyword": "scoute",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "scoutes"
+ },
+ {
+ "keyword": "scout",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "scouts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult",
+ "routine"
+ ],
+ "synsets": [
+ "00460031-s"
+ ],
+ "tags": [
+ "person",
+ "adult",
+ "routine"
+ ],
+ "_id": 28873,
+ "created": "2013-06-19T20:16:29.000Z",
+ "lastUpdated": "2021-07-27T10:46:07.074Z",
+ "keywords": [
+ {
+ "keyword": "nue",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "dénudée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "trade"
+ ],
+ "synsets": [
+ "04306353-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 28877,
+ "created": "2013-06-19T20:19:15.000Z",
+ "lastUpdated": "2021-07-28T10:34:50.668Z",
+ "keywords": [
+ {
+ "keyword": "stand",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "stands"
+ },
+ {
+ "keyword": "kiosque",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "kiosques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media"
+ ],
+ "synsets": [
+ "06806283-n",
+ "06280609-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media"
+ ],
+ "_id": 28881,
+ "created": "2013-06-19T20:23:44.000Z",
+ "lastUpdated": "2021-07-27T10:45:10.427Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poster",
+ "hasLocution": true,
+ "plural": "posters"
+ },
+ {
+ "keyword": "affiche",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "affiches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12338895-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 28853,
+ "created": "2013-06-19T19:24:28.000Z",
+ "lastUpdated": "2021-07-27T10:49:03.125Z",
+ "keywords": [
+ {
+ "keyword": "noix",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "noix"
+ },
+ {
+ "keyword": "noyer",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "noyers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "gastronomy"
+ ],
+ "synsets": [
+ "00099759-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 28885,
+ "created": "2013-06-19T20:28:48.000Z",
+ "lastUpdated": "2021-07-27T10:44:49.261Z",
+ "keywords": [
+ {
+ "keyword": "self-service",
+ "hasLocution": false,
+ "plural": "self-services",
+ "type": 2
+ },
+ {
+ "keyword": "buffet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "buffets"
+ },
+ {
+ "keyword": "buffet à volonté",
+ "hasLocution": false,
+ "plural": "buffets à volonté",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "beverage"
+ ],
+ "synsets": [
+ "02939042-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 28889,
+ "created": "2013-06-19T20:32:01.000Z",
+ "lastUpdated": "2021-07-27T10:42:25.569Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cafétéria",
+ "hasLocution": true,
+ "plural": "cafétérias"
+ },
+ {
+ "keyword": "café",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cafés"
+ },
+ {
+ "keyword": "bar",
+ "type": 2,
+ "plural": "bars",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media"
+ ],
+ "synsets": [
+ "01000444-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mass media"
+ ],
+ "_id": 28893,
+ "created": "2013-06-19T20:35:22.000Z",
+ "lastUpdated": "2021-07-27T10:42:01.554Z",
+ "keywords": [
+ {
+ "keyword": "enregistrer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12309340-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 28857,
+ "created": "2013-06-19T19:28:28.000Z",
+ "lastUpdated": "2021-07-27T10:48:39.343Z",
+ "keywords": [
+ {
+ "keyword": "noisette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "noisettes"
+ },
+ {
+ "keyword": "noisetier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "noisetiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "mass media"
+ ],
+ "synsets": [
+ "07159542-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media"
+ ],
+ "_id": 28895,
+ "created": "2013-06-19T20:39:26.000Z",
+ "lastUpdated": "2021-07-27T10:41:49.628Z",
+ "keywords": [
+ {
+ "keyword": "conférence de presse",
+ "hasLocution": false,
+ "plural": "conférences de presse",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "sculpture"
+ ],
+ "synsets": [
+ "09049281-n",
+ "04164381-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "visual art",
+ "sculpture"
+ ],
+ "_id": 28899,
+ "created": "2013-06-19T20:48:57.000Z",
+ "lastUpdated": "2021-07-27T10:40:43.612Z",
+ "keywords": [
+ {
+ "keyword": "Le Peigne du Vent",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "outdoor activity"
+ ],
+ "synsets": [
+ "10582611-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 28865,
+ "created": "2013-06-19T20:11:14.000Z",
+ "lastUpdated": "2021-07-27T10:46:56.092Z",
+ "keywords": [
+ {
+ "keyword": "scout",
+ "type": 2,
+ "plural": "scouts",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "outdoor activity",
+ "beach",
+ "summer"
+ ],
+ "synsets": [
+ "05862385-n",
+ "04165868-n",
+ "02861626-n",
+ "02936275-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "leisure",
+ "outdoor activity",
+ "beach",
+ "summer"
+ ],
+ "_id": 28913,
+ "created": "2013-06-23T09:20:47.000Z",
+ "lastUpdated": "2024-12-04T19:56:58.793Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bateau",
+ "hasLocution": true,
+ "plural": "bateaux"
+ },
+ {
+ "keyword": "bateau de tourisme",
+ "hasLocution": false,
+ "plural": "bateaux de tourisme",
+ "type": 2
+ },
+ {
+ "keyword": "bateau de plaisance",
+ "hasLocution": false,
+ "plural": "bateaux de plaisance",
+ "type": 2
+ },
+ {
+ "keyword": "vedette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vedettes"
+ },
+ {
+ "keyword": "bateau à moteur",
+ "hasLocution": false,
+ "plural": "bateaux à moteur",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "tourism"
+ ],
+ "synsets": [
+ "02927500-n",
+ "05862385-n",
+ "00311492-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 28905,
+ "created": "2013-06-19T21:07:15.000Z",
+ "lastUpdated": "2021-07-28T10:33:55.245Z",
+ "keywords": [
+ {
+ "keyword": "bus touristique",
+ "hasLocution": false,
+ "plural": "bus touristiques",
+ "type": 2
+ },
+ {
+ "keyword": "bus à étages",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bus à étages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "10295742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 28917,
+ "created": "2013-06-23T09:30:39.000Z",
+ "lastUpdated": "2021-07-28T10:33:30.870Z",
+ "keywords": [
+ {
+ "keyword": "bucheron",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bucherons"
+ },
+ {
+ "keyword": "concours de bucherons",
+ "hasLocution": false,
+ "plural": "concours de bucherons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01930264-v",
+ "01918940-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 28921,
+ "created": "2013-06-23T15:54:41.000Z",
+ "lastUpdated": "2021-07-27T10:35:17.004Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se déplacer rapidement, en s'appuyant alternativement sur une jambe puis sur l'autre ou sur une patte puis sur l'autre",
+ "keyword": "courir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07884316-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 28923,
+ "created": "2013-06-23T15:58:19.000Z",
+ "lastUpdated": "2021-07-27T10:35:13.563Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "riz cantonais",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "02985251-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 28901,
+ "created": "2013-06-19T20:55:55.000Z",
+ "lastUpdated": "2021-07-28T10:34:03.359Z",
+ "keywords": [
+ {
+ "keyword": "catamaran",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "catamarans"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "02938025-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 28909,
+ "created": "2013-06-19T21:10:20.000Z",
+ "lastUpdated": "2021-07-27T10:38:29.574Z",
+ "keywords": [
+ {
+ "keyword": "funiculaire",
+ "hasLocution": false,
+ "plural": "funiculaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "hospitality industry",
+ "tourism"
+ ],
+ "synsets": [
+ "02923176-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "hospitality industry",
+ "tourism"
+ ],
+ "_id": 28926,
+ "created": "2013-06-23T16:04:04.000Z",
+ "lastUpdated": "2022-04-09T05:16:44.159Z",
+ "keywords": [
+ {
+ "keyword": "maison de vacances",
+ "hasLocution": false,
+ "plural": "maisons de vacances"
+ },
+ {
+ "keyword": "tourisme rural",
+ "hasLocution": false
+ },
+ {
+ "keyword": "gite ",
+ "hasLocution": false,
+ "plural": "gites",
+ "type": 2
+ },
+ {
+ "keyword": "gite rural",
+ "hasLocution": false,
+ "plural": "gites ruraux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seafood",
+ "processed food"
+ ],
+ "synsets": [
+ "01973921-n",
+ "02950393-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "seafood",
+ "processed food"
+ ],
+ "_id": 28938,
+ "created": "2013-06-23T16:23:44.000Z",
+ "lastUpdated": "2021-07-28T10:31:49.335Z",
+ "keywords": [
+ {
+ "keyword": "boite de calamars",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "boite de calamars"
+ },
+ {
+ "keyword": "calamars en boite",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "calamars en boite"
+ },
+ {
+ "keyword": "calmars en boite",
+ "hasLocution": false,
+ "plural": "calmars en boite",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "01973921-n",
+ "05411941-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 28942,
+ "created": "2013-06-23T16:28:33.000Z",
+ "lastUpdated": "2021-07-28T10:32:34.526Z",
+ "keywords": [
+ {
+ "keyword": "calamars sauce à l'encre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "calamars sauce à l'encre"
+ },
+ {
+ "keyword": "calmars à l'encre",
+ "hasLocution": false,
+ "plural": "calmars à l'encre",
+ "type": 2
+ },
+ {
+ "keyword": "encornets à l'encre de seiche",
+ "hasLocution": false,
+ "plural": "encornets à l'encre de seiche",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular festival"
+ ],
+ "synsets": [
+ "03254272-n",
+ "00518784-n",
+ "09049281-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "popular festival"
+ ],
+ "_id": 28944,
+ "created": "2013-06-23T16:32:31.000Z",
+ "lastUpdated": "2021-07-28T10:28:51.914Z",
+ "keywords": [
+ {
+ "keyword": "Tamborrada de Saint-Sébastien",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Tamborrada",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "02536465-n",
+ "02536796-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 28930,
+ "created": "2013-06-23T16:16:20.000Z",
+ "lastUpdated": "2021-07-27T10:33:56.826Z",
+ "keywords": [
+ {
+ "keyword": "anchois",
+ "hasLocution": false,
+ "plural": "anchois",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular event"
+ ],
+ "synsets": [
+ "03254272-n",
+ "00518784-n",
+ "09049281-n"
+ ],
+ "tags": [
+ "event",
+ "popular event"
+ ],
+ "_id": 28952,
+ "created": "2013-06-23T16:42:33.000Z",
+ "lastUpdated": "2021-07-28T10:28:30.572Z",
+ "keywords": [
+ {
+ "keyword": "Tamborrada de Saint-Sébastien",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Tamborrada",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mollusc",
+ "oviparous",
+ "marine animal",
+ "fishing",
+ "wild animal"
+ ],
+ "synsets": [
+ "01973921-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing",
+ "wild"
+ ],
+ "_id": 28934,
+ "created": "2013-06-23T16:18:38.000Z",
+ "lastUpdated": "2021-07-28T10:31:21.612Z",
+ "keywords": [
+ {
+ "keyword": "calamar",
+ "hasLocution": true,
+ "plural": "calamars",
+ "type": 2
+ },
+ {
+ "keyword": "calmar",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "calmars"
+ },
+ {
+ "keyword": "encornet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "encornets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07920877-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 28954,
+ "created": "2013-06-23T16:46:57.000Z",
+ "lastUpdated": "2021-07-28T10:26:50.853Z",
+ "keywords": [
+ {
+ "keyword": "pacharan",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pacharans"
+ },
+ {
+ "keyword": "liqueur de prunelles",
+ "hasLocution": false,
+ "plural": "liqueus de prunelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "02536465-n",
+ "02536796-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 28958,
+ "created": "2013-06-23T17:18:59.000Z",
+ "lastUpdated": "2021-07-27T10:26:25.868Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "anchois",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "city"
+ ],
+ "synsets": [
+ "09049281-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "city"
+ ],
+ "_id": 28960,
+ "created": "2013-06-23T17:22:02.000Z",
+ "lastUpdated": "2021-09-03T17:12:22.775Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saint Sébastien",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Donostia",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport",
+ "sport modality"
+ ],
+ "synsets": [
+ "03356108-n",
+ "07474480-n",
+ "00450680-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 28962,
+ "created": "2013-06-23T17:25:53.000Z",
+ "lastUpdated": "2021-07-28T16:48:19.368Z",
+ "keywords": [
+ {
+ "keyword": "traînières",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "bateaux de pêche",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08835482-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28966,
+ "created": "2013-06-23T20:35:01.000Z",
+ "lastUpdated": "2021-07-27T10:23:29.320Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Bosnie-Herzégovine",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "rural area",
+ "agriculture"
+ ],
+ "synsets": [
+ "03033797-n",
+ "07937695-n",
+ "03550330-n",
+ "03327044-n"
+ ],
+ "tags": [
+ "place",
+ "rural area",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 28946,
+ "created": "2013-06-23T16:36:21.000Z",
+ "lastUpdated": "2021-07-27T10:30:53.307Z",
+ "keywords": [
+ {
+ "keyword": "cidrerie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cidreries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "container"
+ ],
+ "synsets": [
+ "02798192-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "object",
+ "container"
+ ],
+ "_id": 28950,
+ "created": "2013-06-23T16:40:21.000Z",
+ "lastUpdated": "2021-07-27T10:30:32.059Z",
+ "keywords": [
+ {
+ "keyword": "tonneaux",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "futs",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "barils",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09007158-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28969,
+ "created": "2013-06-23T20:37:58.000Z",
+ "lastUpdated": "2021-07-27T10:23:22.545Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Portugal",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08949695-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28968,
+ "created": "2013-06-23T20:37:03.000Z",
+ "lastUpdated": "2021-04-16T20:31:22.335Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "France",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08784821-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28970,
+ "created": "2013-06-23T20:38:44.000Z",
+ "lastUpdated": "2021-07-27T10:23:21.129Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Allemagne",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08868745-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28972,
+ "created": "2013-06-23T20:40:35.000Z",
+ "lastUpdated": "2021-07-27T10:23:16.279Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Belgique",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08798733-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28973,
+ "created": "2013-06-23T20:41:34.000Z",
+ "lastUpdated": "2021-07-27T10:23:13.072Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Grèce",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08819530-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28971,
+ "created": "2013-06-23T20:39:36.000Z",
+ "lastUpdated": "2021-07-27T10:23:18.625Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Italie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08879115-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28974,
+ "created": "2013-06-23T20:42:42.000Z",
+ "lastUpdated": "2021-07-27T10:23:09.039Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Royaume-Uni",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09028783-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28976,
+ "created": "2013-06-23T20:44:44.000Z",
+ "lastUpdated": "2021-07-27T10:23:04.849Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Russie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09054023-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28978,
+ "created": "2013-06-23T20:46:17.000Z",
+ "lastUpdated": "2021-07-27T10:23:00.437Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Suisse",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09045488-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28979,
+ "created": "2013-06-23T20:46:59.000Z",
+ "lastUpdated": "2021-07-27T10:22:57.705Z",
+ "keywords": [
+ {
+ "keyword": "Andorre",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08783723-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28977,
+ "created": "2013-06-23T20:45:32.000Z",
+ "lastUpdated": "2021-07-27T10:23:02.736Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Suède",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08864547-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28980,
+ "created": "2013-06-23T20:49:34.000Z",
+ "lastUpdated": "2021-07-27T10:22:47.373Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Autriche",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09045691-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28967,
+ "created": "2013-06-23T20:36:10.000Z",
+ "lastUpdated": "2021-07-27T10:23:26.185Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Espagne",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08781940-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28982,
+ "created": "2013-06-23T20:50:46.000Z",
+ "lastUpdated": "2021-07-27T10:22:43.049Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Norvège",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08779077-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28981,
+ "created": "2013-06-23T20:50:14.000Z",
+ "lastUpdated": "2021-07-27T10:22:45.082Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Danemark",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08731965-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28984,
+ "created": "2013-06-23T20:51:59.000Z",
+ "lastUpdated": "2021-07-27T10:22:37.030Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Bulgarie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08797356-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28983,
+ "created": "2013-06-23T20:51:24.000Z",
+ "lastUpdated": "2021-07-27T10:22:39.148Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Finlande",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08831830-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28975,
+ "created": "2013-06-23T20:43:40.000Z",
+ "lastUpdated": "2021-07-27T10:23:07.563Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Roumanie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "01984709-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 28988,
+ "created": "2013-06-23T21:08:24.000Z",
+ "lastUpdated": "2021-07-28T10:25:05.960Z",
+ "keywords": [
+ {
+ "keyword": "crabe royal",
+ "hasLocution": false,
+ "plural": "crabes royaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 28992,
+ "created": "2013-06-23T21:15:39.000Z",
+ "lastUpdated": "2021-07-28T16:47:35.437Z",
+ "keywords": [
+ {
+ "keyword": "panini basque",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paninis basques"
+ },
+ {
+ "keyword": "galette de maïs",
+ "hasLocution": false,
+ "plural": "galettes de maïs",
+ "type": 2
+ },
+ {
+ "keyword": "crêpe de maïs",
+ "hasLocution": false,
+ "plural": "crêpes de maïs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "02906451-n",
+ "13021801-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 28996,
+ "created": "2013-06-23T21:19:12.000Z",
+ "lastUpdated": "2021-07-27T10:22:02.337Z",
+ "keywords": [
+ {
+ "keyword": "brochette de champignons",
+ "hasLocution": false,
+ "plural": "brochettes de champignons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00456623-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 29004,
+ "created": "2013-06-23T23:36:25.000Z",
+ "lastUpdated": "2021-07-28T10:22:25.968Z",
+ "keywords": [
+ {
+ "keyword": "jeu du twister",
+ "hasLocution": false,
+ "plural": "jeux du twister"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "10793062-n",
+ "04333222-n",
+ "09438954-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 29006,
+ "created": "2013-06-23T23:47:08.000Z",
+ "lastUpdated": "2021-07-27T10:21:20.216Z",
+ "keywords": [
+ {
+ "keyword": "lever de pierre",
+ "hasLocution": false,
+ "plural": "levers de pierre",
+ "type": 2
+ },
+ {
+ "keyword": "leveur de pierre",
+ "hasLocution": false,
+ "plural": "leveurs de pierre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08833710-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28986,
+ "created": "2013-06-23T20:53:48.000Z",
+ "lastUpdated": "2021-07-27T10:22:31.689Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Croatie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "tourism"
+ ],
+ "synsets": [
+ "00311492-n",
+ "04475240-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 29008,
+ "created": "2013-06-23T23:54:21.000Z",
+ "lastUpdated": "2021-07-27T10:18:25.243Z",
+ "keywords": [
+ {
+ "keyword": "petit train",
+ "plural": "petits trains",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "train touristique",
+ "hasLocution": false,
+ "plural": "trains touristiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09004957-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28985,
+ "created": "2013-06-23T20:52:52.000Z",
+ "lastUpdated": "2021-07-27T10:22:34.575Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pologne",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08834821-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 28987,
+ "created": "2013-06-23T20:54:58.000Z",
+ "lastUpdated": "2021-07-27T10:22:29.003Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Serbie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "security and defense",
+ "signaling system"
+ ],
+ "synsets": [
+ "06816703-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 29016,
+ "created": "2013-06-28T10:19:48.000Z",
+ "lastUpdated": "2021-07-27T10:17:35.481Z",
+ "keywords": [
+ {
+ "keyword": "SOS",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "intimate hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "02410046-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "intimate hygiene",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 29022,
+ "created": "2013-06-28T10:30:33.000Z",
+ "lastUpdated": "2021-07-27T10:16:28.316Z",
+ "keywords": [
+ {
+ "keyword": "enlever le tampon",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "retirer le tampon",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "intimate hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "intimate hygiene",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 29024,
+ "created": "2013-06-28T10:33:31.000Z",
+ "lastUpdated": "2021-07-28T10:21:19.762Z",
+ "keywords": [
+ {
+ "keyword": "enlever la protection hygiénique",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enlever la serviette hygiénique",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "intimate hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00187671-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "intimate hygiene",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 29020,
+ "created": "2013-06-28T10:27:07.000Z",
+ "lastUpdated": "2021-07-27T10:16:50.750Z",
+ "keywords": [
+ {
+ "keyword": "mettre un tampon",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "insérer un tampon",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "intimate hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00436641-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "intimate hygiene",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 29026,
+ "created": "2013-06-28T10:52:20.000Z",
+ "lastUpdated": "2021-07-28T10:20:22.668Z",
+ "keywords": [
+ {
+ "keyword": "rouler la protection hygiénique",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rouler la serviette hygiénique",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "intimate hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "intimate hygiene",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 29028,
+ "created": "2013-06-28T10:58:29.000Z",
+ "lastUpdated": "2021-07-28T10:19:31.640Z",
+ "keywords": [
+ {
+ "keyword": "mettre la protection hygiénique",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre la serviette hygiénique",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "intimate hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "01265779-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "intimate hygiene",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 29030,
+ "created": "2013-06-28T11:00:48.000Z",
+ "lastUpdated": "2021-07-27T10:15:13.171Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "décoller la protection sanitaire",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "00143024-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 29032,
+ "created": "2013-06-28T11:02:46.000Z",
+ "lastUpdated": "2021-07-27T10:13:08.871Z",
+ "keywords": [
+ {
+ "keyword": "rouler",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "01366351-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 29034,
+ "created": "2013-06-28T11:06:10.000Z",
+ "lastUpdated": "2021-07-27T10:12:58.410Z",
+ "keywords": [
+ {
+ "keyword": "mettre du savon",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "prendre du savon",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "medical equipment"
+ ],
+ "synsets": [
+ "00187671-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 29018,
+ "created": "2013-06-28T10:23:30.000Z",
+ "lastUpdated": "2021-07-28T10:21:54.741Z",
+ "keywords": [
+ {
+ "keyword": "mettre ses lentilles de contact",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre sa lentille de contact",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre la lentille de contact",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07715748-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 29012,
+ "created": "2013-06-23T23:59:54.000Z",
+ "lastUpdated": "2021-07-27T10:17:49.589Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "spaghettis",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "assiette de spaghettis",
+ "hasLocution": true,
+ "plural": "assiettes de spaghettis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00456623-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 29048,
+ "created": "2013-06-28T12:35:38.000Z",
+ "lastUpdated": "2021-07-28T10:18:57.965Z",
+ "keywords": [
+ {
+ "keyword": "jeu de mains",
+ "hasLocution": false,
+ "plural": "jeux de mains",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "trousseau"
+ ],
+ "synsets": [
+ "01216829-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 29052,
+ "created": "2013-06-28T12:40:40.000Z",
+ "lastUpdated": "2021-07-27T09:59:43.217Z",
+ "keywords": [
+ {
+ "keyword": "prendre la serviette",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "security and defense"
+ ],
+ "synsets": [
+ "04508665-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 29054,
+ "created": "2013-06-28T12:51:39.000Z",
+ "lastUpdated": "2021-07-27T09:59:19.890Z",
+ "keywords": [
+ {
+ "keyword": "tourniquet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tourniquets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "00619273-s",
+ "07791351-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 29044,
+ "created": "2013-06-28T12:24:12.000Z",
+ "lastUpdated": "2021-07-27T10:11:47.805Z",
+ "keywords": [
+ {
+ "keyword": "poisson grillé",
+ "hasLocution": false,
+ "plural": "poissons grillés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "students"
+ ],
+ "synsets": [
+ "01853600-a",
+ "02638919-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "students"
+ ],
+ "_id": 29062,
+ "created": "2013-06-29T10:04:39.000Z",
+ "lastUpdated": "2021-07-27T09:58:39.911Z",
+ "keywords": [
+ {
+ "keyword": "absent",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "être absent",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "manquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "students"
+ ],
+ "synsets": [
+ "01853600-a",
+ "02638919-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "students"
+ ],
+ "_id": 29063,
+ "created": "2013-06-29T10:04:40.000Z",
+ "lastUpdated": "2021-07-27T09:58:20.588Z",
+ "keywords": [
+ {
+ "keyword": "absente",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "être absente",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "manquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "students"
+ ],
+ "synsets": [
+ "01853600-a",
+ "02638919-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "students"
+ ],
+ "_id": 29064,
+ "created": "2013-06-29T10:04:40.000Z",
+ "lastUpdated": "2021-07-27T09:57:45.756Z",
+ "keywords": [
+ {
+ "keyword": "absent",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "être absent",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "manquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "students"
+ ],
+ "synsets": [
+ "01853600-a",
+ "02638919-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "students"
+ ],
+ "_id": 29065,
+ "created": "2013-06-29T10:04:40.000Z",
+ "lastUpdated": "2021-07-27T09:57:17.810Z",
+ "keywords": [
+ {
+ "keyword": "absente",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "être absente",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "manquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "01246373-v",
+ "01246546-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 29040,
+ "created": "2013-06-28T12:07:34.000Z",
+ "lastUpdated": "2021-07-27T10:12:11.825Z",
+ "keywords": [
+ {
+ "keyword": "se brosser les ongles",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "brosser les ongles",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "trade",
+ "money"
+ ],
+ "synsets": [
+ "02256551-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "trade",
+ "economy",
+ "money"
+ ],
+ "_id": 29070,
+ "created": "2013-06-29T10:07:45.000Z",
+ "lastUpdated": "2021-07-27T09:56:43.475Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "payer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "02674410-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 29072,
+ "created": "2013-06-29T10:12:18.000Z",
+ "lastUpdated": "2021-07-27T09:56:38.281Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accessoires",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "measurement unit"
+ ],
+ "synsets": [
+ "13681796-n"
+ ],
+ "tags": [
+ "mathematics",
+ "measurement unit"
+ ],
+ "_id": 29076,
+ "created": "2013-06-29T10:18:36.000Z",
+ "lastUpdated": "2021-07-27T09:56:13.781Z",
+ "keywords": [
+ {
+ "keyword": "kilomètre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "kilomètres"
+ },
+ {
+ "keyword": "km",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "measurement unit"
+ ],
+ "synsets": [
+ "13681046-n"
+ ],
+ "tags": [
+ "mathematics",
+ "measurement unit"
+ ],
+ "_id": 29074,
+ "created": "2013-06-29T10:16:55.000Z",
+ "lastUpdated": "2021-07-27T09:56:27.082Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mètre",
+ "hasLocution": true,
+ "plural": "mètres"
+ },
+ {
+ "keyword": "m",
+ "type": 2,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 29078,
+ "created": "2013-06-29T10:40:26.000Z",
+ "lastUpdated": "2021-07-27T09:55:36.665Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "Ç",
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "07471429-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 29082,
+ "created": "2013-06-29T10:43:58.000Z",
+ "lastUpdated": "2021-07-27T10:10:53.432Z",
+ "keywords": [
+ {
+ "keyword": "duathlon",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "03810720-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 29036,
+ "created": "2013-06-28T12:04:36.000Z",
+ "lastUpdated": "2021-07-27T10:12:29.535Z",
+ "keywords": [
+ {
+ "keyword": "brosse à ongles",
+ "hasLocution": false,
+ "plural": "brosses à ongles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter"
+ ],
+ "_id": 29080,
+ "created": "2013-06-29T10:40:52.000Z",
+ "lastUpdated": "2021-07-27T09:55:16.655Z",
+ "keywords": [
+ {
+ "keyword": "ç",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05567541-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 29086,
+ "created": "2013-06-29T10:49:05.000Z",
+ "lastUpdated": "2021-07-27T09:52:56.052Z",
+ "keywords": [
+ {
+ "keyword": "membres",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "extrémités",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07596911-n",
+ "07592939-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 29090,
+ "created": "2013-06-29T10:56:53.000Z",
+ "lastUpdated": "2021-07-29T05:46:14.094Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mini-brochette",
+ "hasLocution": false,
+ "plural": "mini-brochettes"
+ },
+ {
+ "keyword": "amuse-geule",
+ "hasLocution": false,
+ "plural": "amuse-geules"
+ },
+ {
+ "keyword": "bouchée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bouchées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "medicament"
+ ],
+ "synsets": [
+ "00005041-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 29092,
+ "created": "2013-06-29T11:00:53.000Z",
+ "lastUpdated": "2021-07-27T10:10:43.820Z",
+ "keywords": [
+ {
+ "keyword": "inhaler",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "inspirer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01244955-v",
+ "01401573-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 29094,
+ "created": "2013-06-29T11:03:16.000Z",
+ "lastUpdated": "2021-07-27T09:51:46.214Z",
+ "keywords": [
+ {
+ "keyword": "frapper la table",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner un coup de pied dans la table",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01244955-v",
+ "01401573-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 29096,
+ "created": "2013-06-29T11:03:16.000Z",
+ "lastUpdated": "2021-07-27T09:50:48.301Z",
+ "keywords": [
+ {
+ "keyword": "frapper la table",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "cogner la table",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01244955-v",
+ "01401573-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 29097,
+ "created": "2013-06-29T11:03:16.000Z",
+ "lastUpdated": "2021-07-27T09:50:17.533Z",
+ "keywords": [
+ {
+ "keyword": "frapper la table",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "cogner la porte",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "jewelry"
+ ],
+ "synsets": [
+ "03602662-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "jewelry"
+ ],
+ "_id": 29088,
+ "created": "2013-06-29T10:50:48.000Z",
+ "lastUpdated": "2021-07-27T09:52:36.639Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bijoux",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "bijou",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bijouterie",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "aerial transport",
+ "transport services"
+ ],
+ "synsets": [
+ "10675033-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 29084,
+ "created": "2013-06-29T10:46:42.000Z",
+ "lastUpdated": "2021-07-28T10:18:45.568Z",
+ "keywords": [
+ {
+ "keyword": "steward",
+ "hasLocution": false,
+ "plural": "stewards",
+ "type": 2
+ },
+ {
+ "keyword": "personnel navigant",
+ "hasLocution": false,
+ "plural": "personnels navigants",
+ "type": 2
+ },
+ {
+ "keyword": "agent de bord",
+ "hasLocution": false,
+ "plural": "agents de bord",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01244955-v",
+ "01401573-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 29095,
+ "created": "2013-06-29T11:03:16.000Z",
+ "lastUpdated": "2021-07-27T10:10:41.342Z",
+ "keywords": [
+ {
+ "keyword": "frapper la table",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner un coup de pied dans la table",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01401573-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 29102,
+ "created": "2013-06-29T11:05:30.000Z",
+ "lastUpdated": "2021-07-27T09:50:28.389Z",
+ "keywords": [
+ {
+ "keyword": "frapper la porte",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "cogner la porte",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day time"
+ ],
+ "synsets": [
+ "15271664-n"
+ ],
+ "tags": [
+ "time",
+ "calendar"
+ ],
+ "_id": 29104,
+ "created": "2013-06-29T11:09:29.000Z",
+ "lastUpdated": "2021-07-27T09:49:24.634Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moment",
+ "hasLocution": true,
+ "plural": "moments"
+ },
+ {
+ "keyword": "seconde",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "secondes"
+ },
+ {
+ "keyword": "instant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "instants"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day time"
+ ],
+ "synsets": [
+ "15271664-n"
+ ],
+ "tags": [
+ "time",
+ "calendar"
+ ],
+ "_id": 29106,
+ "created": "2013-06-29T11:09:30.000Z",
+ "lastUpdated": "2021-07-27T09:48:03.450Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moment",
+ "hasLocution": true,
+ "plural": "moments"
+ },
+ {
+ "keyword": "seconde",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "secondes"
+ },
+ {
+ "keyword": "instant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "instants"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day time"
+ ],
+ "synsets": [
+ "15271664-n"
+ ],
+ "tags": [
+ "time",
+ "calendar"
+ ],
+ "_id": 29107,
+ "created": "2013-06-29T11:09:30.000Z",
+ "lastUpdated": "2021-08-02T21:49:34.209Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moment",
+ "hasLocution": true,
+ "plural": "moment"
+ },
+ {
+ "keyword": "seconde",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "secondes"
+ },
+ {
+ "keyword": "instant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "instants"
+ },
+ {
+ "keyword": "un peu",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "football"
+ ],
+ "synsets": [
+ "00479273-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "football"
+ ],
+ "_id": 29116,
+ "created": "2013-06-29T11:14:34.000Z",
+ "lastUpdated": "2021-07-27T09:43:27.674Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "football",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "computing",
+ "information technology"
+ ],
+ "synsets": [
+ "00952816-n",
+ "02600976-v",
+ "02449024-v",
+ "09638837-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "computing",
+ "tertiary sector"
+ ],
+ "_id": 29114,
+ "created": "2013-06-29T11:13:10.000Z",
+ "lastUpdated": "2021-07-27T09:44:37.065Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "informaticien",
+ "hasLocution": true,
+ "plural": "informaticiens"
+ },
+ {
+ "keyword": "programmeur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "programmeurs"
+ },
+ {
+ "keyword": "technicien informatique",
+ "hasLocution": false,
+ "plural": "techniciens informatiques",
+ "type": 2
+ },
+ {
+ "keyword": "ingénieur informatique",
+ "hasLocution": false,
+ "plural": "ingénieurs informatiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day time"
+ ],
+ "synsets": [
+ "15271664-n"
+ ],
+ "tags": [
+ "time",
+ "calendar"
+ ],
+ "_id": 29105,
+ "created": "2013-06-29T11:09:30.000Z",
+ "lastUpdated": "2021-08-02T21:39:13.385Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moment",
+ "hasLocution": true,
+ "plural": "moments"
+ },
+ {
+ "keyword": "instant",
+ "type": 2,
+ "plural": "instants",
+ "hasLocution": false
+ },
+ {
+ "keyword": "seconde",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "secondes"
+ },
+ {
+ "keyword": "un peu",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "beach"
+ ],
+ "synsets": [
+ "10280497-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 29117,
+ "created": "2013-06-29T11:16:43.000Z",
+ "lastUpdated": "2021-07-27T09:43:22.997Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sauveteur",
+ "hasLocution": false,
+ "plural": "sauveteurs"
+ },
+ {
+ "keyword": "secouriste",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "secouristes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "10280497-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 29118,
+ "created": "2013-06-29T11:16:43.000Z",
+ "lastUpdated": "2021-07-27T09:43:03.893Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sauveteur",
+ "hasLocution": false,
+ "plural": "sauveteurs"
+ },
+ {
+ "keyword": "secouriste",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "secouristes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "computing",
+ "information technology"
+ ],
+ "synsets": [
+ "00952816-n",
+ "09638837-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "computing",
+ "tertiary sector"
+ ],
+ "_id": 29112,
+ "created": "2013-06-29T11:10:22.000Z",
+ "lastUpdated": "2021-07-27T09:46:11.095Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "informaticienne",
+ "hasLocution": true,
+ "plural": "informaticiennes"
+ },
+ {
+ "keyword": "programmeuse",
+ "hasLocution": false,
+ "plural": "programmeuses",
+ "type": 2
+ },
+ {
+ "keyword": "ingénieure informatique",
+ "hasLocution": false,
+ "plural": "ingénieures informatiques",
+ "type": 2
+ },
+ {
+ "keyword": "technicienne informatique",
+ "hasLocution": false,
+ "plural": "techniciennes informatiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "swimming",
+ "swimming pool",
+ "beach"
+ ],
+ "synsets": [
+ "10280497-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool",
+ "beach"
+ ],
+ "_id": 29119,
+ "created": "2013-06-29T11:16:43.000Z",
+ "lastUpdated": "2021-07-27T09:42:40.245Z",
+ "keywords": [
+ {
+ "keyword": "sauveteur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sauveteurs"
+ },
+ {
+ "keyword": "secouriste",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "secouristes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00687584-v",
+ "02242120-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 29129,
+ "created": "2013-06-29T11:21:24.000Z",
+ "lastUpdated": "2021-07-27T09:41:35.659Z",
+ "keywords": [
+ {
+ "keyword": "refuser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "décliner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rejeter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "electrical appliance",
+ "core vocabulary-communication",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "02155378-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 29123,
+ "created": "2013-06-29T11:18:03.000Z",
+ "lastUpdated": "2021-07-27T09:42:08.534Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "regarder la télévision",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "regarder la télé",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "02155378-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 29124,
+ "created": "2013-06-29T11:18:03.000Z",
+ "lastUpdated": "2021-07-27T09:42:00.180Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "regarder la télévision",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "regarder la télé",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "02155378-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 29125,
+ "created": "2013-06-29T11:18:04.000Z",
+ "lastUpdated": "2021-07-27T09:41:48.793Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "regarder la télévision",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rearder la télé",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "07471429-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 29138,
+ "created": "2013-06-29T11:34:44.000Z",
+ "lastUpdated": "2021-07-27T10:10:37.185Z",
+ "keywords": [
+ {
+ "keyword": "triathlon",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "building facility"
+ ],
+ "synsets": [
+ "01513208-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 29140,
+ "created": "2013-06-29T11:39:37.000Z",
+ "lastUpdated": "2021-07-28T10:16:56.719Z",
+ "keywords": [
+ {
+ "keyword": "arrêter l'air conditionné",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "arrêter la climatisation",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "éteindre l'air conditionné",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "building facility"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 29142,
+ "created": "2013-06-29T11:40:25.000Z",
+ "lastUpdated": "2021-07-28T10:16:28.875Z",
+ "keywords": [
+ {
+ "keyword": "mettre l'air conditionné",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "allumer l'air conditionné",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "allumer la climatisation",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre en route la climatisation",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "processed food"
+ ],
+ "synsets": [
+ "07866305-n",
+ "09408804-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "processed food"
+ ],
+ "_id": 29144,
+ "created": "2013-06-29T11:41:51.000Z",
+ "lastUpdated": "2021-07-27T09:38:12.173Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fromage",
+ "hasLocution": true,
+ "plural": "fromages"
+ },
+ {
+ "type": 2,
+ "keyword": "morceau de fromage",
+ "hasLocution": false,
+ "plural": "morceaux de fromage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "05746988-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 29133,
+ "created": "2013-06-29T11:30:36.000Z",
+ "lastUpdated": "2021-05-02T21:07:07.844Z",
+ "keywords": [
+ {
+ "keyword": "examens diagnostiques",
+ "hasLocution": false,
+ "plural": "examens diagnostiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05227735-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 29145,
+ "created": "2013-06-29T11:48:06.000Z",
+ "lastUpdated": "2021-07-27T09:37:52.864Z",
+ "keywords": [
+ {
+ "keyword": "parties du corps",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "traditional dish"
+ ],
+ "synsets": [
+ "02792510-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 29147,
+ "created": "2013-06-29T12:00:42.000Z",
+ "lastUpdated": "2021-07-27T09:37:38.190Z",
+ "keywords": [
+ {
+ "keyword": "bar à tapas",
+ "hasLocution": false,
+ "plural": "bars à tapas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable",
+ "categorization",
+ "core vocabulary-feeding",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "07723196-n",
+ "12232878-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable",
+ "categorization",
+ "core vocabulary"
+ ],
+ "_id": 29131,
+ "created": "2013-06-29T11:22:46.000Z",
+ "lastUpdated": "2021-07-27T09:41:06.545Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "légumes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05557463-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 29136,
+ "created": "2013-06-29T11:32:38.000Z",
+ "lastUpdated": "2021-07-27T09:41:03.560Z",
+ "keywords": [
+ {
+ "keyword": "torse",
+ "type": 2,
+ "plural": "torse",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "day"
+ ],
+ "synsets": [
+ "15180180-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "time",
+ "calendar",
+ "day"
+ ],
+ "_id": 29149,
+ "created": "2013-06-29T12:06:58.000Z",
+ "lastUpdated": "2021-07-27T09:37:17.055Z",
+ "keywords": [
+ {
+ "keyword": "combien de jours ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "combien de jours",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "08674524-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 29155,
+ "created": "2013-06-29T12:16:19.000Z",
+ "lastUpdated": "2021-07-27T10:10:28.695Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "station de taxi",
+ "hasLocution": false,
+ "plural": "stations de taxi"
+ },
+ {
+ "keyword": "arrêter",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport"
+ ],
+ "synsets": [
+ "00747485-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 29159,
+ "created": "2013-06-29T12:23:31.000Z",
+ "lastUpdated": "2021-07-27T09:35:12.244Z",
+ "keywords": [
+ {
+ "keyword": "commander un taxi",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "appeler un taxi",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "video game"
+ ],
+ "synsets": [
+ "02423521-v",
+ "01075360-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "game",
+ "video game"
+ ],
+ "_id": 29153,
+ "created": "2013-06-29T12:12:24.000Z",
+ "lastUpdated": "2021-03-12T13:47:52.228Z",
+ "keywords": [
+ {
+ "keyword": "jouer sur l'ordinateur",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "video game"
+ ],
+ "synsets": [
+ "02423521-v",
+ "01075360-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "game",
+ "video game"
+ ],
+ "_id": 29151,
+ "created": "2013-06-29T12:10:20.000Z",
+ "lastUpdated": "2021-03-12T13:48:18.995Z",
+ "keywords": [
+ {
+ "keyword": "jouer sur la tablette",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "land transport"
+ ],
+ "synsets": [
+ "13800883-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 29157,
+ "created": "2013-06-29T12:18:13.000Z",
+ "lastUpdated": "2021-07-27T09:35:38.992Z",
+ "keywords": [
+ {
+ "keyword": "camping-car",
+ "hasLocution": true,
+ "plural": "camping-cars",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media device",
+ "security and defense"
+ ],
+ "synsets": [
+ "00791970-v",
+ "00791110-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 29167,
+ "created": "2013-06-29T12:41:05.000Z",
+ "lastUpdated": "2021-07-28T16:46:05.997Z",
+ "keywords": [
+ {
+ "keyword": "appeler le 112",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "appeler les secours",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07859612-n",
+ "07726825-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 29163,
+ "created": "2013-06-29T12:29:27.000Z",
+ "lastUpdated": "2021-07-28T16:46:53.693Z",
+ "keywords": [
+ {
+ "keyword": "oeufs au plat avec frites",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00481377-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 29171,
+ "created": "2013-06-29T12:48:23.000Z",
+ "lastUpdated": "2021-07-27T09:21:13.703Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pelote basque",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish"
+ ],
+ "synsets": [
+ "07795723-n",
+ "02550878-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 29173,
+ "created": "2013-06-29T12:49:43.000Z",
+ "lastUpdated": "2021-07-27T09:20:59.983Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lotte",
+ "hasLocution": false,
+ "plural": "lottes"
+ },
+ {
+ "keyword": "baudroie",
+ "hasLocution": false,
+ "plural": "baudroies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "unit of time",
+ "core vocabulary-communication",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15154879-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "time",
+ "unit of time",
+ "core vocabulary"
+ ],
+ "_id": 29175,
+ "created": "2013-06-29T12:53:58.000Z",
+ "lastUpdated": "2021-07-28T16:44:51.759Z",
+ "keywords": [
+ {
+ "keyword": "quelle heure est-il ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "il est quelle heure ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system",
+ "beverage"
+ ],
+ "synsets": [
+ "01765887-s"
+ ],
+ "tags": [
+ "communication",
+ "signaling system",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 29177,
+ "created": "2013-06-29T12:56:11.000Z",
+ "lastUpdated": "2021-07-28T16:44:19.079Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "interdit de boire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14323139-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 29165,
+ "created": "2013-06-29T12:38:22.000Z",
+ "lastUpdated": "2021-07-27T09:22:56.871Z",
+ "keywords": [
+ {
+ "keyword": "symptomes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07676747-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 29161,
+ "created": "2013-06-29T12:25:53.000Z",
+ "lastUpdated": "2021-07-28T16:47:08.406Z",
+ "keywords": [
+ {
+ "keyword": "T-bone steak",
+ "hasLocution": false,
+ "plural": "T-bone steaks",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "medical treatment"
+ ],
+ "synsets": [
+ "01378747-v",
+ "00218382-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 29169,
+ "created": "2013-06-29T12:45:42.000Z",
+ "lastUpdated": "2021-07-28T16:45:14.979Z",
+ "keywords": [
+ {
+ "keyword": "humidifier les lèvres",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mouiller les lèvres",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "01765887-s"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 29183,
+ "created": "2013-06-29T13:02:29.000Z",
+ "lastUpdated": "2021-07-28T16:43:45.624Z",
+ "keywords": [
+ {
+ "keyword": "enregistrement interdit",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "interdit d'enregistrer",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07597172-n",
+ "07596911-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 29187,
+ "created": "2013-06-29T13:07:22.000Z",
+ "lastUpdated": "2021-07-29T05:45:53.957Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amuse-gueule",
+ "hasLocution": true,
+ "plural": "amuse-gueule"
+ },
+ {
+ "keyword": "bouchée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bouchées"
+ },
+ {
+ "keyword": "tapa",
+ "hasLocution": false,
+ "plural": "tapas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07597172-n",
+ "07596911-n",
+ "02906451-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 29188,
+ "created": "2013-06-29T13:07:22.000Z",
+ "lastUpdated": "2021-07-28T09:43:07.927Z",
+ "keywords": [
+ {
+ "keyword": "brochette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "brochettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat"
+ ],
+ "synsets": [
+ "07685636-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 29191,
+ "created": "2013-06-29T13:10:24.000Z",
+ "lastUpdated": "2021-07-27T10:09:25.296Z",
+ "keywords": [
+ {
+ "keyword": "jambon cru",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jambons cru"
+ },
+ {
+ "keyword": "assiette de jambon cru",
+ "hasLocution": false,
+ "plural": "assiettes de jambon cru",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07674287-n",
+ "07684447-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 29193,
+ "created": "2013-06-29T13:12:55.000Z",
+ "lastUpdated": "2021-07-27T10:08:21.266Z",
+ "keywords": [
+ {
+ "keyword": "longe de porc",
+ "plural": "longes de porc",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "filet de porc",
+ "hasLocution": false,
+ "plural": "filets de porc",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07660576-n",
+ "07726825-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 29195,
+ "created": "2013-06-29T13:19:33.000Z",
+ "lastUpdated": "2021-07-28T09:41:57.477Z",
+ "keywords": [
+ {
+ "keyword": "poulet frites",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "poulets frites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07908788-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 29197,
+ "created": "2013-06-29T13:21:38.000Z",
+ "lastUpdated": "2021-07-28T09:42:13.449Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vins blancs",
+ "keyword": "vin blanc"
+ },
+ {
+ "keyword": "txakoli",
+ "type": 2,
+ "hasLocution": false
+ },
+ {
+ "hasLocution": false,
+ "keyword": "chacoli",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system",
+ "food"
+ ],
+ "synsets": [
+ "01765887-s"
+ ],
+ "tags": [
+ "communication",
+ "signaling system",
+ "feeding",
+ "food"
+ ],
+ "_id": 29179,
+ "created": "2013-06-29T12:56:45.000Z",
+ "lastUpdated": "2021-07-28T16:44:06.100Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "interdiction de manger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "show",
+ "popular festival"
+ ],
+ "synsets": [
+ "02155378-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "show",
+ "work",
+ "event",
+ "popular event",
+ "popular festival"
+ ],
+ "_id": 29198,
+ "created": "2013-06-29T13:24:33.000Z",
+ "lastUpdated": "2021-07-28T16:43:05.491Z",
+ "keywords": [
+ {
+ "keyword": "regarder le feu d'artifice",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "admirer le feu d'artifice",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "dog-assisted therapy"
+ ],
+ "synsets": [
+ "00662334-n"
+ ],
+ "tags": [
+ "animal",
+ "animal-assisted therapy",
+ "dog-assisted therapy"
+ ],
+ "_id": 29202,
+ "created": "2013-06-29T13:38:05.000Z",
+ "lastUpdated": "2021-07-28T16:42:16.805Z",
+ "keywords": [
+ {
+ "keyword": "thérapie assistée par l'animal",
+ "hasLocution": false,
+ "plural": "thérapies assistées par l'animal",
+ "type": 2
+ },
+ {
+ "keyword": "thérapie canine",
+ "hasLocution": false,
+ "plural": "thérapies canines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07805039-n",
+ "07858729-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 29200,
+ "created": "2013-06-29T13:28:31.000Z",
+ "lastUpdated": "2021-07-28T16:42:50.239Z",
+ "keywords": [
+ {
+ "keyword": "omelette à la morue",
+ "hasLocution": false,
+ "plural": "omelettes à la morue",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "dog-assisted therapy"
+ ],
+ "synsets": [
+ "00662334-n"
+ ],
+ "tags": [
+ "animal",
+ "animal-assisted therapy",
+ "dog-assisted therapy"
+ ],
+ "_id": 29203,
+ "created": "2013-06-29T13:38:05.000Z",
+ "lastUpdated": "2021-07-28T16:41:33.841Z",
+ "keywords": [
+ {
+ "keyword": "thérapie assistée par l'animal",
+ "hasLocution": false,
+ "plural": "thérapies assistées par l'animal",
+ "type": 2
+ },
+ {
+ "keyword": "thérapie canine",
+ "hasLocution": false,
+ "plural": "thérapies canines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "land transport",
+ "core vocabulary-document"
+ ],
+ "synsets": [
+ "06530710-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "core vocabulary"
+ ],
+ "_id": 29208,
+ "created": "2013-06-29T13:44:11.000Z",
+ "lastUpdated": "2025-02-11T10:23:25.086Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "billet",
+ "hasLocution": true,
+ "plural": "billets"
+ },
+ {
+ "keyword": "ticket",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "tickets"
+ },
+ {
+ "keyword": "billet de transport",
+ "hasLocution": false,
+ "plural": "billets de transport",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "01765887-s"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 29181,
+ "created": "2013-06-29T13:00:03.000Z",
+ "lastUpdated": "2021-07-27T09:19:26.057Z",
+ "keywords": [
+ {
+ "keyword": "photographies interdites",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "interdit de photographier",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "pas de photos",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00036925-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 29210,
+ "created": "2013-06-30T11:12:20.000Z",
+ "lastUpdated": "2021-07-27T09:13:48.309Z",
+ "keywords": [
+ {
+ "keyword": "se savonner les mains",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "savonner les mains",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "meat"
+ ],
+ "synsets": [
+ "02977363-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 29212,
+ "created": "2013-06-30T11:13:31.000Z",
+ "lastUpdated": "2021-07-27T09:13:26.236Z",
+ "keywords": [
+ {
+ "keyword": "couteau à découper",
+ "hasLocution": false,
+ "plural": "couteaux à découper",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03628765-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 29216,
+ "created": "2013-06-30T11:15:07.000Z",
+ "lastUpdated": "2021-07-27T09:09:55.434Z",
+ "keywords": [
+ {
+ "keyword": "couteau à jambon",
+ "hasLocution": false,
+ "plural": "couteaux à jambon",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07645903-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 29226,
+ "created": "2013-06-30T11:19:40.000Z",
+ "lastUpdated": "2021-07-27T09:09:17.400Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gâteau au chocolat",
+ "hasLocution": true,
+ "plural": "gâteaux au chocolat"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "movement",
+ "land transport"
+ ],
+ "synsets": [
+ "02106280-v",
+ "01845021-v",
+ "01839438-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 29206,
+ "created": "2013-06-29T13:40:30.000Z",
+ "lastUpdated": "2021-07-27T09:14:33.998Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voyager",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "parcourir ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07644185-n",
+ "07644479-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 29230,
+ "created": "2013-06-30T11:20:32.000Z",
+ "lastUpdated": "2021-04-21T21:34:49.330Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gâteau à la crème",
+ "hasLocution": true,
+ "plural": "gâteaux à la crème"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "03893954-n",
+ "00431591-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 29234,
+ "created": "2013-06-30T11:24:00.000Z",
+ "lastUpdated": "2021-07-27T09:09:04.157Z",
+ "keywords": [
+ {
+ "keyword": "jeu du parachute",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jeux du parachute"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00910891-n",
+ "00431591-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 29240,
+ "created": "2013-06-30T11:27:15.000Z",
+ "lastUpdated": "2021-07-28T16:39:30.455Z",
+ "keywords": [
+ {
+ "keyword": "jeu de la toupie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jeux de la toupie"
+ },
+ {
+ "keyword": "jeu de rotation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jeux de rotation"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "02897203-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 29220,
+ "created": "2013-06-30T11:16:23.000Z",
+ "lastUpdated": "2021-07-27T09:09:33.849Z",
+ "keywords": [
+ {
+ "keyword": "couteau à pain",
+ "hasLocution": false,
+ "plural": "couteaux à pain",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07805039-n",
+ "07736763-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 29248,
+ "created": "2013-06-30T11:33:32.000Z",
+ "lastUpdated": "2021-07-28T09:20:14.128Z",
+ "keywords": [
+ {
+ "keyword": "cabillaud aux poivrons",
+ "hasLocution": false,
+ "plural": "cabillauds aux poivrons",
+ "type": 2
+ },
+ {
+ "keyword": "morue aux poivrons",
+ "hasLocution": false,
+ "plural": "morues aux poivrons",
+ "type": 2
+ },
+ {
+ "keyword": "poisson aux poivrons",
+ "hasLocution": false,
+ "plural": "poissons aux poivrons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07820299-n",
+ "07802662-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 29250,
+ "created": "2013-06-30T11:36:31.000Z",
+ "lastUpdated": "2021-07-28T09:18:40.189Z",
+ "keywords": [
+ {
+ "keyword": "riz aux palourdes",
+ "hasLocution": false,
+ "plural": "riz aux palourdes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage"
+ ],
+ "synsets": [
+ "02074224-v",
+ "02073479-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 29246,
+ "created": "2013-06-30T11:30:52.000Z",
+ "lastUpdated": "2021-07-28T16:38:41.223Z",
+ "keywords": [
+ {
+ "keyword": "Txotx !",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "verser",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "tirer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "verser à boire",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective",
+ "mathematics",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "13768652-n",
+ "06820056-n",
+ "13603216-n",
+ "02194935-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective",
+ "core vocabulary"
+ ],
+ "_id": 29254,
+ "created": "2013-06-30T13:58:12.000Z",
+ "lastUpdated": "2024-12-13T07:36:40.405Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "10",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "dix",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13768812-n",
+ "06820056-n",
+ "13603216-n",
+ "02195018-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29260,
+ "created": "2013-06-30T14:00:34.000Z",
+ "lastUpdated": "2024-10-20T09:29:54.742Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "11",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "onze",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13772555-n",
+ "06820056-n",
+ "13603216-n",
+ "02203776-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29256,
+ "created": "2013-06-30T13:58:50.000Z",
+ "lastUpdated": "2024-10-20T09:30:34.631Z",
+ "keywords": [
+ {
+ "keyword": "cent",
+ "type": 4,
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "keyword": "100",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "adjective",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13768925-n",
+ "02195104-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29262,
+ "created": "2013-06-30T14:01:11.000Z",
+ "lastUpdated": "2024-11-10T13:58:18.137Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "12",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "douze",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13772984-n",
+ "06820056-n",
+ "13603216-n",
+ "02206421-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29258,
+ "created": "2013-06-30T13:59:54.000Z",
+ "lastUpdated": "2024-10-20T09:30:07.299Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mille",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "1000",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13769488-n",
+ "02195338-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29266,
+ "created": "2013-06-30T20:17:49.000Z",
+ "lastUpdated": "2024-10-20T09:31:17.387Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "14",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "quatorze",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13769609-n",
+ "02195432-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29268,
+ "created": "2013-06-30T20:43:48.000Z",
+ "lastUpdated": "2024-10-20T09:31:49.089Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "15",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "quinze",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13769746-n",
+ "02195542-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29270,
+ "created": "2013-06-30T20:45:03.000Z",
+ "lastUpdated": "2024-10-20T09:31:30.854Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "16",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "seize",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13769339-n",
+ "02195245-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29264,
+ "created": "2013-06-30T20:16:47.000Z",
+ "lastUpdated": "2024-10-20T09:30:13.089Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "13",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "treize",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13769865-n",
+ "02195634-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29272,
+ "created": "2013-06-30T20:45:51.000Z",
+ "lastUpdated": "2024-10-20T09:30:19.191Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "17",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "dix-sept",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13770005-n",
+ "02195747-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29274,
+ "created": "2013-06-30T20:46:50.000Z",
+ "lastUpdated": "2024-10-20T09:30:30.268Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "18",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "dix-huit",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13770129-n",
+ "02195844-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29276,
+ "created": "2013-06-30T20:47:35.000Z",
+ "lastUpdated": "2024-10-20T09:30:43.559Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "19",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "dix-neuf",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02205971-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29278,
+ "created": "2013-06-30T20:48:18.000Z",
+ "lastUpdated": "2024-10-20T09:31:26.467Z",
+ "keywords": [
+ {
+ "keyword": "deux-cents",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "200",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13770386-n",
+ "02196070-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29280,
+ "created": "2013-06-30T20:49:39.000Z",
+ "lastUpdated": "2024-10-20T09:30:39.363Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "21",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "vingt-et-un",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "04510146-n",
+ "02196164-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29282,
+ "created": "2013-06-30T20:50:29.000Z",
+ "lastUpdated": "2024-10-20T09:30:48.077Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "22",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "vingt-deux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13770762-n",
+ "02196359-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29286,
+ "created": "2013-06-30T20:51:40.000Z",
+ "lastUpdated": "2024-10-20T09:31:54.155Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "24",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "vingt-quatre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13770903-n",
+ "02196456-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29288,
+ "created": "2013-06-30T20:52:19.000Z",
+ "lastUpdated": "2024-10-20T09:30:58.375Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "25",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "vingt-cinq",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13771030-n",
+ "02196552-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29290,
+ "created": "2013-06-30T20:52:53.000Z",
+ "lastUpdated": "2024-10-20T09:31:03.391Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "26",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "vingt-six",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13771157-n",
+ "02196647-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29292,
+ "created": "2013-06-30T20:53:23.000Z",
+ "lastUpdated": "2024-10-20T09:31:07.718Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "27",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "vint-sept",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13770633-n",
+ "02196259-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29284,
+ "created": "2013-06-30T20:51:07.000Z",
+ "lastUpdated": "2024-10-20T09:30:53.641Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "23",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "vingt-trois",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13771286-n",
+ "02196747-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29294,
+ "created": "2013-06-30T20:53:57.000Z",
+ "lastUpdated": "2024-10-20T09:31:12.820Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "28",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "vingt-huit",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13771418-n",
+ "02196848-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29296,
+ "created": "2013-06-30T20:54:32.000Z",
+ "lastUpdated": "2024-10-20T09:31:21.646Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "29",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "vingt-neuf",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13771547-n",
+ "02196945-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29298,
+ "created": "2013-06-30T20:55:09.000Z",
+ "lastUpdated": "2024-10-20T09:32:16.008Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "30",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "trente",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02206078-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29300,
+ "created": "2013-06-30T20:55:43.000Z",
+ "lastUpdated": "2024-10-20T09:32:29.155Z",
+ "keywords": [
+ {
+ "keyword": "300",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "trois-cents",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02197226-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29306,
+ "created": "2013-06-30T20:57:27.000Z",
+ "lastUpdated": "2024-10-20T09:31:35.505Z",
+ "keywords": [
+ {
+ "keyword": "33",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "trente-trois",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02197035-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29302,
+ "created": "2013-06-30T20:56:21.000Z",
+ "lastUpdated": "2024-10-20T09:32:23.675Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "31",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "trente-et-un",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02197327-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29308,
+ "created": "2013-06-30T20:57:58.000Z",
+ "lastUpdated": "2024-10-20T09:31:40.836Z",
+ "keywords": [
+ {
+ "keyword": "34",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "trente-quatre",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02197425-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29310,
+ "created": "2013-06-30T20:58:31.000Z",
+ "lastUpdated": "2024-10-20T09:31:59.671Z",
+ "keywords": [
+ {
+ "keyword": "35",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "type": 4,
+ "keyword": "trente-cinq",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02197522-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29312,
+ "created": "2013-06-30T20:59:03.000Z",
+ "lastUpdated": "2024-10-20T09:32:06.389Z",
+ "keywords": [
+ {
+ "keyword": "36",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "trente-six",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02197618-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29314,
+ "created": "2013-06-30T21:00:03.000Z",
+ "lastUpdated": "2024-10-20T09:32:11.129Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "37",
+ "type": 4
+ },
+ {
+ "type": 4,
+ "keyword": "trente-sept",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02197719-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29316,
+ "created": "2013-06-30T21:00:44.000Z",
+ "lastUpdated": "2024-10-20T09:33:01.889Z",
+ "keywords": [
+ {
+ "keyword": "38",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "trente-huit",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02197130-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29304,
+ "created": "2013-06-30T20:56:54.000Z",
+ "lastUpdated": "2024-10-20T09:31:44.932Z",
+ "keywords": [
+ {
+ "keyword": "32",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "trente-deux",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02197821-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29318,
+ "created": "2013-06-30T21:02:19.000Z",
+ "lastUpdated": "2024-10-20T09:33:29.671Z",
+ "keywords": [
+ {
+ "keyword": "39",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "type": 4,
+ "keyword": "trente-neuf",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13771667-n",
+ "02197917-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29320,
+ "created": "2013-06-30T21:02:58.000Z",
+ "lastUpdated": "2024-10-20T09:34:08.594Z",
+ "keywords": [
+ {
+ "keyword": "40",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "quarante",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02198016-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29324,
+ "created": "2013-06-30T21:09:47.000Z",
+ "lastUpdated": "2024-10-20T09:34:03.890Z",
+ "keywords": [
+ {
+ "keyword": "41",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "hasLocution": false,
+ "keyword": "quarante et un",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02206189-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29322,
+ "created": "2013-06-30T21:03:30.000Z",
+ "lastUpdated": "2024-10-20T09:33:59.531Z",
+ "keywords": [
+ {
+ "keyword": "400",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "quatre-cents",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02198108-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29326,
+ "created": "2013-06-30T21:10:31.000Z",
+ "lastUpdated": "2024-10-20T09:32:34.002Z",
+ "keywords": [
+ {
+ "keyword": "42",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "type": 4,
+ "keyword": "quarante-deux",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02198201-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29328,
+ "created": "2013-06-30T21:11:02.000Z",
+ "lastUpdated": "2024-10-20T09:32:38.372Z",
+ "keywords": [
+ {
+ "keyword": "43",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "quarante-trois",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02198299-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29330,
+ "created": "2013-06-30T21:11:47.000Z",
+ "lastUpdated": "2024-10-20T09:32:42.896Z",
+ "keywords": [
+ {
+ "keyword": "44",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "quarante-quatre",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02198394-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29332,
+ "created": "2013-06-30T21:12:21.000Z",
+ "lastUpdated": "2024-10-20T09:32:51.853Z",
+ "keywords": [
+ {
+ "keyword": "45",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "type": 4,
+ "keyword": "quarante-cinq",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02198488-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29334,
+ "created": "2013-06-30T21:13:00.000Z",
+ "lastUpdated": "2024-10-20T09:32:47.395Z",
+ "keywords": [
+ {
+ "keyword": "46",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "quarante-six",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02198581-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29336,
+ "created": "2013-06-30T21:13:31.000Z",
+ "lastUpdated": "2024-10-20T09:33:34.290Z",
+ "keywords": [
+ {
+ "keyword": "47",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "quarante-sept",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13771784-n",
+ "02198871-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29342,
+ "created": "2013-06-30T21:15:22.000Z",
+ "lastUpdated": "2024-10-20T09:33:10.781Z",
+ "keywords": [
+ {
+ "keyword": "50",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "cinquante",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07597172-n",
+ "07596911-n",
+ "07822197-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 29185,
+ "created": "2013-06-29T13:05:11.000Z",
+ "lastUpdated": "2021-07-29T05:45:58.476Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amuse-gueule",
+ "hasLocution": true,
+ "plural": "amuse-gueules"
+ },
+ {
+ "keyword": "bouchée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bouchées"
+ },
+ {
+ "keyword": "tapa salade russe",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02198778-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29340,
+ "created": "2013-06-30T21:14:52.000Z",
+ "lastUpdated": "2024-10-20T09:33:06.116Z",
+ "keywords": [
+ {
+ "keyword": "49",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "quarante-neuf",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02206300-s",
+ "13772852-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29344,
+ "created": "2013-06-30T21:16:00.000Z",
+ "lastUpdated": "2024-10-20T09:33:15.738Z",
+ "keywords": [
+ {
+ "keyword": "500",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "cinq-cents",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02198975-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29346,
+ "created": "2013-06-30T21:16:38.000Z",
+ "lastUpdated": "2024-10-20T09:33:20.382Z",
+ "keywords": [
+ {
+ "keyword": "51",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "cinquante et un",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02199066-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29348,
+ "created": "2013-06-30T21:17:08.000Z",
+ "lastUpdated": "2024-10-20T09:33:25.384Z",
+ "keywords": [
+ {
+ "keyword": "52",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "cinquante-deux",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02199158-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29350,
+ "created": "2013-06-30T21:30:22.000Z",
+ "lastUpdated": "2024-10-20T09:33:38.446Z",
+ "keywords": [
+ {
+ "keyword": "53",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "type": 4,
+ "keyword": "cinquante-trois",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02198679-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29338,
+ "created": "2013-06-30T21:14:12.000Z",
+ "lastUpdated": "2024-10-20T09:32:57.580Z",
+ "keywords": [
+ {
+ "keyword": "48",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "quarante-huit",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02199349-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29354,
+ "created": "2013-06-30T21:32:58.000Z",
+ "lastUpdated": "2024-10-20T09:35:58.060Z",
+ "keywords": [
+ {
+ "keyword": "55",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "cinquante-cinq",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02199442-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29356,
+ "created": "2013-06-30T21:33:28.000Z",
+ "lastUpdated": "2024-10-20T09:34:12.782Z",
+ "keywords": [
+ {
+ "keyword": "56",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "type": 4,
+ "keyword": "cinquante-six",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02199631-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29360,
+ "created": "2013-06-30T21:43:16.000Z",
+ "lastUpdated": "2024-10-20T09:33:51.051Z",
+ "keywords": [
+ {
+ "keyword": "58",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "type": 4,
+ "keyword": "cinquante-huit",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02199729-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29362,
+ "created": "2013-06-30T21:44:28.000Z",
+ "lastUpdated": "2024-10-20T09:36:02.932Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 4,
+ "keyword": "59"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "cinquante-neuf",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02199534-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29358,
+ "created": "2013-06-30T21:34:22.000Z",
+ "lastUpdated": "2024-10-20T09:33:42.733Z",
+ "keywords": [
+ {
+ "keyword": "57",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "cinquante-sept",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13771918-n",
+ "02199823-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29364,
+ "created": "2013-06-30T21:45:07.000Z",
+ "lastUpdated": "2024-10-20T09:34:30.998Z",
+ "keywords": [
+ {
+ "keyword": "soixante",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "hasLocution": false,
+ "keyword": "60",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02199923-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29366,
+ "created": "2013-06-30T21:45:53.000Z",
+ "lastUpdated": "2024-10-20T09:34:18.138Z",
+ "keywords": [
+ {
+ "keyword": "soixante-et-un",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "hasLocution": false,
+ "keyword": "61",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02200015-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29368,
+ "created": "2013-06-30T21:46:20.000Z",
+ "lastUpdated": "2024-10-20T09:34:22.397Z",
+ "keywords": [
+ {
+ "keyword": "soixante-deux",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "62",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02200108-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29370,
+ "created": "2013-06-30T21:46:45.000Z",
+ "lastUpdated": "2024-10-20T09:34:26.616Z",
+ "keywords": [
+ {
+ "keyword": "soixante-trois",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "63",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02200206-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29372,
+ "created": "2013-06-30T21:47:13.000Z",
+ "lastUpdated": "2024-10-20T09:34:35.293Z",
+ "keywords": [
+ {
+ "keyword": "soixante-quatre",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "hasLocution": false,
+ "keyword": "64",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02200488-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29378,
+ "created": "2013-06-30T21:48:34.000Z",
+ "lastUpdated": "2024-10-20T09:34:44.256Z",
+ "keywords": [
+ {
+ "keyword": "soixante-sept",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "67",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02200395-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29376,
+ "created": "2013-06-30T21:48:11.000Z",
+ "lastUpdated": "2024-10-20T09:34:39.980Z",
+ "keywords": [
+ {
+ "keyword": "soixante-six",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "66",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02200586-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29380,
+ "created": "2013-06-30T21:48:55.000Z",
+ "lastUpdated": "2024-10-20T09:34:48.751Z",
+ "keywords": [
+ {
+ "keyword": "soixante-huit",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "68",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02200685-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29382,
+ "created": "2013-06-30T21:49:37.000Z",
+ "lastUpdated": "2024-10-20T09:34:53.437Z",
+ "keywords": [
+ {
+ "keyword": "soixante-neuf",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "69",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29384,
+ "created": "2013-06-30T21:50:11.000Z",
+ "lastUpdated": "2024-10-20T09:34:57.964Z",
+ "keywords": [
+ {
+ "keyword": "six-cents",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "hasLocution": false,
+ "keyword": "600",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29386,
+ "created": "2013-06-30T21:51:04.000Z",
+ "lastUpdated": "2024-10-20T09:37:26.635Z",
+ "keywords": [
+ {
+ "keyword": "sept-cents",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "700",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02200301-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29374,
+ "created": "2013-06-30T21:47:42.000Z",
+ "lastUpdated": "2024-10-20T09:36:07.710Z",
+ "keywords": [
+ {
+ "keyword": "soixante-cinq",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "65",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02200985-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29392,
+ "created": "2013-06-30T21:53:57.000Z",
+ "lastUpdated": "2024-10-20T09:35:02.139Z",
+ "keywords": [
+ {
+ "keyword": "soixante-douze",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "72",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02201083-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29394,
+ "created": "2013-06-30T21:54:30.000Z",
+ "lastUpdated": "2024-10-20T09:35:06.705Z",
+ "keywords": [
+ {
+ "keyword": "soixante-treize",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02201186-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29396,
+ "created": "2013-06-30T21:55:00.000Z",
+ "lastUpdated": "2024-10-20T09:35:11.474Z",
+ "keywords": [
+ {
+ "keyword": "soixante-quatorze",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "74",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02200888-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29390,
+ "created": "2013-06-30T21:53:04.000Z",
+ "lastUpdated": "2024-10-20T09:36:38.837Z",
+ "keywords": [
+ {
+ "keyword": "soixante-et-onze",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02201286-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29398,
+ "created": "2013-06-30T21:55:29.000Z",
+ "lastUpdated": "2024-10-20T09:35:15.768Z",
+ "keywords": [
+ {
+ "keyword": "soixante-quinze",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "75",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02201385-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29400,
+ "created": "2013-06-30T21:56:01.000Z",
+ "lastUpdated": "2024-10-20T09:35:19.930Z",
+ "keywords": [
+ {
+ "keyword": "soixante-seize",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "76",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02201483-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29402,
+ "created": "2013-06-30T21:56:26.000Z",
+ "lastUpdated": "2024-10-20T09:35:23.987Z",
+ "keywords": [
+ {
+ "keyword": "soixante-dix-sept",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "77",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13772173-n",
+ "02201586-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29404,
+ "created": "2013-06-30T21:56:50.000Z",
+ "lastUpdated": "2024-10-20T09:35:28.112Z",
+ "keywords": [
+ {
+ "keyword": "soixante-dix-huit",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "78",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02201690-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29406,
+ "created": "2013-06-30T21:57:14.000Z",
+ "lastUpdated": "2024-10-20T09:35:32.425Z",
+ "keywords": [
+ {
+ "keyword": "soixante-dix-neuf",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "79",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13772034-n",
+ "02200780-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29388,
+ "created": "2013-06-30T21:52:34.000Z",
+ "lastUpdated": "2024-10-20T09:37:31.524Z",
+ "keywords": [
+ {
+ "keyword": "soixante-dix",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "70",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29408,
+ "created": "2013-06-30T21:57:40.000Z",
+ "lastUpdated": "2024-10-20T09:35:36.471Z",
+ "keywords": [
+ {
+ "keyword": "huit-cents",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "800",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02201990-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29414,
+ "created": "2013-06-30T21:59:23.000Z",
+ "lastUpdated": "2024-10-20T09:35:53.214Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-deux",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "82",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02202087-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29416,
+ "created": "2013-06-30T21:59:58.000Z",
+ "lastUpdated": "2024-10-20T09:36:12.371Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-trois",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "83",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02201894-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29412,
+ "created": "2013-06-30T21:58:36.000Z",
+ "lastUpdated": "2024-10-20T09:35:48.894Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-un",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "81",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02202189-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29418,
+ "created": "2013-06-30T22:00:26.000Z",
+ "lastUpdated": "2024-10-20T09:36:17.675Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-quatre",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "hasLocution": false,
+ "keyword": "84",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02202288-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29420,
+ "created": "2013-06-30T22:00:51.000Z",
+ "lastUpdated": "2024-10-20T09:36:22.402Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-cinq",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "85",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02202386-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29422,
+ "created": "2013-06-30T22:01:12.000Z",
+ "lastUpdated": "2024-10-20T09:36:27.678Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-six",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "86",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02202483-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29424,
+ "created": "2013-06-30T22:01:34.000Z",
+ "lastUpdated": "2024-10-20T09:36:32.182Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-sept",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "hasLocution": false,
+ "keyword": "87",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02202585-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29426,
+ "created": "2013-06-30T22:01:56.000Z",
+ "lastUpdated": "2024-10-20T09:37:21.421Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-huit",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "88",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13772304-n",
+ "02201790-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29410,
+ "created": "2013-06-30T21:58:10.000Z",
+ "lastUpdated": "2024-10-20T09:35:44.211Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingts",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "80",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02202688-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29428,
+ "created": "2013-06-30T22:02:18.000Z",
+ "lastUpdated": "2024-10-20T09:36:42.922Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-neuf",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "89",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29432,
+ "created": "2013-06-30T22:03:06.000Z",
+ "lastUpdated": "2024-10-20T09:36:51.479Z",
+ "keywords": [
+ {
+ "keyword": "neuf-cents",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "900",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02202873-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29434,
+ "created": "2013-06-30T22:03:30.000Z",
+ "lastUpdated": "2024-10-20T09:36:55.412Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-onze",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "91",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "13772437-n",
+ "02202784-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29430,
+ "created": "2013-06-30T22:02:42.000Z",
+ "lastUpdated": "2024-10-20T09:36:46.908Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-dix",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "90",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02202967-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29436,
+ "created": "2013-06-30T22:03:53.000Z",
+ "lastUpdated": "2024-10-20T09:36:59.812Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-douze",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "92",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02203062-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29438,
+ "created": "2013-06-30T22:04:16.000Z",
+ "lastUpdated": "2024-10-20T09:38:38.275Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-treize",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "93",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02203162-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29440,
+ "created": "2013-06-30T22:04:37.000Z",
+ "lastUpdated": "2024-10-20T09:37:36.481Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-quatorze",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "94",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02203259-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29442,
+ "created": "2013-06-30T22:04:56.000Z",
+ "lastUpdated": "2024-10-20T09:37:41.304Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-quinze",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "hasLocution": false,
+ "keyword": "95",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02203355-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29444,
+ "created": "2013-06-30T22:05:20.000Z",
+ "lastUpdated": "2024-10-20T09:37:04.590Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-seize",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "96",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02203450-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29446,
+ "created": "2013-06-30T22:05:41.000Z",
+ "lastUpdated": "2024-10-20T09:37:08.820Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-dix-sept",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "97",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02203651-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29450,
+ "created": "2013-06-30T22:06:22.000Z",
+ "lastUpdated": "2024-10-20T09:37:17.368Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-dix-neuf",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "99",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours",
+ "adverb"
+ ],
+ "synsets": [],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours",
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time"
+ ],
+ "_id": 29452,
+ "created": "2013-07-02T18:41:16.000Z",
+ "lastUpdated": "2024-11-06T16:09:57.407Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "une heure",
+ "hasLocution": false
+ },
+ {
+ "keyword": "1h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "13h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "treize heures",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "1:00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "13:00",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "00198594-r"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29454,
+ "created": "2013-07-02T18:42:07.000Z",
+ "lastUpdated": "2021-08-02T22:09:56.984Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "dix heures",
+ "hasLocution": true
+ },
+ {
+ "keyword": "10h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "22h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "vingt-deux heures",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "hasLocution": false,
+ "keyword": "10:00",
+ "type": 6
+ },
+ {
+ "keyword": "22:00",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29456,
+ "created": "2013-07-02T18:43:11.000Z",
+ "lastUpdated": "2021-08-02T22:09:15.247Z",
+ "keywords": [
+ {
+ "keyword": "dix heures et quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "10h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "22h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "10:15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "22:15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "vingt-deux heures quinze",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "13758939-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29458,
+ "created": "2013-07-02T18:44:15.000Z",
+ "lastUpdated": "2021-08-02T22:08:23.101Z",
+ "keywords": [
+ {
+ "keyword": "dix heures et demie",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "dix heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "10h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "22h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "vingt-deux heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "10:30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "22:30",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29462,
+ "created": "2013-07-02T18:45:59.000Z",
+ "lastUpdated": "2021-08-02T22:07:48.968Z",
+ "keywords": [
+ {
+ "keyword": "onze heures et quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "11h15",
+ "hasLocution": false
+ },
+ {
+ "keyword": "23h15",
+ "hasLocution": false
+ },
+ {
+ "keyword": "11:15",
+ "hasLocution": false
+ },
+ {
+ "keyword": "23:15",
+ "hasLocution": false
+ },
+ {
+ "keyword": "vingt-trois heures quinze",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "00198594-r"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29460,
+ "created": "2013-07-02T18:45:13.000Z",
+ "lastUpdated": "2021-08-02T22:07:22.733Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "onze heures",
+ "hasLocution": true
+ },
+ {
+ "keyword": "11h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "23h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "ving-trois heures",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "11:00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "23:00",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02203550-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29448,
+ "created": "2013-06-30T22:06:03.000Z",
+ "lastUpdated": "2024-10-20T09:37:13.159Z",
+ "keywords": [
+ {
+ "keyword": "quatre-vingt-dix-huit",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "98",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "13758939-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29464,
+ "created": "2013-07-02T18:50:13.000Z",
+ "lastUpdated": "2021-08-02T22:06:42.490Z",
+ "keywords": [
+ {
+ "keyword": "onze heures et demie",
+ "hasLocution": false
+ },
+ {
+ "keyword": "onze heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "11h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "23h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "vingt-trois heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "11:30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "23:30",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29466,
+ "created": "2013-07-02T18:51:04.000Z",
+ "lastUpdated": "2021-08-02T22:05:23.960Z",
+ "keywords": [
+ {
+ "keyword": "une heure et quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "treize heures quinze",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "1h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "13h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "1:15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "13:15",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29470,
+ "created": "2013-07-02T18:52:47.000Z",
+ "lastUpdated": "2021-07-29T05:41:33.831Z",
+ "keywords": [
+ {
+ "keyword": "midi et quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "minuit et quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "12h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "0h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "12:15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "0:15",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "00198594-r"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29468,
+ "created": "2013-07-02T18:51:52.000Z",
+ "lastUpdated": "2021-08-02T22:03:20.362Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "midi",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "minuit",
+ "hasLocution": true
+ },
+ {
+ "keyword": "12h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "0h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "douze heures",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "12:00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "00:00",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "13758939-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29474,
+ "created": "2013-07-02T18:54:10.000Z",
+ "lastUpdated": "2021-08-02T22:02:40.001Z",
+ "keywords": [
+ {
+ "keyword": "une heure et demie",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "une heure trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "1h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "13h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "treize heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "1:30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "13:30",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "13758939-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29472,
+ "created": "2013-07-02T18:53:31.000Z",
+ "lastUpdated": "2021-07-28T16:37:56.764Z",
+ "keywords": [
+ {
+ "keyword": "midi et demi",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "minuit et demi",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "midi trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "minuit trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "hasLocution": false,
+ "keyword": "12h30",
+ "type": 6
+ },
+ {
+ "keyword": "0h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "12:30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "00:30",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29478,
+ "created": "2013-07-02T19:02:55.000Z",
+ "lastUpdated": "2021-08-02T22:01:32.757Z",
+ "keywords": [
+ {
+ "keyword": "deux heures et quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "2h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "14h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "14:15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "2:15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "quatorze heures quinze",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "13758939-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29480,
+ "created": "2013-07-02T19:03:33.000Z",
+ "lastUpdated": "2021-08-02T20:57:50.262Z",
+ "keywords": [
+ {
+ "keyword": "deux heures et demie",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "deux heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "2h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "14h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "quatorze heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "2:30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "14:30",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29484,
+ "created": "2013-07-02T19:05:51.000Z",
+ "lastUpdated": "2021-08-02T22:12:15.583Z",
+ "keywords": [
+ {
+ "keyword": "trois heures et quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "3h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "15h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "15:15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "3:15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "quinze heures quinze",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "00198594-r"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29482,
+ "created": "2013-07-02T19:04:33.000Z",
+ "lastUpdated": "2021-08-02T20:58:50.366Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "trois heures",
+ "hasLocution": true
+ },
+ {
+ "keyword": "3h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "15h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "quinze heures",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "15:00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "3:00",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "13758939-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29486,
+ "created": "2013-07-02T19:06:34.000Z",
+ "lastUpdated": "2021-08-02T21:00:25.471Z",
+ "keywords": [
+ {
+ "keyword": "trois heures et demie",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "trois heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "3h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "15h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "quinze heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "3:30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "15:30",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "00198594-r"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29476,
+ "created": "2013-07-02T19:02:20.000Z",
+ "lastUpdated": "2021-08-02T21:01:13.719Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "deux heures",
+ "hasLocution": true
+ },
+ {
+ "keyword": "2h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "14h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "quatorze heures",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "2:00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "14:00",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "00198594-r"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29488,
+ "created": "2013-07-02T19:07:15.000Z",
+ "lastUpdated": "2021-08-02T21:02:06.090Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "quatre heures",
+ "hasLocution": true
+ },
+ {
+ "keyword": "4h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "16h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "seize heures",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "4:00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "16:00",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29490,
+ "created": "2013-07-02T19:08:31.000Z",
+ "lastUpdated": "2021-07-29T06:22:06.696Z",
+ "keywords": [
+ {
+ "keyword": "quatre heures et quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "4h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "16h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "4:15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "16:15",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "13758939-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29492,
+ "created": "2013-07-02T19:09:10.000Z",
+ "lastUpdated": "2021-08-02T21:03:45.816Z",
+ "keywords": [
+ {
+ "keyword": "quatre heures et demie",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "quatre heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "4h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "16h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "seize heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "type": 6,
+ "keyword": "4:30",
+ "hasLocution": false
+ },
+ {
+ "keyword": "16:30",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "00198594-r"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29494,
+ "created": "2013-07-02T19:09:50.000Z",
+ "lastUpdated": "2021-08-02T21:04:17.891Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "cinq heures",
+ "hasLocution": true
+ },
+ {
+ "keyword": "5h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "17h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "dix-sept heures",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "5:00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "17:00",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "00198594-r"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29500,
+ "created": "2013-07-02T19:12:02.000Z",
+ "lastUpdated": "2021-08-02T21:33:57.307Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "six heures",
+ "hasLocution": true
+ },
+ {
+ "keyword": "6h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "18h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "dix-huit heures",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "6:00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "18:00",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29502,
+ "created": "2013-07-02T19:13:55.000Z",
+ "lastUpdated": "2021-08-02T21:08:50.364Z",
+ "keywords": [
+ {
+ "keyword": "six heures et quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "6h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "18h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "dix-huit heures 15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "6:15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "18:15",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13603216-n",
+ "06820056-n",
+ "02199255-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29352,
+ "created": "2013-06-30T21:30:57.000Z",
+ "lastUpdated": "2024-10-20T09:33:55.048Z",
+ "keywords": [
+ {
+ "keyword": "54",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "type": 4,
+ "keyword": "cinquante-quatre",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "13758939-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29498,
+ "created": "2013-07-02T19:11:15.000Z",
+ "lastUpdated": "2021-08-02T21:09:29.440Z",
+ "keywords": [
+ {
+ "keyword": "cinq heures et demie",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "cinq heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "5h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "7h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "dix-sept heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "5:30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "17:30",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "13758939-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29504,
+ "created": "2013-07-02T19:14:43.000Z",
+ "lastUpdated": "2021-08-02T21:35:23.151Z",
+ "keywords": [
+ {
+ "keyword": "six heures et demie",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "six heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "6h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "18h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "dix-huit heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "6:30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "18:30",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "00198594-r"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29506,
+ "created": "2013-07-02T19:15:15.000Z",
+ "lastUpdated": "2021-08-02T21:10:14.233Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "sept heures",
+ "hasLocution": true
+ },
+ {
+ "keyword": "7h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "19h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "dix-neuf heures",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "7:00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "19:00",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29508,
+ "created": "2013-07-02T19:15:52.000Z",
+ "lastUpdated": "2021-08-02T21:11:26.955Z",
+ "keywords": [
+ {
+ "keyword": "sept heures et quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "7h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "19h5",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "dix-neuf heures quinze",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "7:15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "19:15",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "13758939-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29510,
+ "created": "2013-07-02T19:16:28.000Z",
+ "lastUpdated": "2021-08-02T21:34:40.942Z",
+ "keywords": [
+ {
+ "keyword": "sept heures et demie",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "sept heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "7h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "19h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "dix-neuf heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "7:30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "19:30",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29496,
+ "created": "2013-07-02T19:10:31.000Z",
+ "lastUpdated": "2021-08-02T21:44:32.339Z",
+ "keywords": [
+ {
+ "keyword": "cinq heures et quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "5h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "17h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "5:15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "17:15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "dix-sept heures quine",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "00198594-r"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29512,
+ "created": "2013-07-02T19:17:14.000Z",
+ "lastUpdated": "2021-08-02T21:22:33.890Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "huit heures",
+ "hasLocution": true
+ },
+ {
+ "keyword": "8h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "20h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "vingt heures",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "8:00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "20:00",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29514,
+ "created": "2013-07-02T19:17:56.000Z",
+ "lastUpdated": "2021-08-02T21:12:42.742Z",
+ "keywords": [
+ {
+ "keyword": "huit heures et quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "8h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "20h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "vingt heures quinze",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "8:15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "20:15",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "13758939-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29516,
+ "created": "2013-07-02T19:18:30.000Z",
+ "lastUpdated": "2021-08-02T21:13:59.270Z",
+ "keywords": [
+ {
+ "keyword": "huit heures et demie",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "huit heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "8h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "20h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "vingt heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "type": 6,
+ "keyword": "8:30",
+ "hasLocution": false
+ },
+ {
+ "type": 6,
+ "keyword": "20:3",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29520,
+ "created": "2013-07-02T19:19:51.000Z",
+ "lastUpdated": "2021-08-02T21:17:41.809Z",
+ "keywords": [
+ {
+ "keyword": "neuf heures et quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "9h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "21h15",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "vingt-et-une heures quinze",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "hasLocution": false,
+ "keyword": "21:15",
+ "type": 6
+ },
+ {
+ "keyword": "9:15",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "13758939-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29522,
+ "created": "2013-07-02T19:20:30.000Z",
+ "lastUpdated": "2021-08-02T21:19:14.716Z",
+ "keywords": [
+ {
+ "keyword": "neuf heures et demie",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "neuf heures trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "9h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "21h30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "vingt-et-une heure trente",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "9:30",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "21:30",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "00198594-r"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29518,
+ "created": "2013-07-02T19:19:09.000Z",
+ "lastUpdated": "2021-08-02T21:20:19.676Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "neuf heures",
+ "hasLocution": true
+ },
+ {
+ "keyword": "9h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "21h00",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "vingt-et-une heures",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "hasLocution": false,
+ "type": 6,
+ "keyword": "21:00"
+ },
+ {
+ "keyword": "9:00",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29524,
+ "created": "2013-07-02T19:47:07.000Z",
+ "lastUpdated": "2021-08-02T21:47:05.131Z",
+ "keywords": [
+ {
+ "keyword": "onze heures moins le quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "10h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "22h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "hasLocution": false,
+ "keyword": "dix heures quarante-cinq",
+ "type": 6
+ },
+ {
+ "keyword": "vingt-deux heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "10:45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "type": 6,
+ "keyword": "22:45",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29526,
+ "created": "2013-07-02T19:47:43.000Z",
+ "lastUpdated": "2021-08-02T21:51:50.159Z",
+ "keywords": [
+ {
+ "keyword": "midi moins le quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "minuit moins le quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "11h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "23h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "onze heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "vingt-trois heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "11:45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "23:45",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29532,
+ "created": "2013-07-02T19:51:28.000Z",
+ "lastUpdated": "2021-08-02T22:01:01.938Z",
+ "keywords": [
+ {
+ "keyword": "trois heures moins le quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "2h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "14h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "deux heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "quatorze heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "2:45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "14:45",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29534,
+ "created": "2013-07-02T19:52:25.000Z",
+ "lastUpdated": "2021-08-02T21:38:15.273Z",
+ "keywords": [
+ {
+ "keyword": "quatre heures moins le quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "3h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "15h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "trois heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "3:45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "15:45",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29538,
+ "created": "2013-07-02T19:53:13.000Z",
+ "lastUpdated": "2021-08-02T21:40:28.168Z",
+ "keywords": [
+ {
+ "keyword": "six heures moins le quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "5h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "17h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "cinq heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "5:45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "17:45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "dix-sept heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29540,
+ "created": "2013-07-02T19:53:35.000Z",
+ "lastUpdated": "2021-08-02T21:57:15.107Z",
+ "keywords": [
+ {
+ "keyword": "sept heures moins le quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "6h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "18h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "six heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "dix-huit heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "type": 6,
+ "keyword": "6:45",
+ "hasLocution": false
+ },
+ {
+ "keyword": "1845",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29542,
+ "created": "2013-07-02T19:53:55.000Z",
+ "lastUpdated": "2021-08-02T21:55:45.127Z",
+ "keywords": [
+ {
+ "keyword": "huit heures moins le quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "7h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "19h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "sept heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "dix-neuf heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29530,
+ "created": "2013-07-02T19:50:55.000Z",
+ "lastUpdated": "2021-08-02T21:22:02.961Z",
+ "keywords": [
+ {
+ "keyword": "deux heures moins le quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "1h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "13h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "treize heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "1:45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "13:45",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29528,
+ "created": "2013-07-02T19:50:26.000Z",
+ "lastUpdated": "2021-08-02T21:54:26.593Z",
+ "keywords": [
+ {
+ "keyword": "une heure moins le quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "12h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "0h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "12:45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "00:45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "midi quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "minuit quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29546,
+ "created": "2013-07-02T19:54:58.000Z",
+ "lastUpdated": "2021-08-02T21:33:16.816Z",
+ "keywords": [
+ {
+ "keyword": "dix heures moins le quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "9h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "21h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "9:45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "21:45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "hasLocution": false,
+ "keyword": "vingt-et-une heures quarante-cinq",
+ "type": 6
+ },
+ {
+ "keyword": "neuf heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07859612-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 29548,
+ "created": "2013-07-02T19:55:46.000Z",
+ "lastUpdated": "2021-03-26T16:32:19.674Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oeufs à la poêle",
+ "hasLocution": false,
+ "plural": "oeufs à la poêle"
+ },
+ {
+ "keyword": "oeufs frits",
+ "hasLocution": false,
+ "plural": "oeufs frits",
+ "type": 2
+ },
+ {
+ "keyword": "oeufs au plat",
+ "hasLocution": false,
+ "plural": "oeufs au plat",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13770268-n",
+ "02195956-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 29550,
+ "created": "2013-07-27T09:35:29.000Z",
+ "lastUpdated": "2024-10-20T09:38:42.036Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "20",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "vingt",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "08474987-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 29552,
+ "created": "2013-08-06T19:05:06.000Z",
+ "lastUpdated": "2021-07-27T07:42:30.957Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "algorithme",
+ "hasLocution": false,
+ "plural": "algorithmes"
+ },
+ {
+ "keyword": "série",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "séries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "08474987-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 29553,
+ "created": "2013-08-06T19:05:08.000Z",
+ "lastUpdated": "2021-07-27T07:42:13.693Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "algorithme",
+ "hasLocution": false,
+ "plural": "algorithmes"
+ },
+ {
+ "keyword": "série",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "séries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy",
+ "professional"
+ ],
+ "synsets": [
+ "00701253-n",
+ "10447528-n"
+ ],
+ "tags": [
+ "health",
+ "physiotherapy",
+ "work",
+ "professional"
+ ],
+ "_id": 29556,
+ "created": "2013-08-06T20:49:50.000Z",
+ "lastUpdated": "2021-07-28T09:38:54.472Z",
+ "keywords": [
+ {
+ "keyword": "kinésithérapie pédiatrique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "kinésithérapies pédiatriques"
+ },
+ {
+ "keyword": "kinésithérapie infantile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "kinésithérapies infantiles"
+ },
+ {
+ "keyword": "physiothérapie pédiatrique",
+ "hasLocution": false,
+ "plural": "physiothérapies pédiatriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy",
+ "professional"
+ ],
+ "synsets": [
+ "00701253-n",
+ "10447528-n"
+ ],
+ "tags": [
+ "health",
+ "physiotherapy",
+ "work",
+ "professional"
+ ],
+ "_id": 29558,
+ "created": "2013-08-06T20:49:52.000Z",
+ "lastUpdated": "2021-07-28T09:39:13.679Z",
+ "keywords": [
+ {
+ "keyword": "kinésithérapie pédiatrique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "kinésithérapies pédiatriques"
+ },
+ {
+ "keyword": "kinésithérapie infantile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "kinésithérapies infantiles"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "physiothérapie pédiatrique",
+ "plural": "physiothérapies pédiatriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy",
+ "professional"
+ ],
+ "synsets": [
+ "00701253-n",
+ "10447528-n"
+ ],
+ "tags": [
+ "health",
+ "physiotherapy",
+ "work",
+ "professional"
+ ],
+ "_id": 29557,
+ "created": "2013-08-06T20:49:52.000Z",
+ "lastUpdated": "2021-07-28T09:39:32.458Z",
+ "keywords": [
+ {
+ "keyword": "kinésithérapie pédiatrique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "kinésithérapies pédiatriques"
+ },
+ {
+ "keyword": "kinésithérapie infantile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "kinésithérapies infantiles"
+ },
+ {
+ "keyword": "physiothérapie pédiatrique",
+ "hasLocution": false,
+ "plural": "physiothérapies pédiatriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy",
+ "professional"
+ ],
+ "synsets": [
+ "06092047-n",
+ "00701253-n",
+ "10447528-n"
+ ],
+ "tags": [
+ "health",
+ "physiotherapy",
+ "work",
+ "professional"
+ ],
+ "_id": 29563,
+ "created": "2013-08-06T20:54:34.000Z",
+ "lastUpdated": "2021-07-28T09:31:44.800Z",
+ "keywords": [
+ {
+ "keyword": "kinésithérapie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "kinésithérapies"
+ },
+ {
+ "keyword": "kinésithérapie éducative",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "kinésithérapies éducatives"
+ },
+ {
+ "keyword": "physiothérapie",
+ "hasLocution": true,
+ "plural": "physiothérapies",
+ "type": 2
+ },
+ {
+ "keyword": "physiothérapie pédiatrique",
+ "hasLocution": false,
+ "plural": "physiothérapies pédiatriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29544,
+ "created": "2013-07-02T19:54:21.000Z",
+ "lastUpdated": "2021-08-02T21:52:48.265Z",
+ "keywords": [
+ {
+ "keyword": "neuf heures moins le quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "8h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "20h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "huit heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "vingt heures quarante-cinq",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "00320339-n",
+ "01604855-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 29566,
+ "created": "2013-08-06T21:11:36.000Z",
+ "lastUpdated": "2021-07-28T09:28:03.586Z",
+ "keywords": [
+ {
+ "keyword": "monter à califourchon",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "porter sur le dos",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09039896-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29569,
+ "created": "2013-08-17T12:48:10.000Z",
+ "lastUpdated": "2021-07-27T07:33:39.528Z",
+ "keywords": [
+ {
+ "keyword": "Arménie",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08968866-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29568,
+ "created": "2013-08-17T12:46:01.000Z",
+ "lastUpdated": "2021-07-27T07:34:27.206Z",
+ "keywords": [
+ {
+ "keyword": "Pays-Bas",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Hollande",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy",
+ "professional"
+ ],
+ "synsets": [
+ "06092047-n",
+ "00701253-n",
+ "10447528-n"
+ ],
+ "tags": [
+ "health",
+ "physiotherapy",
+ "work",
+ "professional"
+ ],
+ "_id": 29562,
+ "created": "2013-08-06T20:54:34.000Z",
+ "lastUpdated": "2021-07-28T09:35:50.144Z",
+ "keywords": [
+ {
+ "keyword": "kinésithérapie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "kinésithérapies"
+ },
+ {
+ "keyword": "kinésithérapie éducative",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "kinésithérapies éducatives"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "physiothérapie pédiatrique",
+ "plural": "physiothérapies pédiatriques",
+ "type": 2
+ },
+ {
+ "keyword": "physiothérapie",
+ "hasLocution": true,
+ "plural": "physiothérapies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08776846-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29572,
+ "created": "2013-08-17T12:51:47.000Z",
+ "lastUpdated": "2021-07-27T07:32:23.486Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Slovaquie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08836296-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29573,
+ "created": "2013-08-17T12:53:49.000Z",
+ "lastUpdated": "2021-07-27T07:32:20.646Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Slovénie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09034667-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29574,
+ "created": "2013-08-17T12:55:06.000Z",
+ "lastUpdated": "2021-07-27T07:32:17.951Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Estonie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09033521-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29571,
+ "created": "2013-08-17T12:50:42.000Z",
+ "lastUpdated": "2021-07-27T07:32:51.330Z",
+ "keywords": [
+ {
+ "keyword": "Biélorussie",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09041218-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29575,
+ "created": "2013-08-17T12:55:53.000Z",
+ "lastUpdated": "2021-07-27T07:32:15.071Z",
+ "keywords": [
+ {
+ "keyword": "Géorgie",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08971963-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29576,
+ "created": "2013-08-17T12:56:32.000Z",
+ "lastUpdated": "2021-07-27T07:32:03.089Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Hongrie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09040532-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29570,
+ "created": "2013-08-17T12:49:45.000Z",
+ "lastUpdated": "2021-07-27T07:33:27.618Z",
+ "keywords": [
+ {
+ "keyword": "Azerbaïdjan",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09035444-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29577,
+ "created": "2013-08-17T12:57:14.000Z",
+ "lastUpdated": "2021-07-27T07:32:01.472Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Lettonie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08980321-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29578,
+ "created": "2013-08-17T13:09:10.000Z",
+ "lastUpdated": "2021-07-27T07:31:58.564Z",
+ "keywords": [
+ {
+ "keyword": "Liechtenstein",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08988759-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29579,
+ "created": "2013-08-17T13:09:54.000Z",
+ "lastUpdated": "2021-07-27T07:31:33.982Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Malte",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09036956-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29580,
+ "created": "2013-08-17T13:10:27.000Z",
+ "lastUpdated": "2021-07-27T07:31:31.167Z",
+ "keywords": [
+ {
+ "keyword": "Moldavie",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09014551-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29581,
+ "created": "2013-08-17T13:11:12.000Z",
+ "lastUpdated": "2021-09-03T16:57:36.938Z",
+ "keywords": [
+ {
+ "keyword": "Saint-Marin",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09037349-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29583,
+ "created": "2013-08-17T13:12:30.000Z",
+ "lastUpdated": "2021-07-27T07:30:44.467Z",
+ "keywords": [
+ {
+ "keyword": "Ukraine",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08722636-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29584,
+ "created": "2013-08-17T13:15:41.000Z",
+ "lastUpdated": "2021-07-27T07:30:35.759Z",
+ "keywords": [
+ {
+ "keyword": "Albanie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08722636-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 29585,
+ "created": "2013-08-17T13:16:51.000Z",
+ "lastUpdated": "2021-07-27T07:30:12.992Z",
+ "keywords": [
+ {
+ "keyword": "Albanie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08836296-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 29586,
+ "created": "2013-08-17T13:19:10.000Z",
+ "lastUpdated": "2021-07-27T07:30:04.986Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Slovénie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08837973-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29587,
+ "created": "2013-08-17T13:20:17.000Z",
+ "lastUpdated": "2021-07-27T07:30:03.386Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Canada",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09061886-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29582,
+ "created": "2013-08-17T13:11:56.000Z",
+ "lastUpdated": "2021-07-27T07:30:47.090Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Turquie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09067337-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29588,
+ "created": "2013-08-17T13:21:44.000Z",
+ "lastUpdated": "2021-07-27T07:29:57.026Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Etats-Unis",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Etats Unis d'Amérique",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "USA",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08872733-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29589,
+ "created": "2013-08-17T13:23:10.000Z",
+ "lastUpdated": "2021-07-27T07:29:01.611Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Brésil",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "02545435-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29590,
+ "created": "2013-08-17T13:24:41.000Z",
+ "lastUpdated": "2021-07-27T07:28:59.235Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Argentine",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09001424-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29592,
+ "created": "2013-08-17T13:38:27.000Z",
+ "lastUpdated": "2021-07-27T07:28:54.385Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Pérou",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08758708-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29591,
+ "created": "2013-08-17T13:35:37.000Z",
+ "lastUpdated": "2021-07-27T07:28:56.590Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Mexique",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08749949-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29593,
+ "created": "2013-08-17T13:39:30.000Z",
+ "lastUpdated": "2021-07-27T07:28:51.878Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Colombie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day hours"
+ ],
+ "synsets": [
+ "15259739-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time",
+ "day hours"
+ ],
+ "_id": 29536,
+ "created": "2013-07-02T19:52:51.000Z",
+ "lastUpdated": "2021-08-02T21:49:14.424Z",
+ "keywords": [
+ {
+ "keyword": "cinq heures moins le quart",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "4h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "16h45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "type": 6,
+ "keyword": "quatre heures quarante-cinq",
+ "hasLocution": false
+ },
+ {
+ "type": 6,
+ "keyword": "seize heures quarante-cinq",
+ "hasLocution": false
+ },
+ {
+ "keyword": "4:45",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "16:45",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09184596-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29596,
+ "created": "2013-08-17T18:53:34.000Z",
+ "lastUpdated": "2021-07-27T07:28:24.933Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Vénézuela",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09184596-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 29597,
+ "created": "2013-08-17T18:53:36.000Z",
+ "lastUpdated": "2021-07-27T07:28:15.949Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Vénézuela",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08871835-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 29595,
+ "created": "2013-08-17T13:41:02.000Z",
+ "lastUpdated": "2021-07-27T07:28:46.336Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Bolivie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08738314-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29598,
+ "created": "2013-08-17T18:55:02.000Z",
+ "lastUpdated": "2021-07-27T07:27:59.377Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Chili",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08968119-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29601,
+ "created": "2013-08-17T19:03:02.000Z",
+ "lastUpdated": "2021-07-28T09:25:16.948Z",
+ "keywords": [
+ {
+ "keyword": "Guyana",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08794520-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29600,
+ "created": "2013-08-17T18:59:38.000Z",
+ "lastUpdated": "2021-07-27T07:27:53.020Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Équateur",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09183088-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29602,
+ "created": "2013-08-17T19:12:21.000Z",
+ "lastUpdated": "2021-07-27T07:26:33.766Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Uruguay",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08871835-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29594,
+ "created": "2013-08-17T13:41:02.000Z",
+ "lastUpdated": "2021-07-27T07:28:49.077Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Bolivie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09053122-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29603,
+ "created": "2013-08-17T19:26:33.000Z",
+ "lastUpdated": "2021-07-27T07:26:27.163Z",
+ "keywords": [
+ {
+ "keyword": "Surinam",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08756653-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29604,
+ "created": "2013-08-17T19:27:41.000Z",
+ "lastUpdated": "2021-07-27T07:26:20.886Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Nicaragua",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08755549-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 29606,
+ "created": "2013-08-17T19:29:33.000Z",
+ "lastUpdated": "2021-07-27T07:26:15.873Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Honduras",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08768167-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29607,
+ "created": "2013-08-17T19:35:29.000Z",
+ "lastUpdated": "2021-07-27T07:26:13.551Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Cuba",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01171984-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "babycare"
+ ],
+ "_id": 29608,
+ "created": "2013-08-17T19:47:16.000Z",
+ "lastUpdated": "2022-12-18T05:38:49.679Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sucer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "têter",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01171984-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "babycare"
+ ],
+ "_id": 29609,
+ "created": "2013-08-17T19:47:17.000Z",
+ "lastUpdated": "2022-12-18T05:38:56.927Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sucer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "têter",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01171984-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "babycare"
+ ],
+ "_id": 29610,
+ "created": "2013-08-17T19:47:17.000Z",
+ "lastUpdated": "2022-12-18T05:39:03.560Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sucer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "têter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "students",
+ "educational space"
+ ],
+ "synsets": [
+ "00049744-n"
+ ],
+ "tags": [
+ "education",
+ "students",
+ "educational space"
+ ],
+ "_id": 29614,
+ "created": "2013-08-17T19:54:15.000Z",
+ "lastUpdated": "2021-07-27T07:25:43.149Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entrée",
+ "hasLocution": true,
+ "plural": "entrées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08755549-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29605,
+ "created": "2013-08-17T19:29:33.000Z",
+ "lastUpdated": "2021-07-27T07:26:18.442Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Honduras",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "students",
+ "educational space",
+ "routine"
+ ],
+ "synsets": [
+ "00049744-n"
+ ],
+ "tags": [
+ "education",
+ "students",
+ "educational space",
+ "person",
+ "routine"
+ ],
+ "_id": 29615,
+ "created": "2013-08-17T19:54:15.000Z",
+ "lastUpdated": "2024-12-09T18:29:10.548Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entrée",
+ "hasLocution": true,
+ "plural": "entrées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "students",
+ "educational space",
+ "routine"
+ ],
+ "synsets": [
+ "00049744-n"
+ ],
+ "tags": [
+ "education",
+ "students",
+ "educational space",
+ "person",
+ "routine"
+ ],
+ "_id": 29616,
+ "created": "2013-08-17T19:54:15.000Z",
+ "lastUpdated": "2024-12-09T18:29:00.722Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "entrée",
+ "hasLocution": true,
+ "plural": "entrées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "students",
+ "educational space"
+ ],
+ "synsets": [
+ "00059339-n"
+ ],
+ "tags": [
+ "education",
+ "students",
+ "educational space"
+ ],
+ "_id": 29620,
+ "created": "2013-08-17T20:02:33.000Z",
+ "lastUpdated": "2021-07-27T07:24:26.924Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sortie",
+ "hasLocution": true,
+ "plural": "sorties"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "students",
+ "educational space"
+ ],
+ "synsets": [
+ "00059339-n"
+ ],
+ "tags": [
+ "education",
+ "students",
+ "educational space"
+ ],
+ "_id": 29621,
+ "created": "2013-08-17T20:02:33.000Z",
+ "lastUpdated": "2024-12-13T07:09:04.100Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sortie",
+ "hasLocution": true,
+ "plural": "sorties"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "students",
+ "educational space",
+ "routine"
+ ],
+ "synsets": [
+ "00059339-n"
+ ],
+ "tags": [
+ "education",
+ "students",
+ "educational space",
+ "person",
+ "routine"
+ ],
+ "_id": 29622,
+ "created": "2013-08-17T20:02:33.000Z",
+ "lastUpdated": "2024-12-13T07:09:14.058Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sortie",
+ "hasLocution": true,
+ "plural": "sorties"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "playground"
+ ],
+ "synsets": [
+ "03738772-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground"
+ ],
+ "_id": 29626,
+ "created": "2013-08-17T20:08:14.000Z",
+ "lastUpdated": "2021-07-27T07:23:25.586Z",
+ "keywords": [
+ {
+ "keyword": "labyrinthe",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "labyrinthes"
+ },
+ {
+ "keyword": "dédale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dédales"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "03738772-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 29627,
+ "created": "2013-08-17T20:08:15.000Z",
+ "lastUpdated": "2021-07-27T07:23:04.385Z",
+ "keywords": [
+ {
+ "keyword": "labyrinthe",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "labyrinthes"
+ },
+ {
+ "keyword": "dédale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dédales"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02530710-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 29635,
+ "created": "2013-08-17T20:16:16.000Z",
+ "lastUpdated": "2021-07-27T07:22:27.114Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réussir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02529187-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 29638,
+ "created": "2013-08-17T20:20:46.000Z",
+ "lastUpdated": "2021-07-27T07:22:16.127Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rater",
+ "hasLocution": false
+ },
+ {
+ "keyword": "manquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02529187-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 29639,
+ "created": "2013-08-17T20:20:46.000Z",
+ "lastUpdated": "2024-12-16T10:57:18.733Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rater",
+ "hasLocution": false
+ },
+ {
+ "keyword": "manquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02529187-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 29640,
+ "created": "2013-08-17T20:20:46.000Z",
+ "lastUpdated": "2021-07-27T07:21:57.704Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rater",
+ "hasLocution": false
+ },
+ {
+ "keyword": "manquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02530710-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 29634,
+ "created": "2013-08-17T20:16:16.000Z",
+ "lastUpdated": "2021-07-27T07:22:38.010Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réussir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tourism"
+ ],
+ "synsets": [
+ "10737780-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 29644,
+ "created": "2013-08-17T20:25:23.000Z",
+ "lastUpdated": "2021-07-27T07:21:34.952Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "touriste",
+ "hasLocution": true,
+ "plural": "touristes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disease",
+ "patient",
+ "covid-19"
+ ],
+ "synsets": [
+ "01173787-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "medicine",
+ "disease",
+ "person",
+ "patient",
+ "covid-19"
+ ],
+ "_id": 29648,
+ "created": "2013-08-17T20:33:45.000Z",
+ "lastUpdated": "2021-07-27T07:21:25.307Z",
+ "keywords": [
+ {
+ "keyword": "en bonne santé",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "saine",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08756105-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29652,
+ "created": "2013-08-17T20:39:43.000Z",
+ "lastUpdated": "2021-07-27T07:20:40.463Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Le Salvador",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08756105-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 29653,
+ "created": "2013-08-17T20:39:43.000Z",
+ "lastUpdated": "2021-07-27T07:20:38.675Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Le Salvador",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08774035-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29654,
+ "created": "2013-08-17T20:45:38.000Z",
+ "lastUpdated": "2021-07-27T07:20:31.402Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Trinité et Tobago",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08774035-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 29655,
+ "created": "2013-08-17T20:45:38.000Z",
+ "lastUpdated": "2021-07-27T07:19:59.138Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Trinité et Tobago",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01989043-v",
+ "02501514-s"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 29656,
+ "created": "2013-08-17T20:48:30.000Z",
+ "lastUpdated": "2021-07-27T07:19:55.148Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "allongée sur le dos",
+ "hasLocution": false
+ },
+ {
+ "keyword": "à plat dos",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01989043-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 29660,
+ "created": "2013-08-17T20:56:00.000Z",
+ "lastUpdated": "2021-07-27T07:18:38.933Z",
+ "keywords": [
+ {
+ "keyword": "se coucher",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'allonger",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01925957-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 29662,
+ "created": "2013-08-17T21:02:14.000Z",
+ "lastUpdated": "2021-07-27T07:17:43.807Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "grimper",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "gardening",
+ "agriculture"
+ ],
+ "synsets": [
+ "00503838-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "gardening",
+ "agriculture"
+ ],
+ "_id": 29664,
+ "created": "2013-08-18T09:45:41.000Z",
+ "lastUpdated": "2021-07-27T07:17:38.064Z",
+ "keywords": [
+ {
+ "keyword": "fertiliser",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "amender",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00841258-n"
+ ],
+ "tags": [
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 29666,
+ "created": "2013-08-18T09:46:37.000Z",
+ "lastUpdated": "2021-07-27T07:17:18.716Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "péter",
+ "hasLocution": false
+ },
+ {
+ "keyword": "avoir des vents",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14245594-n",
+ "14357268-n",
+ "14357527-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 29668,
+ "created": "2013-08-18T09:47:36.000Z",
+ "lastUpdated": "2021-07-27T07:16:54.779Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boutons",
+ "hasLocution": true
+ },
+ {
+ "keyword": "acné",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "pustules",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01989043-v",
+ "02502659-s"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 29658,
+ "created": "2013-08-17T20:50:39.000Z",
+ "lastUpdated": "2021-07-27T07:19:34.119Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "allongée sur le ventre",
+ "hasLocution": false
+ },
+ {
+ "keyword": "à plat ventre",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday",
+ "christmas"
+ ],
+ "synsets": [
+ "01679858-v",
+ "00263092-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 29670,
+ "created": "2013-08-18T09:52:49.000Z",
+ "lastUpdated": "2021-07-27T07:16:20.429Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "décorer",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "décoration",
+ "hasLocution": true,
+ "plural": "décorations"
+ },
+ {
+ "type": 3,
+ "keyword": "orner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 29672,
+ "created": "2013-08-18T10:36:48.000Z",
+ "lastUpdated": "2021-07-27T07:16:05.879Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baisser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se baisser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'accroupir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work accident"
+ ],
+ "synsets": [
+ "01988331-v",
+ "01976312-v",
+ "01988133-v",
+ "00031270-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "work accident"
+ ],
+ "_id": 29674,
+ "created": "2013-08-18T10:47:48.000Z",
+ "lastUpdated": "2021-07-27T07:15:49.361Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tomber",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "00329857-n",
+ "01874268-v"
+ ],
+ "tags": [],
+ "_id": 29676,
+ "created": "2013-08-18T10:50:01.000Z",
+ "lastUpdated": "2021-07-27T07:15:42.807Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "glisser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déraper",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07857776-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 29678,
+ "created": "2013-08-18T10:52:46.000Z",
+ "lastUpdated": "2021-07-28T09:26:31.513Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brioche de Pâques",
+ "hasLocution": false,
+ "plural": "brioches de Pâques"
+ },
+ {
+ "keyword": "mona de Pâques",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "monas de Pâques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01799661-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 29690,
+ "created": "2013-08-18T11:15:32.000Z",
+ "lastUpdated": "2021-07-28T16:33:29.225Z",
+ "keywords": [
+ {
+ "keyword": "grand tétras",
+ "hasLocution": false,
+ "plural": "grands tétras",
+ "type": 2
+ },
+ {
+ "keyword": "tétras lyre",
+ "hasLocution": false,
+ "plural": "tétras lyre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "extinct being"
+ ],
+ "synsets": [
+ "02507401-n"
+ ],
+ "tags": [
+ "extinct being",
+ "paleontology"
+ ],
+ "_id": 29682,
+ "created": "2013-08-18T10:58:50.000Z",
+ "lastUpdated": "2021-07-27T07:15:23.539Z",
+ "keywords": [
+ {
+ "keyword": "mammouth",
+ "hasLocution": false,
+ "plural": "mammouths"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02424095-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 29694,
+ "created": "2013-08-18T11:19:17.000Z",
+ "lastUpdated": "2021-07-27T20:11:35.679Z",
+ "keywords": [
+ {
+ "keyword": "gnou",
+ "hasLocution": false,
+ "plural": "gnous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "04575355-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 29698,
+ "created": "2013-08-18T11:22:37.000Z",
+ "lastUpdated": "2021-07-27T07:12:25.757Z",
+ "keywords": [
+ {
+ "keyword": "girouette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "girouettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container"
+ ],
+ "synsets": [
+ "03138066-n"
+ ],
+ "tags": [
+ "object",
+ "container"
+ ],
+ "_id": 29706,
+ "created": "2013-08-18T11:29:37.000Z",
+ "lastUpdated": "2021-07-27T07:10:35.094Z",
+ "keywords": [
+ {
+ "keyword": "poterie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "poteries"
+ },
+ {
+ "keyword": "pot en terre",
+ "hasLocution": false,
+ "plural": "pots en terre",
+ "type": 2
+ },
+ {
+ "keyword": "jarre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jarres"
+ },
+ {
+ "keyword": "jarre en terre",
+ "hasLocution": false,
+ "plural": "jarres en terre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01524397-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 29702,
+ "created": "2013-08-18T11:26:02.000Z",
+ "lastUpdated": "2021-07-27T07:11:06.858Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nandou",
+ "hasLocution": true,
+ "plural": "nandous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hunting"
+ ],
+ "synsets": [
+ "02975150-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "hunting"
+ ],
+ "_id": 29710,
+ "created": "2013-08-18T11:37:04.000Z",
+ "lastUpdated": "2021-07-27T07:08:47.429Z",
+ "keywords": [
+ {
+ "keyword": "cartouche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cartouches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural disaster"
+ ],
+ "synsets": [
+ "07419737-n"
+ ],
+ "tags": [
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 29686,
+ "created": "2013-08-18T11:05:26.000Z",
+ "lastUpdated": "2021-07-27T07:14:56.960Z",
+ "keywords": [
+ {
+ "keyword": "avalanche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "avalanches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical art"
+ ],
+ "synsets": [
+ "02175483-v",
+ "02174146-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music"
+ ],
+ "_id": 29718,
+ "created": "2013-08-24T09:49:25.000Z",
+ "lastUpdated": "2021-07-27T07:08:19.782Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "écouter de la musique",
+ "hasLocution": true
+ },
+ {
+ "keyword": "entendre de la musique",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical art"
+ ],
+ "synsets": [
+ "02175483-v",
+ "02174146-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music"
+ ],
+ "_id": 29719,
+ "created": "2013-08-24T09:50:08.000Z",
+ "lastUpdated": "2021-07-27T07:08:06.741Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "écouter de la musique",
+ "hasLocution": true
+ },
+ {
+ "keyword": "entendre de la musique",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage",
+ "basic needs"
+ ],
+ "synsets": [
+ "01172332-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage",
+ "person",
+ "basic needs"
+ ],
+ "_id": 29716,
+ "created": "2013-08-24T09:47:13.000Z",
+ "lastUpdated": "2021-07-27T07:08:26.478Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Absorber, ingérer un liquide",
+ "keyword": "boire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical art",
+ "popular event",
+ "appliance",
+ "mass media device"
+ ],
+ "synsets": [
+ "02175483-v",
+ "02174146-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music",
+ "event",
+ "popular event",
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media"
+ ],
+ "_id": 29720,
+ "created": "2013-08-24T09:50:58.000Z",
+ "lastUpdated": "2024-12-08T06:58:29.208Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "écouter de la musique",
+ "hasLocution": true
+ },
+ {
+ "keyword": "entendre de la musique",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02008888-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 29714,
+ "created": "2013-08-24T09:42:52.000Z",
+ "lastUpdated": "2021-07-27T07:08:33.042Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rentrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08754874-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29724,
+ "created": "2013-08-26T17:41:53.000Z",
+ "lastUpdated": "2021-07-27T07:07:36.704Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Guatemala",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08757039-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29725,
+ "created": "2013-08-26T17:42:35.000Z",
+ "lastUpdated": "2021-07-27T12:40:54.612Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Panama",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08753940-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29726,
+ "created": "2013-08-26T17:43:32.000Z",
+ "lastUpdated": "2021-07-27T12:40:51.462Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Costa Rica",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08769854-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29727,
+ "created": "2013-08-26T17:44:14.000Z",
+ "lastUpdated": "2021-07-27T12:40:47.694Z",
+ "keywords": [
+ {
+ "keyword": "République Dominicaine",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08769327-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29728,
+ "created": "2013-08-26T17:44:52.000Z",
+ "lastUpdated": "2021-07-27T12:40:30.980Z",
+ "keywords": [
+ {
+ "keyword": "Haïti",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08866260-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29730,
+ "created": "2013-08-26T17:46:05.000Z",
+ "lastUpdated": "2021-07-27T12:39:01.608Z",
+ "keywords": [
+ {
+ "keyword": "Bahamas",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08771766-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29731,
+ "created": "2013-08-26T17:46:41.000Z",
+ "lastUpdated": "2021-07-27T20:11:32.651Z",
+ "keywords": [
+ {
+ "keyword": "Jamaïque",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08773269-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29732,
+ "created": "2013-08-26T17:47:17.000Z",
+ "lastUpdated": "2021-07-27T12:38:29.147Z",
+ "keywords": [
+ {
+ "keyword": "Barbade",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08966682-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29733,
+ "created": "2013-08-26T17:48:03.000Z",
+ "lastUpdated": "2021-07-27T12:37:43.335Z",
+ "keywords": [
+ {
+ "keyword": "Grenade",
+ "type": 1,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "09009793-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 29734,
+ "created": "2013-08-26T17:51:36.000Z",
+ "lastUpdated": "2021-07-27T12:36:46.082Z",
+ "keywords": [
+ {
+ "keyword": "Saint-Christophe-et-Niévès",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09009793-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29735,
+ "created": "2013-08-26T17:51:36.000Z",
+ "lastUpdated": "2021-07-27T12:36:30.916Z",
+ "keywords": [
+ {
+ "keyword": "Saint-Christophe-et-Niévès",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08755354-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29729,
+ "created": "2013-08-26T17:45:27.000Z",
+ "lastUpdated": "2021-07-27T12:40:05.410Z",
+ "keywords": [
+ {
+ "keyword": "Bélize",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "01535377-v",
+ "00180982-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories",
+ "health",
+ "medicine",
+ "ophthalmology"
+ ],
+ "_id": 29736,
+ "created": "2013-08-26T17:53:46.000Z",
+ "lastUpdated": "2021-07-02T00:32:53.535Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "nettoyer les lunettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cleaning product",
+ "place"
+ ],
+ "synsets": [
+ "01396368-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "cleaning product",
+ "place"
+ ],
+ "_id": 29742,
+ "created": "2013-08-26T17:58:11.000Z",
+ "lastUpdated": "2024-12-05T07:27:31.884Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "balayer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "01247417-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 29740,
+ "created": "2013-08-26T17:57:05.000Z",
+ "lastUpdated": "2021-07-27T20:11:30.709Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aspirer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "passer l'aspirateur",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cleaning product"
+ ],
+ "synsets": [
+ "00036773-v",
+ "01395993-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 29744,
+ "created": "2013-08-26T17:59:09.000Z",
+ "lastUpdated": "2021-07-27T20:11:27.875Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver",
+ "hasLocution": true
+ },
+ {
+ "keyword": "laver le sol",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "cleaning product"
+ ],
+ "synsets": [
+ "01535377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 29748,
+ "created": "2013-08-26T18:01:21.000Z",
+ "lastUpdated": "2021-07-27T12:34:20.229Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver la vitre ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "nettoyer la vitre",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "cleaning product"
+ ],
+ "synsets": [
+ "01535377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 29746,
+ "created": "2013-08-26T17:59:59.000Z",
+ "lastUpdated": "2021-07-27T12:34:36.490Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver les fenêtres ",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "nettoyer les fenêtres ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00035769-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 29750,
+ "created": "2013-08-26T18:03:12.000Z",
+ "lastUpdated": "2021-07-27T12:33:49.886Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'essuyer les fesses",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'essuyer le derrière",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se nettoyer les fesses",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se nettoyer le derrière",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "essuyer les fesses",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01978076-v",
+ "01457813-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "babycare"
+ ],
+ "_id": 29752,
+ "created": "2013-08-26T18:04:20.000Z",
+ "lastUpdated": "2022-12-18T05:39:13.014Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "lever",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "keyword": "soulever",
+ "type": 3
+ },
+ {
+ "keyword": "porter",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "pet",
+ "dog-assisted therapy"
+ ],
+ "synsets": [
+ "01910816-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "pet",
+ "animal-assisted therapy",
+ "dog-assisted therapy"
+ ],
+ "_id": 29738,
+ "created": "2013-08-26T17:55:44.000Z",
+ "lastUpdated": "2021-07-27T12:35:14.053Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "promener le chien",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "01060463-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 29757,
+ "created": "2013-08-26T18:10:22.000Z",
+ "lastUpdated": "2021-09-03T14:11:11.453Z",
+ "keywords": [
+ {
+ "keyword": "sonde nasogastrique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sondes nasogastriques"
+ },
+ {
+ "type": 2,
+ "keyword": "intubation nasogastrique",
+ "hasLocution": false,
+ "plural": "intubations nasogastriques"
+ },
+ {
+ "keyword": "alimentation nasogastrique",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "alimentations nasogastriques"
+ },
+ {
+ "keyword": "nourriture entérale",
+ "hasLocution": false,
+ "plural": "nourritures entérales",
+ "type": 2
+ },
+ {
+ "keyword": "alimentation entérale",
+ "hasLocution": false,
+ "plural": "alimentations entérales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "01060463-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 29758,
+ "created": "2013-08-26T18:10:22.000Z",
+ "lastUpdated": "2021-07-28T23:47:41.022Z",
+ "keywords": [
+ {
+ "keyword": "sonde nasogastrique",
+ "hasLocution": false,
+ "plural": "sondes nasogastriques",
+ "type": 2
+ },
+ {
+ "plural": "intubations nasogastriques",
+ "keyword": "intubation nasogastrique",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "alimentation nasogastrique",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "01060463-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 29756,
+ "created": "2013-08-26T18:10:21.000Z",
+ "lastUpdated": "2021-07-28T23:46:39.461Z",
+ "keywords": [
+ {
+ "keyword": "sonde nasogastrique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sondes nasogastriques"
+ },
+ {
+ "plural": "intubations nasogastriques",
+ "keyword": "intubation nasogastrique",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "alimentation nasogastrique",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02117507-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 29768,
+ "created": "2013-08-26T18:14:55.000Z",
+ "lastUpdated": "2021-07-27T20:10:10.063Z",
+ "keywords": [
+ {
+ "keyword": "coyote",
+ "hasLocution": false,
+ "plural": "coyotes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower"
+ ],
+ "synsets": [
+ "12447483-n"
+ ],
+ "tags": [
+ "plant",
+ "flower"
+ ],
+ "_id": 29772,
+ "created": "2013-08-26T18:19:32.000Z",
+ "lastUpdated": "2021-07-28T07:33:03.092Z",
+ "keywords": [
+ {
+ "keyword": "lys blanc",
+ "hasLocution": false,
+ "plural": "lys blanc",
+ "type": 2
+ },
+ {
+ "plural": "lys de la Madone",
+ "keyword": "lys de la Madone",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02587080-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "wild"
+ ],
+ "_id": 29776,
+ "created": "2013-08-27T19:08:41.000Z",
+ "lastUpdated": "2021-07-27T20:07:34.288Z",
+ "keywords": [
+ {
+ "keyword": "piranha",
+ "hasLocution": false,
+ "plural": "piranhas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cattle farming"
+ ],
+ "synsets": [
+ "03128568-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "cattle farming"
+ ],
+ "_id": 29780,
+ "created": "2013-08-27T19:12:34.000Z",
+ "lastUpdated": "2021-07-27T20:07:16.938Z",
+ "keywords": [
+ {
+ "keyword": "cloche",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cloches"
+ },
+ {
+ "keyword": "cloche de vache",
+ "hasLocution": false,
+ "plural": "cloches de vache",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "01468234-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 29784,
+ "created": "2013-08-27T19:15:45.000Z",
+ "lastUpdated": "2021-07-27T20:06:36.728Z",
+ "keywords": [
+ {
+ "keyword": "croc",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "crocs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01880021-v",
+ "01879288-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "babycare"
+ ],
+ "_id": 29754,
+ "created": "2013-08-26T18:05:46.000Z",
+ "lastUpdated": "2022-12-18T05:39:19.728Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bercer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04159470-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 29796,
+ "created": "2013-08-27T19:26:56.000Z",
+ "lastUpdated": "2021-07-27T20:05:38.823Z",
+ "keywords": [
+ {
+ "keyword": "paravent",
+ "type": 2,
+ "plural": "paravents",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "comic character",
+ "movie character"
+ ],
+ "synsets": [
+ "09626935-n"
+ ],
+ "tags": [
+ "character",
+ "comic character",
+ "comic",
+ "movie character",
+ "cinema"
+ ],
+ "_id": 29800,
+ "created": "2013-08-27T19:29:38.000Z",
+ "lastUpdated": "2021-07-27T20:05:10.651Z",
+ "keywords": [
+ {
+ "keyword": "Tarzan",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07949394-n",
+ "04403943-n",
+ "07949514-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 29802,
+ "created": "2013-08-27T19:32:40.000Z",
+ "lastUpdated": "2021-07-27T20:04:58.678Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "thé",
+ "hasLocution": true,
+ "plural": "thés"
+ },
+ {
+ "type": 2,
+ "keyword": "thé instantané",
+ "hasLocution": true,
+ "plural": "thés instantanés"
+ },
+ {
+ "keyword": "thé en sachet",
+ "hasLocution": false,
+ "plural": "thés en sachet",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon",
+ "middle ages",
+ "war"
+ ],
+ "synsets": [
+ "02953692-n"
+ ],
+ "tags": [
+ "object",
+ "weapon",
+ "history",
+ "middle ages",
+ "event",
+ "war"
+ ],
+ "_id": 29792,
+ "created": "2013-08-27T19:24:08.000Z",
+ "lastUpdated": "2021-07-27T20:05:50.311Z",
+ "keywords": [
+ {
+ "keyword": "canon",
+ "type": 2,
+ "plural": "canons",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "13850288-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 29804,
+ "created": "2013-08-27T19:38:16.000Z",
+ "lastUpdated": "2021-07-28T07:30:44.662Z",
+ "keywords": [
+ {
+ "keyword": "course d'orientation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "courses d'orientation"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00448942-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 29806,
+ "created": "2013-08-27T19:39:56.000Z",
+ "lastUpdated": "2021-07-28T07:30:24.705Z",
+ "keywords": [
+ {
+ "keyword": "lutte gréco-romaine",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "luttes gréco-romaines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "jewelry"
+ ],
+ "synsets": [
+ "02909763-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "jewelry"
+ ],
+ "_id": 29788,
+ "created": "2013-08-27T19:19:34.000Z",
+ "lastUpdated": "2021-07-27T20:06:05.745Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "broche",
+ "hasLocution": true,
+ "plural": "broches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07701475-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 29808,
+ "created": "2013-08-27T19:45:05.000Z",
+ "lastUpdated": "2021-07-28T07:24:47.757Z",
+ "keywords": [
+ {
+ "keyword": "pain de seigle",
+ "hasLocution": false,
+ "plural": "pains de seigle",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00330294-n",
+ "10637181-n",
+ "02109138-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 29810,
+ "created": "2013-08-27T19:49:23.000Z",
+ "lastUpdated": "2021-07-27T20:01:46.675Z",
+ "keywords": [
+ {
+ "keyword": "snowboard",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "snowboard",
+ "hasLocution": false,
+ "plural": "snowboards",
+ "type": 2
+ },
+ {
+ "keyword": "faire du snowboard",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "01060907-n",
+ "00383263-r",
+ "02901904-a"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 29812,
+ "created": "2013-08-27T20:04:02.000Z",
+ "lastUpdated": "2021-07-28T07:29:41.878Z",
+ "keywords": [
+ {
+ "keyword": "voie intraveineuse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "voies intraveineuses"
+ },
+ {
+ "keyword": "tubulure intraveineuse",
+ "hasLocution": false,
+ "plural": "tubulures intraveineuses",
+ "type": 2
+ },
+ {
+ "keyword": "intraveineuse",
+ "hasLocution": false,
+ "plural": "intraveineuses",
+ "type": 2
+ },
+ {
+ "keyword": "voie intra-veineuse",
+ "hasLocution": false,
+ "plural": "voies intra-veineuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "00663583-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 29816,
+ "created": "2013-09-12T12:17:43.000Z",
+ "lastUpdated": "2021-07-27T20:00:26.085Z",
+ "keywords": [
+ {
+ "keyword": "chimiothérapie",
+ "hasLocution": false,
+ "plural": "chimiothérapies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00189053-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 29820,
+ "created": "2013-09-12T12:24:25.000Z",
+ "lastUpdated": "2021-07-29T22:37:55.474Z",
+ "keywords": [
+ {
+ "keyword": "se sonder",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sonder",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00189053-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 29819,
+ "created": "2013-09-12T12:24:25.000Z",
+ "lastUpdated": "2021-07-29T22:38:23.074Z",
+ "keywords": [
+ {
+ "keyword": "se sonder",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sonder",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "00163059-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "babycare"
+ ],
+ "_id": 29824,
+ "created": "2013-09-12T12:46:19.000Z",
+ "lastUpdated": "2022-12-18T05:39:26.778Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "changer la couche",
+ "hasLocution": true
+ },
+ {
+ "keyword": "changer le bébé",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "01543481-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 29826,
+ "created": "2013-09-12T12:49:27.000Z",
+ "lastUpdated": "2021-07-29T22:35:39.870Z",
+ "keywords": [
+ {
+ "keyword": "aspirer les mucosités",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "medicament",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "01614420-v",
+ "03251786-n",
+ "01496967-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "medicament",
+ "ophthalmology"
+ ],
+ "_id": 29828,
+ "created": "2013-09-12T12:54:51.000Z",
+ "lastUpdated": "2021-07-27T19:59:08.669Z",
+ "keywords": [
+ {
+ "keyword": "mettre des gouttes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "covid-19"
+ ],
+ "synsets": [
+ "00648747-v",
+ "01118681-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "covid-19"
+ ],
+ "_id": 29830,
+ "created": "2013-09-12T13:25:34.000Z",
+ "lastUpdated": "2021-07-27T19:58:54.126Z",
+ "keywords": [
+ {
+ "keyword": "prendre la température",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre un thermomètre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "covid-19"
+ ],
+ "synsets": [
+ "00648747-v",
+ "01118681-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "covid-19"
+ ],
+ "_id": 29831,
+ "created": "2013-09-12T13:25:35.000Z",
+ "lastUpdated": "2021-07-27T19:58:30.819Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "prendre la température",
+ "type": 3
+ },
+ {
+ "keyword": "mettre un thermomètre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00189053-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 29818,
+ "created": "2013-09-12T12:24:25.000Z",
+ "lastUpdated": "2021-07-29T22:38:46.090Z",
+ "keywords": [
+ {
+ "keyword": "se sonder",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sonder",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hygiene product",
+ "corporal hygiene"
+ ],
+ "synsets": [
+ "01535377-v",
+ "00035769-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "human body"
+ ],
+ "_id": 29834,
+ "created": "2013-09-12T13:30:01.000Z",
+ "lastUpdated": "2021-07-27T19:57:35.655Z",
+ "keywords": [
+ {
+ "keyword": "nettoyer l'oreille",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothes"
+ ],
+ "synsets": [
+ "03653380-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 29841,
+ "created": "2013-11-26T13:46:19.000Z",
+ "lastUpdated": "2021-07-28T16:30:31.127Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "blanchisserie",
+ "hasLocution": true,
+ "plural": "blanchisseries"
+ },
+ {
+ "keyword": "laverie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "laveries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indefinite pronoun",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "13762308-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "indefinite pronoun",
+ "core vocabulary"
+ ],
+ "_id": 29839,
+ "created": "2013-11-21T13:10:22.000Z",
+ "lastUpdated": "2021-07-27T19:56:17.019Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rien",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothing industry",
+ "fashion"
+ ],
+ "synsets": [
+ "10344226-n",
+ "14023888-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "secondary sector",
+ "clothing industry",
+ "object",
+ "fashion"
+ ],
+ "_id": 29843,
+ "created": "2013-11-26T13:50:09.000Z",
+ "lastUpdated": "2021-07-27T19:55:52.050Z",
+ "keywords": [
+ {
+ "keyword": "agence de mannequins",
+ "hasLocution": false,
+ "plural": "agences de mannequins",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building"
+ ],
+ "synsets": [],
+ "tags": [
+ "place",
+ "building",
+ "culture"
+ ],
+ "_id": 29845,
+ "created": "2013-11-26T13:53:39.000Z",
+ "lastUpdated": "2021-07-28T16:30:13.571Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maison de la culture",
+ "hasLocution": true,
+ "plural": "maisons de la culture"
+ },
+ {
+ "keyword": "centre culturel",
+ "hasLocution": false,
+ "plural": "centres culturels",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "cultural building"
+ ],
+ "synsets": [],
+ "tags": [
+ "place",
+ "building",
+ "culture"
+ ],
+ "_id": 29847,
+ "created": "2013-11-26T14:05:48.000Z",
+ "lastUpdated": "2021-07-28T16:29:49.649Z",
+ "keywords": [
+ {
+ "keyword": "maison des jeunes",
+ "hasLocution": false,
+ "plural": "maisons des jeunes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre"
+ ],
+ "synsets": [
+ "08070828-n",
+ "00853624-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building"
+ ],
+ "_id": 29849,
+ "created": "2013-11-28T16:57:09.000Z",
+ "lastUpdated": "2021-07-28T21:22:59.605Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "planning familial",
+ "plural": "plannings familiaux"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "centre de planification ou d’éducation familiale",
+ "plural": "centres de planification ou d’éducation familiale"
+ },
+ {
+ "keyword": "centre de santé féminine",
+ "hasLocution": false,
+ "plural": "centres de santé féminine",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building"
+ ],
+ "synsets": [],
+ "tags": [
+ "place",
+ "building",
+ "culture"
+ ],
+ "_id": 29851,
+ "created": "2013-11-28T16:58:51.000Z",
+ "lastUpdated": "2021-08-05T06:49:29.149Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "centre des monuments historiques",
+ "plural": "centres des monuments historiques"
+ },
+ {
+ "keyword": "maison du patrimoine",
+ "hasLocution": false,
+ "plural": "maisons du patrimoine",
+ "type": 2
+ },
+ {
+ "keyword": "musée d'histoire",
+ "hasLocution": false,
+ "plural": "musées d'histoire",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hygiene product",
+ "corporal hygiene"
+ ],
+ "synsets": [
+ "01535377-v",
+ "00035769-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "human body"
+ ],
+ "_id": 29835,
+ "created": "2013-09-12T13:30:01.000Z",
+ "lastUpdated": "2021-07-27T19:57:17.802Z",
+ "keywords": [
+ {
+ "keyword": "nettoyer l'oreille",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "educational institution",
+ "signaling system"
+ ],
+ "synsets": [
+ "08293460-n",
+ "01212929-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "educational institution",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 29853,
+ "created": "2013-11-28T17:02:50.000Z",
+ "lastUpdated": "2021-07-28T20:58:48.025Z",
+ "keywords": [
+ {
+ "keyword": "crèche",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "crèches"
+ },
+ {
+ "keyword": "garderie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "garderies"
+ },
+ {
+ "keyword": "jardin d'enfants",
+ "hasLocution": false,
+ "plural": "jardins d'enfants",
+ "type": 2
+ },
+ {
+ "keyword": "école maternelle",
+ "hasLocution": false,
+ "plural": "écoles maternelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre"
+ ],
+ "synsets": [
+ "03745009-n",
+ "14402535-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building"
+ ],
+ "_id": 29857,
+ "created": "2013-11-28T22:32:35.000Z",
+ "lastUpdated": "2021-07-28T07:16:12.875Z",
+ "keywords": [
+ {
+ "keyword": "centre de santé mentale",
+ "hasLocution": false,
+ "plural": "centres de santé mentale",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre"
+ ],
+ "synsets": [
+ "03745009-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building"
+ ],
+ "_id": 29859,
+ "created": "2013-11-28T22:46:21.000Z",
+ "lastUpdated": "2021-07-28T20:55:50.405Z",
+ "keywords": [
+ {
+ "keyword": "centre de santé",
+ "hasLocution": false,
+ "plural": "centres de santé",
+ "type": 2
+ },
+ {
+ "keyword": "maison médicale",
+ "hasLocution": false,
+ "plural": "maisons médicales",
+ "type": 2
+ },
+ {
+ "keyword": "établissement de santé",
+ "hasLocution": false,
+ "plural": "établissements de santé",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "death"
+ ],
+ "synsets": [
+ "00096133-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 29861,
+ "created": "2013-11-28T22:50:22.000Z",
+ "lastUpdated": "2021-07-27T19:40:32.671Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "morte",
+ "hasLocution": false
+ },
+ {
+ "keyword": "décédée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "death"
+ ],
+ "synsets": [
+ "00359085-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 29862,
+ "created": "2013-11-28T22:50:23.000Z",
+ "lastUpdated": "2021-07-28T07:16:58.130Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mourir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "décéder",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "death",
+ "core vocabulary-communication",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "00359085-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "event",
+ "social event",
+ "death",
+ "core vocabulary"
+ ],
+ "_id": 29863,
+ "created": "2013-11-28T22:50:23.000Z",
+ "lastUpdated": "2021-07-28T07:17:04.479Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mourir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "décéder",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "death",
+ "person according to their age",
+ "medicine"
+ ],
+ "synsets": [
+ "07962243-n",
+ "00096133-a",
+ "10014481-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death",
+ "person",
+ "health",
+ "medicine"
+ ],
+ "_id": 29867,
+ "created": "2013-11-28T22:51:39.000Z",
+ "lastUpdated": "2024-12-12T07:37:42.732Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mort",
+ "hasLocution": true,
+ "plural": "morts"
+ },
+ {
+ "type": 2,
+ "keyword": "défunt",
+ "hasLocution": false,
+ "plural": "défunts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "urban area"
+ ],
+ "synsets": [
+ "03422255-n",
+ "02115945-a"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "urban area"
+ ],
+ "_id": 29855,
+ "created": "2013-11-28T17:06:11.000Z",
+ "lastUpdated": "2021-07-28T07:15:57.635Z",
+ "keywords": [
+ {
+ "keyword": "jardin des cinq sens",
+ "hasLocution": false,
+ "plural": "jardins des cinq sens",
+ "type": 2
+ },
+ {
+ "keyword": "jardin sensoriel",
+ "hasLocution": false,
+ "plural": "jardins sensoriels",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "07962243-n",
+ "00096133-a",
+ "10014481-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 29869,
+ "created": "2013-11-28T22:55:23.000Z",
+ "lastUpdated": "2021-07-28T07:17:53.994Z",
+ "keywords": [
+ {
+ "keyword": "morte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mortes"
+ },
+ {
+ "keyword": "défunte",
+ "hasLocution": false,
+ "plural": "défuntes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public building",
+ "signaling system"
+ ],
+ "synsets": [
+ "08327879-n",
+ "00524569-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "public administration",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 29873,
+ "created": "2013-12-02T22:06:51.000Z",
+ "lastUpdated": "2021-07-28T20:52:13.402Z",
+ "keywords": [
+ {
+ "keyword": "conseil des sports",
+ "hasLocution": false,
+ "plural": "conseils des sports",
+ "type": 2
+ },
+ {
+ "keyword": "conseil national des sports",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre"
+ ],
+ "synsets": [
+ "03752065-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building"
+ ],
+ "_id": 29875,
+ "created": "2013-12-02T22:12:59.000Z",
+ "lastUpdated": "2021-07-28T07:19:33.772Z",
+ "keywords": [
+ {
+ "keyword": "hôpital psychiatrique",
+ "hasLocution": false,
+ "plural": "hôpitaux psychiatriques",
+ "type": 2
+ },
+ {
+ "keyword": "centre hospitalier spécialisé",
+ "hasLocution": false,
+ "plural": "centres hospitaliers spécialisés",
+ "type": 2
+ },
+ {
+ "keyword": "CHS",
+ "hasLocution": false,
+ "plural": "CHS",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "entertainment facility",
+ "recreational facility",
+ "astronomy"
+ ],
+ "synsets": [
+ "03962433-n",
+ "03962085-n"
+ ],
+ "tags": [
+ "leisure",
+ "place",
+ "facility",
+ "recreational facility",
+ "astronomy"
+ ],
+ "_id": 29877,
+ "created": "2013-12-02T22:18:08.000Z",
+ "lastUpdated": "2021-07-27T19:43:46.704Z",
+ "keywords": [
+ {
+ "keyword": "planétarium",
+ "hasLocution": false,
+ "plural": "planétariums",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "students"
+ ],
+ "synsets": [
+ "02507387-v",
+ "02406951-v",
+ "00207776-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "students"
+ ],
+ "_id": 29879,
+ "created": "2013-12-07T16:43:52.000Z",
+ "lastUpdated": "2021-07-27T19:44:11.536Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "expulser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "renvoyer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "accessories"
+ ],
+ "synsets": [
+ "02674410-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 29881,
+ "created": "2013-12-07T16:47:28.000Z",
+ "lastUpdated": "2021-07-27T19:44:38.510Z",
+ "keywords": [
+ {
+ "keyword": "magasin d'accessoires",
+ "hasLocution": false,
+ "plural": "magasins d'accessoires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building"
+ ],
+ "synsets": [
+ "00506948-r",
+ "01644709-s",
+ "04435769-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade"
+ ],
+ "_id": 29883,
+ "created": "2013-12-07T16:48:57.000Z",
+ "lastUpdated": "2021-07-28T07:21:26.542Z",
+ "keywords": [
+ {
+ "keyword": "magasin d'articles d'occasion",
+ "hasLocution": false,
+ "plural": "magasins d'articles d'occasion",
+ "type": 2
+ },
+ {
+ "keyword": "brocante",
+ "hasLocution": false,
+ "plural": "brocantes",
+ "type": 2
+ },
+ {
+ "keyword": "friperie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "friperies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "07962243-n",
+ "10014481-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 29870,
+ "created": "2013-11-28T22:55:23.000Z",
+ "lastUpdated": "2021-07-27T19:42:38.800Z",
+ "keywords": [
+ {
+ "keyword": "morte",
+ "hasLocution": false,
+ "plural": "mortes",
+ "type": 2
+ },
+ {
+ "keyword": "défunte",
+ "hasLocution": false,
+ "plural": "défuntes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "hunting",
+ "fishing"
+ ],
+ "synsets": [
+ "04209460-n",
+ "00453279-n",
+ "00454959-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "primary sector",
+ "hunting",
+ "fishing"
+ ],
+ "_id": 29885,
+ "created": "2013-12-07T16:50:12.000Z",
+ "lastUpdated": "2021-07-28T07:21:46.755Z",
+ "keywords": [
+ {
+ "keyword": "magasin d'articles de chasse et pêche",
+ "hasLocution": false,
+ "plural": "magasins d'articles de chasse et pêche",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "childcare"
+ ],
+ "synsets": [
+ "04209460-n",
+ "09846929-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "babycare"
+ ],
+ "_id": 29891,
+ "created": "2013-12-07T16:57:01.000Z",
+ "lastUpdated": "2022-12-18T05:37:46.818Z",
+ "keywords": [
+ {
+ "keyword": "boutique de puériculture",
+ "hasLocution": false,
+ "plural": "boutiques de puériculture",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "cosmetic"
+ ],
+ "synsets": [
+ "04209460-n",
+ "09865407-n",
+ "09986593-n",
+ "02997001-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 29889,
+ "created": "2013-12-07T16:54:46.000Z",
+ "lastUpdated": "2021-07-28T08:02:08.583Z",
+ "keywords": [
+ {
+ "keyword": "parfumerie",
+ "hasLocution": true,
+ "plural": "parfumeries",
+ "type": 2
+ },
+ {
+ "keyword": "magasin de cosmétiques",
+ "hasLocution": false,
+ "plural": "magasins de cosmétiques",
+ "type": 2
+ },
+ {
+ "keyword": "magasin de produits esthétiques",
+ "hasLocution": false,
+ "plural": "magasins de produits esthétiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "residential building"
+ ],
+ "synsets": [
+ "10529403-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "home"
+ ],
+ "_id": 29893,
+ "created": "2013-12-07T17:07:31.000Z",
+ "lastUpdated": "2021-07-28T07:59:42.284Z",
+ "keywords": [
+ {
+ "keyword": "agence immobilière",
+ "hasLocution": false,
+ "plural": "agences immobilières",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "telecommunication",
+ "mass media device"
+ ],
+ "synsets": [
+ "04209460-n",
+ "04408223-n",
+ "02995984-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector",
+ "telecommunication",
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media"
+ ],
+ "_id": 29894,
+ "created": "2013-12-07T17:07:32.000Z",
+ "lastUpdated": "2021-07-28T07:58:49.866Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de téléphonie",
+ "hasLocution": false,
+ "plural": "magasins de téléphonie"
+ },
+ {
+ "keyword": "magasin de téléphones",
+ "hasLocution": false,
+ "plural": "magasins de téléphones",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "educational material"
+ ],
+ "synsets": [
+ "10672142-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "education",
+ "educational material"
+ ],
+ "_id": 29897,
+ "created": "2013-12-07T17:09:04.000Z",
+ "lastUpdated": "2021-07-28T07:57:57.503Z",
+ "keywords": [
+ {
+ "keyword": "papeterie",
+ "hasLocution": true,
+ "plural": "papeteries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "03286056-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 29901,
+ "created": "2013-12-07T17:14:13.000Z",
+ "lastUpdated": "2021-07-28T07:55:45.175Z",
+ "keywords": [
+ {
+ "keyword": "ascenseur extérieur",
+ "hasLocution": false,
+ "plural": "ascenseurs extérieurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothes"
+ ],
+ "synsets": [
+ "03678776-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 29899,
+ "created": "2013-12-07T17:10:48.000Z",
+ "lastUpdated": "2021-07-28T07:57:09.843Z",
+ "keywords": [
+ {
+ "keyword": "magasin de lingerie",
+ "hasLocution": false,
+ "plural": "magasins de lingerie",
+ "type": 2
+ },
+ {
+ "keyword": "boutique de sous-vêtements",
+ "hasLocution": false,
+ "plural": "boutique de sous-vêtements",
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "04209460-n",
+ "02729233-a"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 29887,
+ "created": "2013-12-07T16:52:01.000Z",
+ "lastUpdated": "2021-07-29T05:36:40.929Z",
+ "keywords": [
+ {
+ "keyword": "magasin d'appareils électroniques",
+ "hasLocution": false,
+ "plural": "magasins d'appareils électroniques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre"
+ ],
+ "synsets": [
+ "03545775-n",
+ "08071169-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building"
+ ],
+ "_id": 29903,
+ "created": "2013-12-07T17:23:19.000Z",
+ "lastUpdated": "2021-07-28T07:54:40.124Z",
+ "keywords": [
+ {
+ "keyword": "hôpital de jour",
+ "hasLocution": false,
+ "plural": "hôpitaux de jour",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "hobby"
+ ],
+ "synsets": [
+ "04209460-n",
+ "03490738-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "leisure",
+ "hobby"
+ ],
+ "_id": 29909,
+ "created": "2013-12-07T17:48:29.000Z",
+ "lastUpdated": "2021-07-28T07:52:52.182Z",
+ "keywords": [
+ {
+ "keyword": "boutique d'artisanat",
+ "hasLocution": false,
+ "plural": "boutiques d'artisanat",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "educational institution",
+ "musical art",
+ "signaling system"
+ ],
+ "synsets": [
+ "03096770-n",
+ "08300570-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "educational institution",
+ "music",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 29907,
+ "created": "2013-12-07T17:46:39.000Z",
+ "lastUpdated": "2021-07-27T19:49:28.527Z",
+ "keywords": [
+ {
+ "keyword": "conservatoire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "conservatoires"
+ },
+ {
+ "keyword": "école de musique",
+ "hasLocution": false,
+ "plural": "écoles de musique",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "educational institution",
+ "signaling system"
+ ],
+ "synsets": [
+ "08299871-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "educational institution",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 29911,
+ "created": "2013-12-07T17:51:45.000Z",
+ "lastUpdated": "2021-07-28T07:51:03.265Z",
+ "keywords": [
+ {
+ "keyword": "école de langues",
+ "hasLocution": false,
+ "plural": "écoles de langues",
+ "type": 2
+ },
+ {
+ "keyword": "école de langue",
+ "hasLocution": false,
+ "plural": "écoles de langue",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pet"
+ ],
+ "synsets": [
+ "14563562-n",
+ "00015568-n",
+ "02536770-s"
+ ],
+ "tags": [
+ "animal",
+ "pet"
+ ],
+ "_id": 29913,
+ "created": "2013-12-08T10:44:26.000Z",
+ "lastUpdated": "2021-07-28T07:50:01.697Z",
+ "keywords": [
+ {
+ "keyword": "refuge pour animaux",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "refuges pour animaux"
+ },
+ {
+ "keyword": "abri pour animaux",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "abris pour animaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "00886975-n",
+ "03042670-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 29915,
+ "created": "2013-12-08T10:45:56.000Z",
+ "lastUpdated": "2021-07-28T07:47:40.319Z",
+ "keywords": [
+ {
+ "keyword": "formation pour adultes",
+ "hasLocution": false,
+ "plural": "formations pour adultes",
+ "type": 2
+ },
+ {
+ "keyword": "université du troisième âge",
+ "hasLocution": false,
+ "plural": "universités du troisième âge",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "educational institution",
+ "scenic art",
+ "musical art",
+ "visual art",
+ "signaling system"
+ ],
+ "synsets": [
+ "02749983-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "educational institution",
+ "scenic art",
+ "music",
+ "visual art",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 29917,
+ "created": "2013-12-08T10:46:49.000Z",
+ "lastUpdated": "2021-07-28T07:44:55.787Z",
+ "keywords": [
+ {
+ "keyword": "école d'arts",
+ "hasLocution": false,
+ "plural": "écoles d'arts",
+ "type": 2
+ },
+ {
+ "plural": "écoles des beaux-arts",
+ "keyword": "école des beaux-arts",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "08244135-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 29919,
+ "created": "2013-12-08T10:48:09.000Z",
+ "lastUpdated": "2021-07-26T07:56:42.645Z",
+ "keywords": [
+ {
+ "keyword": "club de sport",
+ "hasLocution": false,
+ "plural": "clubs de sport",
+ "type": 2
+ },
+ {
+ "keyword": "club sportif",
+ "hasLocution": false,
+ "plural": "clubs sportifs",
+ "type": 2
+ },
+ {
+ "keyword": "complexe sportif",
+ "hasLocution": false,
+ "plural": "complexes sportifs",
+ "type": 2
+ },
+ {
+ "keyword": "complexe athlétique",
+ "hasLocution": false,
+ "plural": "complexes athlétiques",
+ "type": 2
+ },
+ {
+ "keyword": "installation sportive",
+ "plural": "installations sportives",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "land transport",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-movement",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "04056210-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 29905,
+ "created": "2013-12-07T17:36:29.000Z",
+ "lastUpdated": "2021-07-28T07:54:05.125Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gare",
+ "hasLocution": true,
+ "plural": "gares"
+ },
+ {
+ "keyword": "gare ferroviaire",
+ "hasLocution": false,
+ "plural": "gares ferroviaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre",
+ "physiotherapy"
+ ],
+ "synsets": [
+ "00401803-n",
+ "03047259-n",
+ "03545775-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "physiotherapy"
+ ],
+ "_id": 29921,
+ "created": "2013-12-08T10:49:13.000Z",
+ "lastUpdated": "2021-07-28T07:41:36.880Z",
+ "keywords": [
+ {
+ "keyword": "centre de rééducation fonctionnelle",
+ "hasLocution": false,
+ "plural": "centres de rééducation fonctionnelle",
+ "type": 2
+ },
+ {
+ "keyword": "clinique de rééducation",
+ "hasLocution": false,
+ "plural": "cliniques de rééducation",
+ "type": 2
+ },
+ {
+ "keyword": "service hospitalier de rééducation",
+ "hasLocution": false,
+ "plural": "services hospitaliers de rééducation",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic"
+ ],
+ "synsets": [
+ "03811265-n",
+ "15028536-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 29925,
+ "created": "2014-03-14T13:10:39.000Z",
+ "lastUpdated": "2021-07-26T07:53:51.976Z",
+ "keywords": [
+ {
+ "keyword": "dissolvant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dissolvants"
+ },
+ {
+ "keyword": "acétone",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "acétones"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "clothes"
+ ],
+ "synsets": [
+ "03653745-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 29923,
+ "created": "2013-12-08T10:50:17.000Z",
+ "lastUpdated": "2021-07-28T07:39:43.917Z",
+ "keywords": [
+ {
+ "keyword": "chariot de linge",
+ "hasLocution": false,
+ "plural": "chariots de linge",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "social movement"
+ ],
+ "synsets": [
+ "02560630-v",
+ "05905605-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "sociology",
+ "social movement"
+ ],
+ "_id": 29927,
+ "created": "2014-03-14T13:11:49.000Z",
+ "lastUpdated": "2021-07-26T07:53:17.046Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "promouvoir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Journée mondiale de sensibilisation à l’autisme",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "03402598-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 29929,
+ "created": "2014-03-14T13:13:02.000Z",
+ "lastUpdated": "2021-07-26T07:52:20.482Z",
+ "keywords": [
+ {
+ "keyword": "franges",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sportswear"
+ ],
+ "synsets": [
+ "04357983-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sportswear",
+ "clothing"
+ ],
+ "_id": 29931,
+ "created": "2014-03-14T13:15:26.000Z",
+ "lastUpdated": "2021-07-26T07:52:07.939Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "combinaison",
+ "hasLocution": false,
+ "plural": "combinaisons"
+ },
+ {
+ "keyword": "combinaison de ski",
+ "hasLocution": false,
+ "plural": "combinaisons de ski",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sportswear"
+ ],
+ "synsets": [
+ "04496264-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sportswear",
+ "clothing"
+ ],
+ "_id": 29933,
+ "created": "2014-03-14T13:16:24.000Z",
+ "lastUpdated": "2021-07-26T07:51:35.367Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pantalon",
+ "hasLocution": true,
+ "plural": "pantalons"
+ },
+ {
+ "keyword": "pantalon de ski",
+ "plural": "pantalons de ski",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07696677-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 29935,
+ "created": "2014-03-14T13:17:13.000Z",
+ "lastUpdated": "2021-04-17T08:05:11.024Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "petits pains",
+ "hasLocution": false,
+ "plural": "petits pains"
+ },
+ {
+ "keyword": "brioches",
+ "hasLocution": false,
+ "plural": "brioches",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00487369-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 29937,
+ "created": "2014-03-14T13:18:58.000Z",
+ "lastUpdated": "2021-07-26T07:51:06.748Z",
+ "keywords": [
+ {
+ "keyword": "jeu de billes",
+ "hasLocution": false,
+ "plural": "jeux de billes",
+ "type": 2
+ },
+ {
+ "keyword": "billes",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "07478427-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 29939,
+ "created": "2014-03-14T13:24:07.000Z",
+ "lastUpdated": "2021-07-26T07:50:36.410Z",
+ "keywords": [
+ {
+ "keyword": "course en sac",
+ "hasLocution": false,
+ "plural": "courses en sac",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "02145438-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 29943,
+ "created": "2014-03-14T13:30:48.000Z",
+ "lastUpdated": "2021-07-28T07:48:31.585Z",
+ "keywords": [
+ {
+ "keyword": "faire voler un cerf-volant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "jouer au cerf-volant",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "03553582-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 29941,
+ "created": "2014-03-14T13:25:28.000Z",
+ "lastUpdated": "2021-07-28T07:39:15.164Z",
+ "keywords": [
+ {
+ "keyword": "hula hoop",
+ "hasLocution": false,
+ "plural": "hula hoops",
+ "type": 2
+ },
+ {
+ "keyword": "jeu du hula hoop",
+ "hasLocution": false,
+ "plural": "jeux du hula hoop",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00145844-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 29945,
+ "created": "2014-03-14T13:34:03.000Z",
+ "lastUpdated": "2021-07-26T07:47:42.448Z",
+ "keywords": [
+ {
+ "keyword": "jeu du loup",
+ "hasLocution": false,
+ "plural": "jeux du loup",
+ "type": 2
+ },
+ {
+ "keyword": "loup",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "loups"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "04620912-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 29947,
+ "created": "2014-03-14T13:48:02.000Z",
+ "lastUpdated": "2021-07-26T07:47:13.876Z",
+ "keywords": [
+ {
+ "keyword": "yoyo",
+ "hasLocution": true,
+ "plural": "yoyos",
+ "type": 2
+ },
+ {
+ "keyword": "jeu de yoyo",
+ "hasLocution": false,
+ "plural": "jeux de yoyos"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01921973-v",
+ "01886163-v",
+ "01911069-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 29951,
+ "created": "2014-03-14T13:59:29.000Z",
+ "lastUpdated": "2021-07-28T08:03:33.977Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se promener",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se balader",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "flaner",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "aller se promener",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "computing"
+ ],
+ "synsets": [
+ "00666194-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "computing"
+ ],
+ "_id": 29955,
+ "created": "2014-03-20T09:59:18.000Z",
+ "lastUpdated": "2021-07-26T07:45:08.159Z",
+ "keywords": [
+ {
+ "keyword": "authentifier",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'authentifier",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01921973-v",
+ "00284945-n",
+ "01886163-v",
+ "01911069-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 29952,
+ "created": "2014-03-14T13:59:29.000Z",
+ "lastUpdated": "2021-07-26T07:45:34.515Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se promener",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se balader",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "flaner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "06759903-n",
+ "15210982-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 29957,
+ "created": "2014-03-20T10:03:01.000Z",
+ "lastUpdated": "2021-07-26T07:44:15.925Z",
+ "keywords": [
+ {
+ "keyword": "Annonciation",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00874568-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 29959,
+ "created": "2014-03-20T10:18:50.000Z",
+ "lastUpdated": "2021-07-28T08:06:00.207Z",
+ "keywords": [
+ {
+ "keyword": "conseiller",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "recommander",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "informer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "donner des conseils",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious building",
+ "religious place",
+ "christianity"
+ ],
+ "synsets": [
+ "03010734-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "religion",
+ "christianity"
+ ],
+ "_id": 29963,
+ "created": "2014-03-20T11:02:54.000Z",
+ "lastUpdated": "2021-07-26T07:43:06.109Z",
+ "keywords": [
+ {
+ "keyword": "chapelle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chapelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "04461511-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 29949,
+ "created": "2014-03-14T13:51:38.000Z",
+ "lastUpdated": "2021-07-26T07:46:27.951Z",
+ "keywords": [
+ {
+ "keyword": "toupie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "toupies"
+ },
+ {
+ "keyword": "jeu de toupie",
+ "hasLocution": false,
+ "plural": "jeux de toupie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "land transport"
+ ],
+ "synsets": [
+ "08296105-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 29961,
+ "created": "2014-03-20T11:00:25.000Z",
+ "lastUpdated": "2021-07-26T07:43:47.658Z",
+ "keywords": [
+ {
+ "keyword": "auto-école",
+ "hasLocution": false,
+ "plural": "auto-écoles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "christianity"
+ ],
+ "synsets": [
+ "03014449-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "christianity"
+ ],
+ "_id": 29965,
+ "created": "2014-03-20T11:04:01.000Z",
+ "lastUpdated": "2021-03-26T03:22:51.667Z",
+ "keywords": [
+ {
+ "keyword": "chasuble",
+ "hasLocution": false,
+ "plural": "chasubles",
+ "type": 2
+ },
+ {
+ "keyword": "aube",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "aubes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre"
+ ],
+ "synsets": [
+ "00143181-n",
+ "02997001-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building"
+ ],
+ "_id": 29967,
+ "created": "2014-03-20T11:05:27.000Z",
+ "lastUpdated": "2021-07-29T00:36:45.838Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "commission médicale des permis",
+ "plural": "commissions médicales des permis"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "court document",
+ "death"
+ ],
+ "synsets": [
+ "06483016-n",
+ "13985834-n"
+ ],
+ "tags": [
+ "document",
+ "justice",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 29969,
+ "created": "2014-03-20T11:15:08.000Z",
+ "lastUpdated": "2021-07-26T07:42:44.741Z",
+ "keywords": [
+ {
+ "keyword": "certificat de décès",
+ "hasLocution": false,
+ "plural": "certificats de décès",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "official document"
+ ],
+ "synsets": [
+ "06483016-n",
+ "14571935-n"
+ ],
+ "tags": [
+ "document",
+ "public administration"
+ ],
+ "_id": 29971,
+ "created": "2014-03-20T11:35:35.000Z",
+ "lastUpdated": "2021-08-07T06:18:41.258Z",
+ "keywords": [
+ {
+ "keyword": "attestation de handicap",
+ "hasLocution": false,
+ "plural": "attestations de handicap",
+ "type": 2
+ },
+ {
+ "keyword": "reconnaissance de qualité de travailleur handicapé",
+ "hasLocution": false
+ },
+ {
+ "keyword": "certificat d'invalidité",
+ "hasLocution": false,
+ "plural": "certificats d'invalidité",
+ "type": 2
+ },
+ {
+ "keyword": "CMI invalidité",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "Carte Mobilité Inclusion Invalidité",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "industrial building",
+ "worksite",
+ "signaling system"
+ ],
+ "synsets": [
+ "10151665-n",
+ "03444184-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "industry",
+ "work",
+ "workplace",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 29973,
+ "created": "2014-03-20T11:39:30.000Z",
+ "lastUpdated": "2021-07-28T20:35:59.697Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "verrerie",
+ "hasLocution": true,
+ "plural": "verreries"
+ },
+ {
+ "keyword": "cristallerie",
+ "hasLocution": false,
+ "plural": "cristalleries",
+ "type": 2
+ },
+ {
+ "keyword": "miroiterie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "miroiteries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "09000713-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 29599,
+ "created": "2013-08-17T18:57:03.000Z",
+ "lastUpdated": "2021-07-27T07:27:56.676Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Paraguay",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "condiment"
+ ],
+ "synsets": [
+ "07689142-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment"
+ ],
+ "_id": 29975,
+ "created": "2014-03-20T11:40:53.000Z",
+ "lastUpdated": "2021-07-29T05:36:29.949Z",
+ "keywords": [
+ {
+ "keyword": "magasin d'huiles",
+ "hasLocution": false,
+ "plural": "magasins d'huiles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "painting"
+ ],
+ "synsets": [
+ "03882197-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "visual art",
+ "painting"
+ ],
+ "_id": 29983,
+ "created": "2014-03-20T11:45:25.000Z",
+ "lastUpdated": "2021-07-29T05:35:22.621Z",
+ "keywords": [
+ {
+ "keyword": "magasin de beaux-arts",
+ "hasLocution": false,
+ "plural": "magasins de beaux-arts",
+ "type": 2
+ },
+ {
+ "keyword": "magasin d'articles artistiques",
+ "hasLocution": false,
+ "plural": "magasins d'articles artistiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "hobby"
+ ],
+ "synsets": [
+ "03499012-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "leisure",
+ "hobby"
+ ],
+ "_id": 29979,
+ "created": "2014-03-20T11:43:31.000Z",
+ "lastUpdated": "2021-07-28T20:20:25.607Z",
+ "keywords": [
+ {
+ "keyword": "magasin de bricolage",
+ "hasLocution": false,
+ "plural": "magasins de bricolage",
+ "type": 2
+ },
+ {
+ "keyword": "quincaillerie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "quincailleries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothing industry"
+ ],
+ "synsets": [
+ "04186974-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 29985,
+ "created": "2014-03-20T11:48:03.000Z",
+ "lastUpdated": "2021-07-28T20:07:41.336Z",
+ "keywords": [
+ {
+ "keyword": "magasin de machines à coudre",
+ "hasLocution": false,
+ "plural": "magasins de machines à coudre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "document",
+ "educational material"
+ ],
+ "synsets": [
+ "03930933-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "document",
+ "education",
+ "educational material"
+ ],
+ "_id": 29987,
+ "created": "2014-03-20T13:46:54.000Z",
+ "lastUpdated": "2024-12-11T17:25:31.337Z",
+ "keywords": [
+ {
+ "keyword": "magasin de photocopies",
+ "hasLocution": false,
+ "plural": "magasin de photocopies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "furniture"
+ ],
+ "synsets": [
+ "04209460-n",
+ "03410635-n",
+ "03625099-n",
+ "08019967-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "furniture"
+ ],
+ "_id": 29989,
+ "created": "2014-03-20T13:53:23.000Z",
+ "lastUpdated": "2021-07-27T11:14:09.276Z",
+ "keywords": [
+ {
+ "keyword": "cuisiniste",
+ "hasLocution": false,
+ "plural": "cuisinistes",
+ "type": 2
+ },
+ {
+ "keyword": "magasin de meubles de cuisine",
+ "hasLocution": false,
+ "plural": "magasins de meubles de cuisine",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "apiculture"
+ ],
+ "synsets": [
+ "00918116-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "primary sector",
+ "apiculture"
+ ],
+ "_id": 29991,
+ "created": "2014-03-20T13:54:21.000Z",
+ "lastUpdated": "2021-07-28T20:06:31.897Z",
+ "keywords": [
+ {
+ "keyword": "magasin d'apiculture",
+ "hasLocution": false,
+ "plural": "magasins d'apiculture",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "vegetable",
+ "fruit"
+ ],
+ "synsets": [
+ "02917791-a",
+ "07571428-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable",
+ "fruit"
+ ],
+ "_id": 29993,
+ "created": "2014-03-20T13:55:17.000Z",
+ "lastUpdated": "2021-07-27T11:13:05.760Z",
+ "keywords": [
+ {
+ "keyword": "magasin bio",
+ "hasLocution": false,
+ "plural": "magasins bios",
+ "type": 2
+ },
+ {
+ "keyword": "magasin de produits bios",
+ "hasLocution": false,
+ "plural": "magasins de produits bios",
+ "type": 2
+ },
+ {
+ "keyword": "boutique d'alimentation biologique",
+ "hasLocution": false,
+ "plural": "boutique d'alimentation biologique",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothing industry"
+ ],
+ "synsets": [
+ "10709060-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 29977,
+ "created": "2014-03-20T11:42:36.000Z",
+ "lastUpdated": "2021-07-28T20:24:29.259Z",
+ "keywords": [
+ {
+ "keyword": "boutique de tailleur",
+ "hasLocution": false,
+ "plural": "boutiques de tailleur",
+ "type": 2
+ },
+ {
+ "keyword": "atelier de tailleur",
+ "hasLocution": false,
+ "plural": "ateliers de tailleur",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "international organziation",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "02703861-n"
+ ],
+ "tags": [
+ "international organization",
+ "work",
+ "professional",
+ "medicine"
+ ],
+ "_id": 30000,
+ "created": "2014-03-20T14:05:03.000Z",
+ "lastUpdated": "2024-06-02T09:25:07.968Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 1,
+ "keyword": "Hommes en jaune"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "Assistance Routière",
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00335806-v",
+ "01238728-v",
+ "01569486-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 30002,
+ "created": "2014-03-20T14:06:58.000Z",
+ "lastUpdated": "2021-07-28T16:25:21.750Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "donner un coup",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "casser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "frapper",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "briser",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious place",
+ "christianity"
+ ],
+ "synsets": [
+ "04539799-n"
+ ],
+ "tags": [
+ "religion",
+ "place",
+ "christianity"
+ ],
+ "_id": 30004,
+ "created": "2014-03-20T14:09:12.000Z",
+ "lastUpdated": "2021-03-26T03:23:19.268Z",
+ "keywords": [
+ {
+ "keyword": "sacristie",
+ "hasLocution": false,
+ "plural": "sacristie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "10086539-n"
+ ],
+ "tags": [],
+ "_id": 30006,
+ "created": "2014-03-20T14:10:14.000Z",
+ "lastUpdated": "2021-07-26T07:38:48.725Z",
+ "keywords": [
+ {
+ "keyword": "évaluateur",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "évaluateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human value"
+ ],
+ "synsets": [
+ "02561834-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human value"
+ ],
+ "_id": 30008,
+ "created": "2014-03-20T14:12:07.000Z",
+ "lastUpdated": "2021-07-27T11:06:57.344Z",
+ "keywords": [
+ {
+ "keyword": "soutenir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "accompagner",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "aider",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "encourager",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothing industry"
+ ],
+ "synsets": [
+ "04226785-n",
+ "04610439-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 29996,
+ "created": "2014-03-20T13:57:17.000Z",
+ "lastUpdated": "2021-07-28T16:26:31.423Z",
+ "keywords": [
+ {
+ "keyword": "magasin de sérigraphie",
+ "hasLocution": false,
+ "plural": "magasins de sérigraphie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "supporting document"
+ ],
+ "synsets": [
+ "00311842-s",
+ "06648469-n",
+ "08479331-n"
+ ],
+ "tags": [
+ "document",
+ "supporting document"
+ ],
+ "_id": 30010,
+ "created": "2014-03-20T16:38:29.000Z",
+ "lastUpdated": "2021-07-26T07:37:59.364Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "données personnelles",
+ "hasLocution": true
+ },
+ {
+ "keyword": "informations personnelles",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "christianity"
+ ],
+ "synsets": [
+ "03005820-a",
+ "06193368-n",
+ "01035216-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "christianity"
+ ],
+ "_id": 29998,
+ "created": "2014-03-20T14:04:00.000Z",
+ "lastUpdated": "2021-07-27T11:11:04.080Z",
+ "keywords": [
+ {
+ "keyword": "objet litturgique",
+ "hasLocution": false,
+ "plural": "objets litturgiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 30012,
+ "created": "2014-03-20T16:39:46.000Z",
+ "lastUpdated": "2021-07-27T11:05:21.679Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "favori",
+ "hasLocution": true,
+ "plural": "favoris"
+ },
+ {
+ "keyword": "préféré",
+ "type": 4,
+ "hasLocution": true,
+ "plural": "préférés"
+ },
+ {
+ "keyword": "chouchou",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "chouchous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy",
+ "planet"
+ ],
+ "synsets": [
+ "09293800-n"
+ ],
+ "tags": [
+ "astronomy",
+ "planet"
+ ],
+ "_id": 30014,
+ "created": "2014-03-20T16:41:41.000Z",
+ "lastUpdated": "2024-12-18T06:28:27.614Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Le Monde",
+ "hasLocution": false
+ },
+ {
+ "type": 1,
+ "keyword": "Terre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical geography"
+ ],
+ "synsets": [
+ "09293800-n",
+ "09417539-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography"
+ ],
+ "_id": 30015,
+ "created": "2014-03-20T16:41:41.000Z",
+ "lastUpdated": "2021-07-27T11:04:08.981Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "monde",
+ "hasLocution": true,
+ "plural": "mondes"
+ },
+ {
+ "keyword": "planète",
+ "hasLocution": true,
+ "plural": "planète"
+ },
+ {
+ "keyword": "univers",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "univers"
+ },
+ {
+ "keyword": "globe",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "globes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00462843-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 30020,
+ "created": "2014-03-20T16:47:19.000Z",
+ "lastUpdated": "2021-07-27T01:32:53.163Z",
+ "keywords": [
+ {
+ "keyword": "quilles",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "quilles"
+ },
+ {
+ "keyword": "jeu de quilles",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jeux de quilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense"
+ ],
+ "synsets": [
+ "08226608-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 30022,
+ "created": "2014-03-20T16:52:53.000Z",
+ "lastUpdated": "2021-07-27T01:32:03.111Z",
+ "keywords": [
+ {
+ "keyword": "police",
+ "type": 2,
+ "hasLocution": true
+ },
+ {
+ "keyword": "policiers",
+ "hasLocution": false,
+ "plural": "policiers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public building",
+ "country"
+ ],
+ "synsets": [
+ "03287206-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "public administration",
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 30023,
+ "created": "2014-03-20T17:06:48.000Z",
+ "lastUpdated": "2021-07-26T07:35:44.210Z",
+ "keywords": [
+ {
+ "keyword": "ambassade",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ambassades"
+ },
+ {
+ "keyword": "ambassade d'Espagne",
+ "hasLocution": false,
+ "plural": "ambassades d'Espagne",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "baking"
+ ],
+ "synsets": [
+ "07650764-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 30025,
+ "created": "2014-03-20T17:09:35.000Z",
+ "lastUpdated": "2021-07-27T01:31:15.556Z",
+ "keywords": [
+ {
+ "keyword": "pâtisserie",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "pâtisseries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "beverage"
+ ],
+ "synsets": [
+ "07907701-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 30027,
+ "created": "2014-03-20T17:10:28.000Z",
+ "lastUpdated": "2021-07-27T01:30:40.816Z",
+ "keywords": [
+ {
+ "keyword": "caviste",
+ "hasLocution": false,
+ "plural": "cavistes",
+ "type": 2
+ },
+ {
+ "keyword": "marchand de vins",
+ "hasLocution": false,
+ "plural": "marchands de vins",
+ "type": 2
+ },
+ {
+ "keyword": "cave",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "caves"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document",
+ "cultural building"
+ ],
+ "synsets": [
+ "06434383-n"
+ ],
+ "tags": [
+ "document",
+ "information document",
+ "place",
+ "building",
+ "culture"
+ ],
+ "_id": 30018,
+ "created": "2014-03-20T16:43:57.000Z",
+ "lastUpdated": "2021-07-27T01:33:42.985Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guide",
+ "hasLocution": true,
+ "plural": "guides"
+ },
+ {
+ "keyword": "manuel",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "manuels"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "swimming pool",
+ "beach"
+ ],
+ "synsets": [
+ "03668045-n",
+ "09304683-n",
+ "03369186-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "swimming pool",
+ "beach"
+ ],
+ "_id": 30036,
+ "created": "2016-02-06T11:43:00.000Z",
+ "lastUpdated": "2021-07-26T07:33:05.002Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouée",
+ "hasLocution": true,
+ "plural": " bouées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "07398623-n",
+ "00037131-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 30038,
+ "created": "2016-02-06T11:44:59.000Z",
+ "lastUpdated": "2021-07-26T07:32:52.951Z",
+ "keywords": [
+ {
+ "keyword": "gargarisme",
+ "type": 2,
+ "plural": "gargarismes",
+ "hasLocution": false
+ },
+ {
+ "keyword": "gargariser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "07398623-n",
+ "00037131-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 30039,
+ "created": "2016-02-06T11:44:59.000Z",
+ "lastUpdated": "2021-07-26T07:32:33.939Z",
+ "keywords": [
+ {
+ "keyword": "gargarisme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gargarismes"
+ },
+ {
+ "keyword": "gargariser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00037131-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 30032,
+ "created": "2016-02-06T11:26:33.000Z",
+ "lastUpdated": "2021-07-28T16:24:43.937Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se rincer la bouche",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "rincer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "rincer la bouche",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "religion"
+ ],
+ "synsets": [
+ "02064284-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "religion"
+ ],
+ "_id": 30042,
+ "created": "2016-02-06T11:49:57.000Z",
+ "lastUpdated": "2021-07-27T01:29:02.059Z",
+ "keywords": [
+ {
+ "keyword": "laïc",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "laïcs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "orthopedic product"
+ ],
+ "synsets": [
+ "01978076-v",
+ "01986058-v",
+ "01371262-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 30044,
+ "created": "2016-02-06T11:54:16.000Z",
+ "lastUpdated": "2021-07-27T01:27:39.427Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se lever du fauteuil roulant",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "orthopedic product"
+ ],
+ "synsets": [
+ "01978076-v",
+ "01986058-v",
+ "01371262-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 30045,
+ "created": "2016-02-06T11:54:16.000Z",
+ "lastUpdated": "2021-07-27T01:27:47.885Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se lever du fauteuil roulant",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "orthopedic product"
+ ],
+ "synsets": [
+ "01978076-v",
+ "01986058-v",
+ "01371262-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 30046,
+ "created": "2016-02-06T11:54:16.000Z",
+ "lastUpdated": "2021-07-27T01:27:56.789Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se lever du fauteuil roulant",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "outdoor activity"
+ ],
+ "synsets": [
+ "00886144-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 30030,
+ "created": "2016-02-06T11:19:38.000Z",
+ "lastUpdated": "2021-07-26T07:34:20.847Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cours",
+ "hasLocution": true,
+ "plural": "cours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "orthopedic product"
+ ],
+ "synsets": [
+ "01988916-v",
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 30052,
+ "created": "2016-02-06T11:58:23.000Z",
+ "lastUpdated": "2021-08-01T18:48:29.760Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'assoir dans le fauteuil",
+ "hasLocution": false
+ },
+ {
+ "keyword": "se mettre dans le fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir dans le fauteuil",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "orthopedic product"
+ ],
+ "synsets": [
+ "01988916-v",
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 30050,
+ "created": "2016-02-06T11:58:23.000Z",
+ "lastUpdated": "2021-08-01T18:49:13.041Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'assoir dans le fauteuil",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'assoir dans le fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir dans le fauteuil",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir dans le fauteuil roulant",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 30057,
+ "created": "2016-02-09T09:54:09.000Z",
+ "lastUpdated": "2021-07-27T01:25:21.429Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuels"
+ },
+ {
+ "keyword": "agression sexuelle",
+ "hasLocution": false,
+ "plural": "agressions sexuelles",
+ "type": 2
+ },
+ {
+ "keyword": "violence sexuelle",
+ "hasLocution": false,
+ "plural": "violences sexuelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "orthopedic product"
+ ],
+ "synsets": [
+ "01988916-v",
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 30051,
+ "created": "2016-02-06T11:58:23.000Z",
+ "lastUpdated": "2021-08-01T18:52:04.076Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'assoir dans le fauteuil",
+ "hasLocution": false
+ },
+ {
+ "keyword": "s'assoir dans le fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir dans le fauteuil",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir dans le fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 30058,
+ "created": "2016-02-09T09:54:09.000Z",
+ "lastUpdated": "2021-07-27T01:24:36.057Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuels"
+ },
+ {
+ "keyword": "violence sexuelle",
+ "hasLocution": false,
+ "plural": "violences sexuelles",
+ "type": 2
+ },
+ {
+ "keyword": "agression sexuelle",
+ "hasLocution": false,
+ "plural": "agressions sexuelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual practice"
+ ],
+ "synsets": [
+ "00856505-n",
+ "00856798-n"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual practice"
+ ],
+ "_id": 30068,
+ "created": "2016-02-12T13:11:34.000Z",
+ "lastUpdated": "2021-07-28T15:13:09.890Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sexe oral",
+ "hasLocution": true
+ },
+ {
+ "keyword": "fellation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fellations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual practice"
+ ],
+ "synsets": [
+ "00856505-n",
+ "00856684-n"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual practice"
+ ],
+ "_id": 30069,
+ "created": "2016-02-12T13:11:34.000Z",
+ "lastUpdated": "2021-07-27T01:23:12.916Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sexe oral",
+ "hasLocution": true
+ },
+ {
+ "keyword": "cunnilingus",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cunnilingus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "00825545-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 30072,
+ "created": "2016-02-12T13:13:48.000Z",
+ "lastUpdated": "2021-07-26T07:29:00.352Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vaccination",
+ "hasLocution": true,
+ "plural": "vaccinations"
+ },
+ {
+ "type": 3,
+ "keyword": "vacciner",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "vaccin",
+ "hasLocution": true,
+ "plural": "vaccins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "covid-19"
+ ],
+ "synsets": [
+ "00825545-n",
+ "00086587-v",
+ "04524830-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "covid-19"
+ ],
+ "_id": 30073,
+ "created": "2016-02-12T13:13:48.000Z",
+ "lastUpdated": "2021-07-26T07:28:48.601Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vaccination",
+ "hasLocution": true,
+ "plural": "vaccinations"
+ },
+ {
+ "type": 3,
+ "keyword": "vacciner",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "vaccin",
+ "hasLocution": true,
+ "plural": "vaccins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "covid-19"
+ ],
+ "synsets": [
+ "00825545-n",
+ "00086587-v",
+ "04524830-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "covid-19"
+ ],
+ "_id": 30074,
+ "created": "2016-02-12T13:13:48.000Z",
+ "lastUpdated": "2021-07-26T07:28:36.424Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vaccination",
+ "hasLocution": true,
+ "plural": "vaccinations"
+ },
+ {
+ "type": 3,
+ "keyword": "vacciner",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "vaccin",
+ "hasLocution": true,
+ "plural": "vaccins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00647575-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30078,
+ "created": "2016-02-12T13:18:12.000Z",
+ "lastUpdated": "2021-07-26T07:28:15.454Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "analyse d'urine ",
+ "hasLocution": false,
+ "plural": "analyses d'urine "
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00647575-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30079,
+ "created": "2016-02-12T13:18:13.000Z",
+ "lastUpdated": "2021-07-26T07:28:07.530Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "analyse d'urine ",
+ "hasLocution": false,
+ "plural": "analyses d'urine "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 30056,
+ "created": "2016-02-09T09:53:30.000Z",
+ "lastUpdated": "2021-07-27T01:26:06.782Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuels"
+ },
+ {
+ "keyword": "agression sexuelle",
+ "hasLocution": false,
+ "plural": "agressions sexuelles",
+ "type": 2
+ },
+ {
+ "keyword": "violence sexuelle",
+ "hasLocution": false,
+ "plural": "violences sexuelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00647575-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30080,
+ "created": "2016-02-12T13:18:13.000Z",
+ "lastUpdated": "2021-07-26T07:27:58.723Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "analyse d'urine ",
+ "hasLocution": false,
+ "plural": "analyses d'urine "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "01450487-v",
+ "01614650-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 30086,
+ "created": "2016-02-12T13:22:05.000Z",
+ "lastUpdated": "2021-07-26T07:27:05.974Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étaler du dentifrice",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mettre du dentifrice",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "07017357-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30090,
+ "created": "2016-02-12T13:24:31.000Z",
+ "lastUpdated": "2021-07-26T07:26:28.422Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "électroencéphalogramme ",
+ "hasLocution": false,
+ "plural": "électroencéphalogrammes"
+ },
+ {
+ "type": 2,
+ "keyword": "EEG",
+ "hasLocution": false
+ },
+ {
+ "keyword": "encéphalogramme",
+ "plural": "encéphalogrammes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "07017357-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30091,
+ "created": "2016-02-12T13:24:31.000Z",
+ "lastUpdated": "2021-07-26T07:26:23.373Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "électroencéphalogramme ",
+ "hasLocution": false,
+ "plural": "électroencéphalogrammes"
+ },
+ {
+ "type": 2,
+ "keyword": "EEG",
+ "hasLocution": false
+ },
+ {
+ "keyword": "encéphalogramme",
+ "hasLocution": false,
+ "plural": "encéphalogrammes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "01450487-v",
+ "01614650-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 30087,
+ "created": "2016-02-12T13:22:05.000Z",
+ "lastUpdated": "2021-07-26T07:26:52.387Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étaler du dentifrice",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "keyword": "mettre du dentifrice",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "01007415-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30094,
+ "created": "2016-02-12T13:30:17.000Z",
+ "lastUpdated": "2021-05-02T21:15:05.529Z",
+ "keywords": [
+ {
+ "keyword": "spirométrie",
+ "hasLocution": false,
+ "plural": "spirométries",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "01007415-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30095,
+ "created": "2016-02-12T13:30:17.000Z",
+ "lastUpdated": "2021-07-27T01:21:04.909Z",
+ "keywords": [
+ {
+ "keyword": "spirométrie",
+ "hasLocution": false,
+ "plural": "spirométries",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "01007415-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30096,
+ "created": "2016-02-12T13:30:18.000Z",
+ "lastUpdated": "2021-07-27T01:20:55.254Z",
+ "keywords": [
+ {
+ "keyword": "spirométrie",
+ "hasLocution": false,
+ "plural": "spirométries",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "13499728-n",
+ "00635519-n",
+ "05750496-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30084,
+ "created": "2016-02-12T13:20:16.000Z",
+ "lastUpdated": "2021-07-26T07:27:38.611Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "analyse de sang",
+ "hasLocution": true,
+ "plural": "analyses de sang"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "respiratory system"
+ ],
+ "synsets": [
+ "00004227-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "respiratory system"
+ ],
+ "_id": 30100,
+ "created": "2016-02-12T13:33:35.000Z",
+ "lastUpdated": "2021-07-27T01:20:07.933Z",
+ "keywords": [
+ {
+ "keyword": "expirer",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "souffler",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "exhaler",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "respiratory system"
+ ],
+ "synsets": [
+ "00005041-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "respiratory system"
+ ],
+ "_id": 30106,
+ "created": "2016-02-12T13:38:42.000Z",
+ "lastUpdated": "2021-07-27T01:19:28.068Z",
+ "keywords": [
+ {
+ "keyword": "inhaler",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "inspirer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "respirer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "respiratory system"
+ ],
+ "synsets": [
+ "00004227-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "respiratory system"
+ ],
+ "_id": 30101,
+ "created": "2016-02-12T13:33:35.000Z",
+ "lastUpdated": "2021-07-27T01:20:01.208Z",
+ "keywords": [
+ {
+ "keyword": "expirer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "souffler",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "exhaler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "respiratory system"
+ ],
+ "synsets": [
+ "00004227-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "respiratory system"
+ ],
+ "_id": 30102,
+ "created": "2016-02-12T13:33:35.000Z",
+ "lastUpdated": "2021-07-27T01:19:40.013Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "expirer",
+ "type": 3
+ },
+ {
+ "keyword": "souffler",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "exhaler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02987924-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30112,
+ "created": "2016-02-12T13:53:38.000Z",
+ "lastUpdated": "2021-07-27T01:18:28.628Z",
+ "keywords": [
+ {
+ "keyword": "sonde urinaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sondes urinaires"
+ },
+ {
+ "keyword": "cathéter urinaire",
+ "hasLocution": false,
+ "plural": "cathéters urinaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02987924-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30113,
+ "created": "2016-02-12T13:53:38.000Z",
+ "lastUpdated": "2021-07-27T01:17:30.641Z",
+ "keywords": [
+ {
+ "keyword": "sonde urinaire",
+ "hasLocution": false,
+ "plural": "sondes urinaires",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "cathéter urinaire",
+ "plural": "cathéters urinaires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "00665353-n",
+ "03745652-n",
+ "00083983-v",
+ "01159300-v",
+ "02782296-a"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 30116,
+ "created": "2016-02-12T13:59:23.000Z",
+ "lastUpdated": "2021-07-28T15:15:57.442Z",
+ "keywords": [
+ {
+ "keyword": "médicament",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "médicaments"
+ },
+ {
+ "keyword": "traitement",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "traitement"
+ },
+ {
+ "keyword": "médicament par voie orale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "médicaments par voie orale"
+ },
+ {
+ "keyword": "traitement oral",
+ "hasLocution": false,
+ "plural": "traitements oraux",
+ "type": 2
+ },
+ {
+ "keyword": "donner des médicaments",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "prendre des médicaments",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner le traitement",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "administrer le traitement",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "medicament"
+ ],
+ "synsets": [
+ "00665353-n",
+ "03745652-n",
+ "00083983-v",
+ "01159300-v",
+ "02782296-a"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "medicament"
+ ],
+ "_id": 30117,
+ "created": "2016-02-12T13:59:23.000Z",
+ "lastUpdated": "2021-07-28T14:54:59.119Z",
+ "keywords": [
+ {
+ "keyword": "médicament",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "médicaments"
+ },
+ {
+ "keyword": "traitement",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "traitements"
+ },
+ {
+ "keyword": "traitement oral",
+ "hasLocution": false,
+ "plural": "traitements oraux",
+ "type": 2
+ },
+ {
+ "keyword": "donner des médicaments",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner le traitement",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "administrer le traitement",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "prendre les médicaments",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "médicament par voie orale",
+ "hasLocution": false,
+ "plural": "médicaments par voie orale",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "02154216-v",
+ "01005930-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30109,
+ "created": "2016-02-12T13:41:28.000Z",
+ "lastUpdated": "2021-07-25T18:20:29.331Z",
+ "keywords": [
+ {
+ "keyword": "rayons X",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "medical test"
+ ],
+ "synsets": [
+ "02154216-v",
+ "01005930-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30108,
+ "created": "2016-02-12T13:41:27.000Z",
+ "lastUpdated": "2021-05-02T21:03:52.404Z",
+ "keywords": [
+ {
+ "keyword": "rayon X",
+ "hasLocution": false,
+ "plural": "rayons X",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "medicament"
+ ],
+ "synsets": [
+ "00665353-n",
+ "03745652-n",
+ "00083983-v",
+ "01159300-v",
+ "02782296-a"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "medicament"
+ ],
+ "_id": 30118,
+ "created": "2016-02-12T13:59:23.000Z",
+ "lastUpdated": "2021-07-28T14:54:27.760Z",
+ "keywords": [
+ {
+ "keyword": "médicament",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "médicaments"
+ },
+ {
+ "keyword": "traitement",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "traitements"
+ },
+ {
+ "keyword": "traitement oral",
+ "hasLocution": false,
+ "plural": "traitements oraux",
+ "type": 2
+ },
+ {
+ "keyword": "donner des médicaments",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner le traitement",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "administrer le traitement",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "prendre les médicaments",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "médicament par voie orale",
+ "plural": "médicaments par voie orale",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "medicament"
+ ],
+ "synsets": [
+ "00665353-n",
+ "03745652-n",
+ "00083983-v",
+ "01159300-v",
+ "02782296-a"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "medicament"
+ ],
+ "_id": 30120,
+ "created": "2016-02-12T13:59:23.000Z",
+ "lastUpdated": "2021-07-28T14:52:38.006Z",
+ "keywords": [
+ {
+ "keyword": "médicament",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "médicaments"
+ },
+ {
+ "keyword": "traitement",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "traitements"
+ },
+ {
+ "keyword": "traitement oral",
+ "hasLocution": false,
+ "plural": "traitements oraux",
+ "type": 2
+ },
+ {
+ "keyword": "donner des médicaments",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner le traitement",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "administrer un traitement",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "prendre ses médicaments",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "médicament par voie orale",
+ "hasLocution": false,
+ "plural": "médicaments par voie orale",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "medicament"
+ ],
+ "synsets": [
+ "00665353-n",
+ "03745652-n",
+ "00083983-v",
+ "01159300-v",
+ "02782296-a"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "medicament"
+ ],
+ "_id": 30119,
+ "created": "2016-02-12T13:59:23.000Z",
+ "lastUpdated": "2021-07-28T14:53:59.569Z",
+ "keywords": [
+ {
+ "keyword": "médicament",
+ "type": 2,
+ "plural": "médicaments",
+ "hasLocution": true
+ },
+ {
+ "keyword": "traitement",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "traitements"
+ },
+ {
+ "keyword": "traitement oral",
+ "plural": "traitements oraux",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "donner des médicaments",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner le traitement",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "administrer un traitemen",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "prendre ses médicaments",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "médicament par voie orale",
+ "hasLocution": false,
+ "plural": "médicaments par voie orale",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02685776-n",
+ "03874541-n",
+ "03576431-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30126,
+ "created": "2016-02-12T14:05:22.000Z",
+ "lastUpdated": "2021-07-25T18:18:15.149Z",
+ "keywords": [
+ {
+ "keyword": "aérosol",
+ "type": 2,
+ "plural": "aérosols",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02685776-n",
+ "03874541-n",
+ "03576431-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30127,
+ "created": "2016-02-12T14:05:22.000Z",
+ "lastUpdated": "2021-07-25T18:18:06.298Z",
+ "keywords": [
+ {
+ "keyword": "aérosol",
+ "type": 2,
+ "plural": "aérosols",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses"
+ ],
+ "synsets": [
+ "02129213-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 30132,
+ "created": "2016-02-12T14:12:18.000Z",
+ "lastUpdated": "2021-07-25T18:17:40.351Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "01763170-v",
+ "00865191-n",
+ "00143181-n",
+ "05303752-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30136,
+ "created": "2016-02-12T14:23:02.000Z",
+ "lastUpdated": "2021-07-28T14:45:40.076Z",
+ "keywords": [
+ {
+ "keyword": "test des réflexes tendineux",
+ "hasLocution": false,
+ "plural": "tests de réflexes tendineux",
+ "type": 2
+ },
+ {
+ "keyword": "test de réflexe du genou",
+ "hasLocution": false,
+ "plural": "test de réflexe du genou",
+ "type": 2
+ },
+ {
+ "keyword": "test de la réponse réflexe du genou",
+ "hasLocution": false,
+ "plural": "tests de la réponse réflexe du genou",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "covid-19"
+ ],
+ "synsets": [
+ "03874321-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "covid-19"
+ ],
+ "_id": 30138,
+ "created": "2016-02-15T10:03:30.000Z",
+ "lastUpdated": "2021-07-28T14:38:06.442Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "saturomètre",
+ "plural": "saturomètres"
+ },
+ {
+ "keyword": "saturation en oxygène",
+ "hasLocution": false,
+ "plural": "saturations en oxygène",
+ "type": 2
+ },
+ {
+ "keyword": "oxymètre de pouls",
+ "hasLocution": false,
+ "plural": "oxymètre de pouls",
+ "type": 2
+ },
+ {
+ "plural": "oxymètries de pouls",
+ "keyword": "oxymètrie de pouls",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "childcare"
+ ],
+ "synsets": [
+ "02855158-a",
+ "05108523-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "babycare"
+ ],
+ "_id": 30140,
+ "created": "2016-02-15T10:11:34.000Z",
+ "lastUpdated": "2021-07-27T01:03:14.482Z",
+ "keywords": [
+ {
+ "keyword": "périmètre crânien",
+ "hasLocution": false,
+ "plural": "périmètres crâniens",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02954606-n",
+ "02990326-a"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30142,
+ "created": "2016-02-15T10:17:29.000Z",
+ "lastUpdated": "2023-03-28T10:26:57.361Z",
+ "keywords": [
+ {
+ "keyword": "canule nasale",
+ "hasLocution": false,
+ "plural": "canules nasales",
+ "type": 2
+ },
+ {
+ "keyword": "lunette nasale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "lunettes nasales"
+ },
+ {
+ "keyword": "lunette à oxygène",
+ "hasLocution": false,
+ "plural": "lunettes à oxygène",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "00865191-n",
+ "03486255-n",
+ "00143181-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 30134,
+ "created": "2016-02-12T14:19:58.000Z",
+ "lastUpdated": "2021-07-25T18:17:35.724Z",
+ "keywords": [
+ {
+ "keyword": "marteau à réflexe",
+ "hasLocution": false,
+ "plural": "marteaux à réflexe",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02685776-n",
+ "03874541-n",
+ "03576431-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30128,
+ "created": "2016-02-12T14:05:22.000Z",
+ "lastUpdated": "2021-07-25T18:17:55.914Z",
+ "keywords": [
+ {
+ "keyword": "aérosol",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "aérosols"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "03086660-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30144,
+ "created": "2016-02-15T10:23:19.000Z",
+ "lastUpdated": "2021-07-28T14:31:45.363Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "pansement compressif",
+ "plural": "pansements compressifs"
+ },
+ {
+ "keyword": "garrot",
+ "hasLocution": false,
+ "plural": "garrots",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "covid-19"
+ ],
+ "synsets": [
+ "00005041-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "covid-19"
+ ],
+ "_id": 30146,
+ "created": "2016-02-15T10:26:30.000Z",
+ "lastUpdated": "2021-07-27T01:00:29.269Z",
+ "keywords": [
+ {
+ "keyword": "inhaler",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "inspirer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00089076-v",
+ "03435001-n",
+ "00180982-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30150,
+ "created": "2016-02-15T10:43:44.000Z",
+ "lastUpdated": "2021-07-27T01:00:00.985Z",
+ "keywords": [
+ {
+ "keyword": "nettoyer avec une compresse",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "04516244-n",
+ "10807146-n"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 30152,
+ "created": "2016-02-15T10:52:24.000Z",
+ "lastUpdated": "2021-07-27T00:59:18.188Z",
+ "keywords": [
+ {
+ "keyword": "femme en sous-vêtements",
+ "hasLocution": false,
+ "plural": "femmes en sous-vêtements",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "teenager"
+ ],
+ "synsets": [
+ "04516244-n",
+ "10306910-n"
+ ],
+ "tags": [
+ "person",
+ "teenager"
+ ],
+ "_id": 30154,
+ "created": "2016-02-15T10:53:28.000Z",
+ "lastUpdated": "2021-07-27T00:59:04.387Z",
+ "keywords": [
+ {
+ "keyword": "homme en sous-vêtements",
+ "plural": "hommes en sous-vêtements",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "04516244-n",
+ "10306910-n"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 30155,
+ "created": "2016-02-15T10:53:28.000Z",
+ "lastUpdated": "2021-07-27T00:58:58.084Z",
+ "keywords": [
+ {
+ "keyword": "homme en sous-vêtements",
+ "hasLocution": false,
+ "plural": "hommes en sous-vêtements",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "04516244-n",
+ "10305010-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 30158,
+ "created": "2016-02-15T10:53:56.000Z",
+ "lastUpdated": "2021-07-27T00:58:45.410Z",
+ "keywords": [
+ {
+ "keyword": "garçon en sous-vêtements",
+ "hasLocution": false,
+ "plural": "garçons en sous-vêtements",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "04516244-n",
+ "10104064-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 30160,
+ "created": "2016-02-15T10:54:30.000Z",
+ "lastUpdated": "2021-07-27T00:58:38.027Z",
+ "keywords": [
+ {
+ "keyword": "fille en sous-vêtements",
+ "hasLocution": false,
+ "plural": "filles en sous-vêtements",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "01060463-n",
+ "00187671-v",
+ "01496967-v",
+ "01424826-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30163,
+ "created": "2016-02-25T10:41:17.000Z",
+ "lastUpdated": "2021-07-28T23:43:08.695Z",
+ "keywords": [
+ {
+ "keyword": "insérer une sonde nasogastrique",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "intuber",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre une intubation nasogastrique",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "01060463-n",
+ "00187671-v",
+ "01496967-v",
+ "01424826-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30162,
+ "created": "2016-02-25T10:41:16.000Z",
+ "lastUpdated": "2021-07-28T23:43:58.377Z",
+ "keywords": [
+ {
+ "keyword": "insérer une sonde nasogastrique",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "intuber",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre une intubation nasogastrique",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "senses"
+ ],
+ "synsets": [
+ "05573181-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 30168,
+ "created": "2016-02-25T10:42:39.000Z",
+ "lastUpdated": "2021-07-25T18:11:20.940Z",
+ "keywords": [
+ {
+ "keyword": "main gauche",
+ "hasLocution": false,
+ "plural": "mains gauches",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "07017357-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30170,
+ "created": "2016-02-25T10:44:44.000Z",
+ "lastUpdated": "2021-07-26T07:03:49.452Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "électroencéphalogramme ",
+ "hasLocution": false,
+ "plural": "électroencéphalogrammes"
+ },
+ {
+ "type": 2,
+ "keyword": "EEG",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "07017357-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30171,
+ "created": "2016-02-25T10:44:44.000Z",
+ "lastUpdated": "2021-07-26T07:03:46.287Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "électroencéphalogramme ",
+ "hasLocution": false,
+ "plural": "électroencéphalogrammes"
+ },
+ {
+ "keyword": "EEG",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "03963714-n",
+ "01617485-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30174,
+ "created": "2016-02-25T10:49:30.000Z",
+ "lastUpdated": "2021-07-27T00:53:05.863Z",
+ "keywords": [
+ {
+ "keyword": "mettre un sparadrap",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "coller un sparadrap",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "hardware"
+ ],
+ "synsets": [
+ "03576857-n",
+ "10696710-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "computing",
+ "hardware"
+ ],
+ "_id": 29981,
+ "created": "2014-03-20T11:44:15.000Z",
+ "lastUpdated": "2021-07-28T20:17:57.900Z",
+ "keywords": [
+ {
+ "keyword": "magasin de cartouches d'encre",
+ "hasLocution": false,
+ "plural": "magasin de cartouches d'encre",
+ "type": 2
+ },
+ {
+ "keyword": "fournisseur de cartouches d'encre",
+ "hasLocution": false,
+ "plural": "fournisseurs de cartouches d'encre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "covid-19"
+ ],
+ "synsets": [
+ "00005041-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "covid-19"
+ ],
+ "_id": 30147,
+ "created": "2016-02-15T10:26:30.000Z",
+ "lastUpdated": "2021-07-27T01:00:22.664Z",
+ "keywords": [
+ {
+ "keyword": "inhaler",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "inspirer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "03576431-n",
+ "03576306-n",
+ "00005041-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30180,
+ "created": "2016-02-25T10:54:12.000Z",
+ "lastUpdated": "2021-07-28T14:35:16.106Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "médicament par inhalation",
+ "plural": "médicaments par inhalation"
+ },
+ {
+ "keyword": "inhalation médicale",
+ "hasLocution": false,
+ "plural": "inhalations médicales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "03576431-n",
+ "03576306-n",
+ "00005041-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 30181,
+ "created": "2016-02-25T10:54:12.000Z",
+ "lastUpdated": "2021-07-28T14:33:22.314Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "médicament par inhalation",
+ "plural": "médicaments par inhalation"
+ },
+ {
+ "keyword": "inhalation médicale",
+ "hasLocution": false,
+ "plural": "inhalations médicales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "03576431-n",
+ "03576306-n",
+ "00005041-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 30182,
+ "created": "2016-02-25T10:54:12.000Z",
+ "lastUpdated": "2021-07-28T14:33:56.512Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "médicament par inhalation",
+ "plural": "médicaments par inhalation"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "inhalation médicale",
+ "plural": "inhalations médicales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "patient"
+ ],
+ "synsets": [
+ "00185610-v",
+ "13552352-n",
+ "00309051-v",
+ "00322021-n",
+ "09642198-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "person",
+ "patient"
+ ],
+ "_id": 30186,
+ "created": "2016-02-25T11:01:21.000Z",
+ "lastUpdated": "2021-07-26T23:08:24.689Z",
+ "keywords": [
+ {
+ "keyword": "fille avec une canule nasale",
+ "hasLocution": false,
+ "plural": "filles avec une canule nasale",
+ "type": 2
+ },
+ {
+ "keyword": "fille avec une lunette à oxygène",
+ "hasLocution": false,
+ "plural": "filles avec une lunette à oxygène",
+ "type": 2
+ },
+ {
+ "keyword": "fille avec une canule à oxygène",
+ "hasLocution": false,
+ "plural": "filles avec une canule à oxygène",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "patient"
+ ],
+ "synsets": [
+ "00185610-v",
+ "13552352-n",
+ "00309051-v",
+ "00322021-n",
+ "09647338-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "person",
+ "patient"
+ ],
+ "_id": 30188,
+ "created": "2016-02-25T11:01:48.000Z",
+ "lastUpdated": "2021-07-26T23:07:15.001Z",
+ "keywords": [
+ {
+ "keyword": "garçon avec une canule nasale",
+ "hasLocution": false,
+ "plural": "garçons avec une canule nasale",
+ "type": 2
+ },
+ {
+ "keyword": "garçon avec une lunette à oxygène",
+ "hasLocution": false,
+ "plural": "garçons avec une lunette à oxygène",
+ "type": 2
+ },
+ {
+ "keyword": "garçon avec une canule à oxygène",
+ "hasLocution": false,
+ "plural": "garçons avec une canule à oxygène"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "patient"
+ ],
+ "synsets": [
+ "00185610-v",
+ "13552352-n",
+ "00309051-v",
+ "00322021-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "person",
+ "patient"
+ ],
+ "_id": 30190,
+ "created": "2016-02-25T11:02:21.000Z",
+ "lastUpdated": "2021-07-26T22:16:12.288Z",
+ "keywords": [
+ {
+ "keyword": "personne avec lunette à oxygène",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "personnes avec lunette à oxygène"
+ },
+ {
+ "keyword": "personne avec lunette nasale à oxygène",
+ "hasLocution": false,
+ "plural": "personnes avec lunette nasale à oxygène",
+ "type": 2
+ },
+ {
+ "keyword": "personne avec canule à oxygène",
+ "hasLocution": false,
+ "plural": "personnes avec canule à oxygène",
+ "type": 2
+ },
+ {
+ "keyword": "personne avec canule nasale",
+ "hasLocution": false,
+ "plural": "personnes avec canule nasale",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10523558-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 30192,
+ "created": "2016-02-25T11:06:41.000Z",
+ "lastUpdated": "2021-07-26T20:26:41.563Z",
+ "keywords": [
+ {
+ "keyword": "anipulateur en radiologie médicale",
+ "hasLocution": false,
+ "plural": "anipulateurs en radiologie médicale",
+ "type": 2
+ },
+ {
+ "keyword": "technologue en radiodiagnostic",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "technologues en radiodiagnostic"
+ },
+ {
+ "keyword": "technicien en radiologie médicale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "techniciens en radiologie médicale"
+ },
+ {
+ "keyword": "technologue en imagerie médicale",
+ "hasLocution": false,
+ "plural": "technologues en imagerie médicale",
+ "type": 2
+ },
+ {
+ "keyword": "manipulateur radio",
+ "hasLocution": false,
+ "plural": "manipulateurs radio",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "01060463-n",
+ "00187671-v",
+ "01496967-v",
+ "01424826-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30164,
+ "created": "2016-02-25T10:41:17.000Z",
+ "lastUpdated": "2021-07-28T23:44:44.574Z",
+ "keywords": [
+ {
+ "keyword": "insérer une sonde nasogastrique",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "intuber",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "keyword": "mettre une intubation nasogastrique",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "03963714-n",
+ "01617485-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30176,
+ "created": "2016-02-25T10:49:30.000Z",
+ "lastUpdated": "2021-07-27T00:52:54.051Z",
+ "keywords": [
+ {
+ "keyword": "mettre un sparadrap",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "coller un sparadrap",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "senses"
+ ],
+ "synsets": [
+ "02110460-v",
+ "02110960-v",
+ "05659816-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 30195,
+ "created": "2016-03-11T11:08:31.000Z",
+ "lastUpdated": "2024-11-12T06:06:54.362Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "sens",
+ "hasLocution": true
+ },
+ {
+ "keyword": "percevoir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "senses",
+ "verb"
+ ],
+ "synsets": [
+ "02110460-v",
+ "02110960-v",
+ "05659816-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 30196,
+ "created": "2016-03-11T11:08:31.000Z",
+ "lastUpdated": "2024-11-12T06:09:55.300Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "sens",
+ "hasLocution": true
+ },
+ {
+ "keyword": "percevoir",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "senses"
+ ],
+ "synsets": [
+ "02110460-v",
+ "02110960-v",
+ "05659816-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 30194,
+ "created": "2016-03-11T11:08:29.000Z",
+ "lastUpdated": "2024-11-12T06:06:25.518Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "sens",
+ "hasLocution": true
+ },
+ {
+ "keyword": "percevoir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "senses"
+ ],
+ "synsets": [
+ "02110460-v",
+ "02110960-v",
+ "05659816-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 30198,
+ "created": "2016-03-11T11:08:31.000Z",
+ "lastUpdated": "2024-11-12T06:06:34.262Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "sens",
+ "hasLocution": true
+ },
+ {
+ "keyword": "percevoir",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n"
+ ],
+ "tags": [
+ "categorization"
+ ],
+ "_id": 30205,
+ "created": "2016-03-11T11:14:38.000Z",
+ "lastUpdated": "2021-07-25T18:03:52.131Z",
+ "keywords": [
+ {
+ "keyword": "catégories",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "catégorie",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document",
+ "educational document"
+ ],
+ "synsets": [
+ "06492991-n",
+ "00948787-v"
+ ],
+ "tags": [
+ "document",
+ "information document",
+ "education"
+ ],
+ "_id": 30207,
+ "created": "2016-03-11T11:18:21.000Z",
+ "lastUpdated": "2024-12-12T15:37:18.904Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "liste",
+ "hasLocution": true,
+ "plural": "listes"
+ },
+ {
+ "keyword": "lister",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flag",
+ "country"
+ ],
+ "synsets": [
+ "08981960-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "flag",
+ "country"
+ ],
+ "_id": 30204,
+ "created": "2016-03-11T11:11:21.000Z",
+ "lastUpdated": "2021-07-25T18:04:08.723Z",
+ "keywords": [
+ {
+ "keyword": "Madagascar",
+ "type": 1,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "dairy product"
+ ],
+ "synsets": [
+ "04209460-n",
+ "07866305-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product"
+ ],
+ "_id": 30209,
+ "created": "2016-03-11T11:22:06.000Z",
+ "lastUpdated": "2021-07-26T20:19:19.042Z",
+ "keywords": [
+ {
+ "keyword": "fromagerie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fromageries"
+ },
+ {
+ "keyword": "magasin de fromage",
+ "hasLocution": false,
+ "plural": "magasins de fromage",
+ "type": 2
+ },
+ {
+ "keyword": "crémerie",
+ "hasLocution": false,
+ "plural": "crémeries",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "baking"
+ ],
+ "synsets": [
+ "04209460-n",
+ "07617570-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 30211,
+ "created": "2016-03-11T11:23:37.000Z",
+ "lastUpdated": "2021-07-26T20:17:56.037Z",
+ "keywords": [
+ {
+ "keyword": "chocolatier",
+ "hasLocution": false,
+ "plural": "chocolatiers",
+ "type": 2
+ },
+ {
+ "keyword": "magasin de chocolat",
+ "hasLocution": false,
+ "plural": "magasins de chocolat",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "cinema"
+ ],
+ "synsets": [
+ "04541815-n",
+ "06626039-n",
+ "01113280-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "scenic art",
+ "cinema",
+ "show"
+ ],
+ "_id": 30213,
+ "created": "2016-03-11T11:26:26.000Z",
+ "lastUpdated": "2021-07-26T20:17:35.582Z",
+ "keywords": [
+ {
+ "keyword": "vidéoclub",
+ "plural": "vidéoclubs",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "03963714-n",
+ "01617485-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30175,
+ "created": "2016-02-25T10:49:30.000Z",
+ "lastUpdated": "2021-07-27T00:53:00.343Z",
+ "keywords": [
+ {
+ "keyword": "mettre un sparadrap",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "coller un sparadrap",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "mode of transport"
+ ],
+ "synsets": [
+ "03796045-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "movement",
+ "traffic",
+ "mode of transport"
+ ],
+ "_id": 30215,
+ "created": "2016-03-11T11:28:43.000Z",
+ "lastUpdated": "2021-07-26T20:16:21.331Z",
+ "keywords": [
+ {
+ "keyword": "magasin de motos",
+ "hasLocution": false,
+ "plural": "magasins de motos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "sport material"
+ ],
+ "synsets": [
+ "10624661-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 30217,
+ "created": "2016-03-11T11:32:13.000Z",
+ "lastUpdated": "2021-07-25T18:00:42.282Z",
+ "keywords": [
+ {
+ "keyword": "magasin de ski",
+ "hasLocution": false,
+ "plural": "magasins de ski",
+ "type": 2
+ },
+ {
+ "keyword": "magasin d'articles de ski",
+ "hasLocution": false,
+ "plural": "magasins d'articles de ski",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "trousseau"
+ ],
+ "synsets": [
+ "04209460-n",
+ "03736655-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 30222,
+ "created": "2016-03-11T11:41:47.000Z",
+ "lastUpdated": "2021-07-26T06:59:10.294Z",
+ "keywords": [
+ {
+ "keyword": "magasin de matelas",
+ "hasLocution": false,
+ "plural": "magasins de matelas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "accessories"
+ ],
+ "synsets": [
+ "04209460-n",
+ "02777157-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 30219,
+ "created": "2016-03-11T11:34:59.000Z",
+ "lastUpdated": "2021-07-25T18:00:00.489Z",
+ "keywords": [
+ {
+ "keyword": "bagagerie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bagageries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid",
+ "hardware"
+ ],
+ "synsets": [
+ "04726275-n",
+ "04663006-n",
+ "04379457-n",
+ "03490490-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid",
+ "computing",
+ "hardware"
+ ],
+ "_id": 30223,
+ "created": "2016-03-11T11:53:40.000Z",
+ "lastUpdated": "2021-07-26T20:16:09.675Z",
+ "keywords": [
+ {
+ "keyword": "contacteur de tablette",
+ "hasLocution": false,
+ "plural": "contacteurs de tablette",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "computing"
+ ],
+ "synsets": [
+ "04466078-n"
+ ],
+ "tags": [
+ "computing"
+ ],
+ "_id": 30225,
+ "created": "2016-03-11T11:54:36.000Z",
+ "lastUpdated": "2021-07-25T17:59:22.023Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écran tactile",
+ "hasLocution": true,
+ "plural": "écrans tactiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "03487335-n"
+ ],
+ "tags": [],
+ "_id": 30229,
+ "created": "2016-03-11T12:06:11.000Z",
+ "lastUpdated": "2021-07-26T06:59:00.353Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hamac",
+ "hasLocution": false,
+ "plural": "hamacs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "supporting document",
+ "expression"
+ ],
+ "synsets": [
+ "06800007-n",
+ "08508037-n"
+ ],
+ "tags": [
+ "document",
+ "supporting document",
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 30231,
+ "created": "2016-03-11T12:08:51.000Z",
+ "lastUpdated": "2021-07-26T20:15:39.602Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "adresse",
+ "hasLocution": true,
+ "plural": "adresses"
+ },
+ {
+ "type": 5,
+ "keyword": "où habites-tu?",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "quelle est ton adresse?",
+ "hasLocution": true
+ },
+ {
+ "keyword": "quelle est votre adresse ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "où habitez vous ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "02561834-v",
+ "14183105-n",
+ "02223876-v",
+ "00896689-v",
+ "02459338-v"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 30235,
+ "created": "2016-03-11T12:15:16.000Z",
+ "lastUpdated": "2021-07-26T20:11:40.846Z",
+ "keywords": [
+ {
+ "keyword": "association de la trisomie 21",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "associations de la trisomie 21"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "14183105-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 30233,
+ "created": "2016-03-11T12:11:33.000Z",
+ "lastUpdated": "2021-07-26T20:14:39.277Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trisomie 21",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Trisomie 21",
+ "hasLocution": true,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "14327487-n",
+ "14174621-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 30239,
+ "created": "2016-03-11T12:23:20.000Z",
+ "lastUpdated": "2021-07-26T20:08:48.485Z",
+ "keywords": [
+ {
+ "keyword": "maladie du cri du chat",
+ "hasLocution": false,
+ "type": 1,
+ "plural": "maladies du cri du chat"
+ },
+ {
+ "keyword": "syndrome de Lejeune",
+ "hasLocution": false,
+ "type": 1,
+ "plural": "syndromes de Lejeune"
+ },
+ {
+ "keyword": "délétion 5p",
+ "hasLocution": false,
+ "type": 1,
+ "plural": "délétions 5p"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "02561834-v",
+ "02459338-v",
+ "02223876-v",
+ "00896689-v",
+ "14327487-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 30237,
+ "created": "2016-03-11T12:20:45.000Z",
+ "lastUpdated": "2021-07-26T20:13:24.175Z",
+ "keywords": [
+ {
+ "keyword": "association de la maladie du cri du chat ",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "associations de la maladie du cri du chat "
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "computing"
+ ],
+ "synsets": [
+ "04726275-n",
+ "06370600-n"
+ ],
+ "tags": [
+ "computing"
+ ],
+ "_id": 30227,
+ "created": "2016-03-11T12:02:54.000Z",
+ "lastUpdated": "2021-07-25T17:59:05.686Z",
+ "keywords": [
+ {
+ "keyword": "site accessible",
+ "hasLocution": false,
+ "plural": "site accessibles",
+ "type": 2
+ },
+ {
+ "keyword": "site internet accessible",
+ "hasLocution": false,
+ "plural": "sites internet accessibles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "bush"
+ ],
+ "synsets": [
+ "13133423-n"
+ ],
+ "tags": [
+ "plant",
+ "bush"
+ ],
+ "_id": 30241,
+ "created": "2016-03-11T12:24:25.000Z",
+ "lastUpdated": "2021-07-26T06:54:46.590Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "buisson",
+ "hasLocution": false,
+ "plural": "buissons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public building",
+ "political representation"
+ ],
+ "synsets": [
+ "08336128-n",
+ "02979870-a"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "public administration",
+ "work",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 30247,
+ "created": "2016-03-11T12:33:56.000Z",
+ "lastUpdated": "2021-07-26T06:54:35.644Z",
+ "keywords": [
+ {
+ "keyword": "Parlement Européen",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "parlement européen",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "07986853-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30245,
+ "created": "2016-03-11T12:30:29.000Z",
+ "lastUpdated": "2021-07-28T14:27:42.033Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille",
+ "hasLocution": true,
+ "plural": "familles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "medicine",
+ "medical procedure"
+ ],
+ "synsets": [
+ "07017357-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30249,
+ "created": "2016-03-11T12:34:52.000Z",
+ "lastUpdated": "2024-12-12T07:02:29.057Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "électroencéphalogramme ",
+ "hasLocution": false,
+ "plural": "électroencéphalogrammes"
+ },
+ {
+ "type": 2,
+ "keyword": "EEG",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human value"
+ ],
+ "synsets": [
+ "00732883-s",
+ "00731669-s",
+ "00731008-a",
+ "02426474-v"
+ ],
+ "tags": [
+ "psychology",
+ "human value"
+ ],
+ "_id": 30251,
+ "created": "2016-03-11T12:43:30.000Z",
+ "lastUpdated": "2021-07-26T06:54:31.755Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "indépendant",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "autonome",
+ "hasLocution": true
+ },
+ {
+ "keyword": "devenir indépendant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se libérer",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "devenir autonome",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "international organziation",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "08064499-n"
+ ],
+ "tags": [
+ "international organization",
+ "work",
+ "professional",
+ "medicine"
+ ],
+ "_id": 30253,
+ "created": "2016-03-11T12:44:49.000Z",
+ "lastUpdated": "2024-06-02T09:24:38.623Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Croix Rouge ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10755748-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30255,
+ "created": "2016-03-15T23:26:58.000Z",
+ "lastUpdated": "2021-07-26T06:53:44.991Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oncle",
+ "hasLocution": true,
+ "plural": "oncles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "11448137-n"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 30243,
+ "created": "2016-03-11T12:26:56.000Z",
+ "lastUpdated": "2021-07-26T20:06:00.295Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rayon",
+ "hasLocution": true,
+ "plural": "rayons"
+ },
+ {
+ "keyword": "rayon de soleil",
+ "plural": "rayons de soleil",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "rai de lumière",
+ "hasLocution": false,
+ "plural": "rais de lumière",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10755748-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30258,
+ "created": "2016-03-15T23:27:15.000Z",
+ "lastUpdated": "2021-07-26T06:53:36.046Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oncle",
+ "hasLocution": true,
+ "plural": "oncles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10755748-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30259,
+ "created": "2016-03-15T23:27:15.000Z",
+ "lastUpdated": "2021-07-26T06:53:32.871Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oncle",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10755748-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30260,
+ "created": "2016-03-15T23:27:15.000Z",
+ "lastUpdated": "2021-07-26T06:53:31.240Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oncle",
+ "hasLocution": true,
+ "plural": "oncles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10755748-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30257,
+ "created": "2016-03-15T23:27:15.000Z",
+ "lastUpdated": "2021-07-26T06:53:40.583Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oncle",
+ "hasLocution": true,
+ "plural": "oncles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10755748-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30261,
+ "created": "2016-03-15T23:27:15.000Z",
+ "lastUpdated": "2021-07-26T06:53:27.887Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oncle",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10755748-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30262,
+ "created": "2016-03-15T23:27:15.000Z",
+ "lastUpdated": "2021-07-26T06:53:26.626Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oncle",
+ "hasLocution": true,
+ "plural": "oncles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09842904-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30271,
+ "created": "2016-03-15T23:28:42.000Z",
+ "lastUpdated": "2021-07-25T17:53:19.043Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tante",
+ "hasLocution": true,
+ "plural": "tantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09842904-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30272,
+ "created": "2016-03-15T23:28:42.000Z",
+ "lastUpdated": "2021-07-26T06:53:23.214Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tante",
+ "hasLocution": true,
+ "plural": "tantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09842904-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30274,
+ "created": "2016-03-15T23:28:42.000Z",
+ "lastUpdated": "2021-07-26T06:53:19.419Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tante",
+ "hasLocution": true,
+ "plural": "tantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09842904-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30275,
+ "created": "2016-03-15T23:28:42.000Z",
+ "lastUpdated": "2021-07-26T06:53:17.536Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tante",
+ "hasLocution": true,
+ "plural": "tantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09842904-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30276,
+ "created": "2016-03-15T23:28:42.000Z",
+ "lastUpdated": "2021-07-26T06:53:14.862Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tante",
+ "hasLocution": true,
+ "plural": "tantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10755748-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30256,
+ "created": "2016-03-15T23:27:15.000Z",
+ "lastUpdated": "2021-07-26T06:53:42.675Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oncle",
+ "hasLocution": true,
+ "plural": "oncles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09842904-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30277,
+ "created": "2016-03-15T23:28:42.000Z",
+ "lastUpdated": "2021-07-26T06:53:12.489Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tante",
+ "hasLocution": true,
+ "plural": "tantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09842904-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30278,
+ "created": "2016-03-15T23:28:42.000Z",
+ "lastUpdated": "2021-07-25T17:52:47.123Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tante",
+ "hasLocution": true,
+ "plural": "tantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10373054-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30286,
+ "created": "2016-03-15T23:30:32.000Z",
+ "lastUpdated": "2021-07-26T06:53:09.334Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "neveu",
+ "hasLocution": true,
+ "plural": "neveux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09842904-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30273,
+ "created": "2016-03-15T23:28:42.000Z",
+ "lastUpdated": "2021-07-26T06:53:21.672Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tante",
+ "hasLocution": true,
+ "plural": "tantes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "senses"
+ ],
+ "synsets": [
+ "02110460-v",
+ "02110960-v",
+ "05659816-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 30197,
+ "created": "2016-03-11T11:08:31.000Z",
+ "lastUpdated": "2024-11-12T06:06:43.406Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "sens",
+ "hasLocution": true,
+ "plural": "sens"
+ },
+ {
+ "keyword": "percevoir",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "ressentir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "sensations",
+ "hasLocution": false,
+ "plural": "sensations",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10373054-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30287,
+ "created": "2016-03-15T23:30:32.000Z",
+ "lastUpdated": "2021-07-26T06:53:06.884Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "neveu",
+ "hasLocution": true,
+ "plural": "neveux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10373054-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30289,
+ "created": "2016-03-15T23:30:32.000Z",
+ "lastUpdated": "2021-07-26T06:53:03.122Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "neveu",
+ "hasLocution": true,
+ "plural": "neveux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10373054-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30291,
+ "created": "2016-03-15T23:30:33.000Z",
+ "lastUpdated": "2021-07-26T06:52:57.393Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "neveu",
+ "hasLocution": true,
+ "plural": "neveux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10373054-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30292,
+ "created": "2016-03-15T23:30:33.000Z",
+ "lastUpdated": "2021-07-25T17:51:59.227Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "neveu",
+ "hasLocution": true,
+ "plural": "neveux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10373054-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30293,
+ "created": "2016-03-15T23:30:33.000Z",
+ "lastUpdated": "2021-07-25T17:52:03.673Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "neveu",
+ "hasLocution": true,
+ "plural": "neveux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10377312-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30302,
+ "created": "2016-03-15T23:32:01.000Z",
+ "lastUpdated": "2021-07-26T06:52:56.091Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nièce",
+ "hasLocution": true,
+ "plural": "nièces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10377312-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30303,
+ "created": "2016-03-15T23:32:01.000Z",
+ "lastUpdated": "2021-07-25T17:51:38.032Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nièce",
+ "hasLocution": true,
+ "plural": "nièces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10373054-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30288,
+ "created": "2016-03-15T23:30:32.000Z",
+ "lastUpdated": "2021-07-26T06:53:05.170Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "neveu",
+ "hasLocution": true,
+ "plural": "neveux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10377312-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30304,
+ "created": "2016-03-15T23:32:01.000Z",
+ "lastUpdated": "2021-07-26T06:52:53.067Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nièce",
+ "hasLocution": true,
+ "plural": "nièces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10377312-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30307,
+ "created": "2016-03-15T23:32:01.000Z",
+ "lastUpdated": "2021-07-26T06:52:45.743Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nièce",
+ "hasLocution": true,
+ "plural": "nièces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10377312-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30306,
+ "created": "2016-03-15T23:32:01.000Z",
+ "lastUpdated": "2021-07-26T06:52:47.982Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nièce",
+ "hasLocution": true,
+ "plural": "nièces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10377312-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30308,
+ "created": "2016-03-15T23:32:01.000Z",
+ "lastUpdated": "2021-07-25T17:51:14.885Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nièce",
+ "hasLocution": true,
+ "plural": "nièces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10377312-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30309,
+ "created": "2016-03-15T23:32:01.000Z",
+ "lastUpdated": "2021-07-26T06:52:43.128Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nièce",
+ "hasLocution": true,
+ "plural": "nièces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30318,
+ "created": "2016-03-15T23:39:20.000Z",
+ "lastUpdated": "2021-07-26T06:52:39.426Z",
+ "keywords": [
+ {
+ "keyword": "cousins",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30319,
+ "created": "2016-03-15T23:39:20.000Z",
+ "lastUpdated": "2021-07-26T06:52:36.726Z",
+ "keywords": [
+ {
+ "keyword": "cousins",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10377312-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30305,
+ "created": "2016-03-15T23:32:01.000Z",
+ "lastUpdated": "2021-07-26T06:52:50.485Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nièce",
+ "hasLocution": true,
+ "plural": "nièces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30322,
+ "created": "2016-03-15T23:39:20.000Z",
+ "lastUpdated": "2021-07-26T06:52:32.595Z",
+ "keywords": [
+ {
+ "keyword": "cousins",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30323,
+ "created": "2016-03-15T23:39:20.000Z",
+ "lastUpdated": "2021-07-26T06:52:30.122Z",
+ "keywords": [
+ {
+ "keyword": "cousins",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30321,
+ "created": "2016-03-15T23:39:20.000Z",
+ "lastUpdated": "2021-07-26T06:52:35.216Z",
+ "keywords": [
+ {
+ "keyword": "cousins",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30324,
+ "created": "2016-03-15T23:39:20.000Z",
+ "lastUpdated": "2021-07-26T06:45:27.326Z",
+ "keywords": [
+ {
+ "keyword": "cousins",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30325,
+ "created": "2016-03-15T23:39:20.000Z",
+ "lastUpdated": "2021-07-25T17:49:51.364Z",
+ "keywords": [
+ {
+ "keyword": "cousins",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30326,
+ "created": "2016-03-15T23:39:20.000Z",
+ "lastUpdated": "2021-07-26T06:44:42.632Z",
+ "keywords": [
+ {
+ "keyword": "cousins",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30327,
+ "created": "2016-03-15T23:39:20.000Z",
+ "lastUpdated": "2021-07-26T06:44:38.113Z",
+ "keywords": [
+ {
+ "keyword": "cousins",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30328,
+ "created": "2016-03-15T23:39:20.000Z",
+ "lastUpdated": "2021-07-25T17:49:24.779Z",
+ "keywords": [
+ {
+ "keyword": "cousins",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30320,
+ "created": "2016-03-15T23:39:20.000Z",
+ "lastUpdated": "2021-07-25T17:50:35.410Z",
+ "keywords": [
+ {
+ "keyword": "cousins",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30341,
+ "created": "2016-03-15T23:42:27.000Z",
+ "lastUpdated": "2021-07-26T06:44:34.924Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousin",
+ "hasLocution": true,
+ "plural": "cousins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30342,
+ "created": "2016-03-15T23:42:27.000Z",
+ "lastUpdated": "2021-07-26T06:45:21.144Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousin",
+ "hasLocution": true,
+ "plural": "cousins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30343,
+ "created": "2016-03-15T23:42:27.000Z",
+ "lastUpdated": "2021-07-26T06:44:01.739Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousin",
+ "hasLocution": true,
+ "plural": "cousins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30344,
+ "created": "2016-03-15T23:42:27.000Z",
+ "lastUpdated": "2021-07-26T06:43:18.065Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousin",
+ "hasLocution": true,
+ "plural": "cousins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30345,
+ "created": "2016-03-15T23:42:27.000Z",
+ "lastUpdated": "2021-07-26T06:52:27.457Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousin",
+ "hasLocution": true,
+ "plural": "cousins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30346,
+ "created": "2016-03-15T23:42:27.000Z",
+ "lastUpdated": "2021-07-26T06:52:25.178Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousin",
+ "hasLocution": true,
+ "plural": "cousins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30340,
+ "created": "2016-03-15T23:42:27.000Z",
+ "lastUpdated": "2021-07-25T17:49:15.198Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousin",
+ "hasLocution": true,
+ "plural": "cousins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30347,
+ "created": "2016-03-15T23:42:27.000Z",
+ "lastUpdated": "2021-07-25T17:48:39.190Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousin",
+ "hasLocution": true,
+ "plural": "cousins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30358,
+ "created": "2016-03-15T23:43:50.000Z",
+ "lastUpdated": "2021-07-25T17:48:20.270Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousine",
+ "hasLocution": true,
+ "plural": "cousines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30359,
+ "created": "2016-03-15T23:43:50.000Z",
+ "lastUpdated": "2021-07-26T06:43:47.867Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousine",
+ "hasLocution": true,
+ "plural": "cousines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30357,
+ "created": "2016-03-15T23:43:50.000Z",
+ "lastUpdated": "2021-07-26T06:45:09.506Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousine",
+ "hasLocution": true,
+ "plural": "cousines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30361,
+ "created": "2016-03-15T23:43:50.000Z",
+ "lastUpdated": "2021-07-26T06:52:22.167Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousine",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30360,
+ "created": "2016-03-15T23:43:50.000Z",
+ "lastUpdated": "2021-07-26T06:45:05.056Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousine",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30362,
+ "created": "2016-03-15T23:43:50.000Z",
+ "lastUpdated": "2021-07-25T17:48:00.955Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousine",
+ "hasLocution": true,
+ "plural": "cousines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30363,
+ "created": "2016-03-15T23:43:50.000Z",
+ "lastUpdated": "2021-07-26T06:43:37.543Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousine",
+ "hasLocution": true,
+ "plural": "cousines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30372,
+ "created": "2016-03-15T23:45:22.000Z",
+ "lastUpdated": "2021-07-25T17:47:39.015Z",
+ "keywords": [
+ {
+ "keyword": "cousines",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30373,
+ "created": "2016-03-15T23:45:22.000Z",
+ "lastUpdated": "2021-07-25T17:47:27.306Z",
+ "keywords": [
+ {
+ "keyword": "cousines",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30374,
+ "created": "2016-03-15T23:45:22.000Z",
+ "lastUpdated": "2021-07-26T06:44:56.684Z",
+ "keywords": [
+ {
+ "keyword": "cousines",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30380,
+ "created": "2016-03-15T23:45:50.000Z",
+ "lastUpdated": "2021-07-25T17:46:55.224Z",
+ "keywords": [
+ {
+ "keyword": "cousins",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30375,
+ "created": "2016-03-15T23:45:22.000Z",
+ "lastUpdated": "2021-07-25T17:47:06.567Z",
+ "keywords": [
+ {
+ "keyword": "cousines",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of place",
+ "basic concepts",
+ "core vocabulary-communication",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00411619-r",
+ "00446553-a",
+ "00448955-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of place",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 30383,
+ "created": "2016-03-15T23:47:51.000Z",
+ "lastUpdated": "2024-10-23T07:36:01.972Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "près",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of place",
+ "basic concepts",
+ "core vocabulary-communication",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00101601-r",
+ "00444378-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of place",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 30385,
+ "created": "2016-03-15T23:49:39.000Z",
+ "lastUpdated": "2024-10-23T07:38:36.089Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "loin",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "cinema",
+ "core vocabulary-place",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "03036237-n",
+ "03794933-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "scenic art",
+ "cinema",
+ "show",
+ "core vocabulary"
+ ],
+ "_id": 30387,
+ "created": "2016-03-15T23:52:46.000Z",
+ "lastUpdated": "2021-07-25T17:46:27.970Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cinéma",
+ "hasLocution": true,
+ "plural": "cinémas"
+ },
+ {
+ "keyword": "salle de cinéma",
+ "hasLocution": false,
+ "plural": "salles de cinéma",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "10557379-n",
+ "01468558-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 30389,
+ "created": "2016-03-15T23:56:18.000Z",
+ "lastUpdated": "2021-07-25T17:45:54.955Z",
+ "keywords": [
+ {
+ "keyword": "amoureux",
+ "type": 2,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00031813-v",
+ "06891454-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 30393,
+ "created": "2016-03-16T09:09:46.000Z",
+ "lastUpdated": "2021-07-25T17:41:49.423Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Manifester une gaieté soudaine par l'expression du visage et par certains mouvements de la bouche et des muscles faciaux, accompagnés d'expirations plus ou moins saccadées et bruyantes",
+ "keyword": "rire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "éclater de rire",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "pleurer de rire",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious building",
+ "islamism",
+ "signaling system"
+ ],
+ "synsets": [
+ "03793728-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "religion",
+ "islamism",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 30395,
+ "created": "2016-04-19T11:03:08.000Z",
+ "lastUpdated": "2021-07-26T06:52:16.465Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mosquée",
+ "hasLocution": true,
+ "plural": "mosquées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07597172-n",
+ "07596911-n",
+ "07858729-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 30401,
+ "created": "2016-04-19T11:08:25.000Z",
+ "lastUpdated": "2021-07-28T14:27:05.820Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amuse-gueule",
+ "hasLocution": true,
+ "plural": "amuse-gueules"
+ },
+ {
+ "keyword": "tapas",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "tapas"
+ },
+ {
+ "keyword": "canapé à l'omelette",
+ "hasLocution": false,
+ "plural": "canapés à l'omelette",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "categorization"
+ ],
+ "synsets": [
+ "07897775-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "categorization"
+ ],
+ "_id": 30403,
+ "created": "2016-04-19T11:09:51.000Z",
+ "lastUpdated": "2024-12-04T11:00:43.979Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boisson",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "boissons",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious building",
+ "judaism",
+ "signaling system"
+ ],
+ "synsets": [
+ "04381822-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "religion",
+ "judaism",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 30405,
+ "created": "2016-04-19T11:15:31.000Z",
+ "lastUpdated": "2021-07-25T17:41:07.417Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "synagogue",
+ "hasLocution": true,
+ "plural": "synagogues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07597172-n",
+ "07596911-n",
+ "07691372-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 30409,
+ "created": "2016-04-19T11:19:50.000Z",
+ "lastUpdated": "2021-07-28T14:26:15.237Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amuse-gueule",
+ "hasLocution": true,
+ "plural": "amuse-gueules"
+ },
+ {
+ "keyword": "tapas",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "tapas"
+ },
+ {
+ "keyword": "saucisson",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "saucissons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09991540-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30356,
+ "created": "2016-03-15T23:43:50.000Z",
+ "lastUpdated": "2021-07-25T17:48:30.125Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cousine",
+ "hasLocution": true,
+ "plural": "cousines"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human response",
+ "feeling",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02465209-s",
+ "14399166-n",
+ "14398981-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response",
+ "feeling",
+ "emotion",
+ "core vocabulary"
+ ],
+ "_id": 30391,
+ "created": "2016-03-15T23:57:31.000Z",
+ "lastUpdated": "2021-07-27T22:10:52.303Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nerfs",
+ "hasLocution": true,
+ "plural": "nerfs"
+ },
+ {
+ "type": 4,
+ "keyword": "nerveux",
+ "hasLocution": true,
+ "plural": "nerveux"
+ },
+ {
+ "keyword": "trouille",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "stressé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "stressés"
+ },
+ {
+ "keyword": "inquiet",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "inquiets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "decorative item"
+ ],
+ "synsets": [
+ "00609469-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "decorative item"
+ ],
+ "_id": 30413,
+ "created": "2016-04-19T12:08:24.000Z",
+ "lastUpdated": "2021-07-28T14:23:09.680Z",
+ "keywords": [
+ {
+ "keyword": "magasin de décoration intérieure",
+ "hasLocution": false,
+ "plural": "magasins de décoration intérieure",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "light fixture"
+ ],
+ "synsets": [
+ "02837762-a",
+ "01059124-n",
+ "04558341-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 30417,
+ "created": "2016-04-19T16:08:33.000Z",
+ "lastUpdated": "2021-07-26T13:48:00.075Z",
+ "keywords": [
+ {
+ "keyword": "magasin d'articles d'électricité",
+ "hasLocution": false,
+ "plural": "magasins d'articles d'électricité",
+ "type": 2
+ },
+ {
+ "keyword": "magasin de luminaires",
+ "hasLocution": false,
+ "plural": "magasins de luminaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03533443-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 30419,
+ "created": "2016-04-19T16:09:51.000Z",
+ "lastUpdated": "2021-07-26T13:48:12.223Z",
+ "keywords": [
+ {
+ "keyword": "magasin d'électro-ménager",
+ "hasLocution": false,
+ "plural": "magasins d'électro-ménager",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "photography"
+ ],
+ "synsets": [
+ "04209460-n",
+ "02946154-n",
+ "00621794-n",
+ "10446513-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "visual art",
+ "photography"
+ ],
+ "_id": 30422,
+ "created": "2016-04-19T16:12:08.000Z",
+ "lastUpdated": "2021-07-26T13:48:30.631Z",
+ "keywords": [
+ {
+ "keyword": "magasin d'articles photo",
+ "hasLocution": false,
+ "plural": "magasins d'articles photo",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10373054-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 30290,
+ "created": "2016-03-15T23:30:32.000Z",
+ "lastUpdated": "2021-07-26T06:53:00.754Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "neveu",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothes"
+ ],
+ "synsets": [
+ "03056449-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 30424,
+ "created": "2016-04-19T16:13:12.000Z",
+ "lastUpdated": "2021-07-28T14:22:41.861Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de vêtements",
+ "hasLocution": true,
+ "plural": "magasins de vêtements"
+ },
+ {
+ "keyword": "magasin de vêtements de garçons",
+ "hasLocution": false,
+ "plural": "magasins de vêtements de garçons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothes"
+ ],
+ "synsets": [
+ "03056449-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 30436,
+ "created": "2016-04-19T16:17:28.000Z",
+ "lastUpdated": "2021-07-28T14:22:02.617Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de vêtements pour homme",
+ "hasLocution": false,
+ "plural": "magasins de vêtements pour homme"
+ },
+ {
+ "keyword": "magasin de vêtements",
+ "plural": "magasins de vêtements",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothes"
+ ],
+ "synsets": [
+ "03056449-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 30437,
+ "created": "2016-04-19T16:17:28.000Z",
+ "lastUpdated": "2021-07-28T14:21:52.189Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de vêtements",
+ "hasLocution": true,
+ "plural": "magasins de vêtements"
+ },
+ {
+ "keyword": "magasin de vêtements ados",
+ "hasLocution": false,
+ "plural": "magasins de vêtements ados",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "beverage"
+ ],
+ "synsets": [
+ "03877049-n",
+ "07897775-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 30444,
+ "created": "2016-04-19T16:20:39.000Z",
+ "lastUpdated": "2021-07-28T14:21:35.861Z",
+ "keywords": [
+ {
+ "keyword": "caviste",
+ "plural": "cavistes",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "magasin de boissons",
+ "hasLocution": false,
+ "plural": "magasins de boissons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "food"
+ ],
+ "synsets": [
+ "07588423-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food"
+ ],
+ "_id": 30446,
+ "created": "2016-04-19T16:21:22.000Z",
+ "lastUpdated": "2021-07-26T13:49:30.938Z",
+ "keywords": [
+ {
+ "keyword": "magasin de surgelés",
+ "plural": "magasins de surgelés",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "skating"
+ ],
+ "synsets": [
+ "03563584-n",
+ "04232791-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "skating"
+ ],
+ "_id": 30448,
+ "created": "2016-04-19T16:23:02.000Z",
+ "lastUpdated": "2021-07-26T06:45:56.994Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patin",
+ "hasLocution": true,
+ "plural": "pati ns"
+ },
+ {
+ "keyword": "patin à glace",
+ "hasLocution": false,
+ "plural": "patins à glace",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "skating"
+ ],
+ "synsets": [
+ "03563584-n",
+ "04232791-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "skating"
+ ],
+ "_id": 30450,
+ "created": "2016-04-19T16:23:41.000Z",
+ "lastUpdated": "2021-07-26T06:45:53.809Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patins à glace",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01238573-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 30458,
+ "created": "2016-04-19T16:28:10.000Z",
+ "lastUpdated": "2021-07-25T17:37:33.098Z",
+ "keywords": [
+ {
+ "keyword": "coup de tête",
+ "hasLocution": false,
+ "plural": "coups de tête",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "08641960-n",
+ "10386665-n",
+ "10387518-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 30460,
+ "created": "2016-04-19T16:31:31.000Z",
+ "lastUpdated": "2021-07-28T14:21:21.275Z",
+ "keywords": [
+ {
+ "keyword": "bureau des infirmières",
+ "hasLocution": false,
+ "plural": "bureaux des infirmières",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "medical test",
+ "signaling system",
+ "covid-19"
+ ],
+ "synsets": [
+ "00143181-n",
+ "02887252-n",
+ "04557205-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "medical procedure",
+ "medical test",
+ "communication",
+ "signaling system",
+ "covid-19"
+ ],
+ "_id": 30462,
+ "created": "2016-04-19T16:33:16.000Z",
+ "lastUpdated": "2021-07-26T13:51:15.164Z",
+ "keywords": [
+ {
+ "keyword": "salle d'examen",
+ "hasLocution": false,
+ "plural": "salles d'examen",
+ "type": 2
+ },
+ {
+ "keyword": "box d'examen",
+ "hasLocution": false,
+ "plural": "boxes d'examen",
+ "type": 2
+ },
+ {
+ "keyword": "pièce d'examen",
+ "hasLocution": false,
+ "plural": "pièces d'examen",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "patient",
+ "signaling system"
+ ],
+ "synsets": [
+ "01250738-n",
+ "08071169-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "person",
+ "patient",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 30464,
+ "created": "2016-04-19T16:34:37.000Z",
+ "lastUpdated": "2021-07-26T13:51:49.332Z",
+ "keywords": [
+ {
+ "keyword": "admission à l'hôpital",
+ "hasLocution": false,
+ "plural": "admissions à l'hôpital",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04557205-n",
+ "02887252-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 30466,
+ "created": "2016-04-19T16:35:49.000Z",
+ "lastUpdated": "2021-07-26T17:34:52.111Z",
+ "keywords": [
+ {
+ "keyword": "box d'hôpital",
+ "hasLocution": false,
+ "plural": "boxes d'hôpital",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system",
+ "covid-19"
+ ],
+ "synsets": [
+ "08163600-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system",
+ "covid-19"
+ ],
+ "_id": 30468,
+ "created": "2016-04-19T16:36:38.000Z",
+ "lastUpdated": "2021-07-26T17:33:55.436Z",
+ "keywords": [
+ {
+ "keyword": "unité de soins intensifs",
+ "hasLocution": false,
+ "plural": "unités de soins intensifs",
+ "type": 2
+ },
+ {
+ "keyword": "USI",
+ "hasLocution": false,
+ "plural": "USIs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "00881437-n",
+ "04557205-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 30470,
+ "created": "2016-04-19T16:37:46.000Z",
+ "lastUpdated": "2021-07-26T17:33:10.401Z",
+ "keywords": [
+ {
+ "keyword": "chambre d'observation",
+ "hasLocution": false,
+ "plural": "chambres d'observation",
+ "type": 2
+ },
+ {
+ "keyword": "salle d'observation",
+ "hasLocution": false,
+ "plural": "salles d'observation",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "04246543-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30472,
+ "created": "2016-04-19T16:39:28.000Z",
+ "lastUpdated": "2021-07-26T17:32:19.802Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écharpe",
+ "hasLocution": true,
+ "plural": "écharpes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "00676307-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30474,
+ "created": "2016-04-19T16:40:47.000Z",
+ "lastUpdated": "2021-07-26T17:31:45.461Z",
+ "keywords": [
+ {
+ "keyword": "bouton de gastrotomie",
+ "hasLocution": false,
+ "plural": "boutons de gastrotomie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "00676307-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30475,
+ "created": "2016-04-19T16:40:47.000Z",
+ "lastUpdated": "2021-07-26T17:31:28.873Z",
+ "keywords": [
+ {
+ "keyword": "bouton de gastrotomie",
+ "hasLocution": false,
+ "plural": "boutons de gastrotomie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "00676307-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30476,
+ "created": "2016-04-19T16:40:47.000Z",
+ "lastUpdated": "2021-07-26T17:31:11.717Z",
+ "keywords": [
+ {
+ "keyword": "bouton de gastrotomie",
+ "hasLocution": false,
+ "plural": "boutons de gastrotomie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "money"
+ ],
+ "synsets": [
+ "02204104-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "economy",
+ "money"
+ ],
+ "_id": 30480,
+ "created": "2016-04-19T16:42:31.000Z",
+ "lastUpdated": "2021-07-25T17:37:00.486Z",
+ "keywords": [
+ {
+ "keyword": "donner de l'argent",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothes"
+ ],
+ "synsets": [
+ "02882551-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 30425,
+ "created": "2016-04-19T16:13:12.000Z",
+ "lastUpdated": "2021-07-26T13:48:57.412Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de vêtements pour femme",
+ "hasLocution": false,
+ "plural": "magasins de vêtements pour femmes"
+ },
+ {
+ "keyword": "magasin de vêtements",
+ "hasLocution": true,
+ "plural": "magasins de vêtements",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothes"
+ ],
+ "synsets": [
+ "02882551-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 30426,
+ "created": "2016-04-19T16:13:12.000Z",
+ "lastUpdated": "2021-07-28T14:35:43.080Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de vêtements",
+ "hasLocution": true,
+ "plural": "magasins de vêtements"
+ },
+ {
+ "keyword": "magasin de vêtements ados",
+ "hasLocution": false,
+ "plural": "magasins de vêtements ados",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothes"
+ ],
+ "synsets": [
+ "02882551-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 30427,
+ "created": "2016-04-19T16:13:12.000Z",
+ "lastUpdated": "2021-07-25T17:40:00.287Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de vêtements pour enfants",
+ "hasLocution": false,
+ "plural": "magasins de vêtements pour enfants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "elderly",
+ "family"
+ ],
+ "synsets": [
+ "10162692-n"
+ ],
+ "tags": [
+ "person",
+ "elderly",
+ "family"
+ ],
+ "_id": 30482,
+ "created": "2016-05-20T12:34:20.000Z",
+ "lastUpdated": "2021-07-25T17:36:56.205Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grands-parents",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "02465209-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 30484,
+ "created": "2016-05-20T13:25:12.000Z",
+ "lastUpdated": "2021-07-27T22:16:30.185Z",
+ "keywords": [
+ {
+ "keyword": "anxieux",
+ "type": 4,
+ "hasLocution": false,
+ "plural": "anxieux"
+ },
+ {
+ "keyword": "nerveux",
+ "type": 4,
+ "hasLocution": true,
+ "plural": "nerveux"
+ },
+ {
+ "keyword": "inquiet",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "inquiets"
+ },
+ {
+ "keyword": "angoissé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "angoissé"
+ },
+ {
+ "keyword": "stressé",
+ "hasLocution": false,
+ "plural": "stressés",
+ "type": 4
+ },
+ {
+ "keyword": "soucieux",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "soucieux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "02465209-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 30485,
+ "created": "2016-05-20T13:25:13.000Z",
+ "lastUpdated": "2021-07-27T22:14:22.214Z",
+ "keywords": [
+ {
+ "keyword": "anxieux",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "anxieux"
+ },
+ {
+ "keyword": "nerveux",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "nerveux"
+ },
+ {
+ "keyword": "stressé",
+ "hasLocution": false,
+ "plural": "stressés",
+ "type": 4
+ },
+ {
+ "keyword": "inquiet",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "inquiets"
+ },
+ {
+ "keyword": "angoissé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "angoissés"
+ },
+ {
+ "keyword": "soucieux",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "soucieux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07596911-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 30488,
+ "created": "2016-05-20T13:29:28.000Z",
+ "lastUpdated": "2021-07-26T17:29:40.486Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "apéritif",
+ "hasLocution": false,
+ "plural": "apéritifs"
+ },
+ {
+ "keyword": "apéro",
+ "hasLocution": false,
+ "plural": "apéros",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07596911-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 30489,
+ "created": "2016-05-20T13:29:28.000Z",
+ "lastUpdated": "2021-07-26T17:29:28.893Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "apéritif",
+ "hasLocution": false,
+ "plural": "apéritifs"
+ },
+ {
+ "keyword": "apéro",
+ "hasLocution": false,
+ "plural": "apéros",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "forestry"
+ ],
+ "synsets": [
+ "10111867-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "primary sector",
+ "forestry"
+ ],
+ "_id": 30496,
+ "created": "2016-05-20T13:36:42.000Z",
+ "lastUpdated": "2021-07-26T17:28:00.783Z",
+ "keywords": [
+ {
+ "keyword": "garde forestière",
+ "hasLocution": false,
+ "plural": "gardes forestières",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "land transport"
+ ],
+ "synsets": [
+ "03430002-n",
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 30500,
+ "created": "2016-05-20T13:40:21.000Z",
+ "lastUpdated": "2021-07-26T17:27:02.313Z",
+ "keywords": [
+ {
+ "keyword": "pompiste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pompistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "land transport"
+ ],
+ "synsets": [
+ "03430002-n",
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 30501,
+ "created": "2016-05-20T13:40:21.000Z",
+ "lastUpdated": "2021-07-26T17:26:56.310Z",
+ "keywords": [
+ {
+ "keyword": "pompiste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pompistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "land transport"
+ ],
+ "synsets": [
+ "03430002-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 30504,
+ "created": "2016-05-20T13:40:51.000Z",
+ "lastUpdated": "2021-07-26T17:26:49.934Z",
+ "keywords": [
+ {
+ "keyword": "pompiste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pompistes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00036925-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 30506,
+ "created": "2016-05-20T13:42:59.000Z",
+ "lastUpdated": "2021-07-28T14:20:28.747Z",
+ "keywords": [
+ {
+ "keyword": "savonner les mains",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se savonner les mains",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire mousser le savon",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07896433-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 30508,
+ "created": "2016-05-20T13:45:52.000Z",
+ "lastUpdated": "2021-07-28T14:19:47.213Z",
+ "keywords": [
+ {
+ "keyword": "cachopo",
+ "hasLocution": false,
+ "plural": "cachopos",
+ "type": 2
+ },
+ {
+ "keyword": "veau au jambon et au fromage",
+ "hasLocution": false,
+ "plural": "veaux au jambon et au fromage",
+ "type": 2
+ },
+ {
+ "keyword": "veau pané",
+ "hasLocution": false,
+ "plural": "veaux panés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "forestry"
+ ],
+ "synsets": [
+ "10111867-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "primary sector",
+ "forestry"
+ ],
+ "_id": 30494,
+ "created": "2016-05-20T13:36:41.000Z",
+ "lastUpdated": "2021-07-26T17:28:13.384Z",
+ "keywords": [
+ {
+ "keyword": "garde forestier",
+ "plural": "gardes forestiers",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00681308-v",
+ "00676526-v",
+ "00699355-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 30510,
+ "created": "2016-05-20T13:47:38.000Z",
+ "lastUpdated": "2021-07-25T15:38:27.570Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "choisir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "sélectionner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "décider",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "préférer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "forestry"
+ ],
+ "synsets": [
+ "10111867-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "primary sector",
+ "forestry"
+ ],
+ "_id": 30495,
+ "created": "2016-05-20T13:36:41.000Z",
+ "lastUpdated": "2021-07-26T17:28:06.949Z",
+ "keywords": [
+ {
+ "keyword": "garde forestier",
+ "hasLocution": false,
+ "plural": "gardes forestiers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "04378312-n",
+ "01697239-a"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 30514,
+ "created": "2016-05-20T13:49:43.000Z",
+ "lastUpdated": "2021-07-25T15:36:25.248Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piscine couverte",
+ "hasLocution": true,
+ "plural": "piscines couvertes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "swimming",
+ "swimming pool",
+ "signaling system",
+ "core vocabulary-leisure",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "04378312-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "swimming",
+ "outdoor activity",
+ "swimming pool",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 30516,
+ "created": "2016-05-20T13:51:23.000Z",
+ "lastUpdated": "2021-07-25T15:36:14.760Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "piscine",
+ "hasLocution": true,
+ "plural": "piscines"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00218901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 30520,
+ "created": "2016-05-20T13:56:48.000Z",
+ "lastUpdated": "2021-07-25T15:35:38.844Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "essuyer les mains",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se sécher",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sea and oceans"
+ ],
+ "synsets": [
+ "09226715-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean"
+ ],
+ "_id": 30492,
+ "created": "2016-05-20T13:33:16.000Z",
+ "lastUpdated": "2021-07-25T15:42:01.304Z",
+ "keywords": [
+ {
+ "keyword": "archipel",
+ "plural": "archipels",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "06272575-n",
+ "03216337-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 30512,
+ "created": "2016-05-20T13:48:37.000Z",
+ "lastUpdated": "2021-07-27T20:28:06.147Z",
+ "keywords": [
+ {
+ "keyword": "tableau numérique interactif",
+ "hasLocution": false,
+ "plural": "tableaux numériques interactifs",
+ "type": 2
+ },
+ {
+ "keyword": "tableau blanc interactif",
+ "hasLocution": false,
+ "plural": "tableaux blancs interactifs",
+ "type": 2
+ },
+ {
+ "keyword": "TNI",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "TNI"
+ },
+ {
+ "keyword": "TBI",
+ "hasLocution": false,
+ "plural": "TBI",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "bush"
+ ],
+ "synsets": [
+ "12640957-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "bush"
+ ],
+ "_id": 30522,
+ "created": "2016-05-20T14:00:12.000Z",
+ "lastUpdated": "2021-07-25T15:35:30.783Z",
+ "keywords": [
+ {
+ "keyword": "rosier",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "rosiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nervous system"
+ ],
+ "synsets": [
+ "05473219-n"
+ ],
+ "tags": [
+ "human body",
+ "physiology",
+ "human physiology",
+ "nervous system"
+ ],
+ "_id": 30533,
+ "created": "2016-05-23T14:24:38.000Z",
+ "lastUpdated": "2021-07-25T15:34:25.533Z",
+ "keywords": [
+ {
+ "keyword": "neurone",
+ "hasLocution": false,
+ "plural": "neurones",
+ "type": 2
+ },
+ {
+ "keyword": "cellule nerveuse",
+ "hasLocution": false,
+ "plural": "cellules nerveuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform",
+ "tourism",
+ "outdoor activity",
+ "signaling system",
+ "core vocabulary-knowledge",
+ "core vocabulary-work",
+ "core vocabulary-leisure",
+ "core vocabulary-communication",
+ "summer"
+ ],
+ "synsets": [
+ "09240137-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "tertiary sector",
+ "tourism",
+ "leisure",
+ "outdoor activity",
+ "communication",
+ "signaling system",
+ "core vocabulary",
+ "summer"
+ ],
+ "_id": 30518,
+ "created": "2016-05-20T13:55:07.000Z",
+ "lastUpdated": "2024-12-04T19:55:44.837Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plage",
+ "hasLocution": true,
+ "plural": "plages"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "core vocabulary-object",
+ "object",
+ "corporal hygiene"
+ ],
+ "synsets": [
+ "04454577-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "core vocabulary",
+ "human body"
+ ],
+ "_id": 30524,
+ "created": "2016-05-23T14:14:42.000Z",
+ "lastUpdated": "2024-12-09T06:41:59.571Z",
+ "keywords": [
+ {
+ "keyword": "articles de toilette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "articles de toilette"
+ },
+ {
+ "keyword": "accessoires de toilette",
+ "hasLocution": false,
+ "plural": "accessoires de toilette",
+ "type": 2
+ },
+ {
+ "keyword": "produits de toilettes",
+ "hasLocution": false,
+ "plural": "produits de toilettes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "cookery",
+ "core vocabulary-work",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "09983053-n",
+ "09982799-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "feeding",
+ "cookery",
+ "core vocabulary"
+ ],
+ "_id": 30526,
+ "created": "2016-05-23T14:16:37.000Z",
+ "lastUpdated": "2021-07-25T15:34:41.981Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuisinier",
+ "hasLocution": true,
+ "plural": "cuisiniers"
+ },
+ {
+ "keyword": "chef",
+ "type": 2,
+ "plural": "chefs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941081-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30555,
+ "created": "2016-05-23T16:12:15.000Z",
+ "lastUpdated": "2021-07-27T15:58:43.654Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à glace",
+ "hasLocution": true
+ },
+ {
+ "keyword": "patiner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941081-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30556,
+ "created": "2016-05-23T16:12:16.000Z",
+ "lastUpdated": "2021-07-27T15:58:57.070Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à glace",
+ "hasLocution": true
+ },
+ {
+ "keyword": "patiner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941081-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30557,
+ "created": "2016-05-23T16:12:16.000Z",
+ "lastUpdated": "2021-07-27T15:59:07.063Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à glace",
+ "hasLocution": true
+ },
+ {
+ "keyword": "patiner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941081-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30558,
+ "created": "2016-05-23T16:12:16.000Z",
+ "lastUpdated": "2021-07-27T15:59:19.076Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à glace",
+ "hasLocution": true
+ },
+ {
+ "keyword": "patiner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941081-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30559,
+ "created": "2016-05-23T16:12:16.000Z",
+ "lastUpdated": "2021-07-27T15:59:32.230Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à glace",
+ "hasLocution": true
+ },
+ {
+ "keyword": "patiner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941081-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30560,
+ "created": "2016-05-23T16:12:16.000Z",
+ "lastUpdated": "2021-07-27T15:59:53.899Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à glace",
+ "hasLocution": true
+ },
+ {
+ "keyword": "patiner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941081-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30554,
+ "created": "2016-05-23T16:12:15.000Z",
+ "lastUpdated": "2021-07-28T14:16:30.767Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "faire du roller"
+ },
+ {
+ "keyword": "patiner en roller",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941081-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30561,
+ "created": "2016-05-23T16:12:16.000Z",
+ "lastUpdated": "2021-07-27T16:00:09.137Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à glace",
+ "hasLocution": true
+ },
+ {
+ "keyword": "patiner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00449943-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 30572,
+ "created": "2016-05-23T16:14:57.000Z",
+ "lastUpdated": "2021-07-25T17:36:19.289Z",
+ "keywords": [
+ {
+ "keyword": "patineuse",
+ "plural": "patineuses",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941081-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30552,
+ "created": "2016-05-23T16:12:15.000Z",
+ "lastUpdated": "2021-07-27T15:58:05.292Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à glace",
+ "hasLocution": true
+ },
+ {
+ "keyword": "patiner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "skating"
+ ],
+ "synsets": [
+ "00449625-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "skating"
+ ],
+ "_id": 30577,
+ "created": "2016-05-23T16:16:32.000Z",
+ "lastUpdated": "2021-07-27T16:03:09.185Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patinage",
+ "hasLocution": false,
+ "plural": "patinages"
+ },
+ {
+ "keyword": "patineur sur glace",
+ "hasLocution": true,
+ "plural": "patineurs sur glace",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00449625-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 30576,
+ "created": "2016-05-23T16:16:32.000Z",
+ "lastUpdated": "2021-07-27T16:03:37.581Z",
+ "keywords": [
+ {
+ "keyword": "patinage",
+ "hasLocution": false,
+ "plural": "patinages",
+ "type": 2
+ },
+ {
+ "keyword": "patineuse sur glace",
+ "hasLocution": false,
+ "plural": "patineuses sur glace",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30582,
+ "created": "2016-05-23T16:22:26.000Z",
+ "lastUpdated": "2021-07-27T16:05:59.805Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire du roller",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30583,
+ "created": "2016-05-23T16:22:26.000Z",
+ "lastUpdated": "2021-07-27T16:05:53.378Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire du roller",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941081-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30578,
+ "created": "2016-05-23T16:16:32.000Z",
+ "lastUpdated": "2021-07-27T16:02:42.485Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à glace",
+ "hasLocution": true
+ },
+ {
+ "keyword": "patiner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941081-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30553,
+ "created": "2016-05-23T16:12:15.000Z",
+ "lastUpdated": "2021-07-27T15:58:17.370Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à glace",
+ "hasLocution": true
+ },
+ {
+ "keyword": "patiner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00449943-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 30573,
+ "created": "2016-05-23T16:14:57.000Z",
+ "lastUpdated": "2021-07-25T17:36:22.585Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patineur",
+ "hasLocution": true,
+ "plural": "patineurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30584,
+ "created": "2016-05-23T16:22:26.000Z",
+ "lastUpdated": "2021-07-27T16:05:43.747Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire du roller",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30586,
+ "created": "2016-05-23T16:22:26.000Z",
+ "lastUpdated": "2021-07-27T16:05:24.433Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire du roller",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30588,
+ "created": "2016-05-23T16:22:26.000Z",
+ "lastUpdated": "2021-07-27T16:05:07.724Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire du roller",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30587,
+ "created": "2016-05-23T16:22:26.000Z",
+ "lastUpdated": "2021-07-27T16:05:16.571Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire du roller",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30585,
+ "created": "2016-05-23T16:22:26.000Z",
+ "lastUpdated": "2021-07-27T16:05:35.471Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "keyword": "faire du roller",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "sport material",
+ "skating"
+ ],
+ "synsets": [
+ "04109712-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "sport material",
+ "skating"
+ ],
+ "_id": 30602,
+ "created": "2016-05-23T16:28:18.000Z",
+ "lastUpdated": "2021-07-28T14:14:23.889Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patin à roulettes",
+ "hasLocution": false,
+ "plural": "patin à roulettes"
+ },
+ {
+ "keyword": "roller",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "rollers"
+ },
+ {
+ "keyword": "patin",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "patins"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 30604,
+ "created": "2016-05-23T16:29:47.000Z",
+ "lastUpdated": "2021-07-28T14:13:43.313Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du sport",
+ "hasLocution": false
+ },
+ {
+ "keyword": "pratiquer des sports",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [],
+ "_id": 30589,
+ "created": "2016-05-23T16:22:26.000Z",
+ "lastUpdated": "2021-07-27T16:04:58.321Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire du roller",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "urban area"
+ ],
+ "synsets": [
+ "03422255-n"
+ ],
+ "tags": [
+ "place",
+ "urban area"
+ ],
+ "_id": 30608,
+ "created": "2016-05-23T16:33:09.000Z",
+ "lastUpdated": "2021-03-28T03:08:05.818Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jardin",
+ "hasLocution": true,
+ "plural": "jardins"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "urban area"
+ ],
+ "synsets": [
+ "03422255-n"
+ ],
+ "tags": [
+ "place",
+ "urban area"
+ ],
+ "_id": 30609,
+ "created": "2016-05-23T16:33:09.000Z",
+ "lastUpdated": "2021-03-28T03:08:19.793Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jardin",
+ "hasLocution": true,
+ "plural": "jardins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "03334608-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 30612,
+ "created": "2016-05-23T16:35:32.000Z",
+ "lastUpdated": "2021-07-27T02:43:27.685Z",
+ "keywords": [
+ {
+ "keyword": "ferry",
+ "type": 2,
+ "plural": "ferries",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bac",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bacs"
+ },
+ {
+ "keyword": "navette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "navettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "04460569-n",
+ "04460427-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 30614,
+ "created": "2016-05-23T16:37:40.000Z",
+ "lastUpdated": "2021-04-02T13:53:04.108Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brosse à dents et tube de dentifrice",
+ "hasLocution": false,
+ "plural": "brosse à dents et tubes de dentifrice"
+ },
+ {
+ "keyword": "brosse à dents et dentifrice",
+ "hasLocution": false,
+ "plural": "brosses à dents et dentifrices",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "00099475-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 30606,
+ "created": "2016-05-23T16:31:24.000Z",
+ "lastUpdated": "2021-07-28T14:11:57.586Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire de l'exercice",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'entraîner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire du sport",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "movie character",
+ "book character",
+ "cinema"
+ ],
+ "synsets": [
+ "09629201-n",
+ "10092496-n",
+ "00066400-a",
+ "00250985-s",
+ "00797976-n"
+ ],
+ "tags": [
+ "character",
+ "movie character",
+ "cinema",
+ "book character",
+ "literature",
+ "scenic art",
+ "show"
+ ],
+ "_id": 30616,
+ "created": "2016-05-23T16:42:24.000Z",
+ "lastUpdated": "2021-07-25T15:30:04.912Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aventure",
+ "hasLocution": true,
+ "plural": "aventures"
+ },
+ {
+ "keyword": "aventureuse",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "amatrice de sensations fortes",
+ "hasLocution": false,
+ "plural": "amatrices de sensations fortes",
+ "type": 2
+ },
+ {
+ "keyword": "intrépide",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom",
+ "human anatomy",
+ "animal anatomy"
+ ],
+ "synsets": [
+ "00064841-v",
+ "02125976-v",
+ "00064841-v",
+ "02125976-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "animal",
+ "animal anatomy"
+ ],
+ "_id": 30620,
+ "created": "2016-05-23T16:47:12.000Z",
+ "lastUpdated": "2024-12-07T08:02:48.822Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire mal",
+ "hasLocution": true
+ },
+ {
+ "keyword": "souffrir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "avoir mal",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "être douloureux",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "blesser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container",
+ "trade"
+ ],
+ "synsets": [
+ "04211393-n"
+ ],
+ "tags": [
+ "object",
+ "container",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 30618,
+ "created": "2016-05-23T16:44:26.000Z",
+ "lastUpdated": "2021-07-25T15:28:37.435Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caddie",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "charriot",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disease"
+ ],
+ "synsets": [
+ "14085287-n",
+ "00087206-v",
+ "02199637-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 30622,
+ "created": "2016-05-23T16:48:31.000Z",
+ "lastUpdated": "2021-07-25T15:28:04.343Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tomber malade",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "maladie",
+ "hasLocution": true,
+ "plural": "maladies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cutlery"
+ ],
+ "synsets": [
+ "04228491-n",
+ "03158041-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "cutlery",
+ "home"
+ ],
+ "_id": 30624,
+ "created": "2016-05-23T16:52:27.000Z",
+ "lastUpdated": "2021-07-25T15:27:38.215Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couverts",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "02587158-v",
+ "02246549-v",
+ "02245889-v",
+ "02246403-v"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 30627,
+ "created": "2016-05-23T16:54:42.000Z",
+ "lastUpdated": "2021-07-28T14:09:03.348Z",
+ "keywords": [
+ {
+ "keyword": "faire chanter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "extorquer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire du chantage",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "02587158-v",
+ "02246549-v",
+ "02245889-v",
+ "02246403-v"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 30626,
+ "created": "2016-05-23T16:54:42.000Z",
+ "lastUpdated": "2021-07-28T14:09:20.386Z",
+ "keywords": [
+ {
+ "keyword": "faire chanter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "extorquer",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "faire du chantage",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "01796126-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 30632,
+ "created": "2016-05-23T17:02:00.000Z",
+ "lastUpdated": "2021-07-25T15:25:53.555Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "avoir honte",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "honte",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire honte ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "gender violence"
+ ],
+ "synsets": [
+ "00964160-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "law",
+ "crime",
+ "gender violence"
+ ],
+ "_id": 30630,
+ "created": "2016-05-23T16:59:48.000Z",
+ "lastUpdated": "2021-07-25T15:26:34.435Z",
+ "keywords": [
+ {
+ "keyword": "jaloux",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "infidèle",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gender violence",
+ "bullying"
+ ],
+ "synsets": [
+ "07520915-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "gender violence",
+ "bullying"
+ ],
+ "_id": 30634,
+ "created": "2016-05-23T17:04:30.000Z",
+ "lastUpdated": "2021-07-28T14:08:08.960Z",
+ "keywords": [
+ {
+ "keyword": "indifférence",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "indifférences"
+ },
+ {
+ "keyword": "manque d'intérêt",
+ "hasLocution": false,
+ "plural": "manques d'intérêt",
+ "type": 2
+ },
+ {
+ "keyword": "passivité",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "passivités"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disruptive behavior",
+ "gender violence",
+ "bullying"
+ ],
+ "synsets": [
+ "00853615-v"
+ ],
+ "tags": [
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "gender violence",
+ "bullying"
+ ],
+ "_id": 30638,
+ "created": "2016-05-23T17:08:54.000Z",
+ "lastUpdated": "2021-07-28T14:05:34.041Z",
+ "keywords": [
+ {
+ "keyword": "ridiculiser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se moquer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rire de",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "gender violence",
+ "bullying"
+ ],
+ "synsets": [
+ "01778720-v",
+ "00798638-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime",
+ "gender violence",
+ "bullying"
+ ],
+ "_id": 30636,
+ "created": "2016-05-23T17:06:59.000Z",
+ "lastUpdated": "2021-07-28T14:07:12.072Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mépriser",
+ "hasLocution": false
+ },
+ {
+ "keyword": "dédaigner",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "mépris",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mépris"
+ },
+ {
+ "keyword": "dédain",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dédains"
+ },
+ {
+ "keyword": "condescendance",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "condescendances"
+ },
+ {
+ "keyword": "regarder de haut",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30598,
+ "created": "2016-05-23T16:23:52.000Z",
+ "lastUpdated": "2021-07-25T15:32:01.456Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gender violence",
+ "bullying"
+ ],
+ "synsets": [
+ "00419038-n",
+ "00420921-n",
+ "04896195-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "gender violence",
+ "bullying"
+ ],
+ "_id": 30640,
+ "created": "2016-05-23T17:22:44.000Z",
+ "lastUpdated": "2021-07-26T08:43:40.051Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus",
+ "hasLocution": false,
+ "plural": "abus"
+ },
+ {
+ "keyword": "mauvais traitement",
+ "hasLocution": false,
+ "plural": "mauvais traitements",
+ "type": 2
+ },
+ {
+ "keyword": "supériorité",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "supériorités"
+ },
+ {
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances",
+ "type": 2
+ },
+ {
+ "keyword": "harcèlement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "harcèlements"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "00420921-n",
+ "01037071-v",
+ "01224966-n"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 30645,
+ "created": "2016-05-23T17:34:38.000Z",
+ "lastUpdated": "2021-07-25T12:42:36.898Z",
+ "keywords": [
+ {
+ "keyword": "harcèlement",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "harcèlements"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task",
+ "special education",
+ "educational methodology"
+ ],
+ "synsets": [
+ "00729939-n",
+ "05668782-n"
+ ],
+ "tags": [
+ "education",
+ "educational task",
+ "special education",
+ "methodology"
+ ],
+ "_id": 30648,
+ "created": "2016-05-23T17:40:08.000Z",
+ "lastUpdated": "2021-07-28T20:02:41.043Z",
+ "keywords": [
+ {
+ "keyword": "TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "approche TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "méthode TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "approche TEACCH",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "gender violence"
+ ],
+ "synsets": [
+ "00729953-v",
+ "00844451-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime",
+ "gender violence"
+ ],
+ "_id": 30642,
+ "created": "2016-05-23T17:26:55.000Z",
+ "lastUpdated": "2021-07-26T08:41:28.923Z",
+ "keywords": [
+ {
+ "keyword": "reprocher",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "accuser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rendre responsable",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'accuser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "gronder",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "keyword": "se reprocher",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "00420921-n",
+ "01037071-v",
+ "01224966-n"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 30644,
+ "created": "2016-05-23T17:34:38.000Z",
+ "lastUpdated": "2021-07-25T12:42:46.935Z",
+ "keywords": [
+ {
+ "keyword": "harcèlement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "harcèlements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "sport material",
+ "skating"
+ ],
+ "synsets": [
+ "04109712-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "sport material",
+ "skating"
+ ],
+ "_id": 30600,
+ "created": "2016-05-23T16:26:40.000Z",
+ "lastUpdated": "2021-07-28T14:14:46.327Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patins",
+ "hasLocution": true,
+ "plural": "patins"
+ },
+ {
+ "keyword": "patins à roulette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "patins à roulette"
+ },
+ {
+ "keyword": "rollers",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "rollers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses"
+ ],
+ "synsets": [
+ "02129213-v",
+ "02129497-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 30650,
+ "created": "2016-06-06T10:21:16.000Z",
+ "lastUpdated": "2021-07-25T12:41:58.563Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "01306207-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30652,
+ "created": "2016-06-06T10:23:24.000Z",
+ "lastUpdated": "2021-07-25T12:41:48.821Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bander",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "01306207-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30653,
+ "created": "2016-06-06T10:23:25.000Z",
+ "lastUpdated": "2021-07-25T12:41:47.089Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bander",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "01306207-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30654,
+ "created": "2016-06-06T10:23:25.000Z",
+ "lastUpdated": "2021-07-25T12:41:42.602Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bander",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00071556-v",
+ "01122487-v",
+ "02522260-v",
+ "00017390-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 30658,
+ "created": "2016-06-06T10:25:05.000Z",
+ "lastUpdated": "2021-07-25T12:41:37.917Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tirer les cheveux",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03560744-n",
+ "02954606-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30666,
+ "created": "2016-06-06T10:38:53.000Z",
+ "lastUpdated": "2021-07-26T17:42:44.145Z",
+ "keywords": [
+ {
+ "keyword": "trocart",
+ "hasLocution": false,
+ "plural": "trocarts",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment",
+ "medical procedure"
+ ],
+ "synsets": [
+ "00697197-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30668,
+ "created": "2016-06-06T10:44:01.000Z",
+ "lastUpdated": "2022-02-03T06:15:57.535Z",
+ "keywords": [
+ {
+ "keyword": "lavement",
+ "hasLocution": false,
+ "plural": "lavements",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "04368468-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 30670,
+ "created": "2016-06-06T10:50:38.000Z",
+ "lastUpdated": "2021-07-25T12:38:12.848Z",
+ "keywords": [
+ {
+ "keyword": "suppositoire de glycérine",
+ "hasLocution": false,
+ "plural": "suppositoires de glycérine",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "00697197-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 30671,
+ "created": "2016-06-06T10:50:38.000Z",
+ "lastUpdated": "2021-07-27T02:42:02.190Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "microlavement",
+ "type": 2,
+ "plural": "microlavements"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "residential building",
+ "educational_building",
+ "signaling system"
+ ],
+ "synsets": [
+ "03229596-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "home",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 30674,
+ "created": "2016-06-06T10:55:09.000Z",
+ "lastUpdated": "2021-07-28T14:00:07.696Z",
+ "keywords": [
+ {
+ "keyword": "résidence",
+ "type": 2,
+ "plural": "résidences",
+ "hasLocution": false
+ },
+ {
+ "keyword": "résidence étudiante",
+ "type": 2,
+ "plural": "résidences étudiantes",
+ "hasLocution": false
+ },
+ {
+ "keyword": "dortoir",
+ "plural": "dortoirs",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "résidence universitaire",
+ "hasLocution": false,
+ "plural": "résidences universitaires",
+ "type": 2
+ },
+ {
+ "keyword": "cité universitaire",
+ "hasLocution": false,
+ "plural": "cités universitaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "residential building",
+ "educational_building",
+ "signaling system"
+ ],
+ "synsets": [
+ "03229596-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "home",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 30675,
+ "created": "2016-06-06T10:55:09.000Z",
+ "lastUpdated": "2021-07-28T14:00:34.304Z",
+ "keywords": [
+ {
+ "keyword": "résidence",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "résidences"
+ },
+ {
+ "keyword": "résidence étudiante",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "résidence étudiantes"
+ },
+ {
+ "keyword": "dortoir",
+ "plural": "dortoirs",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "résidence universitaire",
+ "hasLocution": false,
+ "plural": "résidences universitaires",
+ "type": 2
+ },
+ {
+ "keyword": "cité universitaire",
+ "hasLocution": false,
+ "plural": "cités universitaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "residential building",
+ "educational_building",
+ "signaling system"
+ ],
+ "synsets": [
+ "03229596-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "home",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 30676,
+ "created": "2016-06-06T10:55:09.000Z",
+ "lastUpdated": "2021-07-28T13:58:38.755Z",
+ "keywords": [
+ {
+ "keyword": "résidence",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "résidences"
+ },
+ {
+ "keyword": "résidence étudiante",
+ "hasLocution": false,
+ "plural": "résidences étudiantes",
+ "type": 2
+ },
+ {
+ "keyword": "dortoir",
+ "plural": "dortoirs",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "résidence universitaire",
+ "hasLocution": false,
+ "plural": "résidences universitaires",
+ "type": 2
+ },
+ {
+ "keyword": "cité universitaire",
+ "hasLocution": false,
+ "plural": "cités universitaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03628407-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 30680,
+ "created": "2016-06-06T10:59:12.000Z",
+ "lastUpdated": "2021-07-28T10:14:57.273Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "genouillère",
+ "hasLocution": true,
+ "plural": "genouillères"
+ },
+ {
+ "keyword": "protection de genou",
+ "hasLocution": false,
+ "plural": "protections de genou",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "sport"
+ ],
+ "synsets": [
+ "03273556-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 30682,
+ "created": "2016-06-06T10:59:40.000Z",
+ "lastUpdated": "2024-12-11T06:45:14.195Z",
+ "keywords": [
+ {
+ "keyword": "coudière",
+ "hasLocution": false,
+ "plural": "coudières",
+ "type": 2
+ },
+ {
+ "keyword": "protection de coude",
+ "hasLocution": false,
+ "plural": "protections de coude",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03878173-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 30684,
+ "created": "2016-06-06T11:02:24.000Z",
+ "lastUpdated": "2021-07-27T02:39:52.162Z",
+ "keywords": [
+ {
+ "keyword": "protections",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "protections"
+ },
+ {
+ "keyword": "équipement de protection",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "équipements de protection"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03073002-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30686,
+ "created": "2016-06-06T11:05:19.000Z",
+ "lastUpdated": "2021-07-25T12:33:31.662Z",
+ "keywords": [
+ {
+ "keyword": "collier cervical ",
+ "hasLocution": false,
+ "plural": "colliers cervicaux",
+ "type": 2
+ },
+ {
+ "keyword": "minerve",
+ "hasLocution": false,
+ "plural": "minerves",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03073002-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30687,
+ "created": "2016-06-06T11:05:19.000Z",
+ "lastUpdated": "2021-07-25T12:32:07.471Z",
+ "keywords": [
+ {
+ "keyword": "minerve",
+ "hasLocution": false,
+ "plural": "minerves",
+ "type": 2
+ },
+ {
+ "keyword": "collier cervical ",
+ "hasLocution": false,
+ "plural": "colliers cervicaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "covid-19"
+ ],
+ "synsets": [
+ "02154622-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "covid-19"
+ ],
+ "_id": 30692,
+ "created": "2016-06-07T14:07:49.000Z",
+ "lastUpdated": "2021-07-25T12:30:58.750Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ausculter",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03279707-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30694,
+ "created": "2016-06-07T14:14:42.000Z",
+ "lastUpdated": "2021-07-25T17:35:41.354Z",
+ "keywords": [
+ {
+ "keyword": "électrodes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00903487-n",
+ "11501609-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30696,
+ "created": "2016-06-07T14:18:36.000Z",
+ "lastUpdated": "2021-07-27T02:38:26.868Z",
+ "keywords": [
+ {
+ "keyword": "échographie",
+ "hasLocution": false,
+ "plural": "échographies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00903487-n",
+ "11501609-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30697,
+ "created": "2016-06-07T14:18:37.000Z",
+ "lastUpdated": "2021-07-27T02:38:19.002Z",
+ "keywords": [
+ {
+ "keyword": "échographie",
+ "hasLocution": false,
+ "plural": "échographies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious person",
+ "christianity"
+ ],
+ "synsets": [
+ "10490364-n"
+ ],
+ "tags": [
+ "religion",
+ "person",
+ "christianity"
+ ],
+ "_id": 30700,
+ "created": "2016-06-07T14:21:19.000Z",
+ "lastUpdated": "2021-03-26T03:24:13.848Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prêtre",
+ "hasLocution": true,
+ "plural": "prêtres"
+ },
+ {
+ "type": 2,
+ "keyword": "curé",
+ "hasLocution": true,
+ "plural": "curés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02824337-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30701,
+ "created": "2016-06-07T14:24:08.000Z",
+ "lastUpdated": "2021-07-25T12:30:47.821Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "urinal",
+ "hasLocution": false,
+ "plural": "urinaux"
+ },
+ {
+ "keyword": "urinoir",
+ "hasLocution": false,
+ "plural": "urinoirs",
+ "type": 2
+ },
+ {
+ "keyword": "bassin",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bassins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00633959-n",
+ "05746988-n",
+ "00637093-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "ophthalmology"
+ ],
+ "_id": 30660,
+ "created": "2016-06-06T10:26:11.000Z",
+ "lastUpdated": "2021-07-28T14:04:00.390Z",
+ "keywords": [
+ {
+ "keyword": "optométrie",
+ "hasLocution": false,
+ "plural": "optométrie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00633959-n",
+ "05746988-n",
+ "00637093-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "ophthalmology"
+ ],
+ "_id": 30661,
+ "created": "2016-06-06T10:26:11.000Z",
+ "lastUpdated": "2021-07-28T14:03:49.232Z",
+ "keywords": [
+ {
+ "keyword": "optométrie",
+ "plural": "optométries",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "05746988-n",
+ "00633959-n",
+ "02900710-a"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device",
+ "ophthalmology"
+ ],
+ "_id": 30664,
+ "created": "2016-06-06T10:32:21.000Z",
+ "lastUpdated": "2021-07-28T14:01:49.339Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "réfracteur",
+ "plural": "réfracteur"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "covid-19"
+ ],
+ "synsets": [
+ "00825545-n",
+ "00086587-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "covid-19"
+ ],
+ "_id": 30703,
+ "created": "2016-06-08T10:54:31.000Z",
+ "lastUpdated": "2021-07-25T12:29:37.493Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vaccination",
+ "hasLocution": true,
+ "plural": "vaccinations"
+ },
+ {
+ "type": 3,
+ "keyword": "vacciner",
+ "hasLocution": true,
+ "plural": "vacciner"
+ },
+ {
+ "keyword": "vaccin",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "vaccins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "00902781-n",
+ "04457514-n",
+ "00903174-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 30705,
+ "created": "2016-06-08T11:00:40.000Z",
+ "lastUpdated": "2021-07-25T12:29:12.537Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "scanner",
+ "hasLocution": true,
+ "plural": "scanners"
+ },
+ {
+ "keyword": "tomographie",
+ "hasLocution": false,
+ "plural": "tomographies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "02757108-n",
+ "01375347-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 30707,
+ "created": "2016-06-08T11:10:40.000Z",
+ "lastUpdated": "2021-07-28T15:26:59.086Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "spray nasal",
+ "hasLocution": false,
+ "plural": "sprays nasaux"
+ },
+ {
+ "keyword": "spray",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "sprays"
+ },
+ {
+ "keyword": "vaporisateur nasal",
+ "hasLocution": false,
+ "plural": "vaporisateur nasaux",
+ "type": 2
+ },
+ {
+ "keyword": "pulvérisateur nasal",
+ "hasLocution": false,
+ "plural": "pulvérisateurs nasaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ophthalmology",
+ "patient"
+ ],
+ "synsets": [
+ "03314301-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "ophthalmology",
+ "person",
+ "patient"
+ ],
+ "_id": 30709,
+ "created": "2016-06-08T11:17:21.000Z",
+ "lastUpdated": "2021-09-14T09:02:11.611Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patch oculaire",
+ "hasLocution": false,
+ "plural": "patchs oculaires"
+ },
+ {
+ "keyword": "pansement oculaire",
+ "hasLocution": false,
+ "plural": "pansements oculaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ophthalmology",
+ "patient"
+ ],
+ "synsets": [
+ "03314301-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "ophthalmology",
+ "person",
+ "patient"
+ ],
+ "_id": 30710,
+ "created": "2016-06-08T11:17:21.000Z",
+ "lastUpdated": "2021-09-14T08:51:59.299Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patch oculaire",
+ "hasLocution": false,
+ "plural": "patchs oculaires"
+ },
+ {
+ "keyword": "pansement oculaire",
+ "hasLocution": false,
+ "plural": "pansements oculaires",
+ "type": 2
+ },
+ {
+ "keyword": "cache-oeil",
+ "hasLocution": false,
+ "plural": "cache-oeils",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ophthalmology",
+ "patient"
+ ],
+ "synsets": [
+ "03314301-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "ophthalmology",
+ "person",
+ "patient"
+ ],
+ "_id": 30711,
+ "created": "2016-06-08T11:17:21.000Z",
+ "lastUpdated": "2021-09-14T09:01:44.712Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patch oculaire",
+ "hasLocution": false,
+ "plural": "patchs oculaires"
+ },
+ {
+ "keyword": "pansement oculaire",
+ "hasLocution": false,
+ "plural": "pansements oculaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "ophthalmology",
+ "patient"
+ ],
+ "synsets": [
+ "03314301-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "ophthalmology",
+ "person",
+ "patient"
+ ],
+ "_id": 30712,
+ "created": "2016-06-08T11:17:21.000Z",
+ "lastUpdated": "2021-09-14T09:02:43.205Z",
+ "keywords": [
+ {
+ "keyword": "patch oculaire",
+ "hasLocution": false,
+ "plural": "patchs oculaires",
+ "type": 2
+ },
+ {
+ "keyword": "pansement oculaire",
+ "hasLocution": false,
+ "plural": "pansements oculaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "02772023-a",
+ "00865191-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30717,
+ "created": "2016-06-08T11:20:50.000Z",
+ "lastUpdated": "2021-07-27T02:34:31.323Z",
+ "keywords": [
+ {
+ "keyword": "signe méningé",
+ "hasLocution": false,
+ "plural": "signes méningés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "02772023-a",
+ "00865191-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30718,
+ "created": "2016-06-08T11:20:50.000Z",
+ "lastUpdated": "2021-07-27T02:34:05.031Z",
+ "keywords": [
+ {
+ "keyword": "signe méningé",
+ "hasLocution": false,
+ "plural": "signes méningés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00945884-n",
+ "01277535-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30722,
+ "created": "2016-06-08T11:36:11.000Z",
+ "lastUpdated": "2021-07-25T12:25:03.090Z",
+ "keywords": [
+ {
+ "keyword": "ponction",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ponctions"
+ },
+ {
+ "keyword": "ponction lombaire",
+ "hasLocution": false,
+ "plural": "ponctions lombaires",
+ "type": 2
+ },
+ {
+ "keyword": "ponction spinale",
+ "hasLocution": false,
+ "plural": "ponctions spinales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03874541-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30737,
+ "created": "2016-06-08T13:22:31.000Z",
+ "lastUpdated": "2021-03-24T21:22:34.538Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masques"
+ },
+ {
+ "plural": "masques à oxygène",
+ "type": 2,
+ "keyword": "masque à oxygène",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment",
+ "covid-19"
+ ],
+ "synsets": [
+ "03874541-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment",
+ "covid-19"
+ ],
+ "_id": 30738,
+ "created": "2016-06-08T13:22:31.000Z",
+ "lastUpdated": "2021-03-24T21:23:18.903Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masques"
+ },
+ {
+ "plural": "masques à oxygène",
+ "type": 2,
+ "keyword": "masque à oxygène",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment",
+ "covid-19"
+ ],
+ "synsets": [
+ "03874541-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment",
+ "covid-19"
+ ],
+ "_id": 30739,
+ "created": "2016-06-08T13:22:31.000Z",
+ "lastUpdated": "2021-03-24T21:23:53.080Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masques"
+ },
+ {
+ "type": 2,
+ "plural": "masques à oxygène",
+ "keyword": "masque à oxygène",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03874541-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30740,
+ "created": "2016-06-08T13:22:31.000Z",
+ "lastUpdated": "2021-03-24T21:24:48.727Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masques"
+ },
+ {
+ "plural": "masques à oxygène",
+ "type": 2,
+ "keyword": "masque à oxygène",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02944763-a",
+ "02987924-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30747,
+ "created": "2016-06-08T13:29:43.000Z",
+ "lastUpdated": "2021-07-28T10:12:59.699Z",
+ "keywords": [
+ {
+ "keyword": "cathéter rectal",
+ "hasLocution": false,
+ "plural": "cathéters rectaux",
+ "type": 2
+ },
+ {
+ "keyword": "tube rectal",
+ "plural": "tubes rectaux",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "sonde rectale",
+ "hasLocution": false,
+ "plural": "sondes rectales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03874541-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30748,
+ "created": "2016-06-08T13:29:44.000Z",
+ "lastUpdated": "2021-03-24T21:25:15.948Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masques"
+ },
+ {
+ "plural": "masques à oxygène",
+ "type": 2,
+ "keyword": "masque à oxygène",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03874541-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30749,
+ "created": "2016-06-08T13:29:44.000Z",
+ "lastUpdated": "2021-03-24T21:25:39.808Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masques"
+ },
+ {
+ "plural": "masques à oxygène",
+ "keyword": "masque à oxygène",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03874541-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30750,
+ "created": "2016-06-08T13:29:44.000Z",
+ "lastUpdated": "2021-03-24T21:26:09.591Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masques"
+ },
+ {
+ "keyword": "masque à oxygène",
+ "hasLocution": false,
+ "plural": "masques à oxygène",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03874541-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30751,
+ "created": "2016-06-08T13:29:44.000Z",
+ "lastUpdated": "2021-03-24T21:26:35.857Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masques"
+ },
+ {
+ "keyword": "masque à oxygène",
+ "hasLocution": false,
+ "plural": "masques à oxygène",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03874541-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30752,
+ "created": "2016-06-08T13:29:44.000Z",
+ "lastUpdated": "2021-03-24T21:28:14.627Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masques"
+ },
+ {
+ "type": 2,
+ "plural": "masques à oxygène",
+ "keyword": "masque à oxygène",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03874541-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30753,
+ "created": "2016-06-08T13:29:44.000Z",
+ "lastUpdated": "2021-03-24T21:20:22.175Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masques"
+ },
+ {
+ "keyword": "masque à oxygène",
+ "hasLocution": false,
+ "plural": "masques à oxygène",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03874541-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30754,
+ "created": "2016-06-08T13:29:44.000Z",
+ "lastUpdated": "2021-03-24T21:19:50.788Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masque"
+ },
+ {
+ "keyword": "masque à oxygène",
+ "hasLocution": false,
+ "plural": "masques à oxygène",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "11514476-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30731,
+ "created": "2016-06-08T13:09:37.000Z",
+ "lastUpdated": "2021-05-02T21:16:02.725Z",
+ "keywords": [
+ {
+ "keyword": "potentiel évoqué",
+ "hasLocution": false,
+ "plural": "potentiels évoqués",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03548915-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30729,
+ "created": "2016-06-08T13:06:19.000Z",
+ "lastUpdated": "2021-07-25T12:23:51.566Z",
+ "keywords": [
+ {
+ "keyword": "bouillotte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bouillottes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "03856133-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device",
+ "ophthalmology"
+ ],
+ "_id": 30735,
+ "created": "2016-06-08T13:18:42.000Z",
+ "lastUpdated": "2021-07-25T12:23:34.468Z",
+ "keywords": [
+ {
+ "keyword": "ophtalmoscope",
+ "hasLocution": false,
+ "plural": "ophtalmoscopes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "03863703-n",
+ "06072392-n",
+ "02538775-v",
+ "05256010-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30769,
+ "created": "2016-06-08T13:48:37.000Z",
+ "lastUpdated": "2021-05-02T21:18:39.852Z",
+ "keywords": [
+ {
+ "keyword": "otoscopie",
+ "hasLocution": false,
+ "plural": "otoscopies",
+ "type": 2
+ },
+ {
+ "keyword": "examen de l'oreille externe",
+ "hasLocution": false,
+ "plural": "examens de l'oreille externe",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03874541-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30771,
+ "created": "2016-06-08T13:49:10.000Z",
+ "lastUpdated": "2021-03-24T21:19:17.888Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque",
+ "hasLocution": true,
+ "plural": "masques"
+ },
+ {
+ "keyword": "masque à oxygène",
+ "hasLocution": false,
+ "plural": "masques à oxygène",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "04310635-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30772,
+ "created": "2016-06-08T13:54:19.000Z",
+ "lastUpdated": "2021-07-25T15:13:52.000Z",
+ "keywords": [
+ {
+ "keyword": "agrafeuse chirurgicale",
+ "hasLocution": false,
+ "plural": "agrafeuses chirurgicales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03548915-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30774,
+ "created": "2016-06-08T14:05:38.000Z",
+ "lastUpdated": "2021-07-25T12:20:05.400Z",
+ "keywords": [
+ {
+ "keyword": "bouillotte",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bouillottes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "14556418-n",
+ "00641218-n",
+ "00792739-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30776,
+ "created": "2016-06-08T14:07:58.000Z",
+ "lastUpdated": "2021-07-27T02:33:46.602Z",
+ "keywords": [
+ {
+ "keyword": "test d'allergie",
+ "hasLocution": false,
+ "plural": "tests d'allergie",
+ "type": 2
+ },
+ {
+ "keyword": "test allergologique",
+ "plural": "tests allergologiques",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "14556418-n",
+ "00641218-n",
+ "00792739-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30777,
+ "created": "2016-06-08T14:07:59.000Z",
+ "lastUpdated": "2021-07-25T12:18:56.553Z",
+ "keywords": [
+ {
+ "keyword": "test d'allergie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tests d'allergie"
+ },
+ {
+ "keyword": "test allergologique",
+ "plural": "tests allergologiques",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "14556418-n",
+ "00641218-n",
+ "00792739-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30778,
+ "created": "2016-06-08T14:07:59.000Z",
+ "lastUpdated": "2021-07-25T12:18:25.605Z",
+ "keywords": [
+ {
+ "keyword": "test d'allergie",
+ "hasLocution": false,
+ "plural": "tests d'allergie",
+ "type": 2
+ },
+ {
+ "keyword": "test allergologique",
+ "plural": "tests allergologiques",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "14556418-n",
+ "00641218-n",
+ "00792739-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30779,
+ "created": "2016-06-08T14:07:59.000Z",
+ "lastUpdated": "2021-06-26T14:07:10.294Z",
+ "keywords": [
+ {
+ "keyword": "test d'allergie",
+ "hasLocution": false,
+ "plural": "tests d'allergie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "14556418-n",
+ "00641218-n",
+ "00792739-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30780,
+ "created": "2016-06-08T14:07:59.000Z",
+ "lastUpdated": "2021-07-25T12:18:22.132Z",
+ "keywords": [
+ {
+ "keyword": "test d'allergie",
+ "hasLocution": false,
+ "plural": "tests d'allergie",
+ "type": 2
+ },
+ {
+ "keyword": "test allergologique",
+ "hasLocution": false,
+ "plural": "tests allergologiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "01369772-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30786,
+ "created": "2016-06-08T14:11:53.000Z",
+ "lastUpdated": "2021-07-25T15:13:36.151Z",
+ "keywords": [
+ {
+ "keyword": "suturer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "suturer une plaie",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00637093-n",
+ "00865191-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30787,
+ "created": "2016-06-08T14:11:53.000Z",
+ "lastUpdated": "2021-07-25T12:16:00.565Z",
+ "keywords": [
+ {
+ "keyword": "test de réflexes",
+ "hasLocution": false,
+ "plural": "tests de réflexes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "02945931-a",
+ "00637093-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30788,
+ "created": "2016-06-08T14:11:53.000Z",
+ "lastUpdated": "2021-07-25T12:15:35.322Z",
+ "keywords": [
+ {
+ "keyword": "examen abdominal",
+ "hasLocution": false,
+ "plural": "examens abdominaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02824337-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30765,
+ "created": "2016-06-08T13:45:31.000Z",
+ "lastUpdated": "2021-07-25T12:21:58.205Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "urinoir",
+ "plural": "urinoirs"
+ },
+ {
+ "keyword": "urinal",
+ "hasLocution": false,
+ "plural": "urinaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "medical test"
+ ],
+ "synsets": [
+ "00902781-n",
+ "04457514-n",
+ "00903174-n",
+ "00645186-n",
+ "00645399-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30797,
+ "created": "2016-06-09T11:39:46.000Z",
+ "lastUpdated": "2021-07-25T12:13:02.274Z",
+ "keywords": [
+ {
+ "keyword": "passer un CT-scanner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire un CT-scanner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "06070282-n",
+ "01000924-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30799,
+ "created": "2016-06-09T12:04:40.000Z",
+ "lastUpdated": "2021-05-02T21:08:21.590Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "audiométrie",
+ "hasLocution": true,
+ "plural": "audiométrie"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00144583-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "ophthalmology"
+ ],
+ "_id": 30763,
+ "created": "2016-06-08T13:33:27.000Z",
+ "lastUpdated": "2021-06-01T09:19:44.178Z",
+ "keywords": [
+ {
+ "keyword": "ophtalmoscopie",
+ "hasLocution": false,
+ "plural": "ophtalmoscopies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03947960-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30767,
+ "created": "2016-06-08T13:46:11.000Z",
+ "lastUpdated": "2021-07-25T12:21:02.071Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pinces",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "04563490-n",
+ "10425439-n",
+ "06900328-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 30790,
+ "created": "2016-06-08T14:16:25.000Z",
+ "lastUpdated": "2021-07-25T12:14:15.396Z",
+ "keywords": [
+ {
+ "keyword": "bracelet d'hôpital",
+ "hasLocution": false,
+ "plural": "bracelets d'hôpital",
+ "type": 2
+ },
+ {
+ "keyword": "bracelet d'identité",
+ "hasLocution": false,
+ "plural": "bracelets d'identité",
+ "type": 2
+ },
+ {
+ "keyword": "bracelet de patient",
+ "hasLocution": false,
+ "plural": "bracelets de patient",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "02966939-n",
+ "02728414-a",
+ "00833753-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 30807,
+ "created": "2016-06-09T12:22:44.000Z",
+ "lastUpdated": "2021-07-25T12:10:26.681Z",
+ "keywords": [
+ {
+ "keyword": "électrocardiographe",
+ "plural": "électrocardiographes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "christianity"
+ ],
+ "synsets": [
+ "00868895-v",
+ "07289435-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "christianity"
+ ],
+ "_id": 30809,
+ "created": "2016-09-05T12:46:41.000Z",
+ "lastUpdated": "2021-07-25T12:09:47.868Z",
+ "keywords": [
+ {
+ "keyword": "faire le signe de croix",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se signer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "07017173-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30802,
+ "created": "2016-06-09T12:06:05.000Z",
+ "lastUpdated": "2021-07-27T22:46:15.092Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "électrocardiogramme ",
+ "hasLocution": false,
+ "plural": "électrocardiogrammes"
+ },
+ {
+ "keyword": "ECG",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "christianity"
+ ],
+ "synsets": [
+ "00868895-v",
+ "07289435-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "christianity"
+ ],
+ "_id": 30811,
+ "created": "2016-09-05T12:46:43.000Z",
+ "lastUpdated": "2021-07-25T12:09:25.242Z",
+ "keywords": [
+ {
+ "keyword": "faire le signe de croix",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se signer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "christianity"
+ ],
+ "synsets": [
+ "00868895-v",
+ "07289435-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "christianity"
+ ],
+ "_id": 30813,
+ "created": "2016-09-05T12:46:43.000Z",
+ "lastUpdated": "2021-07-25T12:05:47.630Z",
+ "keywords": [
+ {
+ "keyword": "faire le signe de la croix",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se signer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious person",
+ "christianity"
+ ],
+ "synsets": [
+ "03078086-a"
+ ],
+ "tags": [
+ "religion",
+ "person",
+ "christianity"
+ ],
+ "_id": 30818,
+ "created": "2016-09-05T12:52:14.000Z",
+ "lastUpdated": "2021-08-22T23:18:27.893Z",
+ "keywords": [
+ {
+ "keyword": "franciscain",
+ "hasLocution": false,
+ "plural": "franciscains",
+ "type": 4
+ },
+ {
+ "type": 2,
+ "keyword": "franciscain",
+ "hasLocution": false,
+ "plural": "franciscains"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "christianity"
+ ],
+ "synsets": [
+ "00868895-v",
+ "07289435-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "christianity"
+ ],
+ "_id": 30812,
+ "created": "2016-09-05T12:46:43.000Z",
+ "lastUpdated": "2021-07-25T12:06:08.516Z",
+ "keywords": [
+ {
+ "keyword": "faire le signe de la croix",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se signer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious person",
+ "christianity"
+ ],
+ "synsets": [
+ "10490364-n"
+ ],
+ "tags": [
+ "religion",
+ "person",
+ "christianity"
+ ],
+ "_id": 30822,
+ "created": "2016-09-05T12:55:03.000Z",
+ "lastUpdated": "2021-08-22T22:25:33.179Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prêtre",
+ "hasLocution": true,
+ "plural": "prêtres"
+ },
+ {
+ "type": 2,
+ "keyword": "curé",
+ "hasLocution": true,
+ "plural": "curés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious person",
+ "christianity"
+ ],
+ "synsets": [
+ "10387708-n",
+ "10538195-n"
+ ],
+ "tags": [
+ "religion",
+ "person",
+ "christianity"
+ ],
+ "_id": 30824,
+ "created": "2016-09-05T12:55:41.000Z",
+ "lastUpdated": "2021-08-04T09:04:58.640Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "soeur",
+ "hasLocution": false,
+ "plural": "soeurs"
+ },
+ {
+ "type": 2,
+ "keyword": "religieuse",
+ "hasLocution": true,
+ "plural": "religieuses"
+ },
+ {
+ "keyword": "sœur",
+ "type": 2,
+ "plural": "sœurs",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "christianity"
+ ],
+ "synsets": [
+ "01988916-v",
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "christianity"
+ ],
+ "_id": 30826,
+ "created": "2016-09-05T12:56:28.000Z",
+ "lastUpdated": "2021-08-01T18:48:03.436Z",
+ "keywords": [
+ {
+ "keyword": "s'assoir sur un banc d'église",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir sur un banc d'église",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "00762447-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30828,
+ "created": "2016-09-05T12:57:39.000Z",
+ "lastUpdated": "2023-01-30T17:36:02.645Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "communier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "recevoir la communion",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious person",
+ "christianity"
+ ],
+ "synsets": [
+ "03078086-a"
+ ],
+ "tags": [
+ "religion",
+ "person",
+ "christianity"
+ ],
+ "_id": 30820,
+ "created": "2016-09-05T12:53:58.000Z",
+ "lastUpdated": "2021-07-25T12:05:26.849Z",
+ "keywords": [
+ {
+ "keyword": "franciscaine",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "01733940-v",
+ "06478458-n",
+ "06448807-n",
+ "01258136-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30830,
+ "created": "2016-09-05T13:00:12.000Z",
+ "lastUpdated": "2021-07-27T02:33:17.374Z",
+ "keywords": [
+ {
+ "keyword": "psaume",
+ "type": 2,
+ "plural": "psaumes",
+ "hasLocution": false
+ },
+ {
+ "keyword": "psalmodie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "psalmodies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "06478458-n",
+ "06448807-n",
+ "01258136-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30831,
+ "created": "2016-09-05T13:00:13.000Z",
+ "lastUpdated": "2021-07-25T12:08:54.353Z",
+ "keywords": [
+ {
+ "keyword": "psaume",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "psaumes"
+ },
+ {
+ "keyword": "psalmodie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "psalmodies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity",
+ "religion",
+ "religious event"
+ ],
+ "synsets": [
+ "04337247-n",
+ "02791595-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity",
+ "event",
+ "religious event"
+ ],
+ "_id": 30834,
+ "created": "2016-09-05T13:03:19.000Z",
+ "lastUpdated": "2024-12-08T15:38:24.503Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bénitier",
+ "hasLocution": false,
+ "plural": "bénitiers"
+ },
+ {
+ "keyword": "fonts baptismaux",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "07259609-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30836,
+ "created": "2016-09-05T13:06:34.000Z",
+ "lastUpdated": "2021-07-25T15:13:21.996Z",
+ "keywords": [
+ {
+ "keyword": "homélie",
+ "type": 2,
+ "plural": "homélies",
+ "hasLocution": false
+ },
+ {
+ "keyword": "prêche",
+ "type": 2,
+ "plural": "prêches",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "07017173-n",
+ "00833753-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 30805,
+ "created": "2016-06-09T12:17:00.000Z",
+ "lastUpdated": "2021-06-26T14:05:22.371Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "électrocardiogramme ",
+ "hasLocution": false,
+ "plural": "électrocardiogramme"
+ },
+ {
+ "keyword": "ECG",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ECGs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00187671-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 30801,
+ "created": "2016-06-09T12:06:05.000Z",
+ "lastUpdated": "2021-07-27T02:33:33.094Z",
+ "keywords": [
+ {
+ "keyword": "mettre un suppositoire",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "07259609-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30837,
+ "created": "2016-09-05T13:06:34.000Z",
+ "lastUpdated": "2021-07-25T12:08:48.762Z",
+ "keywords": [
+ {
+ "keyword": "homélie",
+ "type": 2,
+ "plural": "homélies",
+ "hasLocution": false
+ },
+ {
+ "keyword": "prêche",
+ "type": 2,
+ "plural": "prêches",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "07259609-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30838,
+ "created": "2016-09-05T13:06:34.000Z",
+ "lastUpdated": "2021-07-25T12:01:07.884Z",
+ "keywords": [
+ {
+ "keyword": "homélie",
+ "type": 2,
+ "plural": "homélies",
+ "hasLocution": false
+ },
+ {
+ "keyword": "prêche",
+ "type": 2,
+ "plural": "prêches",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "christianity"
+ ],
+ "synsets": [
+ "00868895-v",
+ "07289435-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "christianity"
+ ],
+ "_id": 30841,
+ "created": "2016-09-05T13:07:25.000Z",
+ "lastUpdated": "2021-07-25T11:59:32.425Z",
+ "keywords": [
+ {
+ "keyword": "faire le signe de croix",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se signer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "06465519-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30847,
+ "created": "2016-09-05T13:13:02.000Z",
+ "lastUpdated": "2021-07-25T11:57:55.432Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Évangile",
+ "hasLocution": false
+ },
+ {
+ "keyword": "Nouveau Testament",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "évangile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "évangiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "06465519-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30846,
+ "created": "2016-09-05T13:13:02.000Z",
+ "lastUpdated": "2021-07-25T11:58:29.875Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Évangile",
+ "hasLocution": false
+ },
+ {
+ "keyword": "Nouveau Testament",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "évangile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "évangiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "06465519-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30848,
+ "created": "2016-09-05T13:13:02.000Z",
+ "lastUpdated": "2021-07-25T11:57:21.404Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Évangile",
+ "hasLocution": false
+ },
+ {
+ "keyword": "Nouveau Testament",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "évangile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "évangiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "00761989-v",
+ "06467660-n",
+ "06469282-n",
+ "10483618-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30850,
+ "created": "2016-09-05T13:14:07.000Z",
+ "lastUpdated": "2021-07-27T22:45:29.715Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prière",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "prières"
+ },
+ {
+ "keyword": "Notre Père",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "Notre Père"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "13291671-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30852,
+ "created": "2016-09-05T13:19:06.000Z",
+ "lastUpdated": "2021-07-27T02:30:41.044Z",
+ "keywords": [
+ {
+ "keyword": "offertoire",
+ "hasLocution": false,
+ "plural": "offertoire",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00802412-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 30851,
+ "created": "2016-09-05T13:14:07.000Z",
+ "lastUpdated": "2021-07-25T11:53:37.280Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rayer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "barrer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity",
+ "verb"
+ ],
+ "synsets": [
+ "01092041-n",
+ "13291671-n",
+ "02267835-v"
+ ],
+ "tags": [
+ "religion",
+ "christianity",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 30857,
+ "created": "2016-09-05T13:20:17.000Z",
+ "lastUpdated": "2021-07-25T11:51:57.633Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aumône",
+ "hasLocution": true,
+ "plural": "aumônes"
+ },
+ {
+ "keyword": "quête",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "quêtes"
+ },
+ {
+ "keyword": "offrande",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "offrandes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "06465519-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30845,
+ "created": "2016-09-05T13:13:02.000Z",
+ "lastUpdated": "2021-07-25T11:59:01.719Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Évangile",
+ "hasLocution": false
+ },
+ {
+ "keyword": "Nouveau Testament",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "évangile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "évangiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "14870687-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30859,
+ "created": "2016-09-05T13:22:49.000Z",
+ "lastUpdated": "2021-07-25T11:51:01.560Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "eau bénite",
+ "hasLocution": false,
+ "plural": "eaux bénites"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "00761989-v",
+ "06467660-n",
+ "10483618-n",
+ "01044000-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30861,
+ "created": "2016-09-05T13:26:06.000Z",
+ "lastUpdated": "2021-07-25T11:50:44.301Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prière",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "prières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "00761989-v",
+ "06467660-n",
+ "10483618-n",
+ "01044000-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30863,
+ "created": "2016-09-05T13:27:11.000Z",
+ "lastUpdated": "2021-07-25T11:50:30.532Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prière",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "prières"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity",
+ "verb"
+ ],
+ "synsets": [
+ "01041339-n",
+ "00820466-v"
+ ],
+ "tags": [
+ "religion",
+ "christianity",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 30870,
+ "created": "2016-09-06T10:12:21.000Z",
+ "lastUpdated": "2021-07-25T11:49:32.593Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "confession",
+ "hasLocution": true,
+ "plural": "confessions"
+ },
+ {
+ "keyword": "se confesser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "confesser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "06466808-n",
+ "00628065-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30872,
+ "created": "2016-09-06T10:19:39.000Z",
+ "lastUpdated": "2021-09-03T17:11:23.377Z",
+ "keywords": [
+ {
+ "keyword": "lecture de l'Evangile",
+ "plural": "lectures de l'Evangile",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "lire l'Evangile",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "06466808-n",
+ "00628065-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30873,
+ "created": "2016-09-06T10:19:39.000Z",
+ "lastUpdated": "2021-07-25T11:48:48.164Z",
+ "keywords": [
+ {
+ "keyword": "lecture de l'Evangile",
+ "hasLocution": false,
+ "plural": "lectures de l'Evangile",
+ "type": 2
+ },
+ {
+ "keyword": "lire l'Evangile",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "lire le Saint Evangile",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "06466808-n",
+ "00628065-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30874,
+ "created": "2016-09-06T10:19:39.000Z",
+ "lastUpdated": "2021-09-03T17:11:10.035Z",
+ "keywords": [
+ {
+ "keyword": "lecture de l'Evangile",
+ "plural": "lectures de l'Evangile",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "lire l'Evangile",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "06466808-n",
+ "00628065-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30875,
+ "created": "2016-09-06T10:19:39.000Z",
+ "lastUpdated": "2021-09-03T17:07:02.010Z",
+ "keywords": [
+ {
+ "keyword": "lecture de l'Evangile",
+ "hasLocution": false,
+ "plural": "lectures de l'Evangile",
+ "type": 2
+ },
+ {
+ "keyword": "lire l'Evangile",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "christianity"
+ ],
+ "synsets": [
+ "06466808-n",
+ "00628065-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "christianity"
+ ],
+ "_id": 30876,
+ "created": "2016-09-06T10:19:39.000Z",
+ "lastUpdated": "2021-09-03T16:56:32.031Z",
+ "keywords": [
+ {
+ "keyword": "lire l'Evangile",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "lecture de l'Evangile",
+ "hasLocution": false,
+ "plural": "lectures de l'Evangile",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "01042678-n",
+ "00868366-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30868,
+ "created": "2016-09-05T13:36:28.000Z",
+ "lastUpdated": "2021-07-25T11:49:53.041Z",
+ "keywords": [
+ {
+ "keyword": "consécration",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "consécrations"
+ },
+ {
+ "keyword": "consacrer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "07259609-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30839,
+ "created": "2016-09-05T13:06:34.000Z",
+ "lastUpdated": "2021-07-25T12:00:48.314Z",
+ "keywords": [
+ {
+ "keyword": "homélie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "homélies"
+ },
+ {
+ "keyword": "prêche",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "prêches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "13291671-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30853,
+ "created": "2016-09-05T13:19:06.000Z",
+ "lastUpdated": "2021-07-27T02:30:20.938Z",
+ "keywords": [
+ {
+ "keyword": "offertoire",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "offrande",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "offrandes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "christianity"
+ ],
+ "synsets": [
+ "06466808-n",
+ "00628065-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "christianity"
+ ],
+ "_id": 30877,
+ "created": "2016-09-06T10:19:40.000Z",
+ "lastUpdated": "2021-09-03T17:06:53.379Z",
+ "keywords": [
+ {
+ "keyword": "lecture de l'Evangile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "lectures de l'Evangile"
+ },
+ {
+ "keyword": "lire l'Evangile",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "06466808-n",
+ "00628065-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30878,
+ "created": "2016-09-06T10:19:40.000Z",
+ "lastUpdated": "2021-07-25T11:45:17.264Z",
+ "keywords": [
+ {
+ "keyword": "lire le Saint Evangile",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "lire l'Evangile",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "lecture de l'Evangile",
+ "hasLocution": false,
+ "plural": "lectures de l'Evangile",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "christianity"
+ ],
+ "synsets": [
+ "06466808-n",
+ "00628065-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "christianity"
+ ],
+ "_id": 30879,
+ "created": "2016-09-06T10:19:40.000Z",
+ "lastUpdated": "2021-09-03T17:06:38.923Z",
+ "keywords": [
+ {
+ "keyword": "lecture de l'Evangile",
+ "hasLocution": false,
+ "plural": "lectures de l'Evangile",
+ "type": 2
+ },
+ {
+ "keyword": "lire l'Evangile",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "03926989-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30885,
+ "created": "2016-09-06T10:23:29.000Z",
+ "lastUpdated": "2021-07-11T09:51:29.120Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "banc d'église",
+ "hasLocution": true,
+ "plural": "bancs d'église"
+ },
+ {
+ "keyword": "banc",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "bancs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "00761989-v",
+ "06467660-n",
+ "06469282-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30889,
+ "created": "2016-09-06T10:47:31.000Z",
+ "lastUpdated": "2021-07-27T22:45:04.148Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prière",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "prières"
+ },
+ {
+ "keyword": "Notre Père",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "03926989-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30887,
+ "created": "2016-09-06T10:25:27.000Z",
+ "lastUpdated": "2021-07-25T11:43:22.644Z",
+ "keywords": [
+ {
+ "keyword": "banc",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "bancs"
+ },
+ {
+ "keyword": "banc d'église",
+ "hasLocution": true,
+ "plural": "bancs d'église",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity",
+ "religious event"
+ ],
+ "synsets": [
+ "03658909-n",
+ "03164306-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity",
+ "event",
+ "religious event"
+ ],
+ "_id": 30891,
+ "created": "2016-09-06T10:48:31.000Z",
+ "lastUpdated": "2024-12-09T11:26:15.298Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pupitre",
+ "hasLocution": false,
+ "plural": "pupitres"
+ },
+ {
+ "keyword": "lutrin",
+ "hasLocution": false,
+ "plural": "lutrins",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity",
+ "verb"
+ ],
+ "synsets": [
+ "07204071-n",
+ "01045725-n",
+ "00868895-v",
+ "00868169-v"
+ ],
+ "tags": [
+ "religion",
+ "christianity",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 30894,
+ "created": "2016-09-06T10:52:42.000Z",
+ "lastUpdated": "2021-07-25T11:39:32.121Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bénédiction",
+ "hasLocution": true,
+ "plural": "bénédictions"
+ },
+ {
+ "keyword": "bénir",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity",
+ "verb"
+ ],
+ "synsets": [
+ "07204071-n",
+ "01045725-n",
+ "00868895-v",
+ "00868169-v"
+ ],
+ "tags": [
+ "religion",
+ "christianity",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 30895,
+ "created": "2016-09-06T10:52:42.000Z",
+ "lastUpdated": "2021-07-25T11:39:20.869Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bénédiction",
+ "hasLocution": true,
+ "plural": "bénédictions"
+ },
+ {
+ "keyword": "bénir",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity",
+ "verb"
+ ],
+ "synsets": [
+ "07204071-n",
+ "01045725-n",
+ "00868895-v",
+ "00868169-v"
+ ],
+ "tags": [
+ "religion",
+ "christianity",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 30896,
+ "created": "2016-09-06T10:52:42.000Z",
+ "lastUpdated": "2021-07-25T11:39:06.111Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bénédiction",
+ "hasLocution": true,
+ "plural": "bénédictions"
+ },
+ {
+ "keyword": "bénir",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act"
+ ],
+ "synsets": [
+ "07204071-n",
+ "01045725-n",
+ "00868895-v",
+ "00868169-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event"
+ ],
+ "_id": 30897,
+ "created": "2016-09-06T10:52:42.000Z",
+ "lastUpdated": "2021-07-25T11:38:52.061Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bénédiction",
+ "hasLocution": true,
+ "plural": "bénédictions"
+ },
+ {
+ "keyword": "bénir",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "01044274-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30905,
+ "created": "2016-09-08T10:19:47.000Z",
+ "lastUpdated": "2021-07-25T11:34:26.821Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "messe",
+ "hasLocution": false,
+ "plural": "messes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "01044274-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30906,
+ "created": "2016-09-08T10:19:54.000Z",
+ "lastUpdated": "2021-07-25T11:34:19.988Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "messe",
+ "hasLocution": false,
+ "plural": "messes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "01044274-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30907,
+ "created": "2016-09-08T10:19:54.000Z",
+ "lastUpdated": "2021-07-25T11:34:13.899Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "messe",
+ "hasLocution": false,
+ "plural": "messes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "01044274-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "religious event",
+ "christianity"
+ ],
+ "_id": 30908,
+ "created": "2016-09-08T10:19:54.000Z",
+ "lastUpdated": "2021-07-25T11:34:07.223Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "messe",
+ "hasLocution": false,
+ "plural": "messes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30910,
+ "created": "2016-09-08T10:22:14.000Z",
+ "lastUpdated": "2021-07-25T11:33:56.492Z",
+ "keywords": [
+ {
+ "keyword": "étole",
+ "plural": "étoles",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "00761989-v",
+ "06467660-n",
+ "10483618-n",
+ "01044000-n",
+ "06802268-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30901,
+ "created": "2016-09-06T10:55:31.000Z",
+ "lastUpdated": "2021-07-25T11:41:39.278Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "croyance",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "croyances"
+ },
+ {
+ "keyword": "doctrine",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "doctrines"
+ },
+ {
+ "keyword": "prière",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "prières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30911,
+ "created": "2016-09-08T10:22:14.000Z",
+ "lastUpdated": "2021-07-25T11:33:44.403Z",
+ "keywords": [
+ {
+ "keyword": "étole",
+ "plural": "étoles",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious building",
+ "religious place",
+ "christianity",
+ "signaling system"
+ ],
+ "synsets": [
+ "03031762-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "religion",
+ "christianity",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 30903,
+ "created": "2016-09-06T10:56:14.000Z",
+ "lastUpdated": "2021-07-25T11:34:33.255Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "église",
+ "hasLocution": true,
+ "plural": "églises"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "00761989-v",
+ "06467660-n",
+ "10483618-n",
+ "01044000-n",
+ "06802268-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30899,
+ "created": "2016-09-06T10:54:23.000Z",
+ "lastUpdated": "2021-07-25T11:41:34.215Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prière",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "prières"
+ },
+ {
+ "keyword": "croyance",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "croyances"
+ },
+ {
+ "keyword": "doctrine",
+ "type": 2,
+ "plural": "doctrines",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "01044274-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30915,
+ "created": "2016-09-08T10:23:04.000Z",
+ "lastUpdated": "2021-07-25T11:32:48.130Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "autel",
+ "hasLocution": true,
+ "plural": "autels"
+ },
+ {
+ "type": 2,
+ "keyword": "messe",
+ "hasLocution": false,
+ "plural": "messes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "01044274-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30914,
+ "created": "2016-09-08T10:23:04.000Z",
+ "lastUpdated": "2021-07-25T11:32:43.285Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "autel",
+ "hasLocution": true,
+ "plural": "autels"
+ },
+ {
+ "type": 2,
+ "keyword": "messe",
+ "hasLocution": false,
+ "plural": "messes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "01044274-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30916,
+ "created": "2016-09-08T10:23:04.000Z",
+ "lastUpdated": "2021-07-25T11:32:50.960Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "autel",
+ "hasLocution": true,
+ "plural": "autels"
+ },
+ {
+ "type": 2,
+ "keyword": "messe",
+ "hasLocution": false,
+ "plural": "messes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "01044274-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "religious event",
+ "christianity"
+ ],
+ "_id": 30917,
+ "created": "2016-09-08T10:23:04.000Z",
+ "lastUpdated": "2021-07-25T11:32:15.196Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "autel",
+ "hasLocution": true,
+ "plural": "autels"
+ },
+ {
+ "type": 2,
+ "keyword": "messe",
+ "hasLocution": false,
+ "plural": "messes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "02020375-v",
+ "01044274-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30919,
+ "created": "2016-09-08T10:26:11.000Z",
+ "lastUpdated": "2021-07-25T11:31:41.196Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "messe",
+ "hasLocution": false,
+ "plural": "messes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "02020375-v",
+ "01044274-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30920,
+ "created": "2016-09-08T10:26:11.000Z",
+ "lastUpdated": "2021-07-25T11:31:31.808Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "messe",
+ "hasLocution": false,
+ "plural": "messes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30912,
+ "created": "2016-09-08T10:22:14.000Z",
+ "lastUpdated": "2021-07-25T11:33:33.445Z",
+ "keywords": [
+ {
+ "keyword": "étole",
+ "hasLocution": false,
+ "plural": "étoles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "02020375-v",
+ "01044274-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 30913,
+ "created": "2016-09-08T10:23:04.000Z",
+ "lastUpdated": "2021-07-25T15:13:06.616Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "messe",
+ "hasLocution": false,
+ "plural": "messes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "02020375-v",
+ "01044274-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "christianity"
+ ],
+ "_id": 30921,
+ "created": "2016-09-08T10:26:11.000Z",
+ "lastUpdated": "2021-07-25T11:31:19.286Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "messe",
+ "hasLocution": false,
+ "plural": "messes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "beverage"
+ ],
+ "synsets": [
+ "00800668-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 30932,
+ "created": "2016-09-08T10:36:20.000Z",
+ "lastUpdated": "2021-07-25T11:29:10.489Z",
+ "keywords": [
+ {
+ "keyword": "buvable",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "potable",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00166433-s",
+ "00166720-s",
+ "00759397-s",
+ "00166125-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 30926,
+ "created": "2016-09-08T10:32:23.000Z",
+ "lastUpdated": "2021-07-25T11:29:54.256Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "distrait",
+ "hasLocution": true
+ },
+ {
+ "keyword": "étourdi",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "inattentif",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "tête en l'air",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03212351-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 30934,
+ "created": "2016-09-08T10:37:50.000Z",
+ "lastUpdated": "2021-07-25T11:28:38.719Z",
+ "keywords": [
+ {
+ "keyword": "égouttoir",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "égouttoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "03212783-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 30936,
+ "created": "2016-09-08T10:38:33.000Z",
+ "lastUpdated": "2021-07-25T11:28:06.599Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "liquide vaisselle",
+ "hasLocution": false,
+ "plural": "liquides vaisselle"
+ },
+ {
+ "keyword": "savon de vaisselle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "savons de vaisselle"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30938,
+ "created": "2016-09-08T10:39:56.000Z",
+ "lastUpdated": "2021-07-28T10:10:40.996Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire du roller",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30940,
+ "created": "2016-09-08T10:39:56.000Z",
+ "lastUpdated": "2021-07-25T11:27:02.023Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30939,
+ "created": "2016-09-08T10:39:56.000Z",
+ "lastUpdated": "2021-07-25T11:27:05.843Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "symptom",
+ "body sensation"
+ ],
+ "synsets": [
+ "02554818-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 30924,
+ "created": "2016-09-08T10:28:33.000Z",
+ "lastUpdated": "2021-07-25T11:31:10.051Z",
+ "keywords": [
+ {
+ "keyword": "étourdie",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "taste",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02404683-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "taste",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 30928,
+ "created": "2016-09-08T10:33:42.000Z",
+ "lastUpdated": "2021-07-25T11:29:16.055Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "amer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30941,
+ "created": "2016-09-08T10:39:56.000Z",
+ "lastUpdated": "2021-07-25T11:26:58.571Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30942,
+ "created": "2016-09-08T10:39:56.000Z",
+ "lastUpdated": "2021-07-25T11:26:55.756Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work accident"
+ ],
+ "synsets": [
+ "00378172-n",
+ "07323181-n",
+ "00307079-v"
+ ],
+ "tags": [
+ "work",
+ "work accident"
+ ],
+ "_id": 30954,
+ "created": "2016-09-08T10:43:03.000Z",
+ "lastUpdated": "2021-07-25T11:26:15.467Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "explosion",
+ "hasLocution": true,
+ "plural": "explosions"
+ },
+ {
+ "keyword": "souffle",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "souffles"
+ },
+ {
+ "keyword": "exploser",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "souffler",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work accident"
+ ],
+ "synsets": [
+ "00378172-n",
+ "07323181-n",
+ "00307079-v"
+ ],
+ "tags": [
+ "work",
+ "work accident"
+ ],
+ "_id": 30955,
+ "created": "2016-09-08T10:43:03.000Z",
+ "lastUpdated": "2021-07-25T11:25:39.254Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "explosion",
+ "hasLocution": true,
+ "plural": "explosions"
+ },
+ {
+ "keyword": "souffle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "souffles"
+ },
+ {
+ "keyword": "exploser",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "souffler",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work accident",
+ "energy"
+ ],
+ "synsets": [
+ "00378172-n",
+ "07323181-n",
+ "00307079-v"
+ ],
+ "tags": [
+ "work",
+ "work accident",
+ "secondary sector",
+ "energy"
+ ],
+ "_id": 30956,
+ "created": "2016-09-08T10:43:03.000Z",
+ "lastUpdated": "2021-07-25T11:24:11.317Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "explosion",
+ "hasLocution": true,
+ "plural": "explosions"
+ },
+ {
+ "keyword": "détonation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "détonations"
+ },
+ {
+ "keyword": "exploser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "déflagration",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "déflagrations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crockery"
+ ],
+ "synsets": [
+ "00452603-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "crockery",
+ "home"
+ ],
+ "_id": 30960,
+ "created": "2016-09-08T10:43:31.000Z",
+ "lastUpdated": "2021-07-25T11:22:23.843Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "égoutter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work organization"
+ ],
+ "synsets": [
+ "01233454-n",
+ "08327319-n"
+ ],
+ "tags": [
+ "work",
+ "organization"
+ ],
+ "_id": 30962,
+ "created": "2016-09-08T10:44:48.000Z",
+ "lastUpdated": "2021-07-25T11:22:18.523Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "réunion",
+ "hasLocution": true,
+ "plural": "réunions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling",
+ "body sensation"
+ ],
+ "synsets": [
+ "07518499-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 30964,
+ "created": "2016-09-08T10:45:54.000Z",
+ "lastUpdated": "2021-07-25T11:22:06.856Z",
+ "keywords": [
+ {
+ "keyword": "dégoût",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dégoûts"
+ },
+ {
+ "keyword": "répugnance",
+ "type": 2,
+ "plural": "répugnances",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic accident",
+ "road safety"
+ ],
+ "synsets": [
+ "07315954-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "traffic accident",
+ "road safety"
+ ],
+ "_id": 30965,
+ "created": "2016-09-08T10:45:54.000Z",
+ "lastUpdated": "2021-07-25T17:35:30.257Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accident",
+ "hasLocution": true,
+ "plural": "accidents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03477235-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 30952,
+ "created": "2016-09-08T10:40:27.000Z",
+ "lastUpdated": "2021-07-25T11:26:42.849Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gymnase",
+ "hasLocution": true,
+ "plural": "gymnases"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crockery",
+ "cleaning product"
+ ],
+ "synsets": [
+ "00036925-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "cleaning product"
+ ],
+ "_id": 30967,
+ "created": "2016-09-08T10:47:19.000Z",
+ "lastUpdated": "2024-12-10T08:25:11.249Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver la vaisselle",
+ "hasLocution": true
+ },
+ {
+ "keyword": "laver",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "laver les assiettes",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30943,
+ "created": "2016-09-08T10:39:56.000Z",
+ "lastUpdated": "2021-07-25T11:26:52.434Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 30944,
+ "created": "2016-09-08T10:39:56.000Z",
+ "lastUpdated": "2021-07-25T11:26:48.218Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crockery",
+ "cleaning product"
+ ],
+ "synsets": [
+ "00036925-v",
+ "00256467-n",
+ "01535954-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "cleaning product"
+ ],
+ "_id": 30969,
+ "created": "2016-09-08T10:49:34.000Z",
+ "lastUpdated": "2021-07-25T11:20:24.326Z",
+ "keywords": [
+ {
+ "keyword": "faire la vaisselle",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "laver la vaisselle",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "worksite",
+ "workplace",
+ "signaling system"
+ ],
+ "synsets": [
+ "14783901-n",
+ "04610439-n"
+ ],
+ "tags": [
+ "work",
+ "workplace",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 30977,
+ "created": "2016-09-08T11:34:15.000Z",
+ "lastUpdated": "2021-07-27T02:30:04.206Z",
+ "keywords": [
+ {
+ "keyword": "atelier de cordonnerie",
+ "hasLocution": false,
+ "plural": "ateliers de cordonnerie",
+ "type": 2
+ },
+ {
+ "keyword": "atelier de travail du cuir",
+ "hasLocution": false,
+ "plural": "ateliers de travail du cuir",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "worksite",
+ "workplace",
+ "signaling system"
+ ],
+ "synsets": [
+ "03999246-n",
+ "00611136-n"
+ ],
+ "tags": [
+ "work",
+ "workplace",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 30975,
+ "created": "2016-09-08T11:33:07.000Z",
+ "lastUpdated": "2021-07-25T11:19:02.538Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier de céramique",
+ "hasLocution": true,
+ "plural": "ateliers de céramique"
+ },
+ {
+ "keyword": "atelier de poterie",
+ "hasLocution": false,
+ "plural": "ateliers de poterie",
+ "type": 2
+ },
+ {
+ "keyword": "poterie",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04484622-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 30981,
+ "created": "2016-09-08T12:11:59.000Z",
+ "lastUpdated": "2021-07-25T11:17:40.724Z",
+ "keywords": [
+ {
+ "keyword": "tapis de course",
+ "hasLocution": false,
+ "plural": "tapis de course",
+ "type": 2
+ },
+ {
+ "keyword": "tapis roulant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tapis roulants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03307616-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 30983,
+ "created": "2016-09-08T12:13:53.000Z",
+ "lastUpdated": "2021-07-25T11:17:11.671Z",
+ "keywords": [
+ {
+ "keyword": "vélo d'appartement",
+ "hasLocution": false,
+ "plural": "vélos d'appartement",
+ "type": 2
+ },
+ {
+ "keyword": "vélo stationnaire",
+ "hasLocution": false,
+ "plural": "vélos stationnaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "craftsmanship"
+ ],
+ "synsets": [
+ "03622304-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "craftsmanship"
+ ],
+ "_id": 30985,
+ "created": "2016-09-08T12:15:54.000Z",
+ "lastUpdated": "2021-07-24T20:28:37.764Z",
+ "keywords": [
+ {
+ "keyword": "four de potier",
+ "hasLocution": false,
+ "plural": "fours de potier",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "entertainment facility",
+ "recreational facility"
+ ],
+ "synsets": [
+ "08511241-n"
+ ],
+ "tags": [
+ "leisure",
+ "place",
+ "facility",
+ "recreational facility"
+ ],
+ "_id": 30979,
+ "created": "2016-09-08T12:07:59.000Z",
+ "lastUpdated": "2021-07-24T20:30:11.854Z",
+ "keywords": [
+ {
+ "keyword": "parc aquatique",
+ "hasLocution": false,
+ "plural": "parcs aquatiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "drug addiction"
+ ],
+ "synsets": [
+ "03252323-n",
+ "00949739-n",
+ "14087890-n"
+ ],
+ "tags": [
+ "health",
+ "lifestyle",
+ "unhealthy habit",
+ "addiction",
+ "drugs"
+ ],
+ "_id": 30971,
+ "created": "2016-09-08T10:50:39.000Z",
+ "lastUpdated": "2021-07-25T11:19:27.642Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "drogue",
+ "hasLocution": true,
+ "plural": "drogues"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease",
+ "covid-19"
+ ],
+ "synsets": [
+ "07450133-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease",
+ "covid-19"
+ ],
+ "_id": 30987,
+ "created": "2016-09-08T12:17:53.000Z",
+ "lastUpdated": "2021-07-24T20:27:24.713Z",
+ "keywords": [
+ {
+ "keyword": "épidémie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "épidémies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 30989,
+ "created": "2016-09-08T12:19:21.000Z",
+ "lastUpdated": "2021-07-25T11:16:21.052Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuels"
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 30991,
+ "created": "2016-09-08T12:19:21.000Z",
+ "lastUpdated": "2021-07-25T11:16:15.729Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuels"
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 30992,
+ "created": "2016-09-08T12:19:21.000Z",
+ "lastUpdated": "2021-07-25T11:16:11.434Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuels"
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 30990,
+ "created": "2016-09-08T12:19:21.000Z",
+ "lastUpdated": "2021-07-25T11:16:17.511Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuels"
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03502782-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 30973,
+ "created": "2016-09-08T10:53:01.000Z",
+ "lastUpdated": "2021-07-24T20:31:12.895Z",
+ "keywords": [
+ {
+ "keyword": "sombrero",
+ "hasLocution": false,
+ "plural": "sombreros"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n",
+ "00420921-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 31002,
+ "created": "2016-09-08T12:23:47.000Z",
+ "lastUpdated": "2021-07-25T11:16:00.877Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuels"
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n",
+ "00420921-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 31003,
+ "created": "2016-09-08T12:23:47.000Z",
+ "lastUpdated": "2021-07-25T11:15:58.242Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuels"
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01778720-v",
+ "00798638-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31004,
+ "created": "2016-09-08T12:23:47.000Z",
+ "lastUpdated": "2021-07-24T20:24:43.773Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mépriser",
+ "hasLocution": false
+ },
+ {
+ "keyword": "mépris",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mépris"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n",
+ "00420921-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 31005,
+ "created": "2016-09-08T12:23:47.000Z",
+ "lastUpdated": "2021-07-25T11:15:53.695Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuels"
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n",
+ "00420921-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 31006,
+ "created": "2016-09-08T12:23:47.000Z",
+ "lastUpdated": "2021-07-25T11:15:49.985Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuel"
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n",
+ "00420921-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 31007,
+ "created": "2016-09-08T12:23:47.000Z",
+ "lastUpdated": "2021-07-24T19:55:56.761Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuels"
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitance"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02077473-v",
+ "00812391-v",
+ "02079709-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31014,
+ "created": "2016-09-08T12:25:35.000Z",
+ "lastUpdated": "2021-07-24T19:55:35.708Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'enfuir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'échapper",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "fuir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "crime"
+ ],
+ "synsets": [
+ "02077473-v",
+ "00812391-v",
+ "02079709-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime"
+ ],
+ "_id": 31015,
+ "created": "2016-09-08T12:25:35.000Z",
+ "lastUpdated": "2022-01-16T10:20:07.622Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'enfuir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'échapper",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "fuir",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime"
+ ],
+ "synsets": [
+ "01137207-v",
+ "01253156-n",
+ "00226017-n",
+ "01139040-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime"
+ ],
+ "_id": 31018,
+ "created": "2016-09-08T12:31:32.000Z",
+ "lastUpdated": "2021-07-25T11:15:23.011Z",
+ "keywords": [
+ {
+ "keyword": "fusillade",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fusillades"
+ },
+ {
+ "keyword": "tirs",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "tirer sur",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07943437-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 31021,
+ "created": "2016-09-08T12:34:05.000Z",
+ "lastUpdated": "2021-07-27T02:29:38.935Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Ina Kola",
+ "hasLocution": false
+ },
+ {
+ "keyword": "soda péruvien",
+ "hasLocution": false,
+ "plural": "sodas péruviens",
+ "type": 2
+ },
+ {
+ "keyword": "soda",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sodas"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "easter week",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "07341888-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "easter week",
+ "religion",
+ "christianity"
+ ],
+ "_id": 31023,
+ "created": "2016-10-24T10:38:33.000Z",
+ "lastUpdated": "2021-07-25T11:15:10.952Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "procession",
+ "hasLocution": true,
+ "plural": "procession"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "easter week",
+ "religious act",
+ "christianity"
+ ],
+ "synsets": [
+ "07341888-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "easter week",
+ "religion",
+ "christianity"
+ ],
+ "_id": 31024,
+ "created": "2016-10-24T10:38:43.000Z",
+ "lastUpdated": "2021-07-25T11:15:08.251Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "procession",
+ "hasLocution": true,
+ "plural": "processions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "02699528-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 31027,
+ "created": "2016-10-24T12:27:14.000Z",
+ "lastUpdated": "2021-07-24T19:52:27.798Z",
+ "keywords": [
+ {
+ "keyword": "Alhambra",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Alhambra de Grenade",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "prehistory"
+ ],
+ "synsets": [
+ "03224940-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "history",
+ "prehistory"
+ ],
+ "_id": 31029,
+ "created": "2016-10-24T12:31:35.000Z",
+ "lastUpdated": "2021-07-25T11:15:04.777Z",
+ "keywords": [
+ {
+ "keyword": "Antequera",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "dolmen",
+ "hasLocution": false,
+ "plural": "dolmens",
+ "type": 2
+ },
+ {
+ "keyword": "cromlech",
+ "hasLocution": false,
+ "plural": "cromlechs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "geology"
+ ],
+ "synsets": [
+ "09281931-n",
+ "08510271-n",
+ "08682181-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "geology"
+ ],
+ "_id": 31031,
+ "created": "2016-10-24T12:35:22.000Z",
+ "lastUpdated": "2021-07-25T11:13:51.897Z",
+ "keywords": [
+ {
+ "keyword": "Antequera",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Tornillo de El Torcal",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Formation rocheuse de Tornillo",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "12778428-n",
+ "07943025-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 31033,
+ "created": "2016-10-24T12:38:53.000Z",
+ "lastUpdated": "2021-07-25T11:08:39.691Z",
+ "keywords": [
+ {
+ "keyword": "tereré",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "12778428-n",
+ "07943025-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 31035,
+ "created": "2016-10-24T12:40:21.000Z",
+ "lastUpdated": "2021-07-25T11:07:32.992Z",
+ "keywords": [
+ {
+ "keyword": "maté",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07943025-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 31036,
+ "created": "2016-10-24T12:40:21.000Z",
+ "lastUpdated": "2021-07-25T11:07:29.822Z",
+ "keywords": [
+ {
+ "keyword": "maté",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 30993,
+ "created": "2016-09-08T12:19:21.000Z",
+ "lastUpdated": "2021-07-25T11:16:08.685Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuels"
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 30999,
+ "created": "2016-09-08T12:19:53.000Z",
+ "lastUpdated": "2021-07-25T11:16:05.746Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuels"
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n",
+ "00420921-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 31001,
+ "created": "2016-09-08T12:23:47.000Z",
+ "lastUpdated": "2021-07-25T11:16:02.911Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true,
+ "plural": "abus sexuels"
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false,
+ "plural": "maltraitances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "02571590-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 31039,
+ "created": "2016-10-24T12:41:46.000Z",
+ "lastUpdated": "2021-07-25T17:35:24.178Z",
+ "keywords": [
+ {
+ "keyword": "mérou",
+ "hasLocution": false,
+ "plural": "mérous",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01401573-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31041,
+ "created": "2016-10-24T12:45:38.000Z",
+ "lastUpdated": "2021-07-27T22:40:22.627Z",
+ "keywords": [
+ {
+ "keyword": "taper sur la table",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "taper du poing sur la table",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01401573-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31042,
+ "created": "2016-10-24T12:45:38.000Z",
+ "lastUpdated": "2021-07-27T22:40:05.426Z",
+ "keywords": [
+ {
+ "keyword": "taper sur la table",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "keyword": "taper du poing sur la table",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "meat"
+ ],
+ "synsets": [
+ "07685458-n",
+ "07677695-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 31043,
+ "created": "2016-10-24T12:45:39.000Z",
+ "lastUpdated": "2024-12-11T06:40:10.348Z",
+ "keywords": [
+ {
+ "keyword": "chicharron",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chicharrons"
+ },
+ {
+ "keyword": "beignet de porc",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "beignets de porc"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01401573-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31046,
+ "created": "2016-10-24T12:45:58.000Z",
+ "lastUpdated": "2021-07-27T22:39:20.500Z",
+ "keywords": [
+ {
+ "keyword": "taper sur la table",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "taper du poing sur la table",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "footwear"
+ ],
+ "synsets": [
+ "00420903-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 31053,
+ "created": "2016-10-24T13:19:07.000Z",
+ "lastUpdated": "2021-07-25T11:03:44.267Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "serrer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "être trop petit",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "footwear"
+ ],
+ "synsets": [
+ "00420903-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 31054,
+ "created": "2016-10-24T13:19:07.000Z",
+ "lastUpdated": "2021-07-25T11:03:40.733Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "serrer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "être trop petit",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "musical art"
+ ],
+ "synsets": [
+ "07100710-n"
+ ],
+ "tags": [
+ "music"
+ ],
+ "_id": 31064,
+ "created": "2016-10-24T13:23:55.000Z",
+ "lastUpdated": "2021-07-25T23:03:41.510Z",
+ "keywords": [
+ {
+ "keyword": "rythme",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "rythmes"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "tempo",
+ "plural": "tempos"
+ },
+ {
+ "keyword": " battement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "battements"
+ },
+ {
+ "keyword": "mesure",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "mesures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "musical art"
+ ],
+ "synsets": [
+ "07100710-n"
+ ],
+ "tags": [
+ "music"
+ ],
+ "_id": 31065,
+ "created": "2016-10-24T13:23:56.000Z",
+ "lastUpdated": "2021-07-25T23:02:32.966Z",
+ "keywords": [
+ {
+ "keyword": "rythme",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "rythmes"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "empos",
+ "keyword": "tempo"
+ },
+ {
+ "hasLocution": true,
+ "type": 2,
+ "keyword": "mesure",
+ "plural": "mesures"
+ },
+ {
+ "plural": "battements",
+ "keyword": "battement",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical art"
+ ],
+ "synsets": [
+ "07100710-n"
+ ],
+ "tags": [
+ "music"
+ ],
+ "_id": 31068,
+ "created": "2016-10-24T13:24:40.000Z",
+ "lastUpdated": "2021-07-25T23:00:40.613Z",
+ "keywords": [
+ {
+ "keyword": "rythme",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "rythmes"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "tempo",
+ "plural": "tempos"
+ },
+ {
+ "hasLocution": true,
+ "type": 2,
+ "keyword": "mesure",
+ "plural": "mesures"
+ },
+ {
+ "keyword": "battement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "battements"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work accident"
+ ],
+ "synsets": [
+ "01239505-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "work accident"
+ ],
+ "_id": 31069,
+ "created": "2016-10-24T13:24:40.000Z",
+ "lastUpdated": "2021-07-25T11:03:09.391Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se cogner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se cogner la tête",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "board game"
+ ],
+ "synsets": [
+ "00105359-n",
+ "01439648-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "game",
+ "board game"
+ ],
+ "_id": 31071,
+ "created": "2016-10-24T13:30:32.000Z",
+ "lastUpdated": "2021-07-24T19:28:27.646Z",
+ "keywords": [
+ {
+ "keyword": "lancer les dés",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire rouler les dés",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses"
+ ],
+ "synsets": [
+ "02128571-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 31073,
+ "created": "2016-10-24T13:31:25.000Z",
+ "lastUpdated": "2021-07-24T19:27:56.243Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir mauvais",
+ "hasLocution": true
+ },
+ {
+ "keyword": "puer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "elderly"
+ ],
+ "synsets": [
+ "15178747-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "elderly"
+ ],
+ "_id": 31075,
+ "created": "2016-10-24T13:33:49.000Z",
+ "lastUpdated": "2021-07-25T11:03:03.129Z",
+ "keywords": [
+ {
+ "keyword": "troisième âge",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "vieillesse",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "security and defense"
+ ],
+ "synsets": [
+ "03757248-n",
+ "02737222-n",
+ "04617008-n",
+ "04150205-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 31076,
+ "created": "2016-10-24T13:33:49.000Z",
+ "lastUpdated": "2021-07-27T22:34:51.334Z",
+ "keywords": [
+ {
+ "keyword": "contrôle de sécurité",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "contrôles de sécurité"
+ },
+ {
+ "keyword": "portique de détection",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "portiques de détection"
+ },
+ {
+ "keyword": "scanner de sécurité",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "scanners de sécurité"
+ },
+ {
+ "keyword": "scanner à rayons X",
+ "hasLocution": false,
+ "plural": "scanners à rayons X",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "security and defense"
+ ],
+ "synsets": [
+ "03757248-n",
+ "02737222-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 31078,
+ "created": "2016-10-24T13:37:47.000Z",
+ "lastUpdated": "2021-07-24T19:22:54.866Z",
+ "keywords": [
+ {
+ "keyword": "portique de détection",
+ "hasLocution": false,
+ "plural": "portiques de détection",
+ "type": 2
+ },
+ {
+ "keyword": "détecteur de métaux",
+ "plural": "détecteurs de métaux",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "meat"
+ ],
+ "synsets": [
+ "00620041-s",
+ "07660576-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 31080,
+ "created": "2016-10-24T13:51:35.000Z",
+ "lastUpdated": "2024-12-11T06:40:43.969Z",
+ "keywords": [
+ {
+ "keyword": "chicharron",
+ "hasLocution": false,
+ "plural": "chicharrons",
+ "type": 2
+ },
+ {
+ "keyword": "beignet de poulet",
+ "hasLocution": false,
+ "plural": "beignets de poulet",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "fish"
+ ],
+ "synsets": [
+ "00620041-s",
+ "07791351-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 31081,
+ "created": "2016-10-24T13:51:35.000Z",
+ "lastUpdated": "2024-12-11T06:40:19.083Z",
+ "keywords": [
+ {
+ "keyword": "chicharron",
+ "hasLocution": false,
+ "plural": "chicharrons",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "beignet de poisson",
+ "plural": "beignets de poisson"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish",
+ "seafood"
+ ],
+ "synsets": [
+ "00620041-s",
+ "07810135-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish",
+ "animal-based food",
+ "seafood"
+ ],
+ "_id": 31082,
+ "created": "2016-10-24T13:51:35.000Z",
+ "lastUpdated": "2024-12-11T06:40:57.902Z",
+ "keywords": [
+ {
+ "keyword": "beignets de crevettes",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "beignets de crevettes"
+ },
+ {
+ "keyword": "gambas panées",
+ "hasLocution": false,
+ "plural": "gambas panées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "security and defense"
+ ],
+ "synsets": [
+ "04617008-n",
+ "04150205-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 31088,
+ "created": "2016-10-24T13:56:32.000Z",
+ "lastUpdated": "2021-07-27T21:12:06.601Z",
+ "keywords": [
+ {
+ "keyword": "scanner de sécurité",
+ "hasLocution": false,
+ "plural": "scanners de sécurité",
+ "type": 2
+ },
+ {
+ "keyword": "scanner à rayons X",
+ "hasLocution": false,
+ "plural": "scanners à rayons X",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "02884435-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 31091,
+ "created": "2016-10-24T14:05:58.000Z",
+ "lastUpdated": "2021-07-27T21:11:20.280Z",
+ "keywords": [
+ {
+ "keyword": "boite en pyrex",
+ "hasLocution": false,
+ "plural": "boites en pyrex",
+ "type": 2
+ },
+ {
+ "keyword": "tupperware",
+ "hasLocution": false,
+ "plural": "tupperwares",
+ "type": 2
+ },
+ {
+ "keyword": "boite en plastique",
+ "hasLocution": false,
+ "plural": "boites en plastique",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "boite à repas",
+ "plural": "boites à repas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03971038-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 31093,
+ "created": "2016-10-24T14:07:28.000Z",
+ "lastUpdated": "2021-07-24T19:18:10.025Z",
+ "keywords": [
+ {
+ "keyword": "diabolo",
+ "hasLocution": false,
+ "plural": "diabolos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "02465209-s",
+ "14399166-n",
+ "14398981-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31095,
+ "created": "2016-10-24T16:51:49.000Z",
+ "lastUpdated": "2021-07-27T22:23:29.393Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nerfs",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nerveuse",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "nerveuses"
+ },
+ {
+ "keyword": "inquiète",
+ "hasLocution": false,
+ "plural": "inquiètes",
+ "type": 4
+ },
+ {
+ "keyword": "stressée",
+ "hasLocution": false,
+ "plural": "stressées",
+ "type": 4
+ },
+ {
+ "keyword": "trouille",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "angoissée",
+ "hasLocution": false,
+ "plural": "angoissées",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03042670-n",
+ "02925183-a"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 31048,
+ "created": "2016-10-24T12:46:47.000Z",
+ "lastUpdated": "2021-07-24T19:35:27.073Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de psychomotricité",
+ "hasLocution": false,
+ "plural": "salles de psychomotricité"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "03487335-n"
+ ],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 31050,
+ "created": "2016-10-24T12:47:28.000Z",
+ "lastUpdated": "2021-07-25T23:05:06.990Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hamac suspendu",
+ "hasLocution": false,
+ "plural": "hamacs suspendus"
+ },
+ {
+ "keyword": "hamac",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "hamacs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "footwear"
+ ],
+ "synsets": [
+ "00420903-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 31052,
+ "created": "2016-10-24T13:19:06.000Z",
+ "lastUpdated": "2021-07-25T11:03:46.417Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "serrer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "être trop petit",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "feeling",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02366035-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31099,
+ "created": "2016-10-24T16:57:35.000Z",
+ "lastUpdated": "2024-10-19T09:47:12.854Z",
+ "keywords": [
+ {
+ "keyword": "étonnée",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "surprise",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00114629-a",
+ "00115265-s",
+ "01811355-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31101,
+ "created": "2016-10-24T16:59:27.000Z",
+ "lastUpdated": "2021-07-24T19:16:11.780Z",
+ "keywords": [
+ {
+ "keyword": "en colère",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "fâchée",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "énervée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00166433-s",
+ "00166720-s",
+ "00759397-s",
+ "00166125-a",
+ "01795785-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31103,
+ "created": "2016-10-24T17:00:21.000Z",
+ "lastUpdated": "2021-07-24T19:15:40.699Z",
+ "keywords": [
+ {
+ "keyword": "distraite",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "égarée",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "inattentive",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "tête en l'air",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04079305-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 31105,
+ "created": "2016-10-24T17:03:27.000Z",
+ "lastUpdated": "2021-07-24T20:20:58.278Z",
+ "keywords": [
+ {
+ "keyword": "détendeur",
+ "type": 2,
+ "plural": "détendeurs",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04007857-n",
+ "03723874-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 31107,
+ "created": "2016-10-24T17:05:39.000Z",
+ "lastUpdated": "2021-07-25T11:01:53.365Z",
+ "keywords": [
+ {
+ "keyword": "manomètre",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "manomètres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "diving"
+ ],
+ "synsets": [
+ "04951589-n",
+ "03668213-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "diving"
+ ],
+ "_id": 31117,
+ "created": "2016-10-24T19:23:16.000Z",
+ "lastUpdated": "2021-07-24T20:09:20.407Z",
+ "keywords": [
+ {
+ "keyword": "gilet de plongée",
+ "hasLocution": false,
+ "plural": "gilets de plongée",
+ "type": 2
+ },
+ {
+ "keyword": "gilet stabilisateur",
+ "hasLocution": false,
+ "plural": "gilets stabilisateurs",
+ "type": 2
+ },
+ {
+ "keyword": "dispositif de contrôle de la flottabilité",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dispositifs de contrôle de la flottabilité"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "diving"
+ ],
+ "synsets": [
+ "04578374-n",
+ "02830790-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "diving"
+ ],
+ "_id": 31119,
+ "created": "2016-10-24T19:25:21.000Z",
+ "lastUpdated": "2021-07-24T19:06:06.043Z",
+ "keywords": [
+ {
+ "keyword": "ceinture de plomb",
+ "hasLocution": false,
+ "plural": "ceintures de plomb",
+ "type": 2
+ },
+ {
+ "keyword": "ceinture de plongée",
+ "hasLocution": false,
+ "plural": "ceintures de plongée",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "diving"
+ ],
+ "synsets": [
+ "01908286-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "diving"
+ ],
+ "_id": 31121,
+ "created": "2016-10-24T19:25:53.000Z",
+ "lastUpdated": "2021-07-24T19:03:41.226Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "flotter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "diving"
+ ],
+ "synsets": [
+ "01966678-v",
+ "07453884-n",
+ "02097668-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "diving"
+ ],
+ "_id": 31123,
+ "created": "2016-10-24T19:29:12.000Z",
+ "lastUpdated": "2021-07-24T19:03:32.160Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "plonger",
+ "hasLocution": true
+ },
+ {
+ "keyword": "palmer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00915018-v",
+ "01050811-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31125,
+ "created": "2016-11-23T11:07:54.000Z",
+ "lastUpdated": "2021-07-24T19:02:14.024Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "crier",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "hurler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00915018-v",
+ "01050811-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31127,
+ "created": "2016-11-23T11:08:55.000Z",
+ "lastUpdated": "2021-07-24T19:02:06.543Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "crier",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "hurler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform",
+ "monument"
+ ],
+ "synsets": [
+ "09382700-n",
+ "08510271-n",
+ "08682181-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "place",
+ "monument"
+ ],
+ "_id": 31129,
+ "created": "2016-11-23T11:13:59.000Z",
+ "lastUpdated": "2021-07-25T11:01:17.664Z",
+ "keywords": [
+ {
+ "keyword": "Antequera",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Torcal de Antequera",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform",
+ "monument"
+ ],
+ "synsets": [
+ "09281931-n",
+ "08510271-n",
+ "08682181-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "place",
+ "monument"
+ ],
+ "_id": 31131,
+ "created": "2016-11-23T11:16:03.000Z",
+ "lastUpdated": "2021-07-25T11:00:58.997Z",
+ "keywords": [
+ {
+ "keyword": "Antequera",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Peña de los Enamorados",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Le Rocher des Amoureux",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "prehistory"
+ ],
+ "synsets": [
+ "03224940-n",
+ "08510271-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "history",
+ "prehistory"
+ ],
+ "_id": 31133,
+ "created": "2016-11-23T11:19:18.000Z",
+ "lastUpdated": "2021-07-25T10:55:19.714Z",
+ "keywords": [
+ {
+ "keyword": "Antequera",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Tholos d'El Romeral",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "dolmen",
+ "hasLocution": false,
+ "plural": "dolmens",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "prehistory"
+ ],
+ "synsets": [
+ "03224940-n",
+ "08510271-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "history",
+ "prehistory"
+ ],
+ "_id": 31135,
+ "created": "2016-11-23T11:21:08.000Z",
+ "lastUpdated": "2021-07-25T10:52:37.711Z",
+ "keywords": [
+ {
+ "keyword": "Antequera",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Dolmen de Viera",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "dolmen",
+ "plural": "dolmens",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02128571-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31137,
+ "created": "2016-11-23T11:22:12.000Z",
+ "lastUpdated": "2021-07-24T19:01:46.283Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir mauvais",
+ "hasLocution": true
+ },
+ {
+ "keyword": "puer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02128571-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31138,
+ "created": "2016-11-23T11:22:12.000Z",
+ "lastUpdated": "2021-07-24T19:01:35.808Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir mauvais",
+ "hasLocution": true
+ },
+ {
+ "keyword": "puer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response"
+ ],
+ "synsets": [
+ "01829179-v",
+ "01191258-v",
+ "00711034-v",
+ "00905166-v",
+ "00905052-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response"
+ ],
+ "_id": 31141,
+ "created": "2016-11-23T11:23:01.000Z",
+ "lastUpdated": "2024-12-05T18:09:20.556Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Avoir la volonté de, souhaiter",
+ "keyword": "vouloir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "désirer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "souhaiter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 31143,
+ "created": "2016-11-23T11:24:13.000Z",
+ "lastUpdated": "2021-07-24T19:01:12.263Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating"
+ ],
+ "synsets": [
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 31144,
+ "created": "2016-11-23T11:24:13.000Z",
+ "lastUpdated": "2021-07-24T19:01:04.348Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire du patin à roulettes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "10007601-n",
+ "10100638-n",
+ "10643436-n"
+ ],
+ "tags": [
+ "person",
+ "family",
+ "core vocabulary"
+ ],
+ "_id": 31146,
+ "created": "2016-11-23T11:57:16.000Z",
+ "lastUpdated": "2021-07-24T19:00:57.869Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "père",
+ "hasLocution": true,
+ "plural": "pères"
+ },
+ {
+ "keyword": "papa",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "papas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10297825-n",
+ "10352098-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 31148,
+ "created": "2016-11-23T11:57:50.000Z",
+ "lastUpdated": "2021-07-24T19:00:35.240Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mère",
+ "hasLocution": true,
+ "plural": "mères"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating",
+ "verb"
+ ],
+ "synsets": [
+ "01988331-v",
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31150,
+ "created": "2016-11-23T12:00:03.000Z",
+ "lastUpdated": "2024-10-07T11:08:37.833Z",
+ "keywords": [
+ {
+ "keyword": "chuter en roller",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "tomber en patin à roulettes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "diving"
+ ],
+ "synsets": [
+ "04395830-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "diving"
+ ],
+ "_id": 31109,
+ "created": "2016-10-24T17:09:18.000Z",
+ "lastUpdated": "2021-07-24T20:18:42.105Z",
+ "keywords": [
+ {
+ "keyword": "bouteille de nitrox",
+ "hasLocution": false,
+ "plural": "bouteilles de nitrox",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "diving"
+ ],
+ "synsets": [
+ "04395830-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "diving"
+ ],
+ "_id": 31111,
+ "created": "2016-10-24T17:11:12.000Z",
+ "lastUpdated": "2021-07-24T20:18:15.623Z",
+ "keywords": [
+ {
+ "keyword": "bouteille",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "bouteilles"
+ },
+ {
+ "keyword": "bouteille d'air",
+ "hasLocution": false,
+ "plural": "bouteilles d'air",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04079305-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 31115,
+ "created": "2016-10-24T17:13:48.000Z",
+ "lastUpdated": "2021-07-25T11:01:49.617Z",
+ "keywords": [
+ {
+ "keyword": "détendeur",
+ "type": 2,
+ "plural": "détendeurs",
+ "hasLocution": false
+ },
+ {
+ "keyword": "octopus",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating",
+ "verb"
+ ],
+ "synsets": [
+ "01988331-v",
+ "01941081-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31151,
+ "created": "2016-11-23T12:00:03.000Z",
+ "lastUpdated": "2024-10-07T11:08:21.897Z",
+ "keywords": [
+ {
+ "keyword": "chuter en patin à glace",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "tomber en patin",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating",
+ "verb"
+ ],
+ "synsets": [
+ "01988331-v",
+ "01941393-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31152,
+ "created": "2016-11-23T12:00:03.000Z",
+ "lastUpdated": "2024-10-07T11:08:27.475Z",
+ "keywords": [
+ {
+ "keyword": "chuter en patin à roulettes",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "perdre l'équilibre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "tomber en roller",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "être déséquilibré",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "skating",
+ "verb"
+ ],
+ "synsets": [
+ "01988331-v",
+ "01941081-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "skating",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31153,
+ "created": "2016-11-23T12:00:03.000Z",
+ "lastUpdated": "2024-10-07T11:08:32.398Z",
+ "keywords": [
+ {
+ "keyword": "chuter en patin à glace",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "perdre l'équilibre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "tomber. en patin à glace",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "être déséquilibré",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology",
+ "verb"
+ ],
+ "synsets": [
+ "00062866-v"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31158,
+ "created": "2016-11-23T12:00:31.000Z",
+ "lastUpdated": "2021-07-24T18:58:11.821Z",
+ "keywords": [
+ {
+ "keyword": "éclore",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming",
+ "swimming pool",
+ "beach"
+ ],
+ "synsets": [
+ "01966872-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming",
+ "outdoor activity",
+ "swimming pool",
+ "beach"
+ ],
+ "_id": 31162,
+ "created": "2016-11-23T12:05:29.000Z",
+ "lastUpdated": "2021-07-24T18:57:43.711Z",
+ "keywords": [
+ {
+ "keyword": "plonger",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "circulatory system"
+ ],
+ "synsets": [
+ "09813271-n",
+ "06056059-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "circulatory system"
+ ],
+ "_id": 31170,
+ "created": "2016-11-23T12:11:12.000Z",
+ "lastUpdated": "2021-07-27T20:42:22.017Z",
+ "keywords": [
+ {
+ "keyword": "angiologue",
+ "hasLocution": false,
+ "plural": "angiologues",
+ "type": 2
+ },
+ {
+ "keyword": "chirurgienne vasculaire",
+ "hasLocution": false,
+ "plural": "chirurgiennes vasculaires",
+ "type": 2
+ },
+ {
+ "keyword": "angiologie",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "immune system"
+ ],
+ "synsets": [
+ "09803747-n",
+ "06055776-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "immune system"
+ ],
+ "_id": 31172,
+ "created": "2016-11-23T12:31:07.000Z",
+ "lastUpdated": "2021-07-25T10:51:08.956Z",
+ "keywords": [
+ {
+ "keyword": "allergologue",
+ "hasLocution": false,
+ "plural": "allergologues",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "immune system"
+ ],
+ "synsets": [
+ "09803747-n",
+ "06055776-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "immune system"
+ ],
+ "_id": 31174,
+ "created": "2016-11-23T12:32:02.000Z",
+ "lastUpdated": "2021-07-24T19:42:58.145Z",
+ "keywords": [
+ {
+ "keyword": "allergologue",
+ "hasLocution": false,
+ "plural": "allergologues",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "medical test"
+ ],
+ "synsets": [
+ "10030728-n",
+ "09874321-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 31176,
+ "created": "2016-11-23T12:43:10.000Z",
+ "lastUpdated": "2021-07-27T20:41:07.828Z",
+ "keywords": [
+ {
+ "keyword": "pathologiste",
+ "plural": "pathologistes",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "doctoresse de laboratoire",
+ "hasLocution": false,
+ "plural": "doctoresses de laboratoire",
+ "type": 2
+ },
+ {
+ "keyword": "médecin de laboratoire",
+ "hasLocution": false,
+ "plural": "médecins de laboratoire",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "medical test"
+ ],
+ "synsets": [
+ "10030728-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 31178,
+ "created": "2016-11-23T12:43:38.000Z",
+ "lastUpdated": "2021-07-26T13:46:22.639Z",
+ "keywords": [
+ {
+ "keyword": "pathologiste",
+ "hasLocution": false,
+ "plural": "pathologistes",
+ "type": 2
+ },
+ {
+ "keyword": "médecin de laboratoire",
+ "hasLocution": false,
+ "plural": "médecins de laboratoire",
+ "type": 2
+ },
+ {
+ "keyword": "médecin biologiste",
+ "hasLocution": false,
+ "plural": "médecins biologistes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14315592-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 31180,
+ "created": "2016-11-23T12:44:37.000Z",
+ "lastUpdated": "2021-07-24T18:56:46.244Z",
+ "keywords": [
+ {
+ "keyword": "fracture",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fractures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05592855-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 31182,
+ "created": "2016-11-23T12:47:43.000Z",
+ "lastUpdated": "2021-07-25T10:49:21.067Z",
+ "keywords": [
+ {
+ "keyword": "jointure",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jointures"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "election"
+ ],
+ "synsets": [
+ "08273889-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 31184,
+ "created": "2016-11-23T12:49:47.000Z",
+ "lastUpdated": "2021-07-24T18:55:58.559Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parti",
+ "hasLocution": true,
+ "plural": "partis"
+ },
+ {
+ "keyword": "parti politique",
+ "hasLocution": false,
+ "plural": "partis politiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "01827320-v",
+ "00859605-v",
+ "01817851-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31186,
+ "created": "2016-11-23T12:51:17.000Z",
+ "lastUpdated": "2021-07-25T10:48:41.393Z",
+ "keywords": [
+ {
+ "keyword": "réjouir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "se réjouir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "être enchanté",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00827309-v",
+ "00826456-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31188,
+ "created": "2016-11-23T12:52:12.000Z",
+ "lastUpdated": "2021-07-24T18:54:37.025Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "gronder",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "réprimander",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic concepts"
+ ],
+ "synsets": [
+ "01086845-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 31190,
+ "created": "2016-11-23T12:53:06.000Z",
+ "lastUpdated": "2021-07-24T18:54:33.494Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "plein",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "texture"
+ ],
+ "synsets": [
+ "01027321-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "texture"
+ ],
+ "_id": 31191,
+ "created": "2016-11-23T12:54:49.000Z",
+ "lastUpdated": "2021-07-24T18:54:29.271Z",
+ "keywords": [
+ {
+ "keyword": "rigide",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "raide",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00456623-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 31193,
+ "created": "2016-11-23T12:56:05.000Z",
+ "lastUpdated": "2021-07-27T20:17:50.230Z",
+ "keywords": [
+ {
+ "keyword": "1, 2, 3, soleil",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "jeu des statues",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "jeux des statues"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00755767-n",
+ "02579332-v",
+ "02581808-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "core vocabulary"
+ ],
+ "_id": 31195,
+ "created": "2016-11-23T13:00:44.000Z",
+ "lastUpdated": "2021-07-25T10:48:20.466Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tromper",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ruser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "ruse",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "ruses"
+ },
+ {
+ "keyword": "blague",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "blagues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "07588423-n"
+ ],
+ "tags": [],
+ "_id": 31197,
+ "created": "2016-11-23T13:03:15.000Z",
+ "lastUpdated": "2021-07-24T18:53:09.730Z",
+ "keywords": [
+ {
+ "keyword": "surgelés",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "nourriture surgelée",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "telecommunication",
+ "signaling system",
+ "mass media",
+ "workplace"
+ ],
+ "synsets": [
+ "04051199-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "tertiary sector",
+ "telecommunication",
+ "communication",
+ "signaling system",
+ "mass media",
+ "workplace"
+ ],
+ "_id": 31199,
+ "created": "2016-11-23T13:06:25.000Z",
+ "lastUpdated": "2024-12-08T07:09:16.855Z",
+ "keywords": [
+ {
+ "keyword": "radio",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "radios"
+ },
+ {
+ "keyword": "station de radio",
+ "hasLocution": false,
+ "plural": "stations de radio",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology"
+ ],
+ "synsets": [
+ "01461483-n"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology"
+ ],
+ "_id": 31202,
+ "created": "2016-11-23T13:08:21.000Z",
+ "lastUpdated": "2021-07-24T18:44:20.028Z",
+ "keywords": [
+ {
+ "keyword": "embryon",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "embryons"
+ },
+ {
+ "keyword": "oeuf fécondé",
+ "hasLocution": false,
+ "plural": "oeufs fécondés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "02115945-a",
+ "02879899-n"
+ ],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 31204,
+ "created": "2016-11-23T13:11:18.000Z",
+ "lastUpdated": "2021-07-25T10:47:53.955Z",
+ "keywords": [
+ {
+ "keyword": "bouteilles sensorielles",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "bouteille sensorielle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bouteilles sensorielles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01983915-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 31164,
+ "created": "2016-11-23T12:07:03.000Z",
+ "lastUpdated": "2021-07-27T22:33:12.286Z",
+ "keywords": [
+ {
+ "keyword": "atterrir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "arriver",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "débarquer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "animal physiology"
+ ],
+ "synsets": [
+ "01983915-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "animal physiology"
+ ],
+ "_id": 31165,
+ "created": "2016-11-23T12:07:03.000Z",
+ "lastUpdated": "2021-07-27T20:49:06.436Z",
+ "keywords": [
+ {
+ "keyword": "atterrir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "arriver",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "débarquer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "circulatory system"
+ ],
+ "synsets": [
+ "09813271-n",
+ "06056059-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "circulatory system"
+ ],
+ "_id": 31168,
+ "created": "2016-11-23T12:10:42.000Z",
+ "lastUpdated": "2021-07-27T20:43:03.702Z",
+ "keywords": [
+ {
+ "keyword": "angiologue",
+ "hasLocution": false,
+ "plural": "angiologues",
+ "type": 2
+ },
+ {
+ "keyword": "chirurgien vasculaire",
+ "hasLocution": false,
+ "plural": "chirurgiens vasculaires",
+ "type": 2
+ },
+ {
+ "keyword": "angiologie",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "polite set expression"
+ ],
+ "synsets": [
+ "07243631-n",
+ "01211287-n",
+ "00893836-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 31206,
+ "created": "2016-11-23T13:11:54.000Z",
+ "lastUpdated": "2021-07-24T18:43:19.814Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "merci",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "01818782-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 31209,
+ "created": "2017-02-09T15:01:21.000Z",
+ "lastUpdated": "2021-07-24T18:43:12.659Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "consoler",
+ "hasLocution": false
+ },
+ {
+ "keyword": "réconforter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "04516244-n",
+ "10104064-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 31213,
+ "created": "2017-02-28T07:00:28.000Z",
+ "lastUpdated": "2021-07-27T02:27:25.064Z",
+ "keywords": [
+ {
+ "keyword": "fille en sous-vêtements",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "filles en sous-vêtements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "death",
+ "signaling system"
+ ],
+ "synsets": [
+ "03791032-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "event",
+ "social event",
+ "death",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 31215,
+ "created": "2017-02-28T07:03:11.000Z",
+ "lastUpdated": "2021-07-25T10:47:34.812Z",
+ "keywords": [
+ {
+ "keyword": "morgue",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "morgues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "04516244-n",
+ "10305010-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 31217,
+ "created": "2017-02-28T07:08:28.000Z",
+ "lastUpdated": "2021-07-27T02:27:19.658Z",
+ "keywords": [
+ {
+ "keyword": "garçon en sous-vêtements",
+ "hasLocution": false,
+ "plural": "garçons en sous-vêtements",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "karate"
+ ],
+ "synsets": [
+ "00828058-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "karate"
+ ],
+ "_id": 31228,
+ "created": "2017-03-03T03:12:17.000Z",
+ "lastUpdated": "2021-07-25T10:44:55.485Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "karateka",
+ "hasLocution": true,
+ "plural": "karatekas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "karate"
+ ],
+ "synsets": [
+ "00828058-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "karate"
+ ],
+ "_id": 31230,
+ "created": "2017-03-03T03:15:34.000Z",
+ "lastUpdated": "2021-07-25T17:35:03.510Z",
+ "keywords": [
+ {
+ "keyword": "rei",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "karaté",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "salut",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "karate"
+ ],
+ "synsets": [
+ "00828058-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "karate"
+ ],
+ "_id": 31231,
+ "created": "2017-03-03T03:15:34.000Z",
+ "lastUpdated": "2021-07-25T10:43:09.274Z",
+ "keywords": [
+ {
+ "keyword": "rei",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "karaté",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "salut",
+ "type": 2,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "karate"
+ ],
+ "synsets": [
+ "00828058-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "karate"
+ ],
+ "_id": 31234,
+ "created": "2017-03-03T03:16:06.000Z",
+ "lastUpdated": "2021-07-24T18:39:28.130Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "karateka",
+ "hasLocution": true,
+ "plural": "karatékas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "karate"
+ ],
+ "synsets": [
+ "00828058-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "karate"
+ ],
+ "_id": 31236,
+ "created": "2017-03-03T03:17:47.000Z",
+ "lastUpdated": "2021-07-25T10:43:27.976Z",
+ "keywords": [
+ {
+ "keyword": "seiza",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "karaté",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "position à genoux",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sportswear",
+ "karate"
+ ],
+ "synsets": [
+ "00828058-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sportswear",
+ "clothing",
+ "karate"
+ ],
+ "_id": 31238,
+ "created": "2017-03-03T03:19:45.000Z",
+ "lastUpdated": "2021-07-25T17:34:59.095Z",
+ "keywords": [
+ {
+ "keyword": "karategi",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "karategis"
+ },
+ {
+ "keyword": "kimono de karaté",
+ "hasLocution": false,
+ "plural": "kimonos de karaté",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "karate"
+ ],
+ "synsets": [
+ "00828058-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "karate"
+ ],
+ "_id": 31240,
+ "created": "2017-03-03T03:22:44.000Z",
+ "lastUpdated": "2021-07-26T13:41:42.914Z",
+ "keywords": [
+ {
+ "keyword": "kata",
+ "hasLocution": false,
+ "plural": "katas",
+ "type": 2
+ },
+ {
+ "keyword": "karaté",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "karatés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport rules",
+ "professional",
+ "karate"
+ ],
+ "synsets": [
+ "00828058-n",
+ "10534022-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport rules",
+ "work",
+ "professional",
+ "karate"
+ ],
+ "_id": 31242,
+ "created": "2017-03-03T03:25:54.000Z",
+ "lastUpdated": "2021-07-24T18:36:41.011Z",
+ "keywords": [
+ {
+ "keyword": "arbitre de karaté",
+ "hasLocution": false,
+ "plural": "arbitres de karaté",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport rules",
+ "professional",
+ "karate"
+ ],
+ "synsets": [
+ "00828058-n",
+ "10534022-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport rules",
+ "work",
+ "professional",
+ "karate"
+ ],
+ "_id": 31244,
+ "created": "2017-03-03T03:27:52.000Z",
+ "lastUpdated": "2021-07-24T18:35:28.164Z",
+ "keywords": [
+ {
+ "keyword": "arbitre de karaté",
+ "hasLocution": false,
+ "plural": "arbitres de karaté",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "karate"
+ ],
+ "synsets": [
+ "00828058-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "karate"
+ ],
+ "_id": 31246,
+ "created": "2017-03-03T03:30:15.000Z",
+ "lastUpdated": "2021-07-25T17:34:53.277Z",
+ "keywords": [
+ {
+ "keyword": "kumite",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "combat",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "combats"
+ },
+ {
+ "keyword": "karaté kumite",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "karate"
+ ],
+ "synsets": [
+ "04201170-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "karate"
+ ],
+ "_id": 31248,
+ "created": "2017-03-03T03:37:05.000Z",
+ "lastUpdated": "2021-07-26T13:41:05.286Z",
+ "keywords": [
+ {
+ "keyword": "protège-tibias de karaté",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "protège-tibias de karaté"
+ },
+ {
+ "keyword": "protège-tibias",
+ "hasLocution": false,
+ "plural": "protège-tibias",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child",
+ "routine"
+ ],
+ "synsets": [
+ "00460031-s"
+ ],
+ "tags": [
+ "person",
+ "child",
+ "routine"
+ ],
+ "_id": 31250,
+ "created": "2017-03-03T03:39:00.000Z",
+ "lastUpdated": "2021-07-24T18:31:14.071Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "nu",
+ "hasLocution": true
+ },
+ {
+ "keyword": "dénudé",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "teenager",
+ "routine"
+ ],
+ "synsets": [
+ "00460031-s"
+ ],
+ "tags": [
+ "person",
+ "teenager",
+ "routine"
+ ],
+ "_id": 31251,
+ "created": "2017-03-03T03:39:00.000Z",
+ "lastUpdated": "2021-07-24T18:31:06.799Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "nu",
+ "hasLocution": true
+ },
+ {
+ "keyword": "dénudé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "teenager",
+ "routine"
+ ],
+ "synsets": [
+ "00460031-s"
+ ],
+ "tags": [
+ "person",
+ "teenager",
+ "routine"
+ ],
+ "_id": 31254,
+ "created": "2017-03-03T03:39:36.000Z",
+ "lastUpdated": "2021-07-24T18:30:56.173Z",
+ "keywords": [
+ {
+ "keyword": "nue",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "dénudée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult",
+ "routine"
+ ],
+ "synsets": [
+ "00460031-s"
+ ],
+ "tags": [
+ "person",
+ "adult",
+ "routine"
+ ],
+ "_id": 31255,
+ "created": "2017-03-03T03:39:36.000Z",
+ "lastUpdated": "2021-07-24T18:30:29.732Z",
+ "keywords": [
+ {
+ "keyword": "nue",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "dénudée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "04516244-n",
+ "10305010-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 31258,
+ "created": "2017-03-03T03:44:05.000Z",
+ "lastUpdated": "2021-07-27T02:27:14.020Z",
+ "keywords": [
+ {
+ "keyword": "garçon en sous-vêtement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "garçons en sous-vêtement"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "04516244-n",
+ "10104064-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 31260,
+ "created": "2017-03-03T03:44:30.000Z",
+ "lastUpdated": "2021-07-27T02:27:01.237Z",
+ "keywords": [
+ {
+ "keyword": "fille en sous-vêtements",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "filles en sous-vêtements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult"
+ ],
+ "synsets": [
+ "04516244-n",
+ "10306910-n"
+ ],
+ "tags": [
+ "person",
+ "adult"
+ ],
+ "_id": 31262,
+ "created": "2017-03-03T03:44:51.000Z",
+ "lastUpdated": "2021-07-27T02:26:47.248Z",
+ "keywords": [
+ {
+ "keyword": "homme en sous-vêtements",
+ "hasLocution": false,
+ "plural": "hommes en sous-vêtements",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "01019109-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 31219,
+ "created": "2017-02-28T07:09:53.000Z",
+ "lastUpdated": "2021-07-26T13:43:04.578Z",
+ "keywords": [
+ {
+ "keyword": "tri",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tris"
+ },
+ {
+ "keyword": "triage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "triages"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14081310-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 31224,
+ "created": "2017-02-28T13:19:45.000Z",
+ "lastUpdated": "2021-07-25T10:46:47.198Z",
+ "keywords": [
+ {
+ "keyword": "maladie cœliaque",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "maladies cœliaques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00755767-n"
+ ],
+ "tags": [
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31226,
+ "created": "2017-02-28T15:57:06.000Z",
+ "lastUpdated": "2021-07-25T10:45:23.421Z",
+ "keywords": [
+ {
+ "keyword": "ruse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ruses"
+ },
+ {
+ "keyword": "blague",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "blagues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult",
+ "routine"
+ ],
+ "synsets": [
+ "00460031-s"
+ ],
+ "tags": [
+ "person",
+ "adult",
+ "routine"
+ ],
+ "_id": 31264,
+ "created": "2017-03-03T03:45:21.000Z",
+ "lastUpdated": "2021-10-14T15:32:33.103Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "nu",
+ "hasLocution": true
+ },
+ {
+ "keyword": "dénudé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child",
+ "routine"
+ ],
+ "synsets": [
+ "00460031-s"
+ ],
+ "tags": [
+ "person",
+ "child",
+ "routine"
+ ],
+ "_id": 31266,
+ "created": "2017-03-03T03:45:43.000Z",
+ "lastUpdated": "2021-10-14T15:31:30.304Z",
+ "keywords": [
+ {
+ "keyword": "nue",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "dénudée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "teenager"
+ ],
+ "synsets": [
+ "04516244-n",
+ "10306910-n"
+ ],
+ "tags": [
+ "person",
+ "teenager"
+ ],
+ "_id": 31268,
+ "created": "2017-03-03T03:46:11.000Z",
+ "lastUpdated": "2021-07-26T13:39:04.518Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "hommes en slip",
+ "keyword": "homme en slip"
+ },
+ {
+ "keyword": "garçon en sous-vêtement",
+ "hasLocution": false,
+ "plural": "garçons en sous-vêtement"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "homme en sous-vêtement",
+ "plural": "hommes en sous-vêtement"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "karate"
+ ],
+ "synsets": [
+ "02888703-n",
+ "00828058-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "karate"
+ ],
+ "_id": 31269,
+ "created": "2017-03-03T03:48:27.000Z",
+ "lastUpdated": "2021-07-24T18:28:26.187Z",
+ "keywords": [
+ {
+ "keyword": "gants de karaté",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime"
+ ],
+ "synsets": [
+ "02326737-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime"
+ ],
+ "_id": 31271,
+ "created": "2017-03-03T03:53:50.000Z",
+ "lastUpdated": "2021-07-24T18:27:46.977Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "voler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "dérober",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "00622591-a",
+ "00730273-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 31278,
+ "created": "2017-03-03T09:38:31.000Z",
+ "lastUpdated": "2021-07-24T19:41:32.081Z",
+ "keywords": [
+ {
+ "keyword": "coopération",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "coopérations"
+ },
+ {
+ "keyword": "classe coopérative",
+ "hasLocution": false,
+ "plural": "classes coopératives",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "04149040-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 31284,
+ "created": "2017-03-03T09:43:04.000Z",
+ "lastUpdated": "2021-07-24T19:41:28.140Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balance",
+ "hasLocution": true,
+ "plural": "balances"
+ },
+ {
+ "keyword": "pèse-personne",
+ "hasLocution": false,
+ "plural": "pèse-personnes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical features"
+ ],
+ "synsets": [
+ "05144430-n"
+ ],
+ "tags": [
+ "human body",
+ "physical features"
+ ],
+ "_id": 31286,
+ "created": "2017-03-03T09:44:22.000Z",
+ "lastUpdated": "2021-07-25T10:40:28.974Z",
+ "keywords": [
+ {
+ "keyword": "taille",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "hauteur",
+ "type": 2,
+ "plural": "hauteurs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical features"
+ ],
+ "synsets": [
+ "05144430-n"
+ ],
+ "tags": [
+ "human body",
+ "physical features"
+ ],
+ "_id": 31287,
+ "created": "2017-03-03T09:44:22.000Z",
+ "lastUpdated": "2021-07-25T10:40:11.245Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "taille",
+ "hasLocution": true
+ },
+ {
+ "keyword": "hauteur",
+ "type": 2,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "02718756-a",
+ "06689161-n",
+ "00200556-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 31290,
+ "created": "2017-03-03T09:47:31.000Z",
+ "lastUpdated": "2021-07-26T13:32:40.363Z",
+ "keywords": [
+ {
+ "keyword": "adaptation de programme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "adaptations de programme"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "programme adapté",
+ "plural": "programmes adaptés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "06689161-n",
+ "13448251-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 31291,
+ "created": "2017-03-03T09:47:31.000Z",
+ "lastUpdated": "2021-07-26T13:32:01.318Z",
+ "keywords": [
+ {
+ "keyword": "adaptation de programme",
+ "plural": "adaptations de programme",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "programme adapté",
+ "hasLocution": false,
+ "plural": "programmes adaptés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "07384204-n",
+ "06689161-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 31294,
+ "created": "2017-03-03T09:51:38.000Z",
+ "lastUpdated": "2021-07-26T13:31:41.062Z",
+ "keywords": [
+ {
+ "keyword": "adaptation de programme",
+ "hasLocution": false,
+ "plural": "adaptations de programme",
+ "type": 2
+ },
+ {
+ "keyword": "programme adapté",
+ "hasLocution": false,
+ "plural": "programmes adaptés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational methodology"
+ ],
+ "synsets": [
+ "05669245-n"
+ ],
+ "tags": [
+ "education",
+ "methodology"
+ ],
+ "_id": 31297,
+ "created": "2017-03-03T09:54:53.000Z",
+ "lastUpdated": "2021-07-25T10:38:40.935Z",
+ "keywords": [
+ {
+ "keyword": "méthodologie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "méthodologies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "15170546-n",
+ "05836008-n",
+ "00656128-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 31299,
+ "created": "2017-03-03T09:57:37.000Z",
+ "lastUpdated": "2021-07-26T13:31:07.298Z",
+ "keywords": [
+ {
+ "keyword": "stimulation des jeunes enfants",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "intervention précoce",
+ "plural": "interventions précoces"
+ },
+ {
+ "keyword": "stimulation précoce",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "stimulations précoces"
+ },
+ {
+ "keyword": "action médico-sociale précoce",
+ "hasLocution": false,
+ "plural": "actions médico-sociales précoces",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "06689161-n",
+ "07384204-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 31301,
+ "created": "2017-03-03T09:58:36.000Z",
+ "lastUpdated": "2021-07-26T13:27:54.398Z",
+ "keywords": [
+ {
+ "keyword": "adaptations de programme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "adaptations de programme"
+ },
+ {
+ "keyword": "programme adapté",
+ "hasLocution": false,
+ "plural": "programmes adaptés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "05765728-n",
+ "03042670-n",
+ "05668782-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 31305,
+ "created": "2017-03-03T10:05:40.000Z",
+ "lastUpdated": "2021-07-26T13:25:54.642Z",
+ "keywords": [
+ {
+ "keyword": "mesures d'intervention éducative",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mesures d'intervention éducative"
+ },
+ {
+ "type": 2,
+ "keyword": "mesures d'assistance éducative",
+ "hasLocution": false,
+ "plural": "mesures d'assistance éducative"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "02710542-n",
+ "01344543-s"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 31306,
+ "created": "2017-03-08T04:27:12.000Z",
+ "lastUpdated": "2021-07-28T15:27:12.631Z",
+ "keywords": [
+ {
+ "keyword": "analgésique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "analgésiques"
+ },
+ {
+ "keyword": "anti-douleur",
+ "hasLocution": false,
+ "plural": "anti-douleurs",
+ "type": 2
+ },
+ {
+ "keyword": "calmant",
+ "type": 2,
+ "plural": "calmants",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element",
+ "rome",
+ "greece"
+ ],
+ "synsets": [
+ "03077981-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element",
+ "history",
+ "civilization",
+ "Rome",
+ "Greece"
+ ],
+ "_id": 31308,
+ "created": "2017-03-08T04:30:09.000Z",
+ "lastUpdated": "2021-07-25T12:07:33.208Z",
+ "keywords": [
+ {
+ "keyword": "colonne",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "colonnes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00531862-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31310,
+ "created": "2017-03-09T09:41:17.000Z",
+ "lastUpdated": "2021-07-25T10:36:10.258Z",
+ "keywords": [
+ {
+ "keyword": "calme",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "tranquille",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "serein",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01989043-v",
+ "02501514-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 31312,
+ "created": "2017-03-09T11:04:18.000Z",
+ "lastUpdated": "2021-07-24T18:19:44.205Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'allonger sur le dos",
+ "hasLocution": false
+ },
+ {
+ "keyword": "être couché",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02164320-v",
+ "02164607-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31314,
+ "created": "2017-05-12T11:15:17.000Z",
+ "lastUpdated": "2021-07-24T18:19:26.721Z",
+ "keywords": [
+ {
+ "keyword": "clignoter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02888240-a",
+ "04085686-n",
+ "01277535-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 31316,
+ "created": "2017-05-12T11:28:14.000Z",
+ "lastUpdated": "2021-07-26T13:18:47.457Z",
+ "keywords": [
+ {
+ "keyword": "port-à-cath",
+ "hasLocution": false,
+ "plural": "port-à-caths",
+ "type": 2
+ },
+ {
+ "keyword": "chambre sous-cutanée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chambres sous-cutanées"
+ },
+ {
+ "keyword": "chambre implantable",
+ "hasLocution": false,
+ "plural": "chambres implantables",
+ "type": 2
+ },
+ {
+ "keyword": "PAC",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "PACs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02888240-a",
+ "04085686-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 31317,
+ "created": "2017-05-12T11:28:14.000Z",
+ "lastUpdated": "2021-07-26T13:18:35.845Z",
+ "keywords": [
+ {
+ "keyword": "port-à-cath",
+ "hasLocution": false,
+ "plural": "port-à-caths",
+ "type": 2
+ },
+ {
+ "keyword": "chambre sous-cutanée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chambres sous-cutanées"
+ },
+ {
+ "keyword": "chambre implantable",
+ "plural": "chambres implantables",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "PAC",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "PACs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime"
+ ],
+ "synsets": [
+ "01234216-v",
+ "00069650-v",
+ "01232914-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime"
+ ],
+ "_id": 31273,
+ "created": "2017-03-03T03:55:22.000Z",
+ "lastUpdated": "2021-07-24T18:27:36.974Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "blesser",
+ "hasLocution": false
+ },
+ {
+ "keyword": "agresser",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "poignarder",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "karate"
+ ],
+ "synsets": [
+ "00828058-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "karate"
+ ],
+ "_id": 31275,
+ "created": "2017-03-03T03:57:41.000Z",
+ "lastUpdated": "2021-07-26T13:35:42.670Z",
+ "keywords": [
+ {
+ "keyword": "tatami",
+ "hasLocution": false,
+ "plural": "tatamis",
+ "type": 2
+ },
+ {
+ "keyword": "dojo",
+ "hasLocution": false,
+ "plural": "dojos",
+ "type": 2
+ },
+ {
+ "keyword": "dojo de karaté",
+ "hasLocution": false,
+ "plural": "dojos de karaté",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14046845-n",
+ "10228349-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 31276,
+ "created": "2017-03-03T04:12:09.000Z",
+ "lastUpdated": "2021-07-24T19:41:35.680Z",
+ "keywords": [
+ {
+ "keyword": "insomnie",
+ "hasLocution": false,
+ "plural": "insomnies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "04085686-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 31318,
+ "created": "2017-05-12T11:28:14.000Z",
+ "lastUpdated": "2021-07-26T13:18:22.515Z",
+ "keywords": [
+ {
+ "keyword": "port-à-cath",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "port-à-caths"
+ },
+ {
+ "keyword": "chambre sous-cutanée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chambres sous-cutanées"
+ },
+ {
+ "keyword": "chambre implantable",
+ "hasLocution": false,
+ "plural": "chambres implantables",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "PAC",
+ "plural": "PACs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment",
+ "medical procedure"
+ ],
+ "synsets": [
+ "00089076-v",
+ "02888240-a",
+ "04085686-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment",
+ "medical procedure"
+ ],
+ "_id": 31319,
+ "created": "2017-05-12T11:28:14.000Z",
+ "lastUpdated": "2021-07-26T13:16:46.645Z",
+ "keywords": [
+ {
+ "keyword": "port-à-cath",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "port-à-caths"
+ },
+ {
+ "keyword": "chambre sous-cutanée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chambres sous-cutanées"
+ },
+ {
+ "keyword": "chambre implantable",
+ "plural": "chambres implantables",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "PAC",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "PACs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adult",
+ "special education"
+ ],
+ "synsets": [
+ "10178349-n",
+ "01022875-s"
+ ],
+ "tags": [
+ "person",
+ "adult",
+ "education",
+ "special education"
+ ],
+ "_id": 31324,
+ "created": "2017-05-12T11:32:14.000Z",
+ "lastUpdated": "2021-07-24T17:10:26.071Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "handicap moteur",
+ "hasLocution": true,
+ "plural": "handicaps moteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "transport services"
+ ],
+ "synsets": [
+ "08651532-n",
+ "08656633-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "work",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 31326,
+ "created": "2017-05-12T11:33:24.000Z",
+ "lastUpdated": "2021-07-24T17:10:06.575Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "port",
+ "hasLocution": true,
+ "plural": "ports"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04068793-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 31328,
+ "created": "2017-05-12T11:36:40.000Z",
+ "lastUpdated": "2021-07-26T13:15:35.462Z",
+ "keywords": [
+ {
+ "keyword": "réception",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "réceptions"
+ },
+ {
+ "keyword": "guichet d' accueil",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "guichets d' accueil"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "bureau d'information",
+ "plural": "bureaux d'information",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "06823648-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 31335,
+ "created": "2017-05-12T11:41:50.000Z",
+ "lastUpdated": "2021-07-26T13:23:16.722Z",
+ "keywords": [
+ {
+ "keyword": "base 10",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bases 10"
+ },
+ {
+ "keyword": "numération décimale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "numérations décimales"
+ },
+ {
+ "keyword": "dizaines",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dizaines"
+ },
+ {
+ "keyword": "système de numération décimale",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "base dix",
+ "hasLocution": false,
+ "plural": "bases dix",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "06823648-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 31336,
+ "created": "2017-05-12T11:41:50.000Z",
+ "lastUpdated": "2021-07-26T13:13:26.306Z",
+ "keywords": [
+ {
+ "keyword": " base 10",
+ "hasLocution": false,
+ "type": 2,
+ "plural": " bases 10"
+ },
+ {
+ "keyword": "numération décimale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "numérations décimales"
+ },
+ {
+ "keyword": "unités",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "unités"
+ },
+ {
+ "keyword": "système de numération décimale",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "base dix",
+ "hasLocution": false,
+ "plural": "bases dix"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "06823648-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 31337,
+ "created": "2017-05-12T11:41:50.000Z",
+ "lastUpdated": "2021-07-26T13:12:34.820Z",
+ "keywords": [
+ {
+ "keyword": "base 10",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bases 0"
+ },
+ {
+ "keyword": "numération décimale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "numérations décimales"
+ },
+ {
+ "keyword": "système de numération décimale",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "base dix",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bases dix"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "06823648-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 31338,
+ "created": "2017-05-12T11:41:50.000Z",
+ "lastUpdated": "2021-07-26T13:22:52.026Z",
+ "keywords": [
+ {
+ "keyword": "base 10",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bases 10"
+ },
+ {
+ "keyword": "numération décimale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "numérations décimales"
+ },
+ {
+ "keyword": "système de numérotation décimale",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "base dix",
+ "hasLocution": false,
+ "plural": "bases dix",
+ "type": 2
+ },
+ {
+ "keyword": "mille",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "milles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "02710477-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 31344,
+ "created": "2017-05-12T11:47:36.000Z",
+ "lastUpdated": "2021-07-24T17:08:42.275Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "peser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "01188961-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 31346,
+ "created": "2017-05-12T11:49:45.000Z",
+ "lastUpdated": "2021-07-26T12:47:25.641Z",
+ "keywords": [
+ {
+ "keyword": "têter avec un cathéter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "keyword": "têter avec une sonde",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "14882788-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 31348,
+ "created": "2017-05-12T11:54:04.000Z",
+ "lastUpdated": "2021-07-25T10:30:14.751Z",
+ "keywords": [
+ {
+ "keyword": "déchets toxiques",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "déchets d'activités de soin",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "00324358-n",
+ "04028192-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 31350,
+ "created": "2017-05-12T11:58:13.000Z",
+ "lastUpdated": "2021-07-25T10:26:00.049Z",
+ "keywords": [
+ {
+ "keyword": "pompe à perfusion",
+ "hasLocution": false,
+ "plural": "pompes à perfusion",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "medical device"
+ ],
+ "synsets": [
+ "00324358-n",
+ "04028192-n",
+ "01045759-v",
+ "06818956-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 31352,
+ "created": "2017-05-12T11:59:40.000Z",
+ "lastUpdated": "2021-07-25T15:08:54.511Z",
+ "keywords": [
+ {
+ "keyword": "sonner",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "retentir",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "biper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "13499728-n",
+ "01353852-v",
+ "00635519-n",
+ "05750496-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 31354,
+ "created": "2017-05-12T12:01:30.000Z",
+ "lastUpdated": "2021-07-25T09:58:36.130Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "analyse de sang",
+ "hasLocution": true,
+ "plural": "analyses de sang"
+ },
+ {
+ "keyword": "cathéter",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cathéters"
+ },
+ {
+ "keyword": "examen de sang",
+ "hasLocution": false,
+ "plural": "examens de sang",
+ "type": 2
+ },
+ {
+ "keyword": "port à cath",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ports à cath"
+ },
+ {
+ "keyword": "chambre implantable",
+ "hasLocution": false,
+ "plural": "chambres implantables",
+ "type": 2
+ },
+ {
+ "keyword": "PAC",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "PACs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool"
+ ],
+ "synsets": [
+ "01357376-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool"
+ ],
+ "_id": 31356,
+ "created": "2017-05-12T12:03:17.000Z",
+ "lastUpdated": "2021-07-24T17:08:05.032Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "connecter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "relier",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04557205-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 31358,
+ "created": "2017-05-12T12:05:33.000Z",
+ "lastUpdated": "2021-07-25T09:52:55.201Z",
+ "keywords": [
+ {
+ "keyword": "chambre d'hôpital",
+ "hasLocution": false,
+ "plural": "chambres d'hôpital",
+ "type": 2
+ },
+ {
+ "keyword": "box d'hôpital",
+ "hasLocution": false,
+ "plural": "boxes d'hôpital",
+ "type": 2
+ },
+ {
+ "keyword": "infirmerie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "infirmeries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "06073656-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 31360,
+ "created": "2017-05-12T12:08:24.000Z",
+ "lastUpdated": "2021-07-25T09:49:51.202Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "matériel orthopédique",
+ "hasLocution": false,
+ "plural": "matériels orthopédiques"
+ },
+ {
+ "keyword": "aides de mobilité",
+ "hasLocution": false,
+ "plural": "aides de mobilité",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "costume"
+ ],
+ "synsets": [
+ "02864727-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 31362,
+ "created": "2017-05-12T12:14:16.000Z",
+ "lastUpdated": "2024-12-12T15:24:03.579Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corsage",
+ "hasLocution": false,
+ "plural": "corsages"
+ },
+ {
+ "keyword": "corselet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "corselets"
+ },
+ {
+ "keyword": "casaquin",
+ "hasLocution": false,
+ "plural": "casaquins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "02959203-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 31364,
+ "created": "2017-05-12T12:15:02.000Z",
+ "lastUpdated": "2021-07-25T10:19:31.112Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "châle",
+ "type": 2,
+ "plural": "châles"
+ },
+ {
+ "keyword": "foulard",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "foulards"
+ },
+ {
+ "keyword": "pèlerine",
+ "hasLocution": false,
+ "plural": "pèlerines",
+ "type": 2
+ },
+ {
+ "keyword": "fichu",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "fichus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "02857998-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 31366,
+ "created": "2017-05-12T12:15:59.000Z",
+ "lastUpdated": "2021-07-25T09:37:52.180Z",
+ "keywords": [
+ {
+ "keyword": "bloomer",
+ "hasLocution": false,
+ "plural": "bloomers",
+ "type": 2
+ },
+ {
+ "keyword": "panty",
+ "hasLocution": false,
+ "plural": "panties"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "skating"
+ ],
+ "synsets": [
+ "04232791-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "leisure",
+ "sport",
+ "skating"
+ ],
+ "_id": 31368,
+ "created": "2017-05-12T12:18:45.000Z",
+ "lastUpdated": "2021-07-25T09:25:30.286Z",
+ "keywords": [
+ {
+ "keyword": "magasin de skate",
+ "hasLocution": false,
+ "plural": "magasins de skate",
+ "type": 2
+ },
+ {
+ "keyword": "boutique de patins à roulettes",
+ "hasLocution": false,
+ "plural": "boutiques de patins à roulettes",
+ "type": 2
+ },
+ {
+ "keyword": "magasin de patins",
+ "hasLocution": false,
+ "plural": "magasin de patins",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "construction"
+ ],
+ "synsets": [
+ "04209460-n",
+ "15017180-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 31370,
+ "created": "2017-05-12T12:19:22.000Z",
+ "lastUpdated": "2021-07-25T15:07:25.602Z",
+ "keywords": [
+ {
+ "keyword": "magasin d'objets en plâtre",
+ "hasLocution": false,
+ "plural": "magasins d'objets en plâtre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "city"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "city"
+ ],
+ "_id": 31330,
+ "created": "2017-05-12T11:38:17.000Z",
+ "lastUpdated": "2021-07-24T17:09:53.861Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Ceuta",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "city",
+ "monument"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "city",
+ "place",
+ "monument"
+ ],
+ "_id": 31331,
+ "created": "2017-05-12T11:38:17.000Z",
+ "lastUpdated": "2021-07-24T17:09:49.359Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Ceuta",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "06823648-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 31334,
+ "created": "2017-05-12T11:41:50.000Z",
+ "lastUpdated": "2021-07-26T13:21:47.196Z",
+ "keywords": [
+ {
+ "keyword": "base 10",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bases 10"
+ },
+ {
+ "keyword": "numération décimale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "numérations décimales"
+ },
+ {
+ "keyword": "centaine",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "centaines"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "système de numération décimale",
+ "type": 2
+ },
+ {
+ "keyword": "base dix",
+ "hasLocution": false,
+ "plural": "bases dix",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "popular festival"
+ ],
+ "synsets": [
+ "00618932-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "event",
+ "popular event",
+ "popular festival"
+ ],
+ "_id": 31372,
+ "created": "2017-05-12T12:21:33.000Z",
+ "lastUpdated": "2021-07-25T09:20:02.133Z",
+ "keywords": [
+ {
+ "keyword": "magasin de feux d'artifices",
+ "hasLocution": false,
+ "plural": "magasins feux d'artifices ",
+ "type": 2
+ },
+ {
+ "keyword": "produits pyrotechniques",
+ "hasLocution": false,
+ "plural": "produits pyrotechniques",
+ "type": 2
+ },
+ {
+ "keyword": "feux d'artifices",
+ "hasLocution": false,
+ "plural": "feux d'artifices",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "02020375-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31374,
+ "created": "2017-05-12T12:24:58.000Z",
+ "lastUpdated": "2021-07-24T17:06:18.624Z",
+ "keywords": [
+ {
+ "keyword": "entrer sans frapper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03042670-n",
+ "06134474-n",
+ "00951435-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 31376,
+ "created": "2017-05-12T12:29:01.000Z",
+ "lastUpdated": "2021-07-25T09:17:32.437Z",
+ "keywords": [
+ {
+ "keyword": "salle de technologie",
+ "hasLocution": false,
+ "plural": "salles de technologie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07660576-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 31378,
+ "created": "2017-05-12T12:30:41.000Z",
+ "lastUpdated": "2021-07-24T17:06:01.326Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nuggets de poulet",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "01433863-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 31380,
+ "created": "2017-05-12T12:45:00.000Z",
+ "lastUpdated": "2024-12-10T18:31:13.554Z",
+ "keywords": [
+ {
+ "keyword": "envoyer un baiser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "envoyer des bisous",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "religious building",
+ "teruel"
+ ],
+ "synsets": [
+ "03032880-n",
+ "08617999-n",
+ "09049830-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "building",
+ "religion",
+ "Aragon",
+ "Teruel"
+ ],
+ "_id": 31388,
+ "created": "2017-05-12T12:57:37.000Z",
+ "lastUpdated": "2021-07-25T09:15:32.857Z",
+ "keywords": [
+ {
+ "keyword": "Tour de San Salvador",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10386665-n",
+ "10387518-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 31390,
+ "created": "2017-05-12T14:13:54.000Z",
+ "lastUpdated": "2021-07-25T09:14:04.802Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "infirmière",
+ "hasLocution": true,
+ "plural": "infirmières"
+ },
+ {
+ "type": 2,
+ "keyword": "auxiliaire médicale",
+ "hasLocution": false,
+ "plural": "auxiliaires médicales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "04353506-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 31392,
+ "created": "2017-05-12T20:01:13.000Z",
+ "lastUpdated": "2021-07-25T09:13:06.293Z",
+ "keywords": [
+ {
+ "keyword": "porcherie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "porcheries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "08007611-n",
+ "03328156-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 31394,
+ "created": "2017-05-12T20:04:23.000Z",
+ "lastUpdated": "2021-07-25T09:12:40.801Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chèvrerie",
+ "hasLocution": false,
+ "plural": "chèvreries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "04302017-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 31396,
+ "created": "2017-05-12T20:07:11.000Z",
+ "lastUpdated": "2021-07-25T09:12:33.177Z",
+ "keywords": [
+ {
+ "keyword": "écurie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "écuries"
+ },
+ {
+ "keyword": "box",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "boxes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "04043696-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 31398,
+ "created": "2017-05-12T20:09:06.000Z",
+ "lastUpdated": "2021-07-25T09:10:38.125Z",
+ "keywords": [
+ {
+ "keyword": "clapier",
+ "hasLocution": false,
+ "plural": "clapiers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "04302017-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 31400,
+ "created": "2017-05-12T20:10:14.000Z",
+ "lastUpdated": "2021-07-24T16:43:31.929Z",
+ "keywords": [
+ {
+ "keyword": "écurie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "écuries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "meat"
+ ],
+ "synsets": [
+ "07667383-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 31402,
+ "created": "2017-05-12T20:13:03.000Z",
+ "lastUpdated": "2021-07-25T09:39:19.740Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "triperie",
+ "plural": "triperies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "08007611-n",
+ "03328156-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 31404,
+ "created": "2017-05-12T20:14:55.000Z",
+ "lastUpdated": "2021-07-25T09:10:06.353Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bergerie",
+ "hasLocution": false,
+ "plural": "bergeries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "birthday"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 31406,
+ "created": "2017-05-12T20:25:27.000Z",
+ "lastUpdated": "2021-07-26T12:45:48.077Z",
+ "keywords": [
+ {
+ "keyword": "pinata",
+ "hasLocution": false,
+ "plural": "pinatas",
+ "type": 2
+ },
+ {
+ "keyword": "pignata",
+ "hasLocution": false,
+ "plural": "pignata",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling"
+ ],
+ "synsets": [
+ "01895355-a"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31408,
+ "created": "2017-05-13T09:40:52.000Z",
+ "lastUpdated": "2021-07-24T16:38:28.234Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "02088253-s",
+ "06700446-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 31410,
+ "created": "2017-05-13T09:43:27.000Z",
+ "lastUpdated": "2021-07-24T16:38:22.195Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "ok",
+ "hasLocution": true
+ },
+ {
+ "keyword": "OK",
+ "hasLocution": true,
+ "type": 5
+ },
+ {
+ "keyword": "d'accord",
+ "hasLocution": true,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01918650-v",
+ "01280538-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31412,
+ "created": "2017-05-13T09:46:40.000Z",
+ "lastUpdated": "2021-07-26T12:43:09.447Z",
+ "keywords": [
+ {
+ "keyword": "croiser les bras",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "plier les bras",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disruptive behavior",
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00755767-n",
+ "02580591-v",
+ "01107035-v"
+ ],
+ "tags": [
+ "psychology",
+ "disruptive behavior",
+ "communication",
+ "language",
+ "verb",
+ "human response"
+ ],
+ "_id": 31414,
+ "created": "2017-05-13T09:51:18.000Z",
+ "lastUpdated": "2024-12-13T07:20:15.625Z",
+ "keywords": [
+ {
+ "keyword": "tricheur",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "tricheurs"
+ },
+ {
+ "keyword": "tricher",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "keyword": "tricherie",
+ "type": 2,
+ "plural": "tricheries"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "triche",
+ "type": 2
+ },
+ {
+ "keyword": "tromper",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00206887-s",
+ "04845441-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31416,
+ "created": "2017-05-13T09:56:45.000Z",
+ "lastUpdated": "2021-07-27T20:33:06.788Z",
+ "keywords": [
+ {
+ "keyword": "personne insolente",
+ "hasLocution": false,
+ "plural": "personnes insolentes",
+ "type": 2
+ },
+ {
+ "keyword": "insolent",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "insolents"
+ },
+ {
+ "keyword": "effronté",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "effrontés"
+ },
+ {
+ "keyword": "petit insolent",
+ "hasLocution": false,
+ "plural": "petits insolents",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic"
+ ],
+ "synsets": [
+ "05936904-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 31418,
+ "created": "2017-05-13T10:02:29.000Z",
+ "lastUpdated": "2021-07-26T12:41:47.130Z",
+ "keywords": [
+ {
+ "keyword": "image de soi",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "images de soi"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01511000-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31420,
+ "created": "2017-05-13T10:05:31.000Z",
+ "lastUpdated": "2021-07-25T15:07:12.956Z",
+ "keywords": [
+ {
+ "keyword": "jeter du sable",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "lancer du sable",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01511000-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31421,
+ "created": "2017-05-13T10:05:31.000Z",
+ "lastUpdated": "2021-07-25T10:14:40.523Z",
+ "keywords": [
+ {
+ "keyword": "jeter du sable",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "lancer du sable",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "02187297-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31382,
+ "created": "2017-05-12T12:49:20.000Z",
+ "lastUpdated": "2021-07-24T17:05:24.732Z",
+ "keywords": [
+ {
+ "keyword": "faire craquer ses doigts",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "craquer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chronological device",
+ "accessories",
+ "chronological instrument"
+ ],
+ "synsets": [
+ "04563183-n",
+ "03282682-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "time",
+ "chronological device",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 31384,
+ "created": "2017-05-12T12:52:18.000Z",
+ "lastUpdated": "2021-07-25T09:16:05.037Z",
+ "keywords": [
+ {
+ "keyword": "montre connectée",
+ "hasLocution": false,
+ "plural": "montres connectées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "cultural building"
+ ],
+ "synsets": [
+ "08852287-n",
+ "02761139-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "building",
+ "culture"
+ ],
+ "_id": 31386,
+ "created": "2017-05-12T12:54:52.000Z",
+ "lastUpdated": "2021-07-24T17:04:24.835Z",
+ "keywords": [
+ {
+ "keyword": "Opéra de Sydney",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01636439-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31424,
+ "created": "2017-05-13T10:06:43.000Z",
+ "lastUpdated": "2021-07-25T10:14:37.288Z",
+ "keywords": [
+ {
+ "keyword": "lancer du sable",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "jeter du sable",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "circus"
+ ],
+ "synsets": [
+ "09950334-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "circus",
+ "show"
+ ],
+ "_id": 31426,
+ "created": "2017-05-13T10:09:50.000Z",
+ "lastUpdated": "2021-07-24T16:32:32.451Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "clown",
+ "hasLocution": true,
+ "plural": "clowns"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance"
+ ],
+ "synsets": [
+ "03146353-n"
+ ],
+ "tags": [
+ "object",
+ "appliance"
+ ],
+ "_id": 31428,
+ "created": "2017-05-13T10:14:07.000Z",
+ "lastUpdated": "2021-07-25T10:14:30.113Z",
+ "keywords": [
+ {
+ "keyword": "destructeur de documents",
+ "hasLocution": false,
+ "plural": "destructeurs de documents",
+ "type": 2
+ },
+ {
+ "keyword": "déchiqueteuse",
+ "hasLocution": false,
+ "plural": "déchiqueteuses",
+ "type": 2
+ },
+ {
+ "keyword": "broyeur de papier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "broyeurs de papier"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "01074326-n",
+ "00662334-n"
+ ],
+ "tags": [],
+ "_id": 31430,
+ "created": "2017-05-13T10:19:58.000Z",
+ "lastUpdated": "2021-07-26T12:41:09.249Z",
+ "keywords": [
+ {
+ "keyword": "thérapie par le rire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "thérapies par le rire"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14109625-n",
+ "14106077-n",
+ "14104857-n",
+ "10081983-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 31432,
+ "created": "2017-05-13T10:25:32.000Z",
+ "lastUpdated": "2021-07-25T10:11:36.996Z",
+ "keywords": [
+ {
+ "keyword": "épilepsie",
+ "hasLocution": false,
+ "plural": "épilepsies",
+ "type": 2
+ },
+ {
+ "keyword": "crise d'épilepsie",
+ "hasLocution": false,
+ "plural": "crises d'épilepsie",
+ "type": 2
+ },
+ {
+ "keyword": "convulsions",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "dance"
+ ],
+ "synsets": [
+ "01898642-v",
+ "01712535-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "scenic art",
+ "dance",
+ "show"
+ ],
+ "_id": 31437,
+ "created": "2017-05-13T10:38:50.000Z",
+ "lastUpdated": "2021-07-24T16:29:34.003Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "danser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "diving"
+ ],
+ "synsets": [
+ "01966678-v",
+ "07453884-n",
+ "02097668-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "diving"
+ ],
+ "_id": 31442,
+ "created": "2017-05-13T10:39:50.000Z",
+ "lastUpdated": "2021-07-24T16:29:30.353Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "plonger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "diving"
+ ],
+ "synsets": [
+ "01966678-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "diving"
+ ],
+ "_id": 31443,
+ "created": "2017-05-13T10:39:50.000Z",
+ "lastUpdated": "2021-07-24T16:29:24.122Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "plonger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "diving"
+ ],
+ "synsets": [
+ "10039277-n",
+ "07218560-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "diving"
+ ],
+ "_id": 31446,
+ "created": "2017-05-13T10:47:36.000Z",
+ "lastUpdated": "2021-07-25T10:11:26.146Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plongeur",
+ "hasLocution": true,
+ "plural": "plongeurs"
+ },
+ {
+ "keyword": "homme-grenouille",
+ "hasLocution": false,
+ "plural": "hommes-grenouilles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "diving"
+ ],
+ "synsets": [
+ "10039277-n",
+ "01972576-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "diving"
+ ],
+ "_id": 31447,
+ "created": "2017-05-13T10:47:36.000Z",
+ "lastUpdated": "2021-07-24T16:29:17.172Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plongeur",
+ "hasLocution": true,
+ "plural": "plongeurs"
+ },
+ {
+ "keyword": "homme-grenouille",
+ "hasLocution": false,
+ "plural": "hommes-grenouilles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "diving"
+ ],
+ "synsets": [
+ "10039277-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "diving"
+ ],
+ "_id": 31448,
+ "created": "2017-05-13T10:47:36.000Z",
+ "lastUpdated": "2021-07-24T16:28:53.952Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plongeur",
+ "hasLocution": true,
+ "plural": "plongeurs"
+ },
+ {
+ "keyword": "homme-grenouille",
+ "plural": "hommes-grenouilles",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "diving"
+ ],
+ "synsets": [
+ "10039277-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "diving"
+ ],
+ "_id": 31449,
+ "created": "2017-05-13T10:47:36.000Z",
+ "lastUpdated": "2021-07-24T16:28:06.723Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plongeur",
+ "hasLocution": true,
+ "plural": "plongeurs"
+ },
+ {
+ "keyword": "homme-grenouille",
+ "hasLocution": false,
+ "plural": "hommes-grenouilles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "diving"
+ ],
+ "synsets": [
+ "10039277-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "diving"
+ ],
+ "_id": 31450,
+ "created": "2017-05-13T10:47:36.000Z",
+ "lastUpdated": "2021-07-25T10:10:57.181Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plongeur",
+ "hasLocution": true,
+ "plural": "plongeurs"
+ },
+ {
+ "keyword": "homme-grenouille",
+ "hasLocution": false,
+ "plural": "hommes-grenouilles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "diving"
+ ],
+ "synsets": [
+ "10039277-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "diving"
+ ],
+ "_id": 31456,
+ "created": "2017-05-13T10:48:20.000Z",
+ "lastUpdated": "2021-07-24T16:27:06.995Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plongeur",
+ "hasLocution": true,
+ "plural": "plongeurs"
+ },
+ {
+ "keyword": "homme-grenouille",
+ "hasLocution": false,
+ "plural": "hommes-grenouilles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming"
+ ],
+ "synsets": [
+ "00205206-s",
+ "02101482-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 31458,
+ "created": "2017-05-13T10:49:48.000Z",
+ "lastUpdated": "2021-07-24T16:26:02.372Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "plonger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming"
+ ],
+ "synsets": [
+ "01964770-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 31460,
+ "created": "2017-05-13T10:51:51.000Z",
+ "lastUpdated": "2021-07-24T16:25:41.238Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se déplacer à la surface de l'eau ou dans l'eau par des mouvements appropriés",
+ "keyword": "nager",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "child"
+ ],
+ "synsets": [
+ "09937051-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "child"
+ ],
+ "_id": 31462,
+ "created": "2017-05-13T10:53:21.000Z",
+ "lastUpdated": "2021-07-26T12:40:32.662Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enfants",
+ "hasLocution": true,
+ "plural": "enfants"
+ },
+ {
+ "keyword": "gosses",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gosses"
+ },
+ {
+ "keyword": "gamins",
+ "hasLocution": false,
+ "plural": "gamins",
+ "type": 2
+ },
+ {
+ "keyword": "mômes",
+ "hasLocution": false,
+ "plural": "mômes",
+ "type": 2
+ },
+ {
+ "keyword": "petits",
+ "hasLocution": false,
+ "plural": "petits",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "child"
+ ],
+ "synsets": [
+ "00202946-a",
+ "00074673-r"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "child"
+ ],
+ "_id": 31464,
+ "created": "2017-05-13T10:56:30.000Z",
+ "lastUpdated": "2021-07-25T15:07:03.372Z",
+ "keywords": [
+ {
+ "keyword": "de dos",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "07986853-n",
+ "01385012-a"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 31466,
+ "created": "2017-05-13T10:59:37.000Z",
+ "lastUpdated": "2021-07-25T15:06:58.186Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille",
+ "hasLocution": true,
+ "plural": "familles"
+ },
+ {
+ "keyword": "famille nombreuse",
+ "hasLocution": false,
+ "plural": "familles nombreuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "07986853-n",
+ "01385012-a"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 31467,
+ "created": "2017-05-13T10:59:38.000Z",
+ "lastUpdated": "2021-07-24T16:24:54.517Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "famille",
+ "hasLocution": true,
+ "plural": "familles"
+ },
+ {
+ "keyword": "famille nombreuse",
+ "hasLocution": false,
+ "plural": "familles nombreuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational organization"
+ ],
+ "synsets": [
+ "08293460-n"
+ ],
+ "tags": [
+ "education",
+ "organization"
+ ],
+ "_id": 31470,
+ "created": "2017-05-13T11:04:39.000Z",
+ "lastUpdated": "2021-07-26T12:39:07.875Z",
+ "keywords": [
+ {
+ "keyword": "maternelle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "maternelles"
+ },
+ {
+ "keyword": "enseignement préscolaire",
+ "hasLocution": false,
+ "plural": "enseignements préscolaires",
+ "type": 2
+ },
+ {
+ "keyword": "garderie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "garderies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational organization"
+ ],
+ "synsets": [
+ "08429706-n",
+ "00887536-n"
+ ],
+ "tags": [
+ "education",
+ "organization"
+ ],
+ "_id": 31472,
+ "created": "2017-05-13T11:06:45.000Z",
+ "lastUpdated": "2021-07-26T12:37:54.131Z",
+ "keywords": [
+ {
+ "keyword": "école primaire",
+ "hasLocution": false,
+ "plural": "écoles primaires",
+ "type": 2
+ },
+ {
+ "keyword": "enseignement élémentaire",
+ "hasLocution": false,
+ "plural": "enseignements élémentaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03369002-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 31474,
+ "created": "2017-05-13T11:09:43.000Z",
+ "lastUpdated": "2021-07-24T16:22:06.963Z",
+ "keywords": [
+ {
+ "keyword": "monopalme",
+ "hasLocution": false,
+ "plural": "monopalmes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "dance"
+ ],
+ "synsets": [
+ "01898642-v",
+ "01712535-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "scenic art",
+ "dance",
+ "show"
+ ],
+ "_id": 31434,
+ "created": "2017-05-13T10:38:50.000Z",
+ "lastUpdated": "2021-07-24T16:29:43.920Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "danser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "dance"
+ ],
+ "synsets": [
+ "01898642-v",
+ "01712535-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "scenic art",
+ "dance",
+ "show"
+ ],
+ "_id": 31435,
+ "created": "2017-05-13T10:38:50.000Z",
+ "lastUpdated": "2021-07-24T16:29:41.460Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "danser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "dance"
+ ],
+ "synsets": [
+ "01898642-v",
+ "01712535-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "scenic art",
+ "dance",
+ "show"
+ ],
+ "_id": 31436,
+ "created": "2017-05-13T10:38:50.000Z",
+ "lastUpdated": "2021-07-24T16:29:38.662Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "danser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01321879-s",
+ "02731365-n"
+ ],
+ "tags": [
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31476,
+ "created": "2017-05-13T11:17:15.000Z",
+ "lastUpdated": "2021-07-25T15:06:23.731Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vêtements déchirés",
+ "hasLocution": false
+ },
+ {
+ "keyword": "vêtements abimés",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "13593639-n",
+ "15080200-n",
+ "15080009-n"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 31478,
+ "created": "2017-05-13T11:19:39.000Z",
+ "lastUpdated": "2021-07-24T16:20:31.274Z",
+ "keywords": [
+ {
+ "keyword": "vapeur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vapeurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01226565-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31480,
+ "created": "2017-05-13T11:21:39.000Z",
+ "lastUpdated": "2021-07-24T16:20:14.406Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "agripper",
+ "hasLocution": false
+ },
+ {
+ "keyword": "saisir",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media",
+ "expression"
+ ],
+ "synsets": [
+ "06367112-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "language",
+ "expression"
+ ],
+ "_id": 31482,
+ "created": "2017-05-13T11:35:03.000Z",
+ "lastUpdated": "2021-07-24T16:19:42.094Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "code postal",
+ "hasLocution": true
+ },
+ {
+ "keyword": "quel est ton code postal ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quel est votre code postal ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "06437781-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 31484,
+ "created": "2017-05-13T11:39:32.000Z",
+ "lastUpdated": "2021-07-24T16:19:06.154Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "numéro de télephone",
+ "hasLocution": true
+ },
+ {
+ "keyword": "numéro de mobile",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "quel est ton numéro de mobilee ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quel est votre numéro de mobilee ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "00732883-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 31664,
+ "created": "2017-06-17T21:55:52.000Z",
+ "lastUpdated": "2021-07-24T16:16:19.033Z",
+ "keywords": [
+ {
+ "keyword": "je n'ai pas besoin d'aide",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 31666,
+ "created": "2017-12-01T11:44:40.000Z",
+ "lastUpdated": "2021-09-23T23:12:46.281Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "remonter le pantalon",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mettre son pantalon",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "09848006-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 31668,
+ "created": "2017-12-01T11:46:54.000Z",
+ "lastUpdated": "2021-07-24T16:15:42.525Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pédiatre",
+ "hasLocution": true,
+ "plural": "pédiatres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 31670,
+ "created": "2017-12-01T11:48:24.000Z",
+ "lastUpdated": "2024-11-30T06:29:31.205Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "il",
+ "hasLocution": false
+ },
+ {
+ "keyword": "lui-même",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "avec lui",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "elle",
+ "hasLocution": true,
+ "type": 1
+ },
+ {
+ "keyword": "elle-même",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "avec elle",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "lui",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "le",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "la",
+ "hasLocution": true,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 31672,
+ "created": "2017-12-01T11:49:53.000Z",
+ "lastUpdated": "2021-07-25T15:04:59.350Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "nous",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nous-mêmes",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 31674,
+ "created": "2017-12-01T11:51:07.000Z",
+ "lastUpdated": "2021-07-25T15:04:43.682Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "nous",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nous-mêmes",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game",
+ "game"
+ ],
+ "synsets": [
+ "02206757-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game",
+ "game"
+ ],
+ "_id": 31676,
+ "created": "2017-12-01T11:52:39.000Z",
+ "lastUpdated": "2021-07-24T16:15:02.928Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tirer au sort",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14340141-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 31678,
+ "created": "2017-12-01T11:54:26.000Z",
+ "lastUpdated": "2021-07-24T16:14:07.185Z",
+ "keywords": [
+ {
+ "keyword": "oedème",
+ "hasLocution": false,
+ "plural": "oedèmes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "literature"
+ ],
+ "synsets": [
+ "00626756-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "literature"
+ ],
+ "_id": 31680,
+ "created": "2017-12-01T11:56:01.000Z",
+ "lastUpdated": "2021-07-24T16:13:47.737Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Reconnaître les signes graphiques d'une langue, former mentalement ou à voix haute les sons que ces signes ou leurs combinaisons représentent et leur associer un sens",
+ "keyword": "lire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "contraceptive method"
+ ],
+ "synsets": [
+ "03092620-n",
+ "03101244-n"
+ ],
+ "tags": [
+ "sexuality",
+ "contraceptive method"
+ ],
+ "_id": 31682,
+ "created": "2017-12-04T10:00:45.000Z",
+ "lastUpdated": "2021-07-24T16:12:53.375Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "préservatif",
+ "hasLocution": false,
+ "plural": "préservatifs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "07448262-n",
+ "02892871-a"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 31684,
+ "created": "2017-12-04T10:10:17.000Z",
+ "lastUpdated": "2021-07-24T16:12:38.519Z",
+ "keywords": [
+ {
+ "keyword": "mutilation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mutilations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "07448262-n",
+ "05522061-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 31685,
+ "created": "2017-12-04T10:10:17.000Z",
+ "lastUpdated": "2021-07-26T12:37:34.419Z",
+ "keywords": [
+ {
+ "keyword": "mutilation",
+ "hasLocution": false,
+ "plural": "mutilations",
+ "type": 2
+ },
+ {
+ "keyword": "mutilation génitale",
+ "plural": "mutilations génitales",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "mutilation féminine",
+ "hasLocution": false,
+ "plural": "mutilations féminines",
+ "type": 2
+ },
+ {
+ "keyword": "excision",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "excisions"
+ },
+ {
+ "keyword": "ablation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ablations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "07448262-n",
+ "05522061-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 31686,
+ "created": "2017-12-04T10:10:17.000Z",
+ "lastUpdated": "2021-07-26T12:36:37.949Z",
+ "keywords": [
+ {
+ "keyword": "mutilation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mutilations"
+ },
+ {
+ "keyword": "mutilation génitale",
+ "hasLocution": false,
+ "plural": "mutilations génitales",
+ "type": 2
+ },
+ {
+ "keyword": "mutilation féminine",
+ "hasLocution": false,
+ "plural": "mutilations féminines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment",
+ "obstetrics"
+ ],
+ "synsets": [
+ "02987924-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 31690,
+ "created": "2017-12-04T10:12:40.000Z",
+ "lastUpdated": "2021-07-26T12:35:59.573Z",
+ "keywords": [
+ {
+ "keyword": "cathéter à double ballonnet",
+ "hasLocution": false,
+ "plural": "cathéters à double ballonnet",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics"
+ ],
+ "synsets": [
+ "00335000-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 31692,
+ "created": "2017-12-04T10:24:35.000Z",
+ "lastUpdated": "2021-07-24T23:03:18.756Z",
+ "keywords": [
+ {
+ "keyword": "mouvement foetal",
+ "hasLocution": false,
+ "plural": "mouvements foetaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "gynecology"
+ ],
+ "synsets": [
+ "03139738-a",
+ "03745652-n",
+ "00665353-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "gynecology"
+ ],
+ "_id": 31694,
+ "created": "2017-12-04T10:25:25.000Z",
+ "lastUpdated": "2021-07-26T12:35:11.253Z",
+ "keywords": [
+ {
+ "keyword": "traitement intravaginal",
+ "hasLocution": false,
+ "plural": "traitements intravaginaux",
+ "type": 2
+ },
+ {
+ "keyword": "médicament intravaginal",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "médicaments intravaginaux"
+ },
+ {
+ "keyword": "traitement vaginal",
+ "hasLocution": false,
+ "plural": "traitements vaginaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "intimate hygiene"
+ ],
+ "synsets": [
+ "02890577-a",
+ "13927671-n"
+ ],
+ "tags": [
+ "human body",
+ "intimate hygiene"
+ ],
+ "_id": 31696,
+ "created": "2017-12-04T10:29:26.000Z",
+ "lastUpdated": "2021-07-24T16:10:06.293Z",
+ "keywords": [
+ {
+ "keyword": "coupe menstruelle",
+ "hasLocution": false,
+ "plural": "coupes menstruelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 31698,
+ "created": "2017-12-04T10:30:33.000Z",
+ "lastUpdated": "2021-07-24T16:08:17.432Z",
+ "keywords": [
+ {
+ "keyword": "tire-lait",
+ "plural": "tire-laits",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "mass media device",
+ "mass media"
+ ],
+ "synsets": [
+ "06437781-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media"
+ ],
+ "_id": 31485,
+ "created": "2017-05-13T11:39:32.000Z",
+ "lastUpdated": "2021-07-24T16:17:39.734Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "numéro de télephone",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "quel est ton numéro de téléphone ?",
+ "hasLocution": false
+ },
+ {
+ "keyword": "quel est votre numéro de téléphone ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "building facility"
+ ],
+ "synsets": [
+ "01449876-v",
+ "00793966-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 31488,
+ "created": "2017-05-13T11:46:52.000Z",
+ "lastUpdated": "2021-07-24T16:16:48.643Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "appuyer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "appuyer sur la sonnette",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sonner",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14556418-n",
+ "02369499-s"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 31662,
+ "created": "2017-06-17T21:54:18.000Z",
+ "lastUpdated": "2021-07-24T16:16:26.258Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "allergie",
+ "hasLocution": true,
+ "plural": "allergies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics",
+ "medicament"
+ ],
+ "synsets": [
+ "05422274-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics",
+ "medicament"
+ ],
+ "_id": 31700,
+ "created": "2017-12-04T10:32:20.000Z",
+ "lastUpdated": "2021-07-28T15:30:08.315Z",
+ "keywords": [
+ {
+ "keyword": "dinoprostone",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dinoprostones"
+ },
+ {
+ "keyword": "prostaglandine",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "prostaglandines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "medical procedure"
+ ],
+ "synsets": [
+ "00086072-v",
+ "00698618-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 31702,
+ "created": "2017-12-04T10:34:52.000Z",
+ "lastUpdated": "2021-07-24T16:07:49.646Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "injecter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "piquer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "injection",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "injections"
+ },
+ {
+ "keyword": "piqure",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "piqures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "07448262-n",
+ "00394177-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 31704,
+ "created": "2017-12-04T10:35:37.000Z",
+ "lastUpdated": "2021-07-24T22:56:41.228Z",
+ "keywords": [
+ {
+ "keyword": "mutilation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mutilations"
+ },
+ {
+ "keyword": "mutilation génitale",
+ "hasLocution": false,
+ "plural": "mutilations génitales",
+ "type": 2
+ },
+ {
+ "keyword": "excision",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "excisions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics"
+ ],
+ "synsets": [
+ "14071923-n",
+ "00057220-v",
+ "00056644-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 31706,
+ "created": "2017-12-04T10:37:34.000Z",
+ "lastUpdated": "2021-07-24T22:55:57.399Z",
+ "keywords": [
+ {
+ "keyword": "accouchement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "accouchements"
+ },
+ {
+ "keyword": "travail",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "reproductive system",
+ "obstetrics"
+ ],
+ "synsets": [
+ "14071923-n"
+ ],
+ "tags": [
+ "human body",
+ "physiology",
+ "human physiology",
+ "reproductive system",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 31707,
+ "created": "2017-12-04T10:37:34.000Z",
+ "lastUpdated": "2021-07-24T22:55:22.248Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "accouchement",
+ "plural": "accouchements"
+ },
+ {
+ "hasLocution": true,
+ "type": 2,
+ "keyword": "travail"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00643288-n",
+ "00644005-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 31716,
+ "created": "2017-12-04T10:46:25.000Z",
+ "lastUpdated": "2021-07-24T16:03:15.795Z",
+ "keywords": [
+ {
+ "keyword": "gastroscopie",
+ "hasLocution": false,
+ "plural": "gastroscopies",
+ "type": 2
+ },
+ {
+ "keyword": "endoscopie",
+ "hasLocution": false,
+ "plural": "endoscopies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "01188961-v",
+ "02549967-a"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 31718,
+ "created": "2017-12-04T10:50:35.000Z",
+ "lastUpdated": "2021-07-24T16:02:26.255Z",
+ "keywords": [
+ {
+ "keyword": "allaiter",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "têter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01188961-v",
+ "02549967-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 31719,
+ "created": "2017-12-04T10:50:35.000Z",
+ "lastUpdated": "2021-07-24T16:02:08.272Z",
+ "keywords": [
+ {
+ "keyword": "allaiter",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "têter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare",
+ "obstetrics"
+ ],
+ "synsets": [
+ "05528130-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 31722,
+ "created": "2017-12-04T10:53:26.000Z",
+ "lastUpdated": "2021-07-24T16:01:51.339Z",
+ "keywords": [
+ {
+ "keyword": "cordon ombilical",
+ "hasLocution": false,
+ "plural": "cordons ombilicaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "01242654-s"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 31724,
+ "created": "2017-12-04T10:57:38.000Z",
+ "lastUpdated": "2021-07-25T08:50:13.340Z",
+ "keywords": [
+ {
+ "keyword": "sur le dos",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "en décubitus dorsal",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00647575-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 31725,
+ "created": "2017-12-04T10:57:38.000Z",
+ "lastUpdated": "2021-07-25T08:50:23.513Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "analyse d'urine ",
+ "hasLocution": false,
+ "plural": "analyses d'urine"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device",
+ "odontology"
+ ],
+ "synsets": [
+ "04617008-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device",
+ "odontology"
+ ],
+ "_id": 31728,
+ "created": "2017-12-04T11:45:21.000Z",
+ "lastUpdated": "2021-07-25T08:58:45.795Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "plural": "radios panoramiques",
+ "type": 2,
+ "keyword": "radio panoramique"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "radio panoramique dentaire",
+ "plural": "radios panoramiques dentaires"
+ },
+ {
+ "keyword": "appareil à radio panoramique",
+ "hasLocution": false,
+ "plural": "appareils à radio panoramique",
+ "type": 2
+ },
+ {
+ "keyword": "orthopantomogramme",
+ "hasLocution": false,
+ "plural": "orthopantomogrammes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00903487-n",
+ "11501609-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 31730,
+ "created": "2017-12-04T11:46:40.000Z",
+ "lastUpdated": "2021-07-26T12:31:50.694Z",
+ "keywords": [
+ {
+ "keyword": "échographie",
+ "hasLocution": false,
+ "plural": "échographies",
+ "type": 2
+ },
+ {
+ "keyword": "ultrason",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ultrasons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "04383963-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 31732,
+ "created": "2017-12-04T11:49:52.000Z",
+ "lastUpdated": "2021-07-24T15:56:57.648Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "seringue",
+ "hasLocution": true,
+ "plural": "seringues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "14579795-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "ophthalmology"
+ ],
+ "_id": 31734,
+ "created": "2017-12-04T11:51:10.000Z",
+ "lastUpdated": "2021-07-24T22:51:42.223Z",
+ "keywords": [
+ {
+ "keyword": "scotome",
+ "hasLocution": false,
+ "plural": "scotomes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00284446-s",
+ "02307429-s"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "ophthalmology"
+ ],
+ "_id": 31736,
+ "created": "2017-12-04T11:52:17.000Z",
+ "lastUpdated": "2021-07-24T22:50:44.772Z",
+ "keywords": [
+ {
+ "keyword": "phosphène",
+ "hasLocution": false,
+ "plural": " phosphènes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14340141-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 31738,
+ "created": "2017-12-04T11:52:52.000Z",
+ "lastUpdated": "2021-07-24T15:55:32.484Z",
+ "keywords": [
+ {
+ "keyword": "oedème",
+ "hasLocution": false,
+ "plural": "oedèmes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00945884-n",
+ "01277535-v",
+ "14052134-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 31740,
+ "created": "2017-12-04T11:53:55.000Z",
+ "lastUpdated": "2021-07-24T15:54:28.180Z",
+ "keywords": [
+ {
+ "keyword": "ponction",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ponctions"
+ },
+ {
+ "keyword": "ponctions lombaire",
+ "hasLocution": false,
+ "plural": "ponctions lombaires",
+ "type": 2
+ },
+ {
+ "keyword": "péridurale",
+ "hasLocution": false,
+ "plural": "péridurales",
+ "type": 2
+ },
+ {
+ "keyword": "anesthésie péridurale",
+ "hasLocution": false,
+ "plural": "anesthésies péridurales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "covid-19"
+ ],
+ "synsets": [
+ "14438119-n",
+ "04557205-n",
+ "03546271-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "covid-19"
+ ],
+ "_id": 31742,
+ "created": "2017-12-04T11:55:14.000Z",
+ "lastUpdated": "2021-07-24T15:52:49.378Z",
+ "keywords": [
+ {
+ "keyword": "isolement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "isolements"
+ },
+ {
+ "keyword": "box d'hôpital",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "boxes d'hôpital"
+ },
+ {
+ "keyword": "salle d'hôpital",
+ "hasLocution": false,
+ "plural": "salles d'hôpital",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01348155-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31744,
+ "created": "2017-12-04T11:57:36.000Z",
+ "lastUpdated": "2021-07-29T00:08:40.313Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ennuyeux",
+ "hasLocution": true,
+ "plural": "ennuyeux"
+ },
+ {
+ "keyword": "monotone",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "monotones"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "covid-19"
+ ],
+ "synsets": [
+ "00034941-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "covid-19"
+ ],
+ "_id": 31746,
+ "created": "2017-12-04T11:58:41.000Z",
+ "lastUpdated": "2021-07-24T14:04:18.092Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "moucher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se moucher le nez",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02008888-v",
+ "02082541-v",
+ "01911251-v",
+ "00347358-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31748,
+ "created": "2017-12-04T11:59:56.000Z",
+ "lastUpdated": "2021-07-24T14:04:13.560Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "revenir",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "tour",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire demi-tour",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00340839-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31750,
+ "created": "2017-12-04T12:00:40.000Z",
+ "lastUpdated": "2021-07-24T14:03:47.088Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "timide",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "07448262-n",
+ "05522061-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 31710,
+ "created": "2017-12-04T10:38:21.000Z",
+ "lastUpdated": "2021-07-24T22:54:31.239Z",
+ "keywords": [
+ {
+ "keyword": "mutilation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mutilations"
+ },
+ {
+ "keyword": "mutilation génitale",
+ "hasLocution": false,
+ "plural": "mutilations génitales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00057220-v",
+ "00056644-v",
+ "01450251-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 31712,
+ "created": "2017-12-04T10:40:04.000Z",
+ "lastUpdated": "2021-07-24T16:04:49.888Z",
+ "keywords": [
+ {
+ "keyword": "accoucher",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "donner naissance",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "pousser",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "00825545-n",
+ "00086587-v",
+ "04524830-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 31714,
+ "created": "2017-12-04T10:43:34.000Z",
+ "lastUpdated": "2021-07-24T16:04:17.023Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vaccination",
+ "hasLocution": true,
+ "plural": "vaccinations"
+ },
+ {
+ "type": 3,
+ "keyword": "vacciner",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "vaccin",
+ "hasLocution": true,
+ "plural": "vaccins"
+ },
+ {
+ "type": 3,
+ "keyword": "injecter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00335806-v",
+ "02473085-v",
+ "01576346-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31752,
+ "created": "2017-12-04T12:02:13.000Z",
+ "lastUpdated": "2021-07-24T14:03:42.947Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mettre quelque chose en morceaux par choc, par pression, le briser",
+ "keyword": "casser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "briser",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "taste",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02377903-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "taste",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 31754,
+ "created": "2017-12-04T12:02:55.000Z",
+ "lastUpdated": "2021-07-24T14:03:29.926Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "acide",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "law and justice"
+ ],
+ "synsets": [
+ "10506494-n",
+ "10269647-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 31756,
+ "created": "2017-12-04T12:05:41.000Z",
+ "lastUpdated": "2021-07-24T14:03:06.948Z",
+ "keywords": [
+ {
+ "keyword": "procureur",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "procureurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01839438-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31758,
+ "created": "2017-12-04T12:07:01.000Z",
+ "lastUpdated": "2021-07-24T14:02:43.581Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se mouvoir d'un lieu vers un autre, s'y rendre",
+ "keyword": "aller",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses",
+ "food"
+ ],
+ "synsets": [
+ "07516784-n",
+ "01780648-v",
+ "01821097-v",
+ "01806732-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses",
+ "feeding",
+ "food"
+ ],
+ "_id": 31760,
+ "created": "2017-12-04T12:08:19.000Z",
+ "lastUpdated": "2024-12-12T06:53:50.370Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ne pas aimer",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "je n'aime pas cela",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "désagréable",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "déplaire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "dégoutant",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics"
+ ],
+ "synsets": [
+ "14071923-n",
+ "00057220-v",
+ "00056644-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 31769,
+ "created": "2017-12-04T12:20:42.000Z",
+ "lastUpdated": "2021-07-24T22:49:02.996Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "accouchements",
+ "keyword": "accouchement"
+ },
+ {
+ "keyword": "travail",
+ "type": 2,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00643689-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 31771,
+ "created": "2017-12-04T12:23:57.000Z",
+ "lastUpdated": "2021-05-02T21:12:37.189Z",
+ "keywords": [
+ {
+ "keyword": "coloscopie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "coloscopies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disease",
+ "excretory system"
+ ],
+ "synsets": [
+ "14198031-n",
+ "14212184-n",
+ "14589710-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease",
+ "human body",
+ "physiology",
+ "human physiology",
+ "excretory system"
+ ],
+ "_id": 31773,
+ "created": "2017-12-04T12:55:31.000Z",
+ "lastUpdated": "2021-07-24T14:00:05.223Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "infection urinaire",
+ "plural": "infections urinaires",
+ "type": 2
+ },
+ {
+ "keyword": "cystite",
+ "hasLocution": false,
+ "plural": "cystites",
+ "type": 2
+ },
+ {
+ "keyword": "infection",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "infections"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "gynecology"
+ ],
+ "synsets": [
+ "02128571-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology"
+ ],
+ "_id": 31775,
+ "created": "2017-12-04T12:57:50.000Z",
+ "lastUpdated": "2021-07-24T13:58:57.976Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir mauvais",
+ "hasLocution": true
+ },
+ {
+ "keyword": "puer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "digestive system"
+ ],
+ "synsets": [
+ "05545649-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "human physiology",
+ "physiology",
+ "digestive system"
+ ],
+ "_id": 31777,
+ "created": "2017-12-04T13:01:17.000Z",
+ "lastUpdated": "2021-07-24T13:58:48.434Z",
+ "keywords": [
+ {
+ "keyword": "anus",
+ "hasLocution": true,
+ "plural": "anus",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "contraceptive method"
+ ],
+ "synsets": [
+ "03101244-n",
+ "01893918-s",
+ "00853811-n"
+ ],
+ "tags": [
+ "sexuality",
+ "contraceptive method"
+ ],
+ "_id": 31779,
+ "created": "2017-12-04T13:02:17.000Z",
+ "lastUpdated": "2021-07-24T22:46:07.938Z",
+ "keywords": [
+ {
+ "keyword": "patch contraceptif",
+ "hasLocution": false,
+ "plural": "patchs contraceptifs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00074587-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 31781,
+ "created": "2017-12-04T13:03:38.000Z",
+ "lastUpdated": "2021-07-25T09:02:55.032Z",
+ "keywords": [
+ {
+ "keyword": "saignement vaginal",
+ "hasLocution": false,
+ "plural": "saignements vaginaux",
+ "type": 2
+ },
+ {
+ "keyword": "hémorragie génitale",
+ "hasLocution": false,
+ "plural": "hémorragies génitales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05546127-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 31783,
+ "created": "2017-12-04T13:05:14.000Z",
+ "lastUpdated": "2021-07-24T22:45:19.532Z",
+ "keywords": [
+ {
+ "keyword": "périnée",
+ "hasLocution": false,
+ "plural": "périnées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare",
+ "obstetrics",
+ "symptom"
+ ],
+ "synsets": [
+ "00069066-v",
+ "05412071-n",
+ "13575119-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "babycare",
+ "gynecology",
+ "obstetrics",
+ "symptom"
+ ],
+ "_id": 31785,
+ "created": "2017-12-04T13:08:35.000Z",
+ "lastUpdated": "2021-07-24T22:44:35.945Z",
+ "keywords": [
+ {
+ "keyword": "sécréter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sécrétion",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sécrétions"
+ },
+ {
+ "keyword": "écoulement",
+ "hasLocution": false,
+ "plural": "écoulements",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "intimate hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "04142398-n",
+ "05407190-n"
+ ],
+ "tags": [
+ "human body",
+ "intimate hygiene",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 31787,
+ "created": "2017-12-04T13:13:22.000Z",
+ "lastUpdated": "2021-07-25T09:04:33.876Z",
+ "keywords": [
+ {
+ "keyword": "serviette périodique ensanglantée",
+ "hasLocution": false,
+ "plural": "serviettes périodiques ensanglantées",
+ "type": 2
+ },
+ {
+ "keyword": "serviette hygiénique usagée",
+ "hasLocution": false,
+ "plural": "serviettes hygiéniques usagées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "contraceptive method"
+ ],
+ "synsets": [
+ "03101244-n",
+ "01893918-s",
+ "00853811-n"
+ ],
+ "tags": [
+ "sexuality",
+ "contraceptive method"
+ ],
+ "_id": 31788,
+ "created": "2017-12-04T13:14:36.000Z",
+ "lastUpdated": "2021-07-24T13:55:54.697Z",
+ "keywords": [
+ {
+ "keyword": "anneau vaginal",
+ "hasLocution": false,
+ "plural": "anneaux vaginaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "furniture"
+ ],
+ "synsets": [
+ "02050704-v",
+ "02052840-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "object",
+ "furniture"
+ ],
+ "_id": 31790,
+ "created": "2017-12-04T13:17:22.000Z",
+ "lastUpdated": "2024-12-10T08:26:54.092Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tourner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire des tours",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "bullying"
+ ],
+ "synsets": [
+ "01417939-v",
+ "01423419-v",
+ "02522260-v",
+ "00135600-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "bullying"
+ ],
+ "_id": 31793,
+ "created": "2017-12-04T13:18:50.000Z",
+ "lastUpdated": "2021-07-24T13:54:35.383Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frapper",
+ "hasLocution": false
+ },
+ {
+ "keyword": "cogner",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "taper",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "donner un coup de poing",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "symptom",
+ "body sensation"
+ ],
+ "synsets": [
+ "02554818-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 31795,
+ "created": "2017-12-04T13:20:04.000Z",
+ "lastUpdated": "2021-08-04T08:58:32.828Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "écoeuré",
+ "hasLocution": false
+ },
+ {
+ "keyword": "étourdi",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "écœuré",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02152799-v",
+ "01335412-v",
+ "00462448-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31797,
+ "created": "2017-12-04T13:21:10.000Z",
+ "lastUpdated": "2021-07-25T09:06:56.194Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couvrir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire taire",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "recouvrir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00860989-v",
+ "01822202-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 31799,
+ "created": "2017-12-04T13:22:02.000Z",
+ "lastUpdated": "2021-10-04T21:02:40.074Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "encourager",
+ "hasLocution": true
+ },
+ {
+ "keyword": "réconforter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "soutenir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 31801,
+ "created": "2017-12-04T13:23:29.000Z",
+ "lastUpdated": "2024-10-20T05:30:35.573Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "tu",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "vous",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts"
+ ],
+ "synsets": [
+ "08447160-n"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 31803,
+ "created": "2017-12-04T13:24:21.000Z",
+ "lastUpdated": "2021-07-24T13:52:45.002Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rangée",
+ "hasLocution": true,
+ "plural": "rangées"
+ },
+ {
+ "keyword": "rang",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "rangs"
+ },
+ {
+ "keyword": "file",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "files"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00166433-s",
+ "00166720-s",
+ "00759397-s",
+ "00166125-a",
+ "01795785-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31762,
+ "created": "2017-12-04T12:10:07.000Z",
+ "lastUpdated": "2021-07-25T14:56:47.517Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "distrait",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'égarer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "perdre sa concentration",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "inattentif",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "tête en l'air",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01591274-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31764,
+ "created": "2017-12-04T12:11:10.000Z",
+ "lastUpdated": "2021-07-24T14:01:01.089Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sympathique",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "agréable",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14343111-n",
+ "14343443-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 31768,
+ "created": "2017-12-04T12:18:49.000Z",
+ "lastUpdated": "2021-07-24T14:00:57.483Z",
+ "keywords": [
+ {
+ "keyword": "jaunisse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jaunisses"
+ },
+ {
+ "keyword": "ictère",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ictères"
+ },
+ {
+ "keyword": "jaunisse du nourrisson",
+ "hasLocution": false,
+ "plural": "jaunisses du nourrisson",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 31805,
+ "created": "2017-12-04T13:25:30.000Z",
+ "lastUpdated": "2021-07-25T15:01:31.955Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "eux",
+ "hasLocution": true
+ },
+ {
+ "keyword": "avec eux",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "eux-mêmes",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "ils",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun",
+ "document"
+ ],
+ "_id": 31807,
+ "created": "2017-12-04T13:26:23.000Z",
+ "lastUpdated": "2024-10-20T05:32:29.945Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "je",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "me",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "moi",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pour moi",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "human reproduction",
+ "gynecology"
+ ],
+ "synsets": [
+ "05751815-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "human body",
+ "human reproduction",
+ "gynecology"
+ ],
+ "_id": 31809,
+ "created": "2017-12-04T13:30:21.000Z",
+ "lastUpdated": "2021-07-24T13:52:08.238Z",
+ "keywords": [
+ {
+ "keyword": "test de grossesse",
+ "hasLocution": false,
+ "plural": "tests de grossesse",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "contraceptive method"
+ ],
+ "synsets": [
+ "03101244-n",
+ "00853811-n"
+ ],
+ "tags": [
+ "sexuality",
+ "contraceptive method"
+ ],
+ "_id": 31811,
+ "created": "2017-12-04T13:34:03.000Z",
+ "lastUpdated": "2021-07-24T13:51:41.387Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "contraceptif",
+ "hasLocution": true,
+ "plural": "contraceptifs"
+ },
+ {
+ "type": 2,
+ "keyword": "méthodes contraceptives",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dietetics",
+ "food"
+ ],
+ "synsets": [
+ "11476500-n"
+ ],
+ "tags": [
+ "health",
+ "dietetics",
+ "feeding",
+ "food"
+ ],
+ "_id": 31813,
+ "created": "2017-12-04T13:34:54.000Z",
+ "lastUpdated": "2021-07-25T09:08:33.584Z",
+ "keywords": [
+ {
+ "keyword": "pyramide alimentaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pyramides alimentaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 31821,
+ "created": "2017-12-04T13:40:52.000Z",
+ "lastUpdated": "2021-07-26T12:30:51.395Z",
+ "keywords": [
+ {
+ "keyword": "fabada",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fabadas"
+ },
+ {
+ "keyword": "ragoût de haricots",
+ "hasLocution": false,
+ "plural": "ragoûts de haricots",
+ "type": 2
+ },
+ {
+ "keyword": "cassoulet",
+ "hasLocution": false,
+ "plural": "cassoulets",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14556418-n",
+ "02369499-s"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 31823,
+ "created": "2017-12-04T13:43:43.000Z",
+ "lastUpdated": "2021-07-24T13:47:49.302Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "allergie",
+ "hasLocution": true,
+ "plural": "allergies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "odontology"
+ ],
+ "synsets": [
+ "04617008-n",
+ "02154216-v",
+ "01005930-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "odontology"
+ ],
+ "_id": 31825,
+ "created": "2017-12-04T13:44:41.000Z",
+ "lastUpdated": "2021-07-26T12:28:38.570Z",
+ "keywords": [
+ {
+ "keyword": "radiographie panoramique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "radiographies panoramiques"
+ },
+ {
+ "keyword": "radio panoramique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "radios panoramiques"
+ },
+ {
+ "keyword": "radio dentaire panoramique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "radios dentaires panoramiques"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "orthopantomographie",
+ "plural": "orthopantomographies",
+ "type": 2
+ },
+ {
+ "keyword": "appareil à radio panoramique",
+ "hasLocution": false,
+ "plural": "appareils à radios panoramiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "09848006-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 31827,
+ "created": "2017-12-04T13:45:41.000Z",
+ "lastUpdated": "2021-07-24T13:48:50.959Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pédiatre",
+ "hasLocution": true,
+ "plural": "pédiatres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "odontology"
+ ],
+ "synsets": [
+ "06056961-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "odontology"
+ ],
+ "_id": 31829,
+ "created": "2017-12-04T13:48:30.000Z",
+ "lastUpdated": "2021-07-24T13:46:57.124Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "odontologie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05546127-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 31831,
+ "created": "2017-12-04T13:49:18.000Z",
+ "lastUpdated": "2021-07-24T13:46:42.766Z",
+ "keywords": [
+ {
+ "keyword": "périnée",
+ "plural": "périnées",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "obstetrics"
+ ],
+ "synsets": [
+ "05528130-n",
+ "14359944-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 31833,
+ "created": "2017-12-04T13:51:54.000Z",
+ "lastUpdated": "2021-07-24T13:46:18.870Z",
+ "keywords": [
+ {
+ "keyword": "cordon ombilical",
+ "hasLocution": false,
+ "plural": "cordons ombilicaux",
+ "type": 3
+ },
+ {
+ "keyword": "inflammation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "inflammations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human reproduction",
+ "reproductive system"
+ ],
+ "synsets": [
+ "05465045-n",
+ "05411679-n"
+ ],
+ "tags": [
+ "human body",
+ "human reproduction",
+ "physiology",
+ "human physiology",
+ "reproductive system"
+ ],
+ "_id": 31835,
+ "created": "2017-12-04T13:53:34.000Z",
+ "lastUpdated": "2021-07-26T13:05:41.053Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sperme",
+ "hasLocution": true,
+ "plural": "spermes"
+ },
+ {
+ "keyword": "liquide séminal",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "liquides séminaux"
+ },
+ {
+ "keyword": "semence",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "semence"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "taste",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02376904-a",
+ "02346267-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "taste",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 31837,
+ "created": "2017-12-04T13:54:42.000Z",
+ "lastUpdated": "2021-07-24T13:44:44.024Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sucré",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01921973-v",
+ "01886163-v",
+ "01911069-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31839,
+ "created": "2017-12-04T13:55:58.000Z",
+ "lastUpdated": "2021-07-24T13:44:38.061Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se promener",
+ "hasLocution": true
+ },
+ {
+ "keyword": "marcher",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "partir en promenade",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "adapted sport"
+ ],
+ "synsets": [
+ "01930264-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "adapted sport"
+ ],
+ "_id": 31841,
+ "created": "2017-12-04T13:57:28.000Z",
+ "lastUpdated": "2021-07-24T13:43:39.595Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se déplacer rapidement, en s'appuyant alternativement sur une jambe puis sur l'autre ou sur une patte puis sur l'autre",
+ "keyword": "courir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "01474869-a",
+ "09937051-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 31843,
+ "created": "2017-12-04T14:00:27.000Z",
+ "lastUpdated": "2021-07-26T12:24:11.015Z",
+ "keywords": [
+ {
+ "keyword": "mineur",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "mineur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "mineurs"
+ },
+ {
+ "keyword": "jeune",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "jeunes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "body sensation"
+ ],
+ "synsets": [
+ "01250274-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 31845,
+ "created": "2017-12-04T14:04:21.000Z",
+ "lastUpdated": "2021-07-24T13:42:47.240Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "chaud",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sensible au chaud",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00630153-v",
+ "01640708-v",
+ "00710367-v",
+ "00610362-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 31847,
+ "created": "2017-12-04T14:06:00.000Z",
+ "lastUpdated": "2021-07-24T13:42:26.285Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "penser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01151786-a",
+ "00363547-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31849,
+ "created": "2017-12-04T14:08:22.000Z",
+ "lastUpdated": "2021-07-24T13:42:22.300Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "joyeux",
+ "hasLocution": true
+ },
+ {
+ "keyword": "heureux",
+ "type": 4,
+ "hasLocution": true
+ },
+ {
+ "keyword": "gai",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "senses"
+ ],
+ "synsets": [
+ "01590750-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 31851,
+ "created": "2017-12-04T14:09:54.000Z",
+ "lastUpdated": "2021-07-25T14:52:23.183Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "agréable",
+ "hasLocution": true
+ },
+ {
+ "keyword": "beau",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "childcare"
+ ],
+ "synsets": [
+ "00036355-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 31853,
+ "created": "2017-12-04T14:10:59.000Z",
+ "lastUpdated": "2024-12-05T12:14:35.269Z",
+ "keywords": [
+ {
+ "keyword": "baigner",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "donner un bain",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "07448262-n",
+ "05522061-n",
+ "00670398-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 31817,
+ "created": "2017-12-04T13:37:05.000Z",
+ "lastUpdated": "2021-07-26T12:31:27.883Z",
+ "keywords": [
+ {
+ "keyword": "mutilation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mutilations"
+ },
+ {
+ "keyword": "mutilation génitale",
+ "hasLocution": false,
+ "plural": "mutilations génitales",
+ "type": 2
+ },
+ {
+ "keyword": "mutilation féminine",
+ "hasLocution": false,
+ "plural": "mutilations féminines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00437207-a",
+ "01688793-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31855,
+ "created": "2017-12-04T14:13:50.000Z",
+ "lastUpdated": "2021-07-24T13:41:16.057Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "confus",
+ "hasLocution": true
+ },
+ {
+ "keyword": "désorienté",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product"
+ ],
+ "synsets": [
+ "07859751-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product"
+ ],
+ "_id": 31815,
+ "created": "2017-12-04T13:35:50.000Z",
+ "lastUpdated": "2021-07-24T13:50:12.174Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "produits laitiers",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03012598-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 31819,
+ "created": "2017-12-04T13:37:59.000Z",
+ "lastUpdated": "2021-07-25T14:55:44.150Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chargeur",
+ "hasLocution": false,
+ "plural": "chargeurs"
+ },
+ {
+ "keyword": "chargeur de batterie",
+ "hasLocution": false,
+ "plural": "chargeurs de batterie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "00018519-v",
+ "00027261-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 31857,
+ "created": "2017-12-04T14:16:10.000Z",
+ "lastUpdated": "2021-07-24T13:41:00.578Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réveiller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se réveiller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'étirer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "07219764-n",
+ "00024715-r",
+ "00818217-v",
+ "02217607-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31859,
+ "created": "2017-12-04T14:17:51.000Z",
+ "lastUpdated": "2024-10-13T06:13:25.740Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "non",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "nier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "refuser",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses",
+ "food"
+ ],
+ "synsets": [
+ "02195992-v",
+ "01781131-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses",
+ "feeding",
+ "food"
+ ],
+ "_id": 31861,
+ "created": "2017-12-04T14:19:31.000Z",
+ "lastUpdated": "2021-07-24T13:40:44.634Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "aimer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01448551-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31863,
+ "created": "2017-12-04T16:33:18.000Z",
+ "lastUpdated": "2021-07-24T13:40:41.573Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mordre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "senses"
+ ],
+ "synsets": [
+ "01806732-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 31867,
+ "created": "2017-12-04T16:34:56.000Z",
+ "lastUpdated": "2021-07-24T13:40:28.956Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "désagréable",
+ "hasLocution": true
+ },
+ {
+ "keyword": "déplaisant",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "death",
+ "obstetrics"
+ ],
+ "synsets": [
+ "14012765-n",
+ "01801358-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "death",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 31874,
+ "created": "2017-12-04T16:41:07.000Z",
+ "lastUpdated": "2021-07-26T08:37:50.163Z",
+ "keywords": [
+ {
+ "keyword": "organiser une veillée funèbre",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "veiller",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "deuil",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "deuils"
+ },
+ {
+ "keyword": "tenir une veillée funèbre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "03572246-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 31877,
+ "created": "2017-12-04T16:43:56.000Z",
+ "lastUpdated": "2021-07-25T14:52:06.118Z",
+ "keywords": [
+ {
+ "keyword": "couveuse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "couveuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "gynecology"
+ ],
+ "synsets": [
+ "03139738-a",
+ "03745652-n",
+ "00665353-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "gynecology"
+ ],
+ "_id": 31869,
+ "created": "2017-12-04T16:36:31.000Z",
+ "lastUpdated": "2021-07-25T14:52:15.468Z",
+ "keywords": [
+ {
+ "keyword": "traitement intravaginal",
+ "hasLocution": false,
+ "plural": "traitements intravaginaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "01246546-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 31880,
+ "created": "2017-12-04T16:47:43.000Z",
+ "lastUpdated": "2021-07-24T13:36:26.563Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se brosser les dents",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se laver les dents",
+ "hasLocution": false
+ },
+ {
+ "keyword": "laver les dents",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "communication aid"
+ ],
+ "synsets": [
+ "03082291-n",
+ "06262268-n",
+ "02859743-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 31882,
+ "created": "2017-12-04T16:50:07.000Z",
+ "lastUpdated": "2021-07-24T13:35:55.315Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tableau de communication",
+ "hasLocution": true,
+ "plural": "tableaux de communication"
+ },
+ {
+ "type": 2,
+ "keyword": "tableau",
+ "hasLocution": true,
+ "plural": "tableaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "death",
+ "obstetrics"
+ ],
+ "synsets": [
+ "14012765-n",
+ "01801358-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "death",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 31873,
+ "created": "2017-12-04T16:41:06.000Z",
+ "lastUpdated": "2021-07-26T13:02:58.305Z",
+ "keywords": [
+ {
+ "keyword": "organiser une veillée funèbre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "veiller",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "deuil",
+ "type": 2,
+ "plural": "deuils",
+ "hasLocution": false
+ },
+ {
+ "keyword": "suivre une veillée funèbre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14343111-n",
+ "14343443-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 31879,
+ "created": "2017-12-04T16:46:06.000Z",
+ "lastUpdated": "2021-07-24T13:37:13.493Z",
+ "keywords": [
+ {
+ "keyword": "jaunisse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jaunisses"
+ },
+ {
+ "keyword": "ictère",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ictères"
+ },
+ {
+ "keyword": "jaunisse du nourisson",
+ "hasLocution": false,
+ "plural": "jaunisses du nourisson",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "00064841-v",
+ "02125976-v",
+ "14350016-n",
+ "00064841-v",
+ "02125976-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 31871,
+ "created": "2017-12-04T16:38:30.000Z",
+ "lastUpdated": "2021-07-24T13:39:42.283Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de tête",
+ "hasLocution": true,
+ "plural": "maux de tête"
+ },
+ {
+ "keyword": "migraine",
+ "hasLocution": false,
+ "plural": "migraines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "body sensation"
+ ],
+ "synsets": [
+ "01257098-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 31886,
+ "created": "2017-12-04T16:56:17.000Z",
+ "lastUpdated": "2021-07-24T13:34:38.823Z",
+ "keywords": [
+ {
+ "keyword": "frileux",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "tremblant",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00748528-a",
+ "02185144-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 31888,
+ "created": "2017-12-04T16:59:05.000Z",
+ "lastUpdated": "2021-07-24T13:33:34.978Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "difficile",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "compliqué ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "complexité",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "complexités"
+ },
+ {
+ "keyword": "dur",
+ "type": 4,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "object"
+ ],
+ "synsets": [
+ "02292463-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object"
+ ],
+ "_id": 31894,
+ "created": "2017-12-04T17:04:57.000Z",
+ "lastUpdated": "2024-12-07T13:23:25.117Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "perdre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00080219-s",
+ "00080947-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31896,
+ "created": "2017-12-04T17:07:08.000Z",
+ "lastUpdated": "2021-07-24T13:48:32.221Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "effrayé",
+ "hasLocution": true
+ },
+ {
+ "keyword": "apeuré",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "00767761-n"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 31900,
+ "created": "2017-12-04T17:09:18.000Z",
+ "lastUpdated": "2021-07-24T13:30:42.870Z",
+ "keywords": [
+ {
+ "keyword": "crime",
+ "type": 2,
+ "plural": "crimes",
+ "hasLocution": false
+ },
+ {
+ "keyword": "agression criminelle",
+ "hasLocution": false,
+ "plural": "agressions criminelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00114629-a",
+ "00115265-s",
+ "01811355-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31884,
+ "created": "2017-12-04T16:52:46.000Z",
+ "lastUpdated": "2021-07-24T13:34:58.432Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fâché",
+ "hasLocution": true
+ },
+ {
+ "keyword": "irrité",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "énervé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02153218-v",
+ "02141597-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31902,
+ "created": "2017-12-04T17:11:14.000Z",
+ "lastUpdated": "2024-12-05T18:55:44.112Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "montrer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "indiquer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "présenter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic needs",
+ "body sensation"
+ ],
+ "synsets": [
+ "01272183-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "person",
+ "basic needs",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 31890,
+ "created": "2017-12-04T17:01:23.000Z",
+ "lastUpdated": "2021-07-24T13:33:03.944Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "affamé",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pronoun",
+ "personal pronoun"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 31906,
+ "created": "2017-12-04T17:16:38.000Z",
+ "lastUpdated": "2024-10-20T05:28:05.141Z",
+ "keywords": [
+ {
+ "type": 1,
+ "hasLocution": false,
+ "plural": "ils",
+ "keyword": "ils"
+ },
+ {
+ "type": 1,
+ "keyword": "eux",
+ "hasLocution": true
+ },
+ {
+ "type": 1,
+ "keyword": "les",
+ "hasLocution": true
+ },
+ {
+ "keyword": "eux-mêmes",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "avec eux",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "iels",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "04028192-n",
+ "05406377-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 31908,
+ "created": "2017-12-04T17:17:18.000Z",
+ "lastUpdated": "2021-07-24T13:29:19.713Z",
+ "keywords": [
+ {
+ "keyword": "tire-lait",
+ "hasLocution": false,
+ "plural": "tire-laits",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "obstetrics",
+ "patient"
+ ],
+ "synsets": [
+ "00174481-a",
+ "10425439-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics",
+ "person",
+ "patient"
+ ],
+ "_id": 31911,
+ "created": "2017-12-04T17:21:38.000Z",
+ "lastUpdated": "2021-07-26T08:32:23.434Z",
+ "keywords": [
+ {
+ "keyword": "patiente enceinte",
+ "hasLocution": false,
+ "plural": "patientes enceintes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00077703-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 31913,
+ "created": "2017-12-04T17:25:05.000Z",
+ "lastUpdated": "2024-12-05T09:42:08.475Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étrangler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human anatomy"
+ ],
+ "synsets": [
+ "05608392-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy"
+ ],
+ "_id": 31915,
+ "created": "2017-12-04T17:26:43.000Z",
+ "lastUpdated": "2021-07-24T13:27:03.228Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "visage",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "figure",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics"
+ ],
+ "synsets": [
+ "01921973-v",
+ "01908923-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 31917,
+ "created": "2017-12-04T17:27:52.000Z",
+ "lastUpdated": "2021-07-24T13:26:16.061Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "marcher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se promener",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00155165-a",
+ "00533833-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31919,
+ "created": "2017-12-04T17:29:39.000Z",
+ "lastUpdated": "2021-07-24T13:25:25.384Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "honteux",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01151786-a",
+ "00591490-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31923,
+ "created": "2017-12-04T17:31:54.000Z",
+ "lastUpdated": "2021-07-24T13:25:04.163Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "content",
+ "hasLocution": true
+ },
+ {
+ "keyword": "heureux",
+ "type": 4,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "body sensation",
+ "covid-19"
+ ],
+ "synsets": [
+ "02440540-a",
+ "02442263-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion",
+ "human body",
+ "body sensation",
+ "covid-19"
+ ],
+ "_id": 31925,
+ "created": "2017-12-04T17:33:51.000Z",
+ "lastUpdated": "2021-07-24T13:24:53.554Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fatigué",
+ "hasLocution": true
+ },
+ {
+ "keyword": "épuisé",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00071765-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31927,
+ "created": "2017-12-04T17:35:32.000Z",
+ "lastUpdated": "2021-07-24T13:24:42.223Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire pipi",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "uriner",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "covid-19"
+ ],
+ "synsets": [
+ "02154622-v",
+ "02135744-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "covid-19"
+ ],
+ "_id": 31904,
+ "created": "2017-12-04T17:14:02.000Z",
+ "lastUpdated": "2021-07-24T13:29:32.384Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "examiner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "ausculter",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "07448262-n",
+ "05522061-n",
+ "00670398-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 31929,
+ "created": "2017-12-04T17:36:33.000Z",
+ "lastUpdated": "2021-07-26T08:32:18.060Z",
+ "keywords": [
+ {
+ "keyword": "mutilation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mutilations"
+ },
+ {
+ "keyword": "mutilation génitale",
+ "hasLocution": false,
+ "plural": "mutilations génitales",
+ "type": 2
+ },
+ {
+ "keyword": "excision",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "excisions"
+ },
+ {
+ "keyword": "ablation",
+ "type": 2,
+ "plural": "ablations",
+ "hasLocution": false
+ },
+ {
+ "hasLocution": false,
+ "keyword": "mutilation féminine",
+ "plural": "mutilations féminines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "07448262-n",
+ "05522061-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 31930,
+ "created": "2017-12-04T17:36:33.000Z",
+ "lastUpdated": "2021-07-26T08:30:02.174Z",
+ "keywords": [
+ {
+ "keyword": "mutilation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mutilations"
+ },
+ {
+ "keyword": "mutilation génitale",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "mutilations génitales"
+ },
+ {
+ "keyword": "mutilation féminine",
+ "hasLocution": false,
+ "plural": "mutilations féminines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "human reproduction"
+ ],
+ "synsets": [
+ "10389398-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "human reproduction"
+ ],
+ "_id": 31933,
+ "created": "2017-12-04T17:38:48.000Z",
+ "lastUpdated": "2021-07-25T14:51:51.221Z",
+ "keywords": [
+ {
+ "keyword": "obstétricien",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "obstétriciens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00684847-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31921,
+ "created": "2017-12-04T17:30:23.000Z",
+ "lastUpdated": "2021-07-24T13:25:09.424Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "censurer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00284446-s",
+ "02307429-s"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "ophthalmology"
+ ],
+ "_id": 31935,
+ "created": "2017-12-04T17:41:39.000Z",
+ "lastUpdated": "2021-07-24T13:22:28.921Z",
+ "keywords": [
+ {
+ "keyword": "phosphène",
+ "hasLocution": false,
+ "plural": "phosphènes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "odontology"
+ ],
+ "synsets": [
+ "05251582-n",
+ "09478055-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "odontology"
+ ],
+ "_id": 31941,
+ "created": "2017-12-04T17:52:33.000Z",
+ "lastUpdated": "2021-07-24T13:21:15.524Z",
+ "keywords": [
+ {
+ "keyword": "plaque dentaire",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "tartre",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy",
+ "professional"
+ ],
+ "synsets": [
+ "10447528-n"
+ ],
+ "tags": [
+ "health",
+ "physiotherapy",
+ "work",
+ "professional"
+ ],
+ "_id": 31943,
+ "created": "2017-12-04T18:42:54.000Z",
+ "lastUpdated": "2021-07-24T13:20:46.369Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kinésithérapeute",
+ "hasLocution": true,
+ "plural": "kinésithérapeutes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical exercise",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "00099475-v",
+ "00434742-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 31945,
+ "created": "2017-12-04T18:44:52.000Z",
+ "lastUpdated": "2021-07-24T13:20:31.189Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éducation physique",
+ "hasLocution": false
+ },
+ {
+ "type": 2,
+ "keyword": "bras en croix",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bras tendus",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "patient"
+ ],
+ "synsets": [
+ "01449876-v",
+ "00793966-v",
+ "00874096-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "person",
+ "patient"
+ ],
+ "_id": 31947,
+ "created": "2017-12-04T18:46:48.000Z",
+ "lastUpdated": "2021-07-24T19:56:32.945Z",
+ "keywords": [
+ {
+ "keyword": "sonner",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "appuyer sur la sonnette",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "presser la sonnette",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "01765887-s",
+ "00202772-n",
+ "07227534-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 31949,
+ "created": "2017-12-04T18:50:59.000Z",
+ "lastUpdated": "2021-07-26T08:29:11.971Z",
+ "keywords": [
+ {
+ "keyword": "marche interdite",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01364779-a",
+ "00155165-a",
+ "00707060-s",
+ "00912446-a",
+ "01152997-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31939,
+ "created": "2017-12-04T17:45:07.000Z",
+ "lastUpdated": "2021-07-24T13:21:38.154Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "triste",
+ "hasLocution": true
+ },
+ {
+ "keyword": "malheureux",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "déprimé",
+ "type": 4,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02262178-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31953,
+ "created": "2017-12-04T18:54:08.000Z",
+ "lastUpdated": "2021-07-24T13:18:21.979Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "changer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "échanger ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "01111372-n"
+ ],
+ "tags": [],
+ "_id": 31955,
+ "created": "2017-12-04T18:55:53.000Z",
+ "lastUpdated": "2021-07-24T13:18:11.593Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "changement",
+ "hasLocution": true,
+ "plural": "changements"
+ },
+ {
+ "keyword": "échange",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "échanges"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "01765887-s",
+ "00202772-n",
+ "07227534-n",
+ "06806283-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 31951,
+ "created": "2017-12-04T18:52:00.000Z",
+ "lastUpdated": "2021-07-26T13:02:30.500Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 5,
+ "keyword": "interdiction d'aller aux toilettes"
+ },
+ {
+ "hasLocution": false,
+ "type": 5,
+ "keyword": "passage aux toilettes interdit"
+ },
+ {
+ "keyword": "ne pas aller aux toilettes",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "ne pas aller aux WC",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "gynecology",
+ "symptom"
+ ],
+ "synsets": [
+ "02128571-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "symptom"
+ ],
+ "_id": 31957,
+ "created": "2017-12-04T19:12:20.000Z",
+ "lastUpdated": "2021-07-24T13:17:53.038Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir mauvais",
+ "hasLocution": true
+ },
+ {
+ "keyword": "puer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics"
+ ],
+ "synsets": [
+ "14071923-n",
+ "00057220-v",
+ "00056644-v",
+ "01450251-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 31959,
+ "created": "2017-12-04T19:13:31.000Z",
+ "lastUpdated": "2021-07-24T13:17:44.919Z",
+ "keywords": [
+ {
+ "keyword": "accoucher",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "donner naissance",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "pousser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs"
+ ],
+ "synsets": [
+ "00014398-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs"
+ ],
+ "_id": 31937,
+ "created": "2017-12-04T17:43:02.000Z",
+ "lastUpdated": "2021-07-24T13:21:47.598Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se reposer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "01765887-s",
+ "00202772-n",
+ "07227534-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 31961,
+ "created": "2017-12-04T19:18:46.000Z",
+ "lastUpdated": "2021-07-26T08:28:33.791Z",
+ "keywords": [
+ {
+ "keyword": "interdiction de mouiller le cordon ombilical",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "patient",
+ "signaling system"
+ ],
+ "synsets": [
+ "03847186-n",
+ "10225604-n",
+ "10425439-n",
+ "08081359-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "person",
+ "patient",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 31967,
+ "created": "2017-12-04T19:32:10.000Z",
+ "lastUpdated": "2021-07-26T08:25:23.575Z",
+ "keywords": [
+ {
+ "keyword": "bureau d'information des usagers",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bureaux d'information des usagers"
+ },
+ {
+ "keyword": "service de défense des patients",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "services de défense des patients"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "00323882-n",
+ "00094603-r",
+ "02894142-a",
+ "03745652-n",
+ "00665353-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 31969,
+ "created": "2017-12-04T19:53:27.000Z",
+ "lastUpdated": "2021-07-24T13:14:45.882Z",
+ "keywords": [
+ {
+ "keyword": "intramusculaire",
+ "hasLocution": false,
+ "plural": "intramusculaires",
+ "type": 2
+ },
+ {
+ "keyword": "injection intramusculaire",
+ "hasLocution": false,
+ "plural": "injections intramusculaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeding"
+ ],
+ "synsets": [
+ "07501195-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "feeding"
+ ],
+ "_id": 31971,
+ "created": "2017-12-04T19:59:01.000Z",
+ "lastUpdated": "2021-07-24T13:11:38.761Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "gourmand",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics"
+ ],
+ "synsets": [
+ "01765887-s",
+ "00202772-n",
+ "04395249-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 31965,
+ "created": "2017-12-04T19:27:53.000Z",
+ "lastUpdated": "2021-07-28T16:17:09.566Z",
+ "keywords": [
+ {
+ "keyword": "interdiction d'utiliser des tampons",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "07218560-n",
+ "00515323-r",
+ "01013752-v",
+ "01013058-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 31973,
+ "created": "2017-12-04T20:00:42.000Z",
+ "lastUpdated": "2024-10-13T06:10:08.135Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "oui",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "affirmer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "acquiescer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human value"
+ ],
+ "synsets": [
+ "00592510-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human value"
+ ],
+ "_id": 31975,
+ "created": "2017-12-04T20:01:24.000Z",
+ "lastUpdated": "2021-07-24T13:11:27.829Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prendre conscience",
+ "hasLocution": true
+ },
+ {
+ "keyword": "être conscient",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "04085686-n",
+ "03083745-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 31979,
+ "created": "2017-12-04T20:08:08.000Z",
+ "lastUpdated": "2021-07-25T14:50:37.343Z",
+ "keywords": [
+ {
+ "keyword": "réservoir",
+ "type": 2,
+ "plural": "réservoirs",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "intimate hygiene"
+ ],
+ "synsets": [
+ "04142398-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "human body",
+ "intimate hygiene"
+ ],
+ "_id": 31981,
+ "created": "2017-12-04T20:12:24.000Z",
+ "lastUpdated": "2021-07-24T13:07:41.675Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "serviette périodique",
+ "hasLocution": false,
+ "plural": "serviettes périodiques"
+ },
+ {
+ "keyword": "serviette hygiénique",
+ "hasLocution": false,
+ "plural": "serviettes hygiéniques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01268418-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 31977,
+ "created": "2017-12-04T20:02:20.000Z",
+ "lastUpdated": "2021-07-24T13:11:09.796Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "drôle",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "amusant",
+ "hasLocution": true
+ },
+ {
+ "keyword": "comique",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational organization"
+ ],
+ "synsets": [
+ "05765899-n"
+ ],
+ "tags": [
+ "education",
+ "organization"
+ ],
+ "_id": 31985,
+ "created": "2017-12-04T20:21:01.000Z",
+ "lastUpdated": "2021-07-26T13:00:40.652Z",
+ "keywords": [
+ {
+ "keyword": "formation professionnelle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "formations professionnelles"
+ },
+ {
+ "keyword": "enseignement technique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "enseignements techniques"
+ },
+ {
+ "keyword": "enseignement professionnel",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "enseignements professionnels"
+ },
+ {
+ "keyword": "qualification professionnelle",
+ "hasLocution": false,
+ "plural": "qualifications professionnelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14556418-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 31987,
+ "created": "2017-12-04T20:22:50.000Z",
+ "lastUpdated": "2021-07-24T13:04:47.204Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "allergie",
+ "hasLocution": true,
+ "plural": "allergies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room"
+ ],
+ "synsets": [
+ "03855765-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room"
+ ],
+ "_id": 31989,
+ "created": "2017-12-04T20:24:25.000Z",
+ "lastUpdated": "2021-07-24T13:04:38.286Z",
+ "keywords": [
+ {
+ "keyword": "salle d'opération",
+ "hasLocution": false,
+ "plural": "salles d'opération",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "law and justice"
+ ],
+ "synsets": [
+ "04857348-n",
+ "02809193-a"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 31983,
+ "created": "2017-12-04T20:15:25.000Z",
+ "lastUpdated": "2021-07-26T08:09:58.629Z",
+ "keywords": [
+ {
+ "keyword": "justice sociale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "justices sociales"
+ },
+ {
+ "keyword": "équité sociale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "équités sociales"
+ },
+ {
+ "keyword": "égalité sociale",
+ "hasLocution": false,
+ "plural": "égalités sociales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00036355-v",
+ "01538956-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 31991,
+ "created": "2017-12-04T20:26:36.000Z",
+ "lastUpdated": "2021-07-24T13:04:10.799Z",
+ "keywords": [
+ {
+ "keyword": "se savonner le visage",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "savonner le visage",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03735985-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 31963,
+ "created": "2017-12-04T19:24:37.000Z",
+ "lastUpdated": "2021-07-26T08:28:15.956Z",
+ "keywords": [
+ {
+ "keyword": "salle d'accouchement",
+ "hasLocution": false,
+ "plural": "salles d'accouchement",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "10557379-n",
+ "01468558-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 31995,
+ "created": "2017-12-04T20:29:40.000Z",
+ "lastUpdated": "2021-07-24T13:03:13.515Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "romantique",
+ "hasLocution": true
+ },
+ {
+ "keyword": "amoureux",
+ "type": 4,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational organization"
+ ],
+ "synsets": [
+ "06711015-n",
+ "08426574-n"
+ ],
+ "tags": [
+ "education",
+ "organization"
+ ],
+ "_id": 31997,
+ "created": "2017-12-04T20:31:37.000Z",
+ "lastUpdated": "2021-07-26T12:58:46.125Z",
+ "keywords": [
+ {
+ "keyword": "baccalauréat",
+ "hasLocution": false,
+ "plural": "baccalauréats",
+ "type": 2
+ },
+ {
+ "hasLocution": true,
+ "keyword": "lycée",
+ "plural": "lycées",
+ "type": 2
+ },
+ {
+ "keyword": "enseignement secondaire",
+ "hasLocution": false,
+ "plural": "enseignements secondaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "educational organization"
+ ],
+ "synsets": [
+ "05101152-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "education",
+ "organization"
+ ],
+ "_id": 32001,
+ "created": "2017-12-04T20:38:20.000Z",
+ "lastUpdated": "2021-07-27T16:27:36.493Z",
+ "keywords": [
+ {
+ "keyword": "quelle année scolaire ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quel niveau scolaire ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quelle classe ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quel cours ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "educational organization"
+ ],
+ "synsets": [
+ "05101152-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "education",
+ "organization"
+ ],
+ "_id": 32002,
+ "created": "2017-12-04T20:38:20.000Z",
+ "lastUpdated": "2021-07-27T16:27:25.987Z",
+ "keywords": [
+ {
+ "keyword": "quelle année scolaire ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quel niveau scolaire ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quelle classe ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quel cours?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "14579795-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "ophthalmology"
+ ],
+ "_id": 32005,
+ "created": "2017-12-04T20:39:02.000Z",
+ "lastUpdated": "2021-07-24T12:57:05.331Z",
+ "keywords": [
+ {
+ "keyword": "scotome",
+ "hasLocution": false,
+ "plural": "scotomes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational organization"
+ ],
+ "synsets": [
+ "02402779-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "organization"
+ ],
+ "_id": 31999,
+ "created": "2017-12-04T20:35:53.000Z",
+ "lastUpdated": "2021-07-24T13:02:17.974Z",
+ "keywords": [
+ {
+ "keyword": "passer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "passer au niveau supérieur",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "07448262-n",
+ "05522061-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 32009,
+ "created": "2017-12-04T20:41:26.000Z",
+ "lastUpdated": "2021-07-26T08:06:59.544Z",
+ "keywords": [
+ {
+ "keyword": "mutilation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mutilations"
+ },
+ {
+ "keyword": "mutilation génitale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mutilations génitales"
+ },
+ {
+ "keyword": "mutilation féminine",
+ "hasLocution": false,
+ "plural": "mutilations féminines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "13566239-n",
+ "03513245-n",
+ "03130380-n",
+ "03572246-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 32011,
+ "created": "2017-12-04T20:42:37.000Z",
+ "lastUpdated": "2021-07-26T09:17:45.531Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "table de réanimation néonatale",
+ "plural": "tables de réanimation néonatale"
+ },
+ {
+ "keyword": "table de réanimation nouveau-né",
+ "hasLocution": false,
+ "plural": "tables de réanimation nouveau-né",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts"
+ ],
+ "synsets": [
+ "00500585-r",
+ "00252367-r",
+ "01018550-s"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 32007,
+ "created": "2017-12-04T20:40:10.000Z",
+ "lastUpdated": "2021-07-24T12:56:02.485Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "au milieu",
+ "hasLocution": true
+ },
+ {
+ "keyword": "central",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "taste",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02406317-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "taste",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 32013,
+ "created": "2017-12-04T20:43:37.000Z",
+ "lastUpdated": "2021-07-24T12:54:38.021Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "piquant",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "00074587-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 32017,
+ "created": "2017-12-04T20:45:55.000Z",
+ "lastUpdated": "2021-07-24T12:54:30.396Z",
+ "keywords": [
+ {
+ "keyword": "pertes de sang",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "hémorragie vaginale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "hémorragies vaginales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical art"
+ ],
+ "synsets": [
+ "01733312-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music"
+ ],
+ "_id": 32015,
+ "created": "2017-12-04T20:44:52.000Z",
+ "lastUpdated": "2021-07-24T12:54:35.320Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Faire entendre un chant ; produire par la voix des sons mélodieux, une Åuvre musicale",
+ "keyword": "chanter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics"
+ ],
+ "synsets": [
+ "00186627-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32020,
+ "created": "2017-12-04T20:50:40.000Z",
+ "lastUpdated": "2021-07-24T12:53:14.827Z",
+ "keywords": [
+ {
+ "keyword": "césarienne",
+ "hasLocution": false,
+ "plural": "césariennes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics"
+ ],
+ "synsets": [
+ "14071923-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32019,
+ "created": "2017-12-04T20:50:40.000Z",
+ "lastUpdated": "2021-07-26T08:06:13.851Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "plural": "accouchements",
+ "keyword": "accouchement"
+ },
+ {
+ "keyword": "travail",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "travaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics"
+ ],
+ "synsets": [
+ "14071923-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32022,
+ "created": "2017-12-04T20:50:40.000Z",
+ "lastUpdated": "2021-07-26T08:04:46.001Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "accouchement",
+ "plural": "accouchements"
+ },
+ {
+ "keyword": "travail",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "travaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14386432-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 31993,
+ "created": "2017-12-04T20:28:42.000Z",
+ "lastUpdated": "2021-07-24T13:03:36.607Z",
+ "keywords": [
+ {
+ "keyword": "tachycardie",
+ "hasLocution": false,
+ "plural": "tachycardie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01188961-v",
+ "02549967-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 32028,
+ "created": "2017-12-04T20:53:21.000Z",
+ "lastUpdated": "2021-07-24T12:51:54.276Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "allaiter",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "téter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01188961-v",
+ "02549967-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 32029,
+ "created": "2017-12-04T20:53:21.000Z",
+ "lastUpdated": "2021-07-24T12:51:47.187Z",
+ "keywords": [
+ {
+ "keyword": "tenir le sein",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01188961-v",
+ "02549967-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 32030,
+ "created": "2017-12-04T20:53:21.000Z",
+ "lastUpdated": "2021-07-24T12:51:34.692Z",
+ "keywords": [
+ {
+ "keyword": "allaiter",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01188961-v",
+ "02549967-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 32027,
+ "created": "2017-12-04T20:53:21.000Z",
+ "lastUpdated": "2021-07-24T12:52:26.874Z",
+ "keywords": [
+ {
+ "keyword": "allaiter",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "têter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "contraceptive method"
+ ],
+ "synsets": [
+ "03101244-n",
+ "03101244-n",
+ "01893918-s",
+ "00853811-n",
+ "03587265-n"
+ ],
+ "tags": [
+ "sexuality",
+ "contraceptive method"
+ ],
+ "_id": 32035,
+ "created": "2017-12-04T21:01:38.000Z",
+ "lastUpdated": "2021-07-24T12:51:02.094Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "stérilet",
+ "hasLocution": false,
+ "plural": "stérilets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics"
+ ],
+ "synsets": [
+ "14071923-n",
+ "00057220-v",
+ "00056644-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32021,
+ "created": "2017-12-04T20:50:40.000Z",
+ "lastUpdated": "2021-07-26T08:05:18.291Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "accouchement",
+ "plural": "accouchement"
+ },
+ {
+ "keyword": "travail",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "travaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "contraceptive method"
+ ],
+ "synsets": [
+ "03101244-n",
+ "01893918-s",
+ "00853811-n",
+ "03568890-n"
+ ],
+ "tags": [
+ "sexuality",
+ "contraceptive method"
+ ],
+ "_id": 32037,
+ "created": "2017-12-04T21:03:42.000Z",
+ "lastUpdated": "2021-07-24T12:50:40.257Z",
+ "keywords": [
+ {
+ "keyword": "implant contraceptif",
+ "hasLocution": false,
+ "plural": "implants contraceptifs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "contraceptive method"
+ ],
+ "synsets": [
+ "01320640-a",
+ "03101244-n",
+ "01893918-s",
+ "00853811-n"
+ ],
+ "tags": [
+ "sexuality",
+ "contraceptive method"
+ ],
+ "_id": 32043,
+ "created": "2017-12-04T21:07:18.000Z",
+ "lastUpdated": "2021-07-26T08:02:39.056Z",
+ "keywords": [
+ {
+ "keyword": "contraception injectable",
+ "hasLocution": false,
+ "plural": "contraceptions injectables",
+ "type": 2
+ },
+ {
+ "keyword": "injection contraceptive",
+ "hasLocution": false,
+ "plural": "injections contraceptives",
+ "type": 2
+ },
+ {
+ "keyword": "contraceptif injectable",
+ "hasLocution": false,
+ "plural": "contraceptifs injectables",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom",
+ "obstetrics"
+ ],
+ "synsets": [
+ "02128571-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32045,
+ "created": "2017-12-04T21:08:12.000Z",
+ "lastUpdated": "2021-07-24T12:47:28.703Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir mauvais",
+ "hasLocution": true
+ },
+ {
+ "keyword": "puer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom",
+ "obstetrics"
+ ],
+ "synsets": [
+ "02128571-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32046,
+ "created": "2017-12-04T21:08:12.000Z",
+ "lastUpdated": "2021-07-24T12:47:17.785Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sentir mauvais",
+ "hasLocution": true
+ },
+ {
+ "keyword": "puer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "04356991-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 32049,
+ "created": "2017-12-04T21:13:20.000Z",
+ "lastUpdated": "2021-07-24T12:46:55.803Z",
+ "keywords": [
+ {
+ "keyword": "ventouse obstétricale",
+ "hasLocution": false,
+ "plural": "ventouses obstétricales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "contraceptive method"
+ ],
+ "synsets": [
+ "03943171-n",
+ "03101244-n",
+ "01893918-s",
+ "00853811-n"
+ ],
+ "tags": [
+ "sexuality",
+ "contraceptive method"
+ ],
+ "_id": 32041,
+ "created": "2017-12-04T21:06:23.000Z",
+ "lastUpdated": "2021-07-24T12:49:20.619Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pilule",
+ "hasLocution": true,
+ "plural": "pilules"
+ },
+ {
+ "keyword": "pilule contraceptive",
+ "hasLocution": false,
+ "plural": "pilules contraceptives",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "04429007-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device",
+ "core vocabulary"
+ ],
+ "_id": 32051,
+ "created": "2017-12-04T21:13:54.000Z",
+ "lastUpdated": "2021-07-24T12:46:05.350Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "thermomètre",
+ "hasLocution": true,
+ "plural": "thermomètre"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "07448262-n",
+ "05522061-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 32039,
+ "created": "2017-12-04T21:04:21.000Z",
+ "lastUpdated": "2021-07-26T08:03:48.327Z",
+ "keywords": [
+ {
+ "keyword": "mutilation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mutilations"
+ },
+ {
+ "keyword": "mutilation génitale",
+ "hasLocution": false,
+ "plural": "mutilations génitales",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "mutilation féminine",
+ "plural": "mutilations féminine",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "02423786-v",
+ "02423521-v",
+ "01887709-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 31892,
+ "created": "2017-12-04T17:02:46.000Z",
+ "lastUpdated": "2021-07-24T13:32:24.795Z",
+ "keywords": [
+ {
+ "keyword": "jouer à la balle",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "jouer au ballon",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00785203-s",
+ "14576394-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "ophthalmology"
+ ],
+ "_id": 32053,
+ "created": "2017-12-04T21:15:12.000Z",
+ "lastUpdated": "2021-07-26T07:57:21.373Z",
+ "keywords": [
+ {
+ "keyword": "vision trouble",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "visions troubles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "00825545-n",
+ "00086587-v",
+ "04524830-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 32057,
+ "created": "2017-12-04T21:17:11.000Z",
+ "lastUpdated": "2021-07-24T12:45:10.594Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vaccination",
+ "hasLocution": true,
+ "plural": "vaccinations"
+ },
+ {
+ "type": 3,
+ "keyword": "vacciner",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "vaccin",
+ "hasLocution": true,
+ "plural": "vaccins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00295445-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 32063,
+ "created": "2017-12-04T21:24:45.000Z",
+ "lastUpdated": "2021-09-13T14:10:51.928Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "paresseux",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "fainéant",
+ "hasLocution": false
+ },
+ {
+ "keyword": "oisif",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "10771761-n"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 32065,
+ "created": "2017-12-04T21:27:54.000Z",
+ "lastUpdated": "2021-07-24T12:40:50.343Z",
+ "keywords": [
+ {
+ "keyword": "victime",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "victimes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02081903-v",
+ "02242564-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 32061,
+ "created": "2017-12-04T21:18:56.000Z",
+ "lastUpdated": "2021-07-24T12:44:05.969Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "apporter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective",
+ "basic concepts"
+ ],
+ "synsets": [
+ "01016876-a",
+ "00231668-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 32069,
+ "created": "2017-12-04T21:30:09.000Z",
+ "lastUpdated": "2021-07-24T12:40:07.006Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "dernier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "contraceptive method"
+ ],
+ "synsets": [
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "sexuality",
+ "contraceptive method"
+ ],
+ "_id": 32071,
+ "created": "2017-12-04T21:36:57.000Z",
+ "lastUpdated": "2021-07-24T12:40:01.567Z",
+ "keywords": [
+ {
+ "keyword": "retirer le préservatif",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enlever le préservatif",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "contraceptive method"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "sexuality",
+ "contraceptive method"
+ ],
+ "_id": 32073,
+ "created": "2017-12-04T21:38:28.000Z",
+ "lastUpdated": "2021-07-24T12:39:30.781Z",
+ "keywords": [
+ {
+ "keyword": "mettre un préservatif",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "dérouler le préservatif",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14386432-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 32059,
+ "created": "2017-12-04T21:17:47.000Z",
+ "lastUpdated": "2021-07-24T12:44:42.116Z",
+ "keywords": [
+ {
+ "keyword": "tachycardie",
+ "hasLocution": false,
+ "plural": "tachycardies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00785203-s",
+ "14576394-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "ophthalmology"
+ ],
+ "_id": 32054,
+ "created": "2017-12-04T21:15:12.000Z",
+ "lastUpdated": "2021-07-24T12:45:44.286Z",
+ "keywords": [
+ {
+ "keyword": "vision trouble",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "categorization"
+ ],
+ "synsets": [
+ "06331562-n",
+ "06329055-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "categorization"
+ ],
+ "_id": 32067,
+ "created": "2017-12-04T21:29:25.000Z",
+ "lastUpdated": "2021-07-24T12:40:20.938Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "verbes",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "verbe",
+ "hasLocution": true
+ },
+ {
+ "keyword": "action",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "actions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "03831453-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 32076,
+ "created": "2017-12-04T21:40:52.000Z",
+ "lastUpdated": "2021-07-24T12:35:52.577Z",
+ "keywords": [
+ {
+ "keyword": "protège-téton",
+ "hasLocution": false,
+ "plural": "protège-tétons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "odontology"
+ ],
+ "synsets": [
+ "06056961-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "odontology"
+ ],
+ "_id": 32082,
+ "created": "2017-12-04T21:43:29.000Z",
+ "lastUpdated": "2021-07-24T12:25:42.829Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "odontologie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10145546-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 32084,
+ "created": "2017-12-04T21:50:00.000Z",
+ "lastUpdated": "2021-07-25T14:42:20.103Z",
+ "keywords": [
+ {
+ "keyword": "médecin généraliste",
+ "hasLocution": false,
+ "plural": "médecins généralistes",
+ "type": 2
+ },
+ {
+ "keyword": "médecin de famille",
+ "hasLocution": false,
+ "plural": "médecins de famille",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10145546-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 32085,
+ "created": "2017-12-04T21:50:00.000Z",
+ "lastUpdated": "2021-07-25T14:42:16.206Z",
+ "keywords": [
+ {
+ "keyword": "médecin généraliste",
+ "hasLocution": false,
+ "plural": "médecins généralistes",
+ "type": 2
+ },
+ {
+ "keyword": "médecin de famille",
+ "hasLocution": false,
+ "plural": "médecins de famille",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14343111-n",
+ "01181100-s"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 32075,
+ "created": "2017-12-04T21:39:50.000Z",
+ "lastUpdated": "2021-07-24T12:38:55.978Z",
+ "keywords": [
+ {
+ "keyword": "jaunisse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jaunisses"
+ },
+ {
+ "keyword": "ictère",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ictères"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character",
+ "rome"
+ ],
+ "synsets": [
+ "09736329-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "civilization",
+ "Rome"
+ ],
+ "_id": 32088,
+ "created": "2017-12-04T21:51:36.000Z",
+ "lastUpdated": "2021-07-24T12:22:55.482Z",
+ "keywords": [
+ {
+ "keyword": "romain",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "romains"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cutlery",
+ "gastronomy"
+ ],
+ "synsets": [
+ "03029438-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "cutlery",
+ "home",
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 32090,
+ "created": "2017-12-04T21:53:52.000Z",
+ "lastUpdated": "2024-12-12T15:55:39.852Z",
+ "keywords": [
+ {
+ "keyword": "baguettes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "human reproduction"
+ ],
+ "synsets": [
+ "10389398-n",
+ "10334494-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "human reproduction"
+ ],
+ "_id": 32080,
+ "created": "2017-12-04T21:42:33.000Z",
+ "lastUpdated": "2021-07-24T12:27:02.410Z",
+ "keywords": [
+ {
+ "keyword": "obstétricenne",
+ "hasLocution": false,
+ "plural": "obstétricennes",
+ "type": 2
+ },
+ {
+ "keyword": "accoucheuse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "accoucheuses"
+ },
+ {
+ "keyword": "sage-femme",
+ "hasLocution": false,
+ "plural": "sages-femmes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "intimate hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "04142398-n",
+ "05407190-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "intimate hygiene",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 32092,
+ "created": "2017-12-04T21:56:41.000Z",
+ "lastUpdated": "2021-07-24T12:22:22.731Z",
+ "keywords": [
+ {
+ "keyword": "serviette hygiénique tachée",
+ "hasLocution": false,
+ "plural": "serviettes hygiéniques tachées",
+ "type": 2
+ },
+ {
+ "keyword": "serviette périodique tachée",
+ "hasLocution": false,
+ "plural": "serviettes périodiques tachées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "04617008-n",
+ "02154216-v",
+ "01005930-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 32078,
+ "created": "2017-12-04T21:41:58.000Z",
+ "lastUpdated": "2021-07-25T14:42:24.376Z",
+ "keywords": [
+ {
+ "keyword": "radiographie panoramique",
+ "hasLocution": false,
+ "plural": "radiographies panoramiques",
+ "type": 2
+ },
+ {
+ "keyword": "radio panoramique",
+ "hasLocution": false,
+ "plural": "radios panoramiques",
+ "type": 2
+ },
+ {
+ "keyword": "radio dentaire panoramique",
+ "hasLocution": false,
+ "plural": "radios dentaires panoramiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "adapted sport"
+ ],
+ "synsets": [
+ "01930264-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "adapted sport"
+ ],
+ "_id": 32093,
+ "created": "2017-12-04T21:57:16.000Z",
+ "lastUpdated": "2021-07-24T12:21:06.835Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se déplacer rapidement, en s'appuyant alternativement sur une jambe puis sur l'autre ou sur une patte puis sur l'autre",
+ "keyword": "courir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "archaeology"
+ ],
+ "synsets": [
+ "09824229-n",
+ "06153532-n",
+ "10067630-n",
+ "06154306-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "history",
+ "archaeology"
+ ],
+ "_id": 32095,
+ "created": "2017-12-04T22:02:05.000Z",
+ "lastUpdated": "2021-07-24T12:20:53.490Z",
+ "keywords": [
+ {
+ "keyword": "archéologue",
+ "hasLocution": false,
+ "plural": "archéologues",
+ "type": 2
+ },
+ {
+ "keyword": "égyptologue",
+ "hasLocution": false,
+ "plural": "égyptologues",
+ "type": 2
+ },
+ {
+ "keyword": "archéologie",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "égyptologie",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "00964479-v"
+ ],
+ "tags": [],
+ "_id": 32101,
+ "created": "2017-12-04T22:12:11.000Z",
+ "lastUpdated": "2021-07-24T12:18:20.753Z",
+ "keywords": [
+ {
+ "keyword": "communication intrapersonnelle",
+ "hasLocution": false,
+ "plural": "communications intrapersonnelles",
+ "type": 2
+ },
+ {
+ "keyword": "se parler à soi-même",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom",
+ "obstetrics"
+ ],
+ "synsets": [
+ "05406970-n",
+ "00377208-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32103,
+ "created": "2017-12-04T22:14:59.000Z",
+ "lastUpdated": "2021-07-24T12:15:43.973Z",
+ "keywords": [
+ {
+ "keyword": "rupture de la poche des eaux",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "06646199-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 32105,
+ "created": "2017-12-05T19:22:33.000Z",
+ "lastUpdated": "2021-07-24T12:15:24.376Z",
+ "keywords": [
+ {
+ "keyword": "condoléances",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "death",
+ "obstetrics"
+ ],
+ "synsets": [
+ "03615483-n",
+ "05821923-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32107,
+ "created": "2017-12-05T19:23:04.000Z",
+ "lastUpdated": "2021-07-24T12:14:12.760Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "souvenirs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00635519-n",
+ "06056223-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 32111,
+ "created": "2017-12-05T19:47:11.000Z",
+ "lastUpdated": "2021-07-24T12:13:10.390Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "analyse",
+ "hasLocution": true,
+ "plural": "analyses"
+ },
+ {
+ "keyword": "analyse clinique",
+ "hasLocution": false,
+ "plural": "analyses cliniques",
+ "type": 2
+ },
+ {
+ "keyword": "test clinique",
+ "hasLocution": false,
+ "plural": "tests cliniques",
+ "type": 2
+ },
+ {
+ "keyword": "analyse de laboratoire",
+ "hasLocution": false,
+ "plural": "analyses de laboratoire",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "obstetrics",
+ "patient"
+ ],
+ "synsets": [
+ "00174481-a",
+ "10425439-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics",
+ "person",
+ "patient"
+ ],
+ "_id": 32099,
+ "created": "2017-12-04T22:07:31.000Z",
+ "lastUpdated": "2021-07-26T07:56:32.945Z",
+ "keywords": [
+ {
+ "keyword": "patiente enceinte",
+ "hasLocution": false,
+ "plural": "patientes enceintes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00635519-n",
+ "00794017-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 32112,
+ "created": "2017-12-05T19:47:11.000Z",
+ "lastUpdated": "2021-07-24T12:11:53.013Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "analyse",
+ "hasLocution": true,
+ "plural": "analyses"
+ },
+ {
+ "keyword": "analyse clinique",
+ "hasLocution": false,
+ "plural": "analyses cliniques",
+ "type": 2
+ },
+ {
+ "keyword": "test clinique",
+ "hasLocution": false,
+ "plural": "tests cliniques",
+ "type": 2
+ },
+ {
+ "keyword": "analyse de laboratoire",
+ "hasLocution": false,
+ "plural": "analyses de laboratoire"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00370610-n",
+ "14354238-n",
+ "00371266-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32115,
+ "created": "2017-12-05T19:48:02.000Z",
+ "lastUpdated": "2021-07-24T12:10:43.615Z",
+ "keywords": [
+ {
+ "keyword": "contractions",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "contractions utérines",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14206692-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 32117,
+ "created": "2017-12-05T19:49:51.000Z",
+ "lastUpdated": "2021-07-24T12:10:17.016Z",
+ "keywords": [
+ {
+ "keyword": "furoncle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "furoncles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "reproductive system"
+ ],
+ "synsets": [
+ "05521732-n",
+ "05522061-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "reproductive system"
+ ],
+ "_id": 32119,
+ "created": "2017-12-05T19:53:03.000Z",
+ "lastUpdated": "2021-07-24T12:09:32.358Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vagin",
+ "hasLocution": true,
+ "plural": "vagins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "reproductive system"
+ ],
+ "synsets": [
+ "05521732-n",
+ "05522061-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "physiology",
+ "human physiology",
+ "reproductive system"
+ ],
+ "_id": 32121,
+ "created": "2017-12-05T19:54:03.000Z",
+ "lastUpdated": "2021-07-24T12:09:23.958Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vagin",
+ "hasLocution": true,
+ "plural": "vagins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "obstetrics"
+ ],
+ "synsets": [
+ "05394887-n",
+ "13510240-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32109,
+ "created": "2017-12-05T19:44:37.000Z",
+ "lastUpdated": "2021-07-24T12:13:51.711Z",
+ "keywords": [
+ {
+ "keyword": "maturation pulmonaire",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "gynecology"
+ ],
+ "synsets": [
+ "14338619-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "gynecology"
+ ],
+ "_id": 32097,
+ "created": "2017-12-04T22:05:20.000Z",
+ "lastUpdated": "2021-07-24T12:19:26.163Z",
+ "keywords": [
+ {
+ "keyword": "grosseur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "grosseurs"
+ },
+ {
+ "keyword": "nodule",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "nodules"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "symptom",
+ "body sensation"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 32125,
+ "created": "2017-12-05T19:59:43.000Z",
+ "lastUpdated": "2021-07-24T12:09:09.915Z",
+ "keywords": [
+ {
+ "keyword": "en sueur",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "type": 4,
+ "keyword": "transpirant",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01151786-a",
+ "00591490-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 32123,
+ "created": "2017-12-05T19:58:06.000Z",
+ "lastUpdated": "2021-07-24T12:09:16.332Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "content",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "heureux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00965602-v",
+ "00162829-r",
+ "00966726-v",
+ "07148409-n",
+ "07150914-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 32133,
+ "created": "2017-12-05T20:09:25.000Z",
+ "lastUpdated": "2021-07-24T12:07:17.569Z",
+ "keywords": [
+ {
+ "keyword": "parler lentement",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective",
+ "basic concepts",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01014459-a",
+ "02209716-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 32129,
+ "created": "2017-12-05T20:04:15.000Z",
+ "lastUpdated": "2021-09-02T11:29:37.331Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "premier",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "première",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "intimate hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "04142398-n",
+ "00074587-v",
+ "05407190-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "intimate hygiene",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 32137,
+ "created": "2017-12-05T20:12:11.000Z",
+ "lastUpdated": "2021-08-05T06:50:24.494Z",
+ "keywords": [
+ {
+ "keyword": "serviette hygiénique tachée",
+ "hasLocution": false,
+ "plural": "serviettes hygiéniques tachées",
+ "type": 2
+ },
+ {
+ "keyword": "c'est de quelle couleur ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "de quelle couleur est-ce ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "economy"
+ ],
+ "synsets": [
+ "00638164-n",
+ "05805605-n"
+ ],
+ "tags": [
+ "economy"
+ ],
+ "_id": 32138,
+ "created": "2017-12-05T20:17:17.000Z",
+ "lastUpdated": "2021-07-24T12:03:59.271Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "recherche",
+ "hasLocution": true,
+ "plural": "recherches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical art",
+ "mass media",
+ "electrical appliance",
+ "appliance",
+ "mass media device"
+ ],
+ "synsets": [
+ "02175483-v",
+ "02174146-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music",
+ "mass media",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "mass media device"
+ ],
+ "_id": 32131,
+ "created": "2017-12-05T20:07:05.000Z",
+ "lastUpdated": "2024-12-08T07:04:54.510Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "écouter de la musique",
+ "hasLocution": true
+ },
+ {
+ "keyword": "entendre de la musique",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "unit of time"
+ ],
+ "synsets": [
+ "13768652-n",
+ "15180180-n",
+ "08283770-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time"
+ ],
+ "_id": 32127,
+ "created": "2017-12-05T20:02:40.000Z",
+ "lastUpdated": "2021-07-24T12:08:15.868Z",
+ "keywords": [
+ {
+ "keyword": "10 jours",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "une dizaine de jours",
+ "hasLocution": false,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "02811600-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 32142,
+ "created": "2017-12-05T20:34:57.000Z",
+ "lastUpdated": "2021-07-24T12:03:34.696Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "baignoire",
+ "hasLocution": true,
+ "plural": "baignoires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic needs",
+ "body sensation"
+ ],
+ "synsets": [
+ "01273114-a",
+ "14064142-n",
+ "02126525-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "person",
+ "basic needs",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 32140,
+ "created": "2017-12-05T20:18:21.000Z",
+ "lastUpdated": "2021-07-24T12:03:46.222Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "assoiffé",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "basic needs",
+ "routine"
+ ],
+ "synsets": [
+ "00047662-v",
+ "00046251-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "basic needs",
+ "routine"
+ ],
+ "_id": 32135,
+ "created": "2017-12-05T20:11:15.000Z",
+ "lastUpdated": "2021-07-24T12:06:46.771Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "habiller",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'habiller",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "obstetrics"
+ ],
+ "synsets": [
+ "14386888-n",
+ "00186627-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32144,
+ "created": "2017-12-05T20:36:10.000Z",
+ "lastUpdated": "2021-07-24T12:03:25.726Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cicatrice",
+ "hasLocution": true,
+ "plural": "cicatrices"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00166433-s",
+ "00166720-s",
+ "00759397-s",
+ "00166125-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 32146,
+ "created": "2017-12-05T20:37:35.000Z",
+ "lastUpdated": "2021-07-24T12:02:55.731Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "distrait",
+ "hasLocution": true
+ },
+ {
+ "keyword": "inattentif",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "tête en l'air",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01080481-a",
+ "01806732-a",
+ "01821097-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 32150,
+ "created": "2017-12-05T20:41:35.000Z",
+ "lastUpdated": "2021-09-13T16:02:59.527Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "antipathique",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "désagréable",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "déplaire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "taste",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02407497-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "taste",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 32152,
+ "created": "2017-12-05T21:39:57.000Z",
+ "lastUpdated": "2021-07-24T11:27:13.861Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "salé",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14350671-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 32148,
+ "created": "2017-12-05T20:39:57.000Z",
+ "lastUpdated": "2021-07-24T12:01:50.841Z",
+ "keywords": [
+ {
+ "keyword": "mal de ventre",
+ "hasLocution": true,
+ "plural": "maux de ventre",
+ "type": 2
+ },
+ {
+ "keyword": "douleur d'estomac",
+ "hasLocution": false,
+ "plural": "douleurs d'estomac",
+ "type": 2
+ },
+ {
+ "keyword": "douleur épigastrique",
+ "hasLocution": false,
+ "plural": "douleurs épigastriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02158139-v",
+ "01318273-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 32156,
+ "created": "2017-12-05T21:42:38.000Z",
+ "lastUpdated": "2021-07-24T11:27:06.286Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chercher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se demander",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00008299-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 32158,
+ "created": "2017-12-05T21:43:23.000Z",
+ "lastUpdated": "2021-08-04T09:03:32.687Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire un clin d'œil",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00035252-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 32162,
+ "created": "2017-12-05T21:47:49.000Z",
+ "lastUpdated": "2021-07-24T11:26:00.662Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "doucher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "prendre une douche",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se doucher",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14350016-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 32160,
+ "created": "2017-12-05T21:45:25.000Z",
+ "lastUpdated": "2021-07-24T11:26:26.126Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mal de tête",
+ "hasLocution": true,
+ "plural": "maux de tête"
+ },
+ {
+ "keyword": "migraine",
+ "hasLocution": false,
+ "plural": "migraines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "03033797-n",
+ "07937695-n",
+ "02800154-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 32164,
+ "created": "2017-12-05T21:48:33.000Z",
+ "lastUpdated": "2021-07-24T11:25:32.226Z",
+ "keywords": [
+ {
+ "keyword": "cidrerie",
+ "hasLocution": false,
+ "plural": "cidreries",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeding"
+ ],
+ "synsets": [
+ "01191960-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding"
+ ],
+ "_id": 32166,
+ "created": "2017-12-05T21:51:02.000Z",
+ "lastUpdated": "2021-07-24T11:24:46.967Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "jeûner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "02366035-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 32170,
+ "created": "2017-12-05T21:59:02.000Z",
+ "lastUpdated": "2021-07-24T11:23:31.162Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "surpris",
+ "hasLocution": true
+ },
+ {
+ "keyword": "étonné",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02034003-v",
+ "02014079-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 32154,
+ "created": "2017-12-05T21:41:32.000Z",
+ "lastUpdated": "2021-07-24T11:27:10.414Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éloigner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'éloigner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "séparer ",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "01765887-s"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32172,
+ "created": "2017-12-05T22:00:10.000Z",
+ "lastUpdated": "2021-07-25T21:31:24.689Z",
+ "keywords": [
+ {
+ "keyword": "pas d'alcool pendant la grossesse",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "alcool interdit pendant la grossesse",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body sensation"
+ ],
+ "synsets": [
+ "00007328-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 32174,
+ "created": "2017-12-05T22:01:51.000Z",
+ "lastUpdated": "2021-07-24T11:22:36.726Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bailler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "08293460-n",
+ "03042670-n",
+ "02738693-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32176,
+ "created": "2017-12-05T22:04:29.000Z",
+ "lastUpdated": "2021-07-24T11:22:31.624Z",
+ "keywords": [
+ {
+ "keyword": "coin",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "coins"
+ },
+ {
+ "keyword": "espace",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "espaces"
+ },
+ {
+ "keyword": "espace de travail",
+ "hasLocution": false,
+ "plural": "espaces de travail",
+ "type": 2
+ },
+ {
+ "keyword": "équipe de travail",
+ "hasLocution": false,
+ "plural": "équipes de travail",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00057220-v",
+ "00056644-v",
+ "01450251-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32168,
+ "created": "2017-12-05T21:51:52.000Z",
+ "lastUpdated": "2021-07-24T11:24:22.628Z",
+ "keywords": [
+ {
+ "keyword": "accoucher",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "donner naissance",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "travail",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "naissance",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "naissances"
+ },
+ {
+ "keyword": "pousser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics"
+ ],
+ "synsets": [
+ "00682167-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32180,
+ "created": "2017-12-11T18:16:09.000Z",
+ "lastUpdated": "2021-07-24T11:19:51.920Z",
+ "keywords": [
+ {
+ "keyword": "épisiotomie",
+ "hasLocution": false,
+ "plural": "épisiotomies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "educational space"
+ ],
+ "synsets": [
+ "08293460-n",
+ "03042670-n",
+ "02738693-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "education",
+ "educational space"
+ ],
+ "_id": 32178,
+ "created": "2017-12-05T22:08:00.000Z",
+ "lastUpdated": "2021-07-26T07:52:11.976Z",
+ "keywords": [
+ {
+ "keyword": "coin",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "coins"
+ },
+ {
+ "keyword": "espace",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "espaces"
+ },
+ {
+ "keyword": "quel coin ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quel espace ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "domaine",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "domaines"
+ },
+ {
+ "keyword": "zone",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "zones"
+ },
+ {
+ "keyword": "quelle zone ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quel domaine ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "endroit",
+ "hasLocution": true,
+ "plural": "endroits",
+ "type": 2
+ },
+ {
+ "keyword": "quel endroit?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "00820023-n",
+ "06071957-n",
+ "05337792-n",
+ "03073002-n",
+ "04020673-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 32187,
+ "created": "2017-12-11T18:33:24.000Z",
+ "lastUpdated": "2021-07-26T07:49:25.813Z",
+ "keywords": [
+ {
+ "keyword": "col thyroïdien",
+ "hasLocution": false,
+ "plural": "cols thyroïdiens",
+ "type": 2
+ },
+ {
+ "keyword": "bouclier thyroïdien",
+ "hasLocution": false,
+ "plural": "boucliers thyroïdiens",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "obstetrics",
+ "childcare"
+ ],
+ "synsets": [
+ "14359944-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "gynecology",
+ "obstetrics",
+ "babycare"
+ ],
+ "_id": 32182,
+ "created": "2017-12-11T18:16:59.000Z",
+ "lastUpdated": "2021-07-24T11:19:01.239Z",
+ "keywords": [
+ {
+ "keyword": "inflammation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "inflammations"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "inflammation du sein",
+ "plural": "inflammations du sein",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "03068762-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 32194,
+ "created": "2017-12-11T18:43:19.000Z",
+ "lastUpdated": "2021-07-24T11:14:11.237Z",
+ "keywords": [
+ {
+ "keyword": "cercueil",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cercueils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01129296-a",
+ "02523798-a",
+ "05151326-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 32192,
+ "created": "2017-12-11T18:41:42.000Z",
+ "lastUpdated": "2021-07-27T22:26:29.642Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mauvais",
+ "hasLocution": true,
+ "plural": "mauvais"
+ },
+ {
+ "type": 4,
+ "keyword": "méchant",
+ "hasLocution": true,
+ "plural": "méchant"
+ },
+ {
+ "keyword": "vicieux",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "vicieux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "obstetrics",
+ "childcare"
+ ],
+ "synsets": [
+ "14359944-n",
+ "14349311-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "gynecology",
+ "obstetrics",
+ "babycare"
+ ],
+ "_id": 32184,
+ "created": "2017-12-11T18:19:30.000Z",
+ "lastUpdated": "2021-07-25T21:30:59.050Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "douleur mammaire",
+ "hasLocution": false,
+ "plural": "douleurs mammaires"
+ },
+ {
+ "plural": "douleurs aux seins",
+ "keyword": "douleur aux seins",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "inflammation des seins",
+ "hasLocution": false,
+ "plural": "inflammations des seins",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "01765887-s"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32196,
+ "created": "2017-12-11T20:02:50.000Z",
+ "lastUpdated": "2021-07-26T07:53:08.467Z",
+ "keywords": [
+ {
+ "keyword": "passage aux toilettes interdit",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "interdiction d'aller aux toilettes",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "toilettes fermées",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "odontology"
+ ],
+ "synsets": [],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "odontology"
+ ],
+ "_id": 32198,
+ "created": "2017-12-11T20:06:30.000Z",
+ "lastUpdated": "2021-07-25T21:25:43.165Z",
+ "keywords": [
+ {
+ "keyword": "ouvre-bouche",
+ "hasLocution": false,
+ "plural": "ouvre-bouches",
+ "type": 2
+ },
+ {
+ "keyword": "écarteur buccal",
+ "hasLocution": false,
+ "plural": "écarteurs buccaux",
+ "type": 2
+ },
+ {
+ "keyword": "écarteur de bouche",
+ "hasLocution": false,
+ "plural": "écarteurs de bouche",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "00820023-n",
+ "06071957-n",
+ "05337792-n",
+ "03073002-n",
+ "04020673-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 32186,
+ "created": "2017-12-11T18:33:23.000Z",
+ "lastUpdated": "2021-07-26T07:48:13.236Z",
+ "keywords": [
+ {
+ "keyword": "col thyroïdien",
+ "hasLocution": false,
+ "plural": "cols thyroïdiens",
+ "type": 2
+ },
+ {
+ "keyword": "bouclier thyroïdien",
+ "hasLocution": false,
+ "plural": "boucliers thyroïdiens",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "obstetrics"
+ ],
+ "synsets": [
+ "03283825-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32206,
+ "created": "2017-12-11T20:42:31.000Z",
+ "lastUpdated": "2021-07-26T08:08:13.485Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "monitoring foetal",
+ "plural": "monitorings foetaux"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "cardiotocographie",
+ "plural": "cardiotocographies"
+ },
+ {
+ "hasLocution": false,
+ "plural": "cardiotocographes",
+ "keyword": "cardiotocographe",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "03874541-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 32202,
+ "created": "2017-12-11T20:20:18.000Z",
+ "lastUpdated": "2021-03-24T21:18:35.911Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "masque à oxygène",
+ "hasLocution": false,
+ "plural": "masques à oxygène"
+ },
+ {
+ "keyword": "masque",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "masques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "obstetrics"
+ ],
+ "synsets": [
+ "03283825-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32208,
+ "created": "2017-12-11T20:47:02.000Z",
+ "lastUpdated": "2021-07-25T22:47:53.633Z",
+ "keywords": [
+ {
+ "keyword": "monitoring fœtal",
+ "hasLocution": false,
+ "plural": "monitoring fœtaux",
+ "type": 2
+ },
+ {
+ "keyword": "surveillance fœtale",
+ "hasLocution": false,
+ "plural": "surveillances fœtales",
+ "type": 2
+ },
+ {
+ "keyword": "cardiotocographie",
+ "hasLocution": false,
+ "plural": "cardiotocographies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics"
+ ],
+ "synsets": [
+ "05406970-n",
+ "00377208-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32210,
+ "created": "2017-12-11T20:49:03.000Z",
+ "lastUpdated": "2021-07-26T07:46:37.727Z",
+ "keywords": [
+ {
+ "keyword": "rupture de la poche des eaux",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ruptures de la poche des eaux"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "amniorrhexies",
+ "keyword": "amniorrhexie"
+ },
+ {
+ "keyword": "rompre la poche des eaux",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rupture de la membrane amniotique",
+ "hasLocution": false,
+ "plural": "ruptures de la membrane amniotique",
+ "type": 2
+ },
+ {
+ "keyword": "perte des eaux",
+ "hasLocution": false,
+ "plural": "pertes des eaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs"
+ ],
+ "synsets": [
+ "01908923-v",
+ "01886163-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs"
+ ],
+ "_id": 32214,
+ "created": "2017-12-11T21:05:38.000Z",
+ "lastUpdated": "2021-07-24T11:00:11.199Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "marcher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00456623-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 32216,
+ "created": "2017-12-11T21:18:39.000Z",
+ "lastUpdated": "2021-09-03T17:11:00.310Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 1,
+ "keyword": "jeu de la chandelle"
+ },
+ {
+ "keyword": "la clé de Saint Georges",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "La Clé de Saint Georges",
+ "type": 1
+ },
+ {
+ "keyword": "jeu du mouchoir",
+ "hasLocution": true,
+ "plural": "jeux du mouchoir",
+ "type": 2
+ },
+ {
+ "keyword": "jeu de la chandelle",
+ "hasLocution": false,
+ "plural": "jeux de la chandelle",
+ "type": 2
+ },
+ {
+ "keyword": "jeu du renard qui passe",
+ "hasLocution": false,
+ "plural": "jeux du renard qui passe",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "00660291-n",
+ "00064258-v",
+ "01235302-v",
+ "14344562-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 32200,
+ "created": "2017-12-11T20:18:40.000Z",
+ "lastUpdated": "2021-07-26T07:55:47.941Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire un massage",
+ "hasLocution": true
+ },
+ {
+ "keyword": "engorgement des seins",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "engorgements des seins"
+ },
+ {
+ "keyword": "engorgement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "engorgements"
+ },
+ {
+ "keyword": "masser les seins",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "engorgement mammaire",
+ "hasLocution": false,
+ "plural": "engorgements mammaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "categorization"
+ ],
+ "synsets": [
+ "00408356-n"
+ ],
+ "tags": [
+ "categorization"
+ ],
+ "_id": 32212,
+ "created": "2017-12-11T21:04:34.000Z",
+ "lastUpdated": "2021-07-24T11:00:15.670Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "activité",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "activités",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03133170-n",
+ "03851070-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 32204,
+ "created": "2017-12-11T20:22:23.000Z",
+ "lastUpdated": "2021-07-24T11:08:05.750Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pommade",
+ "hasLocution": true,
+ "plural": "pommades"
+ },
+ {
+ "type": 2,
+ "keyword": "crème",
+ "hasLocution": true,
+ "plural": "crèmes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00082316-v",
+ "00063866-v",
+ "00063687-v",
+ "14575797-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32220,
+ "created": "2017-12-11T21:30:01.000Z",
+ "lastUpdated": "2021-07-25T21:12:28.970Z",
+ "keywords": [
+ {
+ "keyword": "soulager",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "apaiser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "atténuer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "analgésie",
+ "hasLocution": false,
+ "plural": "analgésies",
+ "type": 2
+ },
+ {
+ "keyword": "diminuer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "calmer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00082316-v",
+ "00063866-v",
+ "00063687-v",
+ "14575797-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32223,
+ "created": "2017-12-11T21:30:02.000Z",
+ "lastUpdated": "2021-07-25T21:07:37.695Z",
+ "keywords": [
+ {
+ "keyword": "soulager",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "apaiser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "atténuer",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "analgésie",
+ "plural": "analgésies",
+ "type": 2,
+ "hasLocution": false
+ },
+ {
+ "keyword": "diminuer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "calmer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00082316-v",
+ "00063866-v",
+ "00063687-v",
+ "14575797-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32221,
+ "created": "2017-12-11T21:30:01.000Z",
+ "lastUpdated": "2021-07-25T21:10:02.530Z",
+ "keywords": [
+ {
+ "keyword": "soulager",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "apaiser",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "atténuer",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "analgésie",
+ "plural": "analgésies",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "calmer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "diminuer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01879288-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "babycare"
+ ],
+ "_id": 32230,
+ "created": "2017-12-11T21:33:44.000Z",
+ "lastUpdated": "2022-12-18T05:39:41.031Z",
+ "keywords": [
+ {
+ "keyword": "secouer le bébé",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "secouer la tête du bébé",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00082316-v",
+ "00063866-v",
+ "00063687-v",
+ "14575797-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32224,
+ "created": "2017-12-11T21:30:02.000Z",
+ "lastUpdated": "2021-07-24T10:55:16.046Z",
+ "keywords": [
+ {
+ "keyword": "soulager",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "atténuer",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "apaiser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "analgésie",
+ "hasLocution": false,
+ "plural": "analgésies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "01765887-s",
+ "01242407-s",
+ "00221121-r"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 32218,
+ "created": "2017-12-11T21:22:22.000Z",
+ "lastUpdated": "2021-07-26T07:41:55.715Z",
+ "keywords": [
+ {
+ "keyword": "ne pas coucher sur le ventre",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "ne pas dormir sur le ventre",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "couchage sur le ventre interdit",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03391266-n",
+ "04610120-n",
+ "02860924-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32232,
+ "created": "2017-12-12T12:22:35.000Z",
+ "lastUpdated": "2021-07-25T14:38:55.485Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de réunions",
+ "hasLocution": true,
+ "plural": "salles de réunions"
+ },
+ {
+ "keyword": "salle de travail",
+ "hasLocution": false,
+ "plural": "salles de travail",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "obstetrics",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03546271-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32234,
+ "created": "2017-12-12T12:29:32.000Z",
+ "lastUpdated": "2021-07-24T10:51:46.293Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chambre",
+ "hasLocution": false,
+ "plural": "chambres"
+ },
+ {
+ "keyword": "chambre d'hôpital",
+ "hasLocution": false,
+ "plural": "chambres d'hôpital",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00082316-v",
+ "00063866-v",
+ "00063687-v",
+ "14575797-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32222,
+ "created": "2017-12-11T21:30:01.000Z",
+ "lastUpdated": "2021-07-25T21:08:43.580Z",
+ "keywords": [
+ {
+ "keyword": "soulager",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "apaiser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "atténuer",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "analgésie",
+ "plural": "analgésies",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "diminuer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "calmer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics"
+ ],
+ "synsets": [
+ "00035252-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32238,
+ "created": "2017-12-12T12:39:42.000Z",
+ "lastUpdated": "2021-07-24T10:48:41.402Z",
+ "keywords": [
+ {
+ "keyword": "douche chaude",
+ "hasLocution": false,
+ "plural": "douches chaudes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "childcare",
+ "signaling system"
+ ],
+ "synsets": [
+ "03546271-n",
+ "04557205-n",
+ "08163417-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "babycare",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32242,
+ "created": "2017-12-12T12:58:56.000Z",
+ "lastUpdated": "2021-07-25T14:38:41.957Z",
+ "keywords": [
+ {
+ "keyword": "salle de réanimation néonatale",
+ "hasLocution": false,
+ "plural": "salles de réanimation néonatale",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "00143181-n"
+ ],
+ "tags": [],
+ "_id": 32244,
+ "created": "2017-12-12T13:02:58.000Z",
+ "lastUpdated": "2021-07-25T14:38:36.403Z",
+ "keywords": [
+ {
+ "keyword": "examen gynécologique",
+ "hasLocution": false,
+ "plural": "examens gynécologiques",
+ "type": 2
+ },
+ {
+ "keyword": "bilan gynécologique",
+ "hasLocution": false,
+ "plural": "bilans gynécologiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre"
+ ],
+ "synsets": [
+ "03745009-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building"
+ ],
+ "_id": 32246,
+ "created": "2017-12-12T13:04:53.000Z",
+ "lastUpdated": "2021-07-27T16:26:21.171Z",
+ "keywords": [
+ {
+ "keyword": "protection maternelle et infantile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "protections maternelles et infantiles"
+ },
+ {
+ "keyword": "PMI",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "PMI"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "centre médical",
+ "plural": "centres médicaux",
+ "type": 2
+ },
+ {
+ "keyword": "centre hospitalier",
+ "hasLocution": false,
+ "plural": "centres hospitaliers",
+ "type": 2
+ },
+ {
+ "keyword": "établissement hospitalier",
+ "hasLocution": false,
+ "plural": "établissements hospitaliers",
+ "type": 2
+ },
+ {
+ "keyword": "centre de soins",
+ "hasLocution": false,
+ "plural": "centres de soins",
+ "type": 2
+ },
+ {
+ "keyword": "centre de santé",
+ "hasLocution": false,
+ "plural": "centres de santé",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "obstetrics"
+ ],
+ "synsets": [
+ "03546094-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32248,
+ "created": "2017-12-12T13:13:16.000Z",
+ "lastUpdated": "2021-07-25T20:29:30.667Z",
+ "keywords": [
+ {
+ "keyword": "lit d'accouchement",
+ "hasLocution": false,
+ "plural": "lits d'accouchement",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "02987924-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 32252,
+ "created": "2017-12-12T13:42:50.000Z",
+ "lastUpdated": "2021-07-24T10:44:35.040Z",
+ "keywords": [
+ {
+ "keyword": "cathéter",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "cathéters"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "death"
+ ],
+ "synsets": [
+ "00359085-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 32250,
+ "created": "2017-12-12T13:15:17.000Z",
+ "lastUpdated": "2021-07-24T10:44:53.023Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mourir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "décéder",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "obstetrics"
+ ],
+ "synsets": [
+ "00014735-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32236,
+ "created": "2017-12-12T12:35:28.000Z",
+ "lastUpdated": "2021-07-25T14:38:50.597Z",
+ "keywords": [
+ {
+ "keyword": "dormir sur le côté",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "obstetrics",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03546271-n",
+ "04557205-n",
+ "00366821-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32240,
+ "created": "2017-12-12T12:54:56.000Z",
+ "lastUpdated": "2021-07-25T20:42:11.644Z",
+ "keywords": [
+ {
+ "keyword": "salle de pré-travail",
+ "hasLocution": false,
+ "plural": "salles de pré-travail",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare",
+ "obstetrics"
+ ],
+ "synsets": [
+ "05528130-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32262,
+ "created": "2017-12-12T13:57:23.000Z",
+ "lastUpdated": "2021-07-24T10:43:27.561Z",
+ "keywords": [
+ {
+ "keyword": "cordon ombilical",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cordons ombilicaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 32256,
+ "created": "2017-12-12T13:48:50.000Z",
+ "lastUpdated": "2021-07-25T20:46:17.284Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "plural": "praxies bucco-faciales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orofacial praxis"
+ ],
+ "synsets": [
+ "00708466-n"
+ ],
+ "tags": [
+ "orofacial praxis"
+ ],
+ "_id": 32254,
+ "created": "2017-12-12T13:45:12.000Z",
+ "lastUpdated": "2021-07-25T20:45:13.511Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "praxie",
+ "hasLocution": false,
+ "plural": "praxies"
+ },
+ {
+ "keyword": "praxie bucco-faciale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "praxies bucco-faciales"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics"
+ ],
+ "synsets": [],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32266,
+ "created": "2017-12-12T14:05:51.000Z",
+ "lastUpdated": "2021-07-28T16:14:54.201Z",
+ "keywords": [
+ {
+ "keyword": "passage aux toilettes autorisé",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "autorisation d'aller aux toilettes",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical documentation",
+ "medical document",
+ "obstetrics"
+ ],
+ "synsets": [
+ "06527288-n"
+ ],
+ "tags": [
+ "document",
+ "medicine",
+ "health",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32259,
+ "created": "2017-12-12T13:54:23.000Z",
+ "lastUpdated": "2021-07-25T20:00:47.493Z",
+ "keywords": [
+ {
+ "keyword": "dossier médical",
+ "hasLocution": false,
+ "plural": "dossiers médicaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics"
+ ],
+ "synsets": [],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32267,
+ "created": "2017-12-12T14:05:51.000Z",
+ "lastUpdated": "2021-07-28T16:14:49.539Z",
+ "keywords": [
+ {
+ "keyword": "passage aux toilettes autorisé",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "autorisation d'aller aux toilettes",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "healthy habit"
+ ],
+ "synsets": [
+ "05009987-n",
+ "00065107-s",
+ "01988916-v",
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "lifestyle",
+ "healthy habit"
+ ],
+ "_id": 32270,
+ "created": "2017-12-12T14:09:25.000Z",
+ "lastUpdated": "2021-08-01T19:03:31.809Z",
+ "keywords": [
+ {
+ "keyword": "être bien assise",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "bien s'assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "bonne posture",
+ "hasLocution": false,
+ "plural": "bonnes postures",
+ "type": 2
+ },
+ {
+ "keyword": "posture correcte",
+ "hasLocution": false,
+ "plural": "postures correctes",
+ "type": 2
+ },
+ {
+ "keyword": "bonne position",
+ "hasLocution": false,
+ "plural": "bonnes positions",
+ "type": 2
+ },
+ {
+ "keyword": "bien s'asseoir",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "unhealthy habit"
+ ],
+ "synsets": [
+ "05009987-n",
+ "01164319-s",
+ "01988916-v",
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "lifestyle",
+ "unhealthy habit"
+ ],
+ "_id": 32272,
+ "created": "2017-12-12T14:10:44.000Z",
+ "lastUpdated": "2021-08-01T18:53:18.712Z",
+ "keywords": [
+ {
+ "keyword": "être mal assis",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mal s'assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mauvaise posture",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mauvaises postures"
+ },
+ {
+ "keyword": "mal s'asseoir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare",
+ "symptom"
+ ],
+ "synsets": [
+ "00071765-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare",
+ "symptom"
+ ],
+ "_id": 32278,
+ "created": "2017-12-13T09:41:17.000Z",
+ "lastUpdated": "2021-07-25T14:33:04.553Z",
+ "keywords": [
+ {
+ "keyword": "il ne fait pas pipi",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "il n'urine pas",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare",
+ "symptom"
+ ],
+ "synsets": [
+ "00071765-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare",
+ "symptom"
+ ],
+ "_id": 32279,
+ "created": "2017-12-13T09:41:17.000Z",
+ "lastUpdated": "2021-07-25T14:33:02.122Z",
+ "keywords": [
+ {
+ "keyword": "elle ne fait pas pipi",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "elle n'urine pas",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics",
+ "patient"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics",
+ "person",
+ "patient"
+ ],
+ "_id": 32282,
+ "created": "2017-12-13T09:45:35.000Z",
+ "lastUpdated": "2021-07-25T14:32:56.679Z",
+ "keywords": [
+ {
+ "keyword": "mettre une chemise d'hopital",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crime"
+ ],
+ "synsets": [
+ "01289516-v",
+ "01307759-v",
+ "01304044-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "law",
+ "crime"
+ ],
+ "_id": 32276,
+ "created": "2017-12-12T14:18:18.000Z",
+ "lastUpdated": "2022-04-09T05:30:08.535Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attacher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "lier",
+ "hasLocution": false
+ },
+ {
+ "keyword": "ficeler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "obstetrics"
+ ],
+ "synsets": [
+ "02247873-s",
+ "05562286-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32284,
+ "created": "2017-12-13T09:52:03.000Z",
+ "lastUpdated": "2021-07-25T14:32:21.351Z",
+ "keywords": [
+ {
+ "keyword": "mamelon fendu",
+ "hasLocution": false,
+ "plural": "mamelons fendus",
+ "type": 2
+ },
+ {
+ "keyword": "mamelon craquelé",
+ "hasLocution": false,
+ "plural": "mamelons craquelés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics",
+ "patient"
+ ],
+ "synsets": [
+ "01957669-v",
+ "02050390-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics",
+ "person",
+ "patient"
+ ],
+ "_id": 32288,
+ "created": "2017-12-13T11:08:37.000Z",
+ "lastUpdated": "2021-07-24T22:18:20.679Z",
+ "keywords": [
+ {
+ "keyword": "transporter en fauteuil",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "déplacer en fauteuil",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "conduire en fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "amener en fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical treatment",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00945884-n",
+ "05009987-n",
+ "14052134-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32286,
+ "created": "2017-12-13T10:57:21.000Z",
+ "lastUpdated": "2021-07-24T22:21:53.138Z",
+ "keywords": [
+ {
+ "keyword": "péridurale",
+ "hasLocution": false,
+ "plural": "péridurales",
+ "type": 2
+ },
+ {
+ "keyword": "injection péridurale",
+ "hasLocution": false,
+ "plural": "injections péridurales",
+ "type": 2
+ },
+ {
+ "keyword": "anesthésie péridurale",
+ "hasLocution": false,
+ "plural": "anesthésies péridurales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "gynecology"
+ ],
+ "synsets": [
+ "14338619-n",
+ "13917127-n",
+ "02892871-a"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "gynecology"
+ ],
+ "_id": 32274,
+ "created": "2017-12-12T14:14:21.000Z",
+ "lastUpdated": "2021-08-07T06:15:41.729Z",
+ "keywords": [
+ {
+ "keyword": "boutons vaginaux",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "boutons vaginaux"
+ },
+ {
+ "keyword": "folliculite",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "folliculites"
+ },
+ {
+ "keyword": "démangeaisons génitales",
+ "hasLocution": false,
+ "plural": "démangeaisons génitales",
+ "type": 2
+ },
+ {
+ "keyword": "boutons sur la vulve",
+ "hasLocution": false,
+ "plural": "boutons sur la vulve",
+ "type": 2
+ },
+ {
+ "keyword": "prurit",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "prurits"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "07256497-n",
+ "10400371-n",
+ "05672990-n"
+ ],
+ "tags": [],
+ "_id": 32290,
+ "created": "2017-12-13T11:36:19.000Z",
+ "lastUpdated": "2021-07-28T16:13:21.241Z",
+ "keywords": [
+ {
+ "keyword": "techniques oratoires",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "techniques oratoires"
+ },
+ {
+ "keyword": "cours d'éloquence",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cours d'éloquence"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disease",
+ "patient"
+ ],
+ "synsets": [
+ "02552072-a",
+ "14085287-n",
+ "10425439-n",
+ "00087206-v",
+ "02199637-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "medicine",
+ "disease",
+ "person",
+ "patient"
+ ],
+ "_id": 32296,
+ "created": "2017-12-13T11:45:20.000Z",
+ "lastUpdated": "2021-07-24T10:21:26.838Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "malade",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00065962-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 32298,
+ "created": "2017-12-13T11:46:09.000Z",
+ "lastUpdated": "2021-07-24T10:21:21.156Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Laisser des larmes s'échapper, en parlant des yeux ; avoir des larmes qui s'échappent des yeux",
+ "keyword": "pleurer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "02130695-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 32300,
+ "created": "2017-12-13T11:49:54.000Z",
+ "lastUpdated": "2021-07-24T10:21:19.351Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sérieux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational organization"
+ ],
+ "synsets": [
+ "00888485-n"
+ ],
+ "tags": [
+ "education",
+ "organization"
+ ],
+ "_id": 32294,
+ "created": "2017-12-13T11:42:26.000Z",
+ "lastUpdated": "2021-07-24T22:16:37.390Z",
+ "keywords": [
+ {
+ "keyword": "secondaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "secondaires"
+ },
+ {
+ "keyword": "enseignement secondaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "enseignements secondaires"
+ },
+ {
+ "keyword": "enseignement supérieur",
+ "hasLocution": false,
+ "plural": "enseignements supérieurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02182456-a",
+ "00752852-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 32302,
+ "created": "2017-12-13T11:51:01.000Z",
+ "lastUpdated": "2021-07-24T10:21:14.868Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "simple",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "facile",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "06796860-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 32304,
+ "created": "2017-12-13T11:52:06.000Z",
+ "lastUpdated": "2021-07-24T10:21:09.690Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "problème",
+ "hasLocution": true,
+ "plural": "problèmes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "personal pronoun"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 32306,
+ "created": "2017-12-13T11:53:26.000Z",
+ "lastUpdated": "2021-07-26T08:00:47.548Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "nous",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nous-mêmes",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "literature"
+ ],
+ "synsets": [
+ "10218722-n",
+ "01424552-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "literature"
+ ],
+ "_id": 32308,
+ "created": "2017-12-13T11:56:25.000Z",
+ "lastUpdated": "2021-07-24T10:20:26.960Z",
+ "keywords": [
+ {
+ "keyword": "je ne peux pas lire",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "je ne suis pas capable de lire",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "obstetrics",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03735985-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32310,
+ "created": "2017-12-13T12:14:29.000Z",
+ "lastUpdated": "2021-07-24T22:14:20.918Z",
+ "keywords": [
+ {
+ "keyword": "salle d'accouchement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "salles d'accouchement"
+ },
+ {
+ "keyword": "maternité",
+ "hasLocution": false,
+ "plural": "maternités",
+ "type": 2
+ },
+ {
+ "keyword": "accouchement dans l'eau",
+ "hasLocution": false,
+ "plural": "accouchements dans l'eau",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "08418205-n",
+ "00888485-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 32292,
+ "created": "2017-12-13T11:39:43.000Z",
+ "lastUpdated": "2021-07-28T13:54:24.662Z",
+ "keywords": [
+ {
+ "keyword": "quelle branche ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quelle matière ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quelle orientation ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "quelle formation?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00465546-n",
+ "01075360-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 32312,
+ "created": "2017-12-14T17:45:36.000Z",
+ "lastUpdated": "2021-07-24T10:18:11.424Z",
+ "keywords": [
+ {
+ "keyword": "water-polo",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "01343121-v",
+ "01368764-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 32317,
+ "created": "2017-12-14T17:47:25.000Z",
+ "lastUpdated": "2021-07-24T10:16:40.405Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attacher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "atatcher la ceinture",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport"
+ ],
+ "synsets": [
+ "01343121-v",
+ "01368764-v",
+ "04169767-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 32316,
+ "created": "2017-12-14T17:47:25.000Z",
+ "lastUpdated": "2021-07-24T10:17:13.822Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attacher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "atatcher la ceinture",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "01346975-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 32320,
+ "created": "2017-12-14T17:51:05.000Z",
+ "lastUpdated": "2021-07-24T10:16:53.829Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "détacher",
+ "hasLocution": false
+ },
+ {
+ "keyword": "défaire",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "détacher la ceinture",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport"
+ ],
+ "synsets": [
+ "01346975-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 32321,
+ "created": "2017-12-14T17:51:05.000Z",
+ "lastUpdated": "2021-07-24T10:15:52.218Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "détacher",
+ "hasLocution": false
+ },
+ {
+ "keyword": "défaire",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14427564-n",
+ "14412645-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 32326,
+ "created": "2017-12-14T17:55:58.000Z",
+ "lastUpdated": "2021-07-24T10:15:07.779Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dépression",
+ "hasLocution": false,
+ "plural": "dépressions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00707060-s",
+ "01669359-s",
+ "02289672-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 32328,
+ "created": "2017-12-14T17:59:57.000Z",
+ "lastUpdated": "2021-10-05T23:09:40.995Z",
+ "keywords": [
+ {
+ "keyword": "découragé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "découragés"
+ },
+ {
+ "keyword": "déprimé",
+ "type": 4,
+ "hasLocution": true,
+ "plural": "déprimés"
+ },
+ {
+ "keyword": "démotivé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "démotivés"
+ },
+ {
+ "keyword": "démoralisé",
+ "hasLocution": false,
+ "plural": "démoralisés",
+ "type": 4
+ },
+ {
+ "keyword": "triste",
+ "hasLocution": true,
+ "plural": "tristes",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00465546-n",
+ "01075360-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 32313,
+ "created": "2017-12-14T17:45:37.000Z",
+ "lastUpdated": "2021-07-24T10:17:57.170Z",
+ "keywords": [
+ {
+ "keyword": "water-polo",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00715072-v",
+ "01295488-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 32324,
+ "created": "2017-12-14T17:53:31.000Z",
+ "lastUpdated": "2021-07-24T10:15:38.313Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "associer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "apairer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "relier",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "connecter",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "security and defense",
+ "signaling system"
+ ],
+ "synsets": [
+ "03984036-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32333,
+ "created": "2017-12-14T18:02:28.000Z",
+ "lastUpdated": "2021-07-24T10:13:05.759Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "commissariat",
+ "hasLocution": true,
+ "plural": "commissariats"
+ },
+ {
+ "keyword": "poste de police",
+ "plural": "postes de police",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "security and defense",
+ "signaling system"
+ ],
+ "synsets": [
+ "03984036-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32334,
+ "created": "2017-12-14T18:02:28.000Z",
+ "lastUpdated": "2021-07-24T10:13:01.692Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "commissariat",
+ "hasLocution": true,
+ "plural": "commissariats"
+ },
+ {
+ "keyword": "poste de police",
+ "hasLocution": false,
+ "plural": "postes de police",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "taste"
+ ],
+ "synsets": [
+ "01630074-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "feeding",
+ "food",
+ "taste"
+ ],
+ "_id": 32338,
+ "created": "2017-12-14T18:04:43.000Z",
+ "lastUpdated": "2021-07-24T10:12:04.398Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "désagréable",
+ "hasLocution": true
+ },
+ {
+ "keyword": "révoltant",
+ "type": 4,
+ "hasLocution": false
+ },
+ {
+ "keyword": "dégoutant",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "taste"
+ ],
+ "synsets": [
+ "02405305-s",
+ "02403682-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "feeding",
+ "food",
+ "taste"
+ ],
+ "_id": 32340,
+ "created": "2017-12-14T18:06:25.000Z",
+ "lastUpdated": "2021-07-24T22:11:26.279Z",
+ "keywords": [
+ {
+ "type": 4,
+ "hasLocution": true,
+ "plural": "bons",
+ "keyword": "bon"
+ },
+ {
+ "keyword": "délicieux",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "délicieux"
+ },
+ {
+ "hasLocution": true,
+ "type": 4,
+ "plural": "agréables",
+ "keyword": "agréable"
+ },
+ {
+ "keyword": "goûteux",
+ "hasLocution": false,
+ "plural": "goûteux",
+ "type": 4
+ },
+ {
+ "keyword": "savoureux",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "savoureux"
+ },
+ {
+ "keyword": "excellent",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "excellents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "industry",
+ "work organization"
+ ],
+ "synsets": [
+ "08066153-n",
+ "10074465-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "work",
+ "secondary sector",
+ "industry",
+ "manufacturing industry",
+ "organization"
+ ],
+ "_id": 32342,
+ "created": "2017-12-14T18:57:26.000Z",
+ "lastUpdated": "2021-07-24T22:08:21.503Z",
+ "keywords": [
+ {
+ "keyword": "organisation patronale",
+ "hasLocution": false,
+ "plural": "organisations patronales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "08066153-n",
+ "02910174-a"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 32344,
+ "created": "2017-12-14T18:59:57.000Z",
+ "lastUpdated": "2021-07-24T22:07:36.486Z",
+ "keywords": [
+ {
+ "keyword": "association culturelle",
+ "hasLocution": false,
+ "plural": "associations culturelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00707060-s",
+ "01669359-s",
+ "02289672-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 32329,
+ "created": "2017-12-14T17:59:57.000Z",
+ "lastUpdated": "2021-10-05T23:09:08.244Z",
+ "keywords": [
+ {
+ "keyword": "découragé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "découragés"
+ },
+ {
+ "keyword": "déprimé",
+ "type": 4,
+ "hasLocution": true,
+ "plural": "déprimé"
+ },
+ {
+ "keyword": "démotivé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "démotivés"
+ },
+ {
+ "keyword": "triste",
+ "hasLocution": true,
+ "plural": "tristes",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "security and defense",
+ "signaling system"
+ ],
+ "synsets": [
+ "03984036-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32332,
+ "created": "2017-12-14T18:02:28.000Z",
+ "lastUpdated": "2021-07-24T10:13:27.075Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "commissariat",
+ "hasLocution": true,
+ "plural": "commissariats"
+ },
+ {
+ "keyword": "poste de police",
+ "plural": "postes de police",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building"
+ ],
+ "synsets": [
+ "03806085-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture"
+ ],
+ "_id": 32348,
+ "created": "2017-12-14T19:05:59.000Z",
+ "lastUpdated": "2021-07-25T14:32:06.609Z",
+ "keywords": [
+ {
+ "keyword": "centre d'interprétariat",
+ "hasLocution": false,
+ "plural": "centres d'interprétariat",
+ "type": 2
+ },
+ {
+ "keyword": "centre de traduction",
+ "hasLocution": false,
+ "plural": "centres de traduction",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "agriculture",
+ "work organization"
+ ],
+ "synsets": [
+ "10773756-n",
+ "08066153-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "work",
+ "primary sector",
+ "agriculture",
+ "organization"
+ ],
+ "_id": 32346,
+ "created": "2017-12-14T19:02:14.000Z",
+ "lastUpdated": "2021-07-24T22:07:26.550Z",
+ "keywords": [
+ {
+ "keyword": "association viticole",
+ "hasLocution": false,
+ "plural": "associations viticoles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building"
+ ],
+ "synsets": [
+ "03806085-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture"
+ ],
+ "_id": 32349,
+ "created": "2017-12-14T19:06:00.000Z",
+ "lastUpdated": "2021-07-25T14:32:01.268Z",
+ "keywords": [
+ {
+ "keyword": "centre d'interprétariat",
+ "hasLocution": false,
+ "plural": "centres d'interprétariat",
+ "type": 2
+ },
+ {
+ "keyword": "centre de traduction",
+ "hasLocution": false,
+ "plural": "centre de traduction",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "signaling system"
+ ],
+ "synsets": [],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32352,
+ "created": "2017-12-14T19:09:57.000Z",
+ "lastUpdated": "2021-07-28T16:12:43.374Z",
+ "keywords": [
+ {
+ "keyword": "centre d'accueil féminin",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "centres d'accueil féminin"
+ },
+ {
+ "keyword": "centre de ressources pour les femmes",
+ "hasLocution": false,
+ "plural": "centres de ressources pour les femmes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "trade document"
+ ],
+ "synsets": [
+ "10229332-n",
+ "08087301-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "document"
+ ],
+ "_id": 32356,
+ "created": "2017-12-14T19:16:15.000Z",
+ "lastUpdated": "2021-07-24T10:07:10.278Z",
+ "keywords": [
+ {
+ "keyword": "courtier d'assurance",
+ "hasLocution": false,
+ "plural": "courtiers d'assurance",
+ "type": 2
+ },
+ {
+ "keyword": "courtier en assurance",
+ "hasLocution": false,
+ "plural": "courtiers en assurance",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "construction"
+ ],
+ "synsets": [
+ "04209460-n",
+ "03880896-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 32354,
+ "created": "2017-12-14T19:12:12.000Z",
+ "lastUpdated": "2021-07-24T22:03:03.970Z",
+ "keywords": [
+ {
+ "keyword": "magasin de peinture",
+ "hasLocution": false,
+ "plural": "magasins de peinture",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "02800154-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 32358,
+ "created": "2017-12-14T19:18:26.000Z",
+ "lastUpdated": "2021-07-24T22:02:50.039Z",
+ "keywords": [
+ {
+ "keyword": "bar à bière",
+ "hasLocution": false,
+ "plural": "bars à bières",
+ "type": 2
+ },
+ {
+ "keyword": "pub",
+ "type": 2,
+ "plural": "pubs",
+ "hasLocution": false
+ },
+ {
+ "keyword": "bistrot",
+ "hasLocution": false,
+ "plural": "bistrots",
+ "type": 2
+ },
+ {
+ "keyword": "café",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cafés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00892391-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 32360,
+ "created": "2017-12-14T19:22:28.000Z",
+ "lastUpdated": "2024-12-05T11:59:40.901Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "nostalgique",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nostalgie",
+ "hasLocution": false,
+ "plural": "nostalgies",
+ "type": 2
+ },
+ {
+ "keyword": "manquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "01765887-s"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 32366,
+ "created": "2017-12-14T19:29:30.000Z",
+ "lastUpdated": "2021-05-13T14:58:30.630Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "interdit",
+ "hasLocution": true
+ },
+ {
+ "keyword": "défendu",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "09642198-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 32364,
+ "created": "2017-12-14T19:25:37.000Z",
+ "lastUpdated": "2021-07-24T10:03:37.449Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "femmes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "00627233-n",
+ "07897775-n",
+ "14752903-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 32368,
+ "created": "2017-12-14T19:35:51.000Z",
+ "lastUpdated": "2021-07-25T21:03:12.040Z",
+ "keywords": [
+ {
+ "keyword": "compléments protéinés",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "compléments protéinés"
+ },
+ {
+ "keyword": "boisson protéinée",
+ "hasLocution": false,
+ "plural": "boissons protéinées",
+ "type": 2
+ },
+ {
+ "keyword": "compléments alimentaires",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "compléments alimentaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mode of transport",
+ "land transport"
+ ],
+ "synsets": [
+ "04153679-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 32370,
+ "created": "2017-12-14T19:37:40.000Z",
+ "lastUpdated": "2022-02-03T05:59:43.494Z",
+ "keywords": [
+ {
+ "keyword": "bus scolaire",
+ "hasLocution": false,
+ "plural": "bus scolaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00694652-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 32372,
+ "created": "2017-12-14T19:39:48.000Z",
+ "lastUpdated": "2021-05-13T14:57:49.551Z",
+ "keywords": [
+ {
+ "keyword": "trachéotomie",
+ "hasLocution": false,
+ "plural": "trachéotomies",
+ "type": 2
+ },
+ {
+ "keyword": "trachéostomie",
+ "hasLocution": false,
+ "plural": "trachéostomies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "road safety"
+ ],
+ "synsets": [
+ "02974144-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "road safety"
+ ],
+ "_id": 32374,
+ "created": "2017-12-14T19:47:05.000Z",
+ "lastUpdated": "2021-07-24T10:38:43.493Z",
+ "keywords": [
+ {
+ "keyword": "siège auto",
+ "hasLocution": false,
+ "plural": "sièges auto",
+ "type": 2
+ },
+ {
+ "keyword": "siège auto enfant",
+ "plural": "sièges auto enfant",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "02776042-n",
+ "07590641-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 32376,
+ "created": "2017-12-14T19:49:30.000Z",
+ "lastUpdated": "2021-07-24T21:41:18.918Z",
+ "keywords": [
+ {
+ "keyword": "sac à repas",
+ "hasLocution": false,
+ "plural": "sacs à repas",
+ "type": 2
+ },
+ {
+ "keyword": "sac à goûter",
+ "hasLocution": false,
+ "plural": "sacs à goûter",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "09647338-n",
+ "01480384-s"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 32362,
+ "created": "2017-12-14T19:25:02.000Z",
+ "lastUpdated": "2021-07-24T10:03:48.800Z",
+ "keywords": [
+ {
+ "keyword": "hommes",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "archaeology"
+ ],
+ "synsets": [
+ "01316583-v",
+ "02148219-v",
+ "02462490-v",
+ "02148002-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "history",
+ "archaeology"
+ ],
+ "_id": 32378,
+ "created": "2017-12-14T19:52:24.000Z",
+ "lastUpdated": "2021-07-24T10:01:56.596Z",
+ "keywords": [
+ {
+ "keyword": "déterrer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "exhumer",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "creuser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "archaeology"
+ ],
+ "synsets": [
+ "09824229-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "history",
+ "archaeology"
+ ],
+ "_id": 32384,
+ "created": "2017-12-14T19:57:03.000Z",
+ "lastUpdated": "2021-07-24T09:59:40.581Z",
+ "keywords": [
+ {
+ "keyword": "archéologue",
+ "hasLocution": false,
+ "plural": "archéologues",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02072149-a",
+ "02075123-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 32386,
+ "created": "2018-01-29T16:27:23.000Z",
+ "lastUpdated": "2021-07-24T09:59:21.718Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "inégal",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "différent",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "archaeology"
+ ],
+ "synsets": [
+ "09824229-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "history",
+ "archaeology"
+ ],
+ "_id": 32382,
+ "created": "2017-12-14T19:56:45.000Z",
+ "lastUpdated": "2021-07-24T09:59:52.934Z",
+ "keywords": [
+ {
+ "keyword": "archéologue",
+ "plural": "archéologues",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00289948-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary"
+ ],
+ "_id": 32388,
+ "created": "2018-01-29T16:31:13.000Z",
+ "lastUpdated": "2024-11-16T19:06:56.046Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "cassé",
+ "hasLocution": true
+ },
+ {
+ "keyword": " brisé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00971199-s",
+ "00970318-a",
+ "01682771-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 32390,
+ "created": "2018-01-29T16:33:10.000Z",
+ "lastUpdated": "2021-07-24T09:59:04.694Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "rare",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "étrange",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bizarre",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00893124-a",
+ "01413922-a",
+ "00148422-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 32392,
+ "created": "2018-01-29T16:36:42.000Z",
+ "lastUpdated": "2021-07-24T09:58:38.850Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "égal",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "même",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pareil",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "jumeaux",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "identique",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02072149-a",
+ "02075123-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 32394,
+ "created": "2018-01-29T16:40:55.000Z",
+ "lastUpdated": "2021-07-24T09:58:00.326Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "inégal",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "différent",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "archaeology",
+ "workplace"
+ ],
+ "synsets": [
+ "06153532-n",
+ "08567651-n"
+ ],
+ "tags": [
+ "history",
+ "archaeology",
+ "place",
+ "workplace"
+ ],
+ "_id": 32380,
+ "created": "2017-12-14T19:55:13.000Z",
+ "lastUpdated": "2021-07-24T10:00:13.742Z",
+ "keywords": [
+ {
+ "keyword": "archéologie",
+ "hasLocution": false,
+ "plural": "archéologies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day"
+ ],
+ "synsets": [
+ "15195551-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "day"
+ ],
+ "_id": 32396,
+ "created": "2018-01-29T16:42:47.000Z",
+ "lastUpdated": "2021-03-25T21:53:08.339Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "week-end",
+ "plural": "week-ends"
+ },
+ {
+ "keyword": "fin de semaine",
+ "hasLocution": false,
+ "plural": "fins de semaine",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07575758-n",
+ "04088393-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 32402,
+ "created": "2018-01-29T16:48:17.000Z",
+ "lastUpdated": "2021-07-24T09:56:48.163Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fast food",
+ "hasLocution": true,
+ "plural": "fast foods"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "land transport",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-movement",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "03430002-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 32404,
+ "created": "2018-01-29T16:49:21.000Z",
+ "lastUpdated": "2021-05-13T14:54:03.268Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "station essence",
+ "hasLocution": true,
+ "plural": "stations essence"
+ },
+ {
+ "keyword": "station-service",
+ "hasLocution": false,
+ "plural": "stations-service",
+ "type": 2
+ },
+ {
+ "keyword": "pompe à essence",
+ "hasLocution": false,
+ "plural": "pompes à essence",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "beverage"
+ ],
+ "synsets": [
+ "02939042-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 32400,
+ "created": "2018-01-29T16:46:51.000Z",
+ "lastUpdated": "2021-07-24T09:57:26.049Z",
+ "keywords": [
+ {
+ "keyword": "bar",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "bars"
+ },
+ {
+ "keyword": "café",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cafés"
+ },
+ {
+ "keyword": "cafétéria",
+ "hasLocution": true,
+ "plural": "cafétérias",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "03806085-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 32406,
+ "created": "2018-01-29T16:51:36.000Z",
+ "lastUpdated": "2021-05-13T14:52:35.857Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "musée",
+ "hasLocution": true,
+ "plural": "musées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "core vocabulary-place",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "02800154-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "core vocabulary"
+ ],
+ "_id": 32398,
+ "created": "2018-01-29T16:44:31.000Z",
+ "lastUpdated": "2021-07-24T21:36:57.958Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bar",
+ "hasLocution": true,
+ "plural": "bars"
+ },
+ {
+ "keyword": "pub",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pubs"
+ },
+ {
+ "keyword": "café",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cafés"
+ },
+ {
+ "keyword": "bistrot",
+ "hasLocution": false,
+ "plural": "bistrots",
+ "type": 2
+ },
+ {
+ "keyword": "buvette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "buvettes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "signaling system",
+ "transport services"
+ ],
+ "synsets": [
+ "08651532-n",
+ "08656633-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "communication",
+ "signaling system",
+ "work",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 32410,
+ "created": "2018-01-29T16:54:44.000Z",
+ "lastUpdated": "2021-07-24T21:34:02.134Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "port",
+ "hasLocution": true,
+ "plural": "ports"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "gastronomy",
+ "core vocabulary-place",
+ "core vocabulary-work",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "04088393-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "gastronomy",
+ "core vocabulary"
+ ],
+ "_id": 32408,
+ "created": "2018-01-29T16:52:48.000Z",
+ "lastUpdated": "2021-04-12T21:24:33.668Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "restaurant",
+ "hasLocution": true,
+ "plural": "restaurants"
+ },
+ {
+ "keyword": "coin-repas",
+ "hasLocution": false,
+ "plural": "coins-repas",
+ "type": 2
+ },
+ {
+ "keyword": "resto",
+ "hasLocution": false,
+ "plural": "restos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "theater",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-knowledge",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "04424944-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "scenic art",
+ "theater",
+ "show",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 32412,
+ "created": "2018-01-29T16:55:43.000Z",
+ "lastUpdated": "2021-05-13T14:51:46.797Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "théâtre",
+ "hasLocution": true,
+ "plural": "théâtres"
+ },
+ {
+ "keyword": "salle de spectacle",
+ "hasLocution": false,
+ "plural": "salles de spectacle"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "security and defense",
+ "signaling system"
+ ],
+ "synsets": [
+ "03984036-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32414,
+ "created": "2018-01-29T16:57:37.000Z",
+ "lastUpdated": "2021-07-24T09:56:00.831Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "commissariat",
+ "hasLocution": true,
+ "plural": "commissariats"
+ },
+ {
+ "keyword": "poste de pôlice",
+ "hasLocution": false,
+ "plural": "postes de pôlice",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "outdoor activity",
+ "signaling system",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "08535449-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 32420,
+ "created": "2018-01-29T17:02:39.000Z",
+ "lastUpdated": "2022-03-14T11:50:08.003Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "camping",
+ "hasLocution": true,
+ "plural": "campings"
+ },
+ {
+ "keyword": "camp",
+ "type": 2,
+ "plural": "camps",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room"
+ ],
+ "synsets": [
+ "02824762-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room"
+ ],
+ "_id": 32422,
+ "created": "2018-01-29T17:18:15.000Z",
+ "lastUpdated": "2021-07-24T09:55:14.563Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chambre à coucher",
+ "hasLocution": true,
+ "plural": "chambres à coucher"
+ },
+ {
+ "keyword": "chambre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chambres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "worksite",
+ "workplace",
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "04610439-n"
+ ],
+ "tags": [
+ "work",
+ "workplace",
+ "place",
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32424,
+ "created": "2018-01-29T17:19:23.000Z",
+ "lastUpdated": "2021-07-24T09:54:55.640Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "atelier",
+ "hasLocution": true,
+ "plural": "ateliers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "building room",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "04216576-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 32426,
+ "created": "2018-01-29T17:21:39.000Z",
+ "lastUpdated": "2021-07-24T09:54:47.275Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "douche",
+ "hasLocution": true,
+ "plural": "douches"
+ },
+ {
+ "keyword": "salle de douche",
+ "hasLocution": false,
+ "plural": "salles de douche",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "speech therapy",
+ "signaling system",
+ "core vocabulary-knowledge",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00708466-n",
+ "03042670-n"
+ ],
+ "tags": [
+ "speech therapy",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 32428,
+ "created": "2018-01-29T17:31:31.000Z",
+ "lastUpdated": "2021-07-24T21:32:51.310Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "orthophonie",
+ "plural": "orthophonies"
+ },
+ {
+ "keyword": "logopédie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "logopédies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "law and justice",
+ "signaling system",
+ "core vocabulary-place",
+ "core vocabulary-work",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "04012006-n",
+ "03597432-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 32430,
+ "created": "2018-01-29T17:33:24.000Z",
+ "lastUpdated": "2021-05-13T14:49:45.378Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prison",
+ "hasLocution": true,
+ "plural": "prisons"
+ },
+ {
+ "keyword": "taule",
+ "hasLocution": false,
+ "plural": "taules",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building",
+ "entertainment facility",
+ "summer"
+ ],
+ "synsets": [
+ "02949049-n",
+ "03546876-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "leisure",
+ "facility",
+ "recreational facility",
+ "summer"
+ ],
+ "_id": 32416,
+ "created": "2018-01-29T16:59:04.000Z",
+ "lastUpdated": "2024-12-06T06:27:41.448Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "colonie de vacances",
+ "hasLocution": true,
+ "plural": "colonies de vacances"
+ },
+ {
+ "type": 2,
+ "keyword": "colonie",
+ "hasLocution": true,
+ "plural": "colonies"
+ },
+ {
+ "keyword": "camp de vacances",
+ "hasLocution": false,
+ "plural": "camps de vacances",
+ "type": 2
+ },
+ {
+ "keyword": "camp",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "camps"
+ },
+ {
+ "keyword": "séjour de vacances",
+ "hasLocution": false,
+ "plural": "séjours de vacances",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "entertainment facility",
+ "recreational facility",
+ "signaling system"
+ ],
+ "synsets": [
+ "03750637-n"
+ ],
+ "tags": [
+ "leisure",
+ "place",
+ "facility",
+ "recreational facility",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32418,
+ "created": "2018-01-29T17:01:05.000Z",
+ "lastUpdated": "2021-05-13T14:50:53.371Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "zoo",
+ "hasLocution": true,
+ "plural": "zoos"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "jardin zoologique",
+ "plural": "jardins zoologiques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "00748528-a",
+ "02185144-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 32436,
+ "created": "2018-01-29T17:39:38.000Z",
+ "lastUpdated": "2021-07-24T09:53:39.314Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "difficile",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "compliqué ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "complexité",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "complexités"
+ },
+ {
+ "keyword": "dur",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indefinite pronoun"
+ ],
+ "synsets": [
+ "00008423-r",
+ "00523527-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "indefinite pronoun"
+ ],
+ "_id": 32438,
+ "created": "2018-01-29T17:42:32.000Z",
+ "lastUpdated": "2021-07-24T09:52:51.810Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "tout",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "totalité",
+ "hasLocution": true
+ },
+ {
+ "type": 6,
+ "keyword": "tous",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "toutes",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "toute",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "02182456-a",
+ "00752852-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 32434,
+ "created": "2018-01-29T17:38:32.000Z",
+ "lastUpdated": "2021-07-24T09:53:49.518Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "simple",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "facile",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "taste",
+ "qualifying adjective",
+ "core vocabulary-feeding",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02376904-a",
+ "02346267-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "taste",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary"
+ ],
+ "_id": 32440,
+ "created": "2018-01-29T17:44:10.000Z",
+ "lastUpdated": "2021-07-24T09:52:24.764Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sucré",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "teaching activity",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "15162842-n"
+ ],
+ "tags": [
+ "education",
+ "teaching activity",
+ "core vocabulary"
+ ],
+ "_id": 32442,
+ "created": "2018-01-29T17:45:54.000Z",
+ "lastUpdated": "2021-03-26T13:49:00.371Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vacances",
+ "hasLocution": true
+ },
+ {
+ "keyword": "congés",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "jours fériés",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "christianity"
+ ],
+ "synsets": [
+ "01133477-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "religion",
+ "christianity"
+ ],
+ "_id": 32432,
+ "created": "2018-01-29T17:36:42.000Z",
+ "lastUpdated": "2021-09-03T16:52:44.231Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "bon",
+ "hasLocution": true,
+ "plural": "bons"
+ },
+ {
+ "keyword": "saint",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "saints"
+ },
+ {
+ "keyword": "béni",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "bénis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "10276234-n",
+ "06769542-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 32444,
+ "created": "2018-01-29T17:50:16.000Z",
+ "lastUpdated": "2021-09-13T17:13:01.042Z",
+ "keywords": [
+ {
+ "keyword": "menteur",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "core vocabulary-place",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "03958852-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "core vocabulary"
+ ],
+ "_id": 32448,
+ "created": "2018-01-29T17:55:39.000Z",
+ "lastUpdated": "2021-05-13T14:47:15.842Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pizzeria",
+ "hasLocution": true,
+ "plural": "pizzerias"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "signaling system",
+ "core vocabulary-education",
+ "core vocabulary-place",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "04153115-n",
+ "08293641-n",
+ "08426574-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 32446,
+ "created": "2018-01-29T17:53:49.000Z",
+ "lastUpdated": "2021-07-24T09:51:38.288Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "collège",
+ "hasLocution": true,
+ "plural": "collèges"
+ },
+ {
+ "type": 2,
+ "keyword": "école",
+ "hasLocution": true,
+ "plural": "écoles"
+ },
+ {
+ "type": 2,
+ "keyword": "lycée",
+ "hasLocution": true,
+ "plural": "lycées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "library science",
+ "signaling system"
+ ],
+ "synsets": [
+ "03666369-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "library science",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32450,
+ "created": "2018-01-29T18:08:33.000Z",
+ "lastUpdated": "2021-07-24T09:51:14.879Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bibliothèque",
+ "hasLocution": true,
+ "plural": "bibliothèques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "character",
+ "christmas"
+ ],
+ "synsets": [
+ "15221372-n"
+ ],
+ "tags": [
+ "character",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 32454,
+ "created": "2018-01-29T18:12:12.000Z",
+ "lastUpdated": "2021-07-24T09:51:06.360Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Père-Noël",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "christmas"
+ ],
+ "synsets": [
+ "01370347-s",
+ "15221372-n",
+ "15221021-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 32458,
+ "created": "2018-01-29T18:16:00.000Z",
+ "lastUpdated": "2021-05-13T14:46:21.156Z",
+ "keywords": [
+ {
+ "keyword": "Joyeux Noêl!",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "christmas",
+ "core vocabulary-communication",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "01370347-s",
+ "15221372-n",
+ "15221021-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "event",
+ "popular event",
+ "christmas",
+ "core vocabulary"
+ ],
+ "_id": 32456,
+ "created": "2018-01-29T18:15:19.000Z",
+ "lastUpdated": "2021-05-13T14:45:59.968Z",
+ "keywords": [
+ {
+ "keyword": "Joyeux Noël!",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "15219894-n"
+ ],
+ "tags": [
+ "event",
+ "religious event",
+ "religion",
+ "christianity"
+ ],
+ "_id": 32460,
+ "created": "2018-01-29T18:17:20.000Z",
+ "lastUpdated": "2021-05-13T14:43:41.552Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "La Toussaint",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "forestry",
+ "tree"
+ ],
+ "synsets": [
+ "08455920-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "forestry",
+ "plant",
+ "tree"
+ ],
+ "_id": 32462,
+ "created": "2018-01-29T18:18:45.000Z",
+ "lastUpdated": "2021-05-13T14:42:36.473Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bosquet ",
+ "hasLocution": false,
+ "plural": "bosquet"
+ },
+ {
+ "keyword": "petit bois",
+ "hasLocution": false,
+ "plural": "petits bois",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07951744-n",
+ "14869913-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "core vocabulary"
+ ],
+ "_id": 32464,
+ "created": "2018-01-29T18:19:48.000Z",
+ "lastUpdated": "2021-05-13T14:41:37.192Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "eau",
+ "hasLocution": true,
+ "plural": "eaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "christianity",
+ "core vocabulary-time",
+ "core vocabulary-religion"
+ ],
+ "synsets": [
+ "11105914-n"
+ ],
+ "tags": [
+ "event",
+ "religious event",
+ "religion",
+ "christianity",
+ "core vocabulary"
+ ],
+ "_id": 32452,
+ "created": "2018-01-29T18:11:13.000Z",
+ "lastUpdated": "2021-09-03T17:13:59.070Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saint-Jean",
+ "hasLocution": false
+ },
+ {
+ "keyword": "jour de la Saint-Jean",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "03784903-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 32470,
+ "created": "2018-01-29T18:26:56.000Z",
+ "lastUpdated": "2021-05-13T14:38:49.735Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "moule",
+ "plural": "moules"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07635203-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 32472,
+ "created": "2018-01-29T18:28:52.000Z",
+ "lastUpdated": "2021-05-13T14:37:51.973Z",
+ "keywords": [
+ {
+ "keyword": "quiche",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "quiches"
+ },
+ {
+ "keyword": "quiche lorraine",
+ "hasLocution": false,
+ "plural": "quiches lorraines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04605240-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 32468,
+ "created": "2018-01-29T18:26:02.000Z",
+ "lastUpdated": "2021-05-13T14:39:48.664Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuillère en bois",
+ "hasLocution": true,
+ "plural": "cuillères en bois"
+ },
+ {
+ "keyword": "spatule en bois",
+ "hasLocution": false,
+ "plural": "spatules en bois",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "07596911-n"
+ ],
+ "tags": [],
+ "_id": 32474,
+ "created": "2018-01-29T18:32:15.000Z",
+ "lastUpdated": "2021-07-24T21:31:47.912Z",
+ "keywords": [
+ {
+ "keyword": "entrée",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "entrées"
+ },
+ {
+ "keyword": "hors-d'œuvre",
+ "hasLocution": false,
+ "plural": "hors-d'œuvre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07876964-n",
+ "07638745-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 32476,
+ "created": "2018-01-29T18:35:04.000Z",
+ "lastUpdated": "2021-05-13T14:41:03.786Z",
+ "keywords": [
+ {
+ "keyword": "pâte",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pâtes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "07857883-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "core vocabulary"
+ ],
+ "_id": 32478,
+ "created": "2018-01-29T18:36:49.000Z",
+ "lastUpdated": "2021-07-24T09:48:53.236Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oeuf de Pâques",
+ "hasLocution": false,
+ "plural": "oeufs de Pâques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "new year",
+ "core vocabulary-communication",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "15207024-n",
+ "15207154-n",
+ "01052105-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "event",
+ "popular event",
+ "new year",
+ "core vocabulary"
+ ],
+ "_id": 32480,
+ "created": "2018-01-29T19:39:53.000Z",
+ "lastUpdated": "2021-03-26T14:36:00.577Z",
+ "keywords": [
+ {
+ "keyword": "Bonne Année!",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "Joyeuse Année!",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "container"
+ ],
+ "synsets": [
+ "03739296-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "container"
+ ],
+ "_id": 32466,
+ "created": "2018-01-29T18:24:41.000Z",
+ "lastUpdated": "2021-07-24T09:50:59.690Z",
+ "keywords": [
+ {
+ "keyword": "verre doseur",
+ "hasLocution": false,
+ "plural": "verres doseurs",
+ "type": 2
+ },
+ {
+ "keyword": "verre mesureur",
+ "hasLocution": false,
+ "plural": "verres mesureurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "cinema",
+ "signaling system"
+ ],
+ "synsets": [
+ "03036237-n",
+ "03794933-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "scenic art",
+ "cinema",
+ "show",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32484,
+ "created": "2018-01-29T19:42:52.000Z",
+ "lastUpdated": "2021-05-13T14:36:40.620Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cinéma",
+ "hasLocution": true,
+ "plural": "cinémas"
+ },
+ {
+ "keyword": "salle de cinéma",
+ "hasLocution": false,
+ "plural": "salles de cinéma",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "04254864-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 32486,
+ "created": "2018-01-29T19:48:34.000Z",
+ "lastUpdated": "2021-07-24T21:30:48.037Z",
+ "keywords": [
+ {
+ "keyword": "snack",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "snacks"
+ },
+ {
+ "keyword": "sandwicherie",
+ "hasLocution": false,
+ "plural": "sandwicheries",
+ "type": 2
+ },
+ {
+ "keyword": "snack-bar",
+ "hasLocution": false,
+ "plural": "snack-bars",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "calendar",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "08283770-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "core vocabulary"
+ ],
+ "_id": 32488,
+ "created": "2018-01-29T19:50:45.000Z",
+ "lastUpdated": "2021-07-24T09:47:41.629Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "calendrier",
+ "hasLocution": true,
+ "plural": "calendriers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physiology",
+ "reproductive system",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "13534950-n"
+ ],
+ "tags": [
+ "human body",
+ "physiology",
+ "human physiology",
+ "reproductive system",
+ "core vocabulary"
+ ],
+ "_id": 32490,
+ "created": "2018-01-29T19:53:22.000Z",
+ "lastUpdated": "2021-07-24T21:28:04.665Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "règles",
+ "plural": "règles"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "menstruations",
+ "plural": "menstruations"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "15113825-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 32492,
+ "created": "2018-01-29T19:54:39.000Z",
+ "lastUpdated": "2021-05-13T14:35:20.271Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vitamines",
+ "hasLocution": true,
+ "plural": "vitamines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "00651003-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 32494,
+ "created": "2018-01-29T19:56:41.000Z",
+ "lastUpdated": "2021-07-24T09:47:21.568Z",
+ "keywords": [
+ {
+ "keyword": "dialyse",
+ "type": 2,
+ "plural": "dialyses",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing",
+ "cattle farming",
+ "signaling system",
+ "core vocabulary-living being",
+ "core vocabulary-work",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "03327044-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "communication",
+ "signaling system",
+ "core vocabulary"
+ ],
+ "_id": 32482,
+ "created": "2018-01-29T19:41:32.000Z",
+ "lastUpdated": "2021-07-24T09:48:31.810Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ferme",
+ "hasLocution": true,
+ "plural": "fermes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy"
+ ],
+ "synsets": [
+ "06092047-n",
+ "00701253-n",
+ "10447528-n"
+ ],
+ "tags": [
+ "health",
+ "physiotherapy"
+ ],
+ "_id": 32496,
+ "created": "2018-01-29T19:57:42.000Z",
+ "lastUpdated": "2021-07-28T09:36:53.990Z",
+ "keywords": [
+ {
+ "keyword": "kinésithérapie",
+ "hasLocution": true,
+ "plural": "kinésithérapies",
+ "type": 2
+ },
+ {
+ "keyword": "physiothérapie",
+ "hasLocution": true,
+ "plural": "physiothérapies",
+ "type": 2
+ },
+ {
+ "keyword": "kinésithérapie infantile",
+ "hasLocution": false,
+ "plural": "kinésithérapies infantiles",
+ "type": 2
+ },
+ {
+ "type": 2,
+ "keyword": "physiothérapie pédiatrique",
+ "hasLocution": false,
+ "plural": "physiothérapies pédiatriques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01839438-v",
+ "01891013-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 32500,
+ "created": "2018-01-29T20:00:50.000Z",
+ "lastUpdated": "2021-07-24T21:24:18.194Z",
+ "keywords": [
+ {
+ "keyword": "aller en fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se déplacer en fauteuil",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rouler en fauteuil",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare",
+ "basic needs"
+ ],
+ "synsets": [
+ "00071765-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "babycare",
+ "person",
+ "basic needs"
+ ],
+ "_id": 32264,
+ "created": "2017-12-12T14:00:37.000Z",
+ "lastUpdated": "2021-07-24T10:42:05.087Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire pipi",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "uriner",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01839438-v",
+ "01891013-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 32501,
+ "created": "2018-01-29T20:00:50.000Z",
+ "lastUpdated": "2021-07-24T21:55:07.327Z",
+ "keywords": [
+ {
+ "keyword": "aller en fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se déplacer en fauteuil",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rouler en fauteuil",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "signaling system"
+ ],
+ "synsets": [
+ "03338555-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32504,
+ "created": "2018-01-29T20:02:02.000Z",
+ "lastUpdated": "2021-07-24T09:45:50.171Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle omnisports",
+ "hasLocution": true,
+ "plural": "salles omnisports"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "signaling system",
+ "transport services"
+ ],
+ "synsets": [
+ "02695091-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "communication",
+ "signaling system",
+ "work",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 32506,
+ "created": "2018-01-29T20:03:09.000Z",
+ "lastUpdated": "2021-05-13T14:34:53.853Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aéroport",
+ "hasLocution": true,
+ "plural": "aéroports"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "route",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "00309196-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "route",
+ "core vocabulary"
+ ],
+ "_id": 32508,
+ "created": "2018-01-29T20:07:03.000Z",
+ "lastUpdated": "2021-05-13T14:34:09.835Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "voyage",
+ "hasLocution": true,
+ "plural": "voyages"
+ },
+ {
+ "keyword": "déplacement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "déplacement"
+ },
+ {
+ "keyword": "sortie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "sorties"
+ },
+ {
+ "keyword": "excursion",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "excursions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "03106447-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 32510,
+ "created": "2018-01-29T20:08:42.000Z",
+ "lastUpdated": "2021-07-24T09:45:16.886Z",
+ "keywords": [
+ {
+ "keyword": "lèchefrite",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "lèchefrites"
+ },
+ {
+ "keyword": "plaque du four",
+ "hasLocution": false,
+ "plural": "plaques du four",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy"
+ ],
+ "synsets": [
+ "06092047-n",
+ "00701253-n",
+ "10447528-n"
+ ],
+ "tags": [
+ "health",
+ "physiotherapy"
+ ],
+ "_id": 32497,
+ "created": "2018-01-29T19:57:42.000Z",
+ "lastUpdated": "2021-07-28T09:37:41.594Z",
+ "keywords": [
+ {
+ "keyword": "kinésithérapie",
+ "hasLocution": true,
+ "plural": "kinésithérapies",
+ "type": 2
+ },
+ {
+ "keyword": "physiothérapie",
+ "hasLocution": true,
+ "plural": "physiothérapie",
+ "type": 2
+ },
+ {
+ "keyword": "physiothérapie pédiatrique",
+ "hasLocution": false,
+ "plural": "physiothérapies pédiatriques",
+ "type": 2
+ },
+ {
+ "type": 2,
+ "keyword": "kinésithérapie infantile",
+ "hasLocution": false,
+ "plural": "kinésithérapies infantiles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "03239009-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 32518,
+ "created": "2018-01-29T20:15:49.000Z",
+ "lastUpdated": "2021-05-13T14:31:10.223Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dessin",
+ "hasLocution": true,
+ "plural": "dessins"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07945759-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 32512,
+ "created": "2018-01-29T20:09:43.000Z",
+ "lastUpdated": "2021-05-13T14:32:57.047Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "café",
+ "hasLocution": true,
+ "plural": "cafés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise",
+ "core vocabulary-communication",
+ "core vocabulary-leisure"
+ ],
+ "synsets": [
+ "07478907-n",
+ "00813037-v",
+ "02054612-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "core vocabulary"
+ ],
+ "_id": 32520,
+ "created": "2018-01-30T09:38:41.000Z",
+ "lastUpdated": "2021-07-24T21:19:01.850Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "slalom",
+ "hasLocution": true,
+ "plural": "slaloms"
+ },
+ {
+ "type": 3,
+ "keyword": "éviter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "contourner",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indefinite pronoun"
+ ],
+ "synsets": [
+ "13762308-n",
+ "00024616-r",
+ "02276797-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "indefinite pronoun"
+ ],
+ "_id": 32522,
+ "created": "2018-01-30T09:41:46.000Z",
+ "lastUpdated": "2021-05-13T14:30:38.228Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "rien",
+ "hasLocution": true
+ },
+ {
+ "keyword": "zéro",
+ "hasLocution": true,
+ "type": 6
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "taste",
+ "qualifying adjective",
+ "core vocabulary-feeding",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02407497-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "taste",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "core vocabulary"
+ ],
+ "_id": 32524,
+ "created": "2018-01-30T09:42:54.000Z",
+ "lastUpdated": "2021-05-13T14:29:42.854Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "salé",
+ "hasLocution": true,
+ "plural": "salés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00487369-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 32516,
+ "created": "2018-01-29T20:13:50.000Z",
+ "lastUpdated": "2021-05-13T14:31:22.401Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "billes",
+ "hasLocution": true,
+ "plural": "billes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "body sensation",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "00480005-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "body sensation",
+ "core vocabulary"
+ ],
+ "_id": 32528,
+ "created": "2018-01-30T09:47:27.000Z",
+ "lastUpdated": "2021-07-24T09:43:18.926Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "inconfortable",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "christianity"
+ ],
+ "synsets": [
+ "01129296-a",
+ "02523798-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "religion",
+ "christianity"
+ ],
+ "_id": 32526,
+ "created": "2018-01-30T09:45:52.000Z",
+ "lastUpdated": "2021-07-24T21:09:21.120Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mauvais",
+ "hasLocution": true,
+ "plural": "mauvais"
+ },
+ {
+ "type": 4,
+ "keyword": "méchant",
+ "hasLocution": true,
+ "plural": "méchants"
+ },
+ {
+ "type": 4,
+ "keyword": "scélérat",
+ "hasLocution": true,
+ "plural": "scélérats"
+ },
+ {
+ "keyword": "diabolique",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "diaboliques"
+ },
+ {
+ "keyword": "vilain",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "vilains"
+ },
+ {
+ "keyword": "vicieux",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "vicieux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "14388761-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "core vocabulary"
+ ],
+ "_id": 32530,
+ "created": "2018-01-30T09:48:57.000Z",
+ "lastUpdated": "2021-05-13T14:29:10.228Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fièvre",
+ "hasLocution": true,
+ "plural": "fièvres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "cookery"
+ ],
+ "synsets": [
+ "03784903-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 32532,
+ "created": "2018-01-30T09:51:01.000Z",
+ "lastUpdated": "2021-05-13T14:28:32.094Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "moule",
+ "hasLocution": true,
+ "plural": "moules"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "new year"
+ ],
+ "synsets": [
+ "15206888-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "new year"
+ ],
+ "_id": 32534,
+ "created": "2018-01-30T09:53:11.000Z",
+ "lastUpdated": "2021-05-13T14:27:38.167Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Saint-Sylvestre",
+ "hasLocution": false
+ },
+ {
+ "keyword": "31 Décembre",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "veille du Nouvel AN",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "hospitality industry",
+ "core vocabulary-document",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "06504930-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "work",
+ "tertiary sector",
+ "hospitality industry",
+ "core vocabulary"
+ ],
+ "_id": 32514,
+ "created": "2018-01-29T20:11:24.000Z",
+ "lastUpdated": "2021-05-13T14:32:25.709Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "menu",
+ "hasLocution": true,
+ "plural": "menus"
+ },
+ {
+ "keyword": "carte",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cartes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "new year"
+ ],
+ "synsets": [
+ "15207024-n",
+ "15207154-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "new year"
+ ],
+ "_id": 32536,
+ "created": "2018-01-30T09:53:59.000Z",
+ "lastUpdated": "2021-03-26T14:34:39.374Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Nouvelle Année",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Nouvel An",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information technology",
+ "mass media",
+ "computing",
+ "core vocabulary-work",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "06289979-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "computing",
+ "communication",
+ "mass media",
+ "core vocabulary"
+ ],
+ "_id": 32540,
+ "created": "2018-01-30T09:57:22.000Z",
+ "lastUpdated": "2021-05-13T14:26:05.182Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "courriel",
+ "hasLocution": true,
+ "plural": "courriels"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "message",
+ "plural": "messages"
+ },
+ {
+ "keyword": "email",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "emails"
+ },
+ {
+ "keyword": "courrier électronique",
+ "hasLocution": false,
+ "plural": "courriers électroniques",
+ "type": 2
+ },
+ {
+ "keyword": "e-mail",
+ "hasLocution": false,
+ "plural": "e-mails",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "06008975-n",
+ "06008718-n",
+ "06009578-n"
+ ],
+ "tags": [
+ "education",
+ "subject",
+ "core vocabulary"
+ ],
+ "_id": 32542,
+ "created": "2018-01-30T09:59:36.000Z",
+ "lastUpdated": "2021-07-24T09:43:14.947Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sciences de la nature",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "sciences naturelles",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00889560-n",
+ "05955536-n",
+ "06191860-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 32544,
+ "created": "2018-01-30T10:02:35.000Z",
+ "lastUpdated": "2021-07-24T09:42:57.622Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "histoire des religions"
+ },
+ {
+ "keyword": "religions",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00730776-n",
+ "05762896-n",
+ "05646331-n",
+ "00891150-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 32546,
+ "created": "2018-01-30T10:06:00.000Z",
+ "lastUpdated": "2021-08-18T15:41:15.061Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "cours de langue",
+ "plural": "cours de langue"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "cours de littératie",
+ "plural": "cours de littératie"
+ },
+ {
+ "keyword": "langage",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "langages"
+ },
+ {
+ "keyword": "leçon de langue",
+ "hasLocution": false,
+ "plural": "leçons de langue",
+ "type": 2
+ },
+ {
+ "keyword": "littératie",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "cours de lecture et d'écriture",
+ "hasLocution": false,
+ "plural": "cours de lecture et d'écriture",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "02925183-a",
+ "00891150-n",
+ "05764885-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 32552,
+ "created": "2018-01-30T10:22:07.000Z",
+ "lastUpdated": "2021-07-24T17:45:58.222Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "psychomotricité",
+ "hasLocution": true,
+ "plural": "psychomotricité"
+ },
+ {
+ "keyword": "habileté psychomotrice",
+ "hasLocution": false,
+ "plural": "habiletés psychomotrices"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00887135-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 32550,
+ "created": "2018-01-30T10:19:40.000Z",
+ "lastUpdated": "2021-07-11T09:48:52.605Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éducation artistique",
+ "hasLocution": true,
+ "plural": "éducations artistiques"
+ },
+ {
+ "type": 2,
+ "keyword": "cours d'éducation artistique",
+ "hasLocution": false,
+ "plural": "cours d'éducation artistique"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "cours d'arts plastiques",
+ "plural": "cours d'arts plastiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task",
+ "covid-19"
+ ],
+ "synsets": [
+ "00730406-n"
+ ],
+ "tags": [
+ "education",
+ "educational task",
+ "covid-19"
+ ],
+ "_id": 32556,
+ "created": "2018-01-30T10:24:46.000Z",
+ "lastUpdated": "2021-05-13T14:23:20.159Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "devoir",
+ "hasLocution": true,
+ "plural": "devoirs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject",
+ "core vocabulary-education"
+ ],
+ "synsets": [
+ "06009822-n",
+ "00891150-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject",
+ "core vocabulary"
+ ],
+ "_id": 32554,
+ "created": "2018-01-30T10:23:17.000Z",
+ "lastUpdated": "2021-07-24T09:40:17.644Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cours de mathématiques",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "mathématiques",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "14123125-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 32558,
+ "created": "2018-01-30T10:26:46.000Z",
+ "lastUpdated": "2021-05-13T14:21:26.904Z",
+ "keywords": [
+ {
+ "keyword": "dyslexie",
+ "hasLocution": false,
+ "plural": "dyslexies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "dance"
+ ],
+ "synsets": [
+ "00530659-n",
+ "00529704-n"
+ ],
+ "tags": [
+ "scenic art",
+ "dance",
+ "show"
+ ],
+ "_id": 32560,
+ "created": "2018-01-30T10:32:24.000Z",
+ "lastUpdated": "2021-07-24T10:38:05.516Z",
+ "keywords": [
+ {
+ "keyword": "danse classique",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "ballet",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "05764885-n",
+ "00891150-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 32548,
+ "created": "2018-01-30T10:08:27.000Z",
+ "lastUpdated": "2021-07-24T09:41:42.462Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "Éducation Physique et Sportive",
+ "hasLocution": false
+ },
+ {
+ "keyword": "EPS",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "social event",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "00428985-n",
+ "00408356-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "categorization"
+ ],
+ "_id": 32566,
+ "created": "2018-01-30T11:20:58.000Z",
+ "lastUpdated": "2021-07-24T17:40:39.638Z",
+ "keywords": [
+ {
+ "keyword": "activités et fêtes",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "activités et fêtes"
+ },
+ {
+ "keyword": "activités et festivités",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "activités et festivités"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "easter week",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "15206279-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "easter week",
+ "religious event",
+ "religion",
+ "christianity"
+ ],
+ "_id": 32538,
+ "created": "2018-01-30T09:55:00.000Z",
+ "lastUpdated": "2021-03-25T21:49:24.913Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "semaine de Pâques",
+ "hasLocution": false
+ },
+ {
+ "keyword": "semaine Sainte",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "02674410-n",
+ "02731365-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "categorization"
+ ],
+ "_id": 32570,
+ "created": "2018-01-30T11:26:08.000Z",
+ "lastUpdated": "2021-07-24T09:38:39.968Z",
+ "keywords": [
+ {
+ "keyword": "vêtements et accessoires",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "christmas",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "03971038-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "event",
+ "popular event",
+ "christmas",
+ "categorization"
+ ],
+ "_id": 32568,
+ "created": "2018-01-30T11:22:52.000Z",
+ "lastUpdated": "2021-07-24T09:38:46.185Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jouets",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "jouet",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "game",
+ "sport",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "03418738-n",
+ "00524569-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "sport",
+ "categorization"
+ ],
+ "_id": 32574,
+ "created": "2018-01-30T11:33:32.000Z",
+ "lastUpdated": "2021-07-24T17:32:54.417Z",
+ "keywords": [
+ {
+ "keyword": "jeu et sport",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jeux et sports"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "corporal hygiene",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "01061824-n",
+ "06060911-n"
+ ],
+ "tags": [
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "categorization"
+ ],
+ "_id": 32576,
+ "created": "2018-01-30T11:38:10.000Z",
+ "lastUpdated": "2021-07-24T17:31:54.139Z",
+ "keywords": [
+ {
+ "keyword": "santé et hygiène",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "santés et hygiènes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "dance"
+ ],
+ "synsets": [
+ "00527449-n",
+ "01900477-v",
+ "00531055-n",
+ "00429255-n",
+ "01898642-v"
+ ],
+ "tags": [
+ "scenic art",
+ "dance",
+ "show"
+ ],
+ "_id": 32562,
+ "created": "2018-01-30T10:40:09.000Z",
+ "lastUpdated": "2021-07-24T10:38:09.445Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "danse",
+ "hasLocution": true
+ },
+ {
+ "keyword": "danse contemporaine",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "break dance",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "danse moderne",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human response",
+ "christianity"
+ ],
+ "synsets": [
+ "07526972-n",
+ "10204565-n",
+ "07556441-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response",
+ "religion",
+ "christianity"
+ ],
+ "_id": 32564,
+ "created": "2018-01-30T10:42:54.000Z",
+ "lastUpdated": "2024-10-28T11:14:45.157Z",
+ "keywords": [
+ {
+ "keyword": "espoir",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "espoirs"
+ },
+ {
+ "keyword": "souhait",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "souhaits"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "object",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "00002684-n"
+ ],
+ "tags": [
+ "object",
+ "categorization"
+ ],
+ "_id": 32582,
+ "created": "2018-01-30T11:47:30.000Z",
+ "lastUpdated": "2021-07-24T09:36:47.833Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "objets",
+ "hasLocution": true
+ },
+ {
+ "keyword": "objets du quotidien",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adjective",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "06330022-n",
+ "06332695-n",
+ "00024444-n",
+ "04731092-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "categorization"
+ ],
+ "_id": 32584,
+ "created": "2018-01-30T11:51:50.000Z",
+ "lastUpdated": "2021-07-24T17:29:45.717Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "adjectifs",
+ "hasLocution": true,
+ "plural": "adjectifs"
+ },
+ {
+ "keyword": "qualités",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "qualités"
+ },
+ {
+ "keyword": "caractéristiques",
+ "hasLocution": true,
+ "plural": "adjectives",
+ "type": 2
+ },
+ {
+ "keyword": "attributs",
+ "hasLocution": false,
+ "plural": "attributs",
+ "type": 2
+ },
+ {
+ "keyword": "particularités",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "particularités"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "shape",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "04963771-n",
+ "04684871-n",
+ "05071206-n",
+ "00033914-n"
+ ],
+ "tags": [
+ "shape",
+ "categorization"
+ ],
+ "_id": 32586,
+ "created": "2018-01-30T12:05:39.000Z",
+ "lastUpdated": "2021-07-24T17:26:32.572Z",
+ "keywords": [
+ {
+ "keyword": "couleur et forme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "couleurs et formes"
+ },
+ {
+ "keyword": "forme et taille",
+ "hasLocution": false,
+ "plural": "formes et tailles",
+ "type": 2
+ },
+ {
+ "keyword": "forme et dimension",
+ "hasLocution": false,
+ "plural": "formes et dimensions",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "board game",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "00500077-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "board game",
+ "categorization"
+ ],
+ "_id": 32580,
+ "created": "2018-01-30T11:44:35.000Z",
+ "lastUpdated": "2021-07-24T09:37:04.977Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jeux de société",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "person according to their age",
+ "categorization"
+ ],
+ "synsets": [
+ "01771841-a"
+ ],
+ "tags": [
+ "person",
+ "categorization"
+ ],
+ "_id": 32588,
+ "created": "2018-01-30T12:07:45.000Z",
+ "lastUpdated": "2021-05-13T14:18:57.238Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "personnel",
+ "hasLocution": true,
+ "plural": "personnel"
+ },
+ {
+ "keyword": "individuel",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "individuels"
+ },
+ {
+ "keyword": "privé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "privés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling",
+ "body sensation",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "07530021-n",
+ "07528274-n",
+ "00026390-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion",
+ "human body",
+ "body sensation",
+ "categorization"
+ ],
+ "_id": 32590,
+ "created": "2018-01-30T12:13:37.000Z",
+ "lastUpdated": "2021-07-24T17:22:40.298Z",
+ "keywords": [
+ {
+ "keyword": "sensations et émotions",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sensations et émotions"
+ },
+ {
+ "keyword": "sensations et sentiments",
+ "hasLocution": false,
+ "plural": "sensations et sentiments",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "categorization",
+ "core vocabulary-communication",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "08014145-n",
+ "07166088-n",
+ "04687095-n",
+ "06889359-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "categorization",
+ "core vocabulary"
+ ],
+ "_id": 32592,
+ "created": "2018-01-30T12:19:06.000Z",
+ "lastUpdated": "2021-07-24T17:20:44.024Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "expression",
+ "hasLocution": true,
+ "plural": "expressions"
+ },
+ {
+ "keyword": "geste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gestes"
+ },
+ {
+ "keyword": "gestuelle",
+ "hasLocution": false,
+ "plural": "gestuelles",
+ "type": 2
+ },
+ {
+ "keyword": "signe",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "signes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "03410635-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "categorization"
+ ],
+ "_id": 32594,
+ "created": "2018-01-30T12:21:20.000Z",
+ "lastUpdated": "2021-07-24T09:11:39.785Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "meubles",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mobilier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mobiliers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance",
+ "furniture",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "02732781-n",
+ "03410635-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "furniture",
+ "categorization"
+ ],
+ "_id": 32578,
+ "created": "2018-01-30T11:40:53.000Z",
+ "lastUpdated": "2021-07-25T14:30:17.055Z",
+ "keywords": [
+ {
+ "keyword": "appareils et mobilier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "appareils et mobiliers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "08014145-n",
+ "11545095-n",
+ "00028468-n",
+ "15154879-n"
+ ],
+ "tags": [],
+ "_id": 32600,
+ "created": "2018-01-30T12:41:28.000Z",
+ "lastUpdated": "2021-07-25T14:30:13.599Z",
+ "keywords": [
+ {
+ "keyword": "temps et météo",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeding",
+ "beverage",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "07571428-n",
+ "00021445-n",
+ "07897775-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage",
+ "categorization"
+ ],
+ "_id": 32602,
+ "created": "2018-01-30T12:44:08.000Z",
+ "lastUpdated": "2021-05-13T14:15:16.908Z",
+ "keywords": [
+ {
+ "keyword": "nourriture et boissons",
+ "hasLocution": false,
+ "plural": "nourritures et boissons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "categorization"
+ ],
+ "synsets": [
+ "06331562-n",
+ "06329055-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "categorization"
+ ],
+ "_id": 32604,
+ "created": "2018-01-30T12:45:51.000Z",
+ "lastUpdated": "2021-07-24T09:10:42.229Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "verbes",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "verbe",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "place",
+ "categorization",
+ "core vocabulary-place"
+ ],
+ "synsets": [
+ "08014145-n",
+ "08530790-n"
+ ],
+ "tags": [
+ "place",
+ "categorization",
+ "core vocabulary"
+ ],
+ "_id": 32598,
+ "created": "2018-01-30T12:33:33.000Z",
+ "lastUpdated": "2024-12-12T15:41:00.201Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "plural": "lieux",
+ "keyword": "lieux"
+ },
+ {
+ "hasLocution": true,
+ "keyword": "endroit",
+ "plural": "endroit",
+ "type": 2
+ },
+ {
+ "keyword": "zone",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "zones"
+ },
+ {
+ "keyword": "site",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sites"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "categorization"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "categorization"
+ ],
+ "_id": 32606,
+ "created": "2018-01-30T12:52:44.000Z",
+ "lastUpdated": "2021-07-24T10:37:45.400Z",
+ "keywords": [
+ {
+ "keyword": "expression",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "expressions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "prehistory"
+ ],
+ "synsets": [
+ "10379458-n"
+ ],
+ "tags": [
+ "history",
+ "prehistory"
+ ],
+ "_id": 32608,
+ "created": "2018-01-30T13:51:10.000Z",
+ "lastUpdated": "2021-05-13T14:14:05.258Z",
+ "keywords": [
+ {
+ "keyword": "nomade",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "nomades"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "archaeology",
+ "prehistory"
+ ],
+ "synsets": [
+ "02767049-n"
+ ],
+ "tags": [
+ "history",
+ "archaeology",
+ "prehistory"
+ ],
+ "_id": 32610,
+ "created": "2018-01-30T13:52:58.000Z",
+ "lastUpdated": "2021-05-13T14:13:20.064Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hache",
+ "hasLocution": true,
+ "plural": "haches"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "archaeology",
+ "prehistory"
+ ],
+ "synsets": [
+ "02767049-n",
+ "02767510-n"
+ ],
+ "tags": [
+ "history",
+ "archaeology",
+ "prehistory"
+ ],
+ "_id": 32611,
+ "created": "2018-01-30T13:52:59.000Z",
+ "lastUpdated": "2021-05-13T14:12:54.469Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fer de hache",
+ "hasLocution": false,
+ "plural": "fers de hache"
+ },
+ {
+ "keyword": "lame de hache",
+ "hasLocution": false,
+ "plural": "lames de hache",
+ "type": 2
+ },
+ {
+ "keyword": "hache",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "haches"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "archaeology",
+ "prehistory"
+ ],
+ "synsets": [
+ "03487810-n"
+ ],
+ "tags": [
+ "history",
+ "archaeology",
+ "prehistory"
+ ],
+ "_id": 32614,
+ "created": "2018-01-30T13:56:07.000Z",
+ "lastUpdated": "2021-05-13T14:10:26.100Z",
+ "keywords": [
+ {
+ "keyword": "pierre biface",
+ "hasLocution": false,
+ "plural": "pierres bifaces",
+ "type": 2
+ },
+ {
+ "keyword": "biface",
+ "hasLocution": false,
+ "plural": "bifaces",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic concepts",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "05069917-n",
+ "05081943-n"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts",
+ "categorization"
+ ],
+ "_id": 32596,
+ "created": "2018-01-30T12:29:22.000Z",
+ "lastUpdated": "2021-07-24T17:40:26.895Z",
+ "keywords": [
+ {
+ "keyword": "concepts spatiaux",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "concepts spatiaux"
+ },
+ {
+ "keyword": "notions spatiales",
+ "hasLocution": false,
+ "plural": "notions spatiales",
+ "type": 2
+ },
+ {
+ "keyword": "spatialisation",
+ "hasLocution": false,
+ "plural": "spatialisations",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "archaeology",
+ "prehistory"
+ ],
+ "synsets": [
+ "15258208-n",
+ "00022119-n"
+ ],
+ "tags": [
+ "history",
+ "archaeology",
+ "prehistory"
+ ],
+ "_id": 32616,
+ "created": "2018-01-31T10:00:18.000Z",
+ "lastUpdated": "2021-05-13T14:08:33.501Z",
+ "keywords": [
+ {
+ "keyword": "pierre polie",
+ "hasLocution": false,
+ "plural": "pierres polies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "prehistory"
+ ],
+ "synsets": [
+ "00142011-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "history",
+ "prehistory"
+ ],
+ "_id": 32618,
+ "created": "2018-01-31T10:03:18.000Z",
+ "lastUpdated": "2021-05-13T14:07:48.672Z",
+ "keywords": [
+ {
+ "keyword": "former",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "façonner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "craftsmanship",
+ "prehistory"
+ ],
+ "synsets": [
+ "01469172-v",
+ "00937062-n",
+ "00611136-n",
+ "03999061-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "craftsmanship",
+ "history",
+ "prehistory"
+ ],
+ "_id": 32622,
+ "created": "2018-01-31T10:08:49.000Z",
+ "lastUpdated": "2021-05-13T14:06:37.413Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "décorer",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "plural": "poteries",
+ "keyword": "poterie",
+ "type": 2
+ },
+ {
+ "plural": "céramiques ",
+ "keyword": "céramique",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "céramique cardiale",
+ "plural": "céramiques cardiales",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "orner",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "embellir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport",
+ "rome"
+ ],
+ "synsets": [
+ "04122550-n",
+ "04493006-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport",
+ "history",
+ "civilization",
+ "Rome"
+ ],
+ "_id": 32624,
+ "created": "2018-01-31T10:12:48.000Z",
+ "lastUpdated": "2021-05-13T14:03:19.557Z",
+ "keywords": [
+ {
+ "keyword": "bateau à rames",
+ "hasLocution": false,
+ "plural": "bateaux à rames",
+ "type": 2
+ },
+ {
+ "keyword": "trirème",
+ "hasLocution": false,
+ "plural": "trirème",
+ "type": 2
+ },
+ {
+ "keyword": "galère",
+ "hasLocution": false,
+ "plural": "galères",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "prehistory"
+ ],
+ "synsets": [
+ "00445584-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "history",
+ "prehistory"
+ ],
+ "_id": 32626,
+ "created": "2018-01-31T10:15:55.000Z",
+ "lastUpdated": "2021-05-13T14:01:20.348Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "fondre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "prehistory"
+ ],
+ "synsets": [
+ "13498226-n"
+ ],
+ "tags": [
+ "history",
+ "prehistory"
+ ],
+ "_id": 32628,
+ "created": "2018-01-31T10:18:20.000Z",
+ "lastUpdated": "2021-05-13T14:00:41.857Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "évolution",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "prehistory"
+ ],
+ "synsets": [
+ "15279361-n"
+ ],
+ "tags": [
+ "history",
+ "prehistory"
+ ],
+ "_id": 32630,
+ "created": "2018-01-31T10:20:16.000Z",
+ "lastUpdated": "2021-05-13T14:00:20.858Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Préhistoire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "periods"
+ ],
+ "synsets": [
+ "06166450-n"
+ ],
+ "tags": [],
+ "_id": 32632,
+ "created": "2018-01-31T10:21:56.000Z",
+ "lastUpdated": "2021-07-24T09:10:10.705Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Histoire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "prehistory"
+ ],
+ "synsets": [
+ "00142011-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "history",
+ "prehistory"
+ ],
+ "_id": 32619,
+ "created": "2018-01-31T10:03:18.000Z",
+ "lastUpdated": "2021-05-13T14:07:27.052Z",
+ "keywords": [
+ {
+ "keyword": "former",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "façonner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "prehistory"
+ ],
+ "synsets": [
+ "15257202-n",
+ "15256760-n"
+ ],
+ "tags": [
+ "history",
+ "prehistory"
+ ],
+ "_id": 32636,
+ "created": "2018-01-31T10:28:15.000Z",
+ "lastUpdated": "2021-07-24T09:09:36.550Z",
+ "keywords": [
+ {
+ "keyword": "Paléolithique",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Age de pierre",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "periods"
+ ],
+ "synsets": [
+ "15148913-n",
+ "06165265-n"
+ ],
+ "tags": [],
+ "_id": 32634,
+ "created": "2018-01-31T10:23:09.000Z",
+ "lastUpdated": "2021-07-24T09:09:55.221Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "histoire",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "prehistory"
+ ],
+ "synsets": [
+ "15256760-n",
+ "15258208-n"
+ ],
+ "tags": [
+ "history",
+ "prehistory"
+ ],
+ "_id": 32638,
+ "created": "2018-01-31T10:29:57.000Z",
+ "lastUpdated": "2021-07-24T09:08:58.291Z",
+ "keywords": [
+ {
+ "keyword": "Age de pierre",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Néolithique",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "prehistory"
+ ],
+ "synsets": [
+ "15258208-n",
+ "15256211-n",
+ "15256561-n"
+ ],
+ "tags": [
+ "history",
+ "prehistory"
+ ],
+ "_id": 32640,
+ "created": "2018-01-31T10:32:06.000Z",
+ "lastUpdated": "2021-07-24T09:08:27.722Z",
+ "keywords": [
+ {
+ "keyword": "Age de métal",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "political representation"
+ ],
+ "synsets": [
+ "10025596-n",
+ "09975260-n",
+ "10420136-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 32642,
+ "created": "2018-04-07T14:29:08.000Z",
+ "lastUpdated": "2021-07-24T09:08:09.007Z",
+ "keywords": [
+ {
+ "keyword": "député",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "députés"
+ },
+ {
+ "keyword": "représentant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "représentants"
+ },
+ {
+ "keyword": "membre du parlement",
+ "plural": "membres du parlement",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "political representation"
+ ],
+ "synsets": [
+ "10025596-n",
+ "09975260-n",
+ "10420136-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 32644,
+ "created": "2018-04-07T14:29:44.000Z",
+ "lastUpdated": "2021-07-24T09:07:15.556Z",
+ "keywords": [
+ {
+ "keyword": "députée",
+ "hasLocution": false,
+ "plural": "députées",
+ "type": 2
+ },
+ {
+ "keyword": "représentante",
+ "hasLocution": false,
+ "plural": "représentante",
+ "type": 2
+ },
+ {
+ "keyword": "membre du parlement",
+ "hasLocution": false,
+ "plural": "membres du parlement",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "political representation"
+ ],
+ "synsets": [
+ "10025596-n",
+ "09975260-n",
+ "10420136-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 32646,
+ "created": "2018-04-07T14:30:07.000Z",
+ "lastUpdated": "2021-07-24T09:06:17.622Z",
+ "keywords": [
+ {
+ "keyword": "député",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "députés"
+ },
+ {
+ "keyword": "représentant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "représentants"
+ },
+ {
+ "keyword": "membre du parlement",
+ "hasLocution": false,
+ "plural": "membres du parlement",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "human response",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02553283-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "psychology",
+ "human response",
+ "core vocabulary"
+ ],
+ "_id": 32648,
+ "created": "2018-04-07T14:32:39.000Z",
+ "lastUpdated": "2021-09-14T08:23:37.458Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Apporter son concours à quelqu'un, joindre ses efforts aux siens dans ce qu'il fait ; lui être utile, faciliter son action, en parlant de quelque chose : Aider un ami à surmonter ses difficultés.",
+ "keyword": "aider",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "living being",
+ "categorization"
+ ],
+ "synsets": [
+ "08014145-n",
+ "00015568-n",
+ "00017402-n"
+ ],
+ "tags": [
+ "categorization"
+ ],
+ "_id": 32572,
+ "created": "2018-01-30T11:29:26.000Z",
+ "lastUpdated": "2021-07-24T09:38:20.655Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "êtres vivants",
+ "hasLocution": true
+ },
+ {
+ "keyword": "animaux et plantes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "food"
+ ],
+ "synsets": [
+ "01203727-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food"
+ ],
+ "_id": 32654,
+ "created": "2018-04-07T14:36:39.000Z",
+ "lastUpdated": "2021-07-24T09:05:00.715Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mâcher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mastiquer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "beverage"
+ ],
+ "synsets": [
+ "01426447-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 32658,
+ "created": "2018-04-07T14:39:57.000Z",
+ "lastUpdated": "2021-07-24T09:04:29.038Z",
+ "keywords": [
+ {
+ "keyword": "déboucher",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "03113504-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 32656,
+ "created": "2018-04-07T14:38:49.000Z",
+ "lastUpdated": "2021-07-24T09:04:47.080Z",
+ "keywords": [
+ {
+ "keyword": "bouchon",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "bouchons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01550071-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 32660,
+ "created": "2018-04-07T14:42:48.000Z",
+ "lastUpdated": "2021-07-24T09:04:18.999Z",
+ "keywords": [
+ {
+ "keyword": "polyglotte",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "04566737-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 32650,
+ "created": "2018-04-07T14:34:27.000Z",
+ "lastUpdated": "2021-07-24T09:05:18.507Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "robinet",
+ "hasLocution": true,
+ "plural": "robinets"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01322669-v",
+ "00187671-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 32663,
+ "created": "2018-04-07T14:49:14.000Z",
+ "lastUpdated": "2021-07-24T09:02:46.974Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ramasser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "récolter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01129296-a",
+ "02523798-a",
+ "01134543-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 32652,
+ "created": "2018-04-07T14:35:58.000Z",
+ "lastUpdated": "2021-07-24T17:38:49.763Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "mauvais",
+ "hasLocution": true,
+ "plural": "mauvais"
+ },
+ {
+ "type": 4,
+ "keyword": "méchant",
+ "hasLocution": true,
+ "plural": "méchants"
+ },
+ {
+ "type": 4,
+ "keyword": "scélérat",
+ "hasLocution": true,
+ "plural": "scélérats"
+ },
+ {
+ "keyword": "diabolique",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "diaboliques"
+ },
+ {
+ "keyword": "vicieux",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "vicieux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "06432944-n"
+ ],
+ "tags": [],
+ "_id": 32661,
+ "created": "2018-04-07T14:46:25.000Z",
+ "lastUpdated": "2021-07-24T09:03:50.378Z",
+ "keywords": [
+ {
+ "keyword": "manuel d'utilisation",
+ "hasLocution": false,
+ "plural": "manuels d'utilisation",
+ "type": 2
+ },
+ {
+ "keyword": "guide",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "guides"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "students"
+ ],
+ "synsets": [
+ "10685137-n"
+ ],
+ "tags": [
+ "education",
+ "students"
+ ],
+ "_id": 32666,
+ "created": "2018-04-07T14:50:28.000Z",
+ "lastUpdated": "2021-07-24T09:01:51.023Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étudiant",
+ "hasLocution": true,
+ "plural": "étudiants"
+ },
+ {
+ "keyword": "élève",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "élèves"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 32673,
+ "created": "2018-04-07T15:41:26.000Z",
+ "lastUpdated": "2021-07-24T09:00:45.474Z",
+ "keywords": [
+ {
+ "keyword": "tajine",
+ "hasLocution": false,
+ "plural": "tajines",
+ "type": 2
+ },
+ {
+ "keyword": "tagine",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tagines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "students"
+ ],
+ "synsets": [
+ "10685137-n"
+ ],
+ "tags": [
+ "education",
+ "students"
+ ],
+ "_id": 32665,
+ "created": "2018-04-07T14:50:28.000Z",
+ "lastUpdated": "2021-07-24T09:02:36.220Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "étudiante",
+ "hasLocution": true,
+ "plural": "étudiantes"
+ },
+ {
+ "keyword": "élève",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "élèves"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00794133-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 32669,
+ "created": "2018-04-07T14:53:36.000Z",
+ "lastUpdated": "2021-07-24T09:01:16.359Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se rendre jusqu'où se trouve celui qui parle ou à qui l'on parle ou se diriger vers lui",
+ "keyword": "venir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "appeler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "04490231-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 32671,
+ "created": "2018-04-07T15:37:26.000Z",
+ "lastUpdated": "2021-07-24T09:01:04.652Z",
+ "keywords": [
+ {
+ "keyword": "trident",
+ "plural": "tridents",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14528966-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 32681,
+ "created": "2018-04-07T15:45:51.000Z",
+ "lastUpdated": "2021-07-24T08:59:27.916Z",
+ "keywords": [
+ {
+ "keyword": "scoliose",
+ "hasLocution": false,
+ "plural": "scolioses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "02811345-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 32683,
+ "created": "2018-04-07T15:49:18.000Z",
+ "lastUpdated": "2021-07-24T14:12:25.085Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "sels de bain",
+ "plural": "sels de bain"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy"
+ ],
+ "synsets": [
+ "12983752-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy"
+ ],
+ "_id": 32685,
+ "created": "2018-04-07T15:51:32.000Z",
+ "lastUpdated": "2021-07-24T14:11:51.837Z",
+ "keywords": [
+ {
+ "keyword": " chloroplaste",
+ "hasLocution": false,
+ "plural": " chloroplastes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant physiology"
+ ],
+ "synsets": [
+ "13558632-n"
+ ],
+ "tags": [
+ "plant",
+ "plant physiology"
+ ],
+ "_id": 32687,
+ "created": "2018-04-07T15:54:03.000Z",
+ "lastUpdated": "2021-07-24T08:57:41.683Z",
+ "keywords": [
+ {
+ "keyword": "photosynthèse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "photosynthèses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious building",
+ "religious place",
+ "christianity",
+ "signaling system"
+ ],
+ "synsets": [
+ "03786777-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "religion",
+ "christianity",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32677,
+ "created": "2018-04-07T15:44:11.000Z",
+ "lastUpdated": "2021-07-24T08:59:57.800Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "monastère",
+ "hasLocution": true,
+ "plural": "monastères"
+ },
+ {
+ "keyword": "couvent",
+ "type": 2,
+ "plural": "couvents",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "body position",
+ "categorization"
+ ],
+ "synsets": [
+ "05087073-n"
+ ],
+ "tags": [
+ "human body",
+ "position",
+ "categorization"
+ ],
+ "_id": 32675,
+ "created": "2018-04-07T15:42:45.000Z",
+ "lastUpdated": "2021-07-24T09:33:57.414Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "position",
+ "hasLocution": true,
+ "plural": "positions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious building",
+ "religious place",
+ "christianity",
+ "signaling system"
+ ],
+ "synsets": [
+ "03786777-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "religion",
+ "christianity",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32678,
+ "created": "2018-04-07T15:44:11.000Z",
+ "lastUpdated": "2021-07-24T09:00:11.642Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "monastère",
+ "hasLocution": true,
+ "plural": "monastères"
+ },
+ {
+ "keyword": "couvent",
+ "type": 2,
+ "plural": "couvents",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "00706154-v",
+ "04671120-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 32689,
+ "created": "2018-04-07T16:06:05.000Z",
+ "lastUpdated": "2021-07-24T08:57:19.962Z",
+ "keywords": [
+ {
+ "keyword": "pleine conscience",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "méditation en pleine conscience",
+ "hasLocution": false,
+ "plural": "méditations en pleine conscience",
+ "type": 2
+ },
+ {
+ "keyword": "méditer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject",
+ "rome"
+ ],
+ "synsets": [
+ "06975340-n",
+ "00891150-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject",
+ "history",
+ "civilization",
+ "Rome"
+ ],
+ "_id": 32697,
+ "created": "2018-04-07T16:19:31.000Z",
+ "lastUpdated": "2021-07-24T08:54:50.736Z",
+ "keywords": [
+ {
+ "keyword": "cours de latin",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "Latin",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "00037291-v",
+ "00037507-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 32691,
+ "created": "2018-04-07T16:08:37.000Z",
+ "lastUpdated": "2021-07-24T08:55:49.693Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "raser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "épiler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "toy"
+ ],
+ "synsets": [
+ "01908923-v",
+ "01886163-v",
+ "01922176-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 32693,
+ "created": "2018-04-07T16:11:25.000Z",
+ "lastUpdated": "2021-07-24T08:55:31.733Z",
+ "keywords": [
+ {
+ "keyword": "marcher avec un trotteur",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "musical art",
+ "show",
+ "popular event"
+ ],
+ "synsets": [
+ "08265959-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "music",
+ "work",
+ "professional",
+ "artist",
+ "leisure",
+ "show",
+ "event",
+ "popular event"
+ ],
+ "_id": 32701,
+ "created": "2018-04-07T16:26:10.000Z",
+ "lastUpdated": "2024-12-05T06:12:27.006Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fanfare",
+ "hasLocution": false,
+ "plural": "fanfares"
+ },
+ {
+ "keyword": "orchestre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "orchestres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "oceanography",
+ "sea and oceans"
+ ],
+ "synsets": [
+ "09399110-n",
+ "09232170-n"
+ ],
+ "tags": [
+ "oceanography",
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean"
+ ],
+ "_id": 32699,
+ "created": "2018-04-07T16:24:43.000Z",
+ "lastUpdated": "2021-07-24T08:54:27.238Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "océan",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Océan Atlantique",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00886144-n",
+ "05623041-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 32703,
+ "created": "2018-04-07T16:29:09.000Z",
+ "lastUpdated": "2021-07-24T08:53:03.734Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "éducation routière",
+ "hasLocution": false,
+ "plural": "éducations routières"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "06165130-n",
+ "00886144-n",
+ "00891150-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 32705,
+ "created": "2018-04-07T16:39:18.000Z",
+ "lastUpdated": "2021-07-24T08:52:43.083Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "anglais",
+ "hasLocution": true
+ },
+ {
+ "keyword": "cours d'anglais",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00886144-n",
+ "14024516-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 32706,
+ "created": "2018-04-07T16:50:04.000Z",
+ "lastUpdated": "2021-07-28T16:12:21.830Z",
+ "keywords": [
+ {
+ "keyword": "transition vers la vie adulte",
+ "hasLocution": false,
+ "plural": "transitions vers la vie adulte",
+ "type": 2
+ },
+ {
+ "keyword": "Préparation à la Vie d’Adulte ",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "hasLocution": false,
+ "keyword": "Préparation à la Vie Autonome",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "toy"
+ ],
+ "synsets": [
+ "01908923-v",
+ "01886163-v",
+ "01932791-v",
+ "01922176-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 32694,
+ "created": "2018-04-07T16:11:25.000Z",
+ "lastUpdated": "2021-07-24T08:55:13.942Z",
+ "keywords": [
+ {
+ "keyword": "marcher avec un trotteur",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre"
+ ],
+ "synsets": [
+ "08071169-n",
+ "03545775-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building"
+ ],
+ "_id": 32714,
+ "created": "2018-04-07T17:03:40.000Z",
+ "lastUpdated": "2021-07-24T08:48:28.181Z",
+ "keywords": [
+ {
+ "keyword": "hopital pédiatrique",
+ "hasLocution": false,
+ "plural": "hopitaux pédiatriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "street furniture"
+ ],
+ "synsets": [
+ "02799782-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 32716,
+ "created": "2018-04-07T17:07:45.000Z",
+ "lastUpdated": "2021-07-24T08:47:33.914Z",
+ "keywords": [
+ {
+ "keyword": "barrière",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "barrières"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre",
+ "physiotherapy"
+ ],
+ "synsets": [
+ "00701513-n",
+ "03047259-n",
+ "08070828-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "physiotherapy"
+ ],
+ "_id": 32712,
+ "created": "2018-04-07T16:59:32.000Z",
+ "lastUpdated": "2021-07-24T08:49:25.987Z",
+ "keywords": [
+ {
+ "keyword": "clinique de rééducation",
+ "hasLocution": false,
+ "plural": "cliniques de rééducation",
+ "type": 2
+ },
+ {
+ "keyword": "centre de rééducation",
+ "hasLocution": false,
+ "plural": "centres de rééducation",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational organization"
+ ],
+ "synsets": [
+ "05765728-n"
+ ],
+ "tags": [
+ "education",
+ "organization"
+ ],
+ "_id": 32720,
+ "created": "2018-04-07T18:43:40.000Z",
+ "lastUpdated": "2021-07-24T14:00:18.431Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "enseignement spécialisé",
+ "plural": "enseignements spécialisés"
+ },
+ {
+ "keyword": "enseignement primaire obligatoire",
+ "hasLocution": false,
+ "plural": "enseignements primaires obligatoires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "language"
+ ],
+ "synsets": [
+ "06315661-n"
+ ],
+ "tags": [
+ "communication",
+ "language"
+ ],
+ "_id": 32722,
+ "created": "2018-04-07T18:46:36.000Z",
+ "lastUpdated": "2021-07-24T09:33:44.929Z",
+ "keywords": [
+ {
+ "keyword": "syllabe",
+ "hasLocution": false,
+ "plural": "syllabes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational organization",
+ "signaling system"
+ ],
+ "synsets": [
+ "08066153-n",
+ "10419190-n"
+ ],
+ "tags": [
+ "education",
+ "organization",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32724,
+ "created": "2018-04-07T18:52:18.000Z",
+ "lastUpdated": "2021-07-25T14:29:04.949Z",
+ "keywords": [
+ {
+ "keyword": "association parents-enseignants-élèves",
+ "hasLocution": false,
+ "plural": "associations parents-enseignants-élèves",
+ "type": 2
+ },
+ {
+ "keyword": "association de parents d'élèves",
+ "hasLocution": false,
+ "plural": "associations de parents d'élèves",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "unit of time"
+ ],
+ "synsets": [
+ "13758939-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time"
+ ],
+ "_id": 32708,
+ "created": "2018-04-07T16:52:08.000Z",
+ "lastUpdated": "2021-07-24T08:52:14.698Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "midi",
+ "hasLocution": true,
+ "plural": "midis"
+ },
+ {
+ "keyword": "mi-journée",
+ "plural": "mi-journées",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "demi-journée",
+ "hasLocution": false,
+ "plural": "demi-journées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "childcare"
+ ],
+ "synsets": [
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "babycare"
+ ],
+ "_id": 32726,
+ "created": "2018-04-07T18:55:19.000Z",
+ "lastUpdated": "2022-12-18T05:39:51.318Z",
+ "keywords": [
+ {
+ "keyword": "magasin de puériculture",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "magasins de puériculture"
+ },
+ {
+ "plural": "magasins d'articles pour bébés",
+ "keyword": "magasin d'articles pour bébé",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "unit of time"
+ ],
+ "synsets": [
+ "13758939-n"
+ ],
+ "tags": [
+ "time",
+ "unit of time"
+ ],
+ "_id": 32709,
+ "created": "2018-04-07T16:52:08.000Z",
+ "lastUpdated": "2021-07-24T08:51:16.203Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "midi",
+ "hasLocution": true,
+ "plural": "midis"
+ },
+ {
+ "keyword": "mi-journée",
+ "hasLocution": false,
+ "plural": "mi-journées",
+ "type": 2
+ },
+ {
+ "keyword": "demi-journée",
+ "hasLocution": false,
+ "plural": "demi-journées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "skating"
+ ],
+ "synsets": [
+ "04100719-n",
+ "00449451-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "skating"
+ ],
+ "_id": 32718,
+ "created": "2018-04-07T18:36:25.000Z",
+ "lastUpdated": "2021-07-24T14:11:00.740Z",
+ "keywords": [
+ {
+ "keyword": "skatepark",
+ "hasLocution": false,
+ "plural": "skateparks",
+ "type": 2
+ },
+ {
+ "keyword": "aire de planche à roulettes",
+ "hasLocution": false,
+ "plural": "aires de planche à roulettes",
+ "type": 2
+ },
+ {
+ "keyword": "planchodrome",
+ "plural": "planchodromes",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "04552591-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 32730,
+ "created": "2018-04-07T19:02:03.000Z",
+ "lastUpdated": "2021-07-24T08:43:35.314Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trotteur",
+ "hasLocution": false,
+ "plural": "trotteurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public building",
+ "election",
+ "signaling system"
+ ],
+ "synsets": [
+ "08556480-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "public administration",
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32736,
+ "created": "2018-04-07T19:17:14.000Z",
+ "lastUpdated": "2021-07-24T08:41:44.213Z",
+ "keywords": [
+ {
+ "keyword": "bureau de vote",
+ "hasLocution": false,
+ "plural": "bureaux de vote",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy"
+ ],
+ "synsets": [
+ "01400853-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy"
+ ],
+ "_id": 32738,
+ "created": "2018-04-07T19:19:12.000Z",
+ "lastUpdated": "2021-07-24T08:40:45.080Z",
+ "keywords": [
+ {
+ "keyword": "chlorophylle",
+ "hasLocution": false,
+ "plural": "chlorophylles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product"
+ ],
+ "synsets": [
+ "14953600-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product"
+ ],
+ "_id": 32739,
+ "created": "2018-04-07T19:21:30.000Z",
+ "lastUpdated": "2021-07-24T08:39:33.929Z",
+ "keywords": [
+ {
+ "keyword": "lactose",
+ "hasLocution": false,
+ "plural": "lactoses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy"
+ ],
+ "synsets": [
+ "01400853-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy"
+ ],
+ "_id": 32741,
+ "created": "2018-04-07T19:26:03.000Z",
+ "lastUpdated": "2021-07-24T13:47:50.924Z",
+ "keywords": [
+ {
+ "keyword": "granum",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "grana"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary"
+ ],
+ "_id": 32743,
+ "created": "2018-04-07T23:47:54.000Z",
+ "lastUpdated": "2021-07-24T08:37:31.609Z",
+ "keywords": [
+ {
+ "keyword": "c'est à qui?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "à qui est-ce?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "library science"
+ ],
+ "synsets": [
+ "02874675-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "library science"
+ ],
+ "_id": 32732,
+ "created": "2018-04-07T19:05:49.000Z",
+ "lastUpdated": "2021-07-24T08:42:36.555Z",
+ "keywords": [
+ {
+ "keyword": "bibliobus",
+ "hasLocution": false,
+ "plural": "bibliobus",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "childcare"
+ ],
+ "synsets": [
+ "04209460-n",
+ "09846929-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "babycare"
+ ],
+ "_id": 32727,
+ "created": "2018-04-07T18:55:19.000Z",
+ "lastUpdated": "2022-12-18T05:40:00.508Z",
+ "keywords": [
+ {
+ "keyword": "magasin d'articles pour bébé",
+ "hasLocution": false,
+ "plural": "magasins d'articles pour bébé",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of time",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00061741-r",
+ "00118527-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 32749,
+ "created": "2018-04-07T23:52:01.000Z",
+ "lastUpdated": "2021-07-24T08:37:26.754Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "après",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "ensuite",
+ "hasLocution": true
+ },
+ {
+ "keyword": "plus tard",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "ultérieurement",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of time",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "15144861-n",
+ "00049013-r",
+ "00049758-r",
+ "00050223-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 32747,
+ "created": "2018-04-07T23:51:03.000Z",
+ "lastUpdated": "2021-07-23T20:46:19.670Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "maintenant",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01622033-v",
+ "01657416-v",
+ "01716563-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 32751,
+ "created": "2018-04-07T23:53:47.000Z",
+ "lastUpdated": "2021-07-24T08:36:32.178Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "fabriquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00754770-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary"
+ ],
+ "_id": 32753,
+ "created": "2018-04-07T23:56:19.000Z",
+ "lastUpdated": "2021-07-25T14:28:54.799Z",
+ "keywords": [
+ {
+ "keyword": "j'en veux plus",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "donne m'en plus",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "j'en veux encore",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "movie character",
+ "book character",
+ "physics"
+ ],
+ "synsets": [
+ "02527322-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "character",
+ "movie character",
+ "cinema",
+ "book character",
+ "literature",
+ "physics"
+ ],
+ "_id": 32755,
+ "created": "2018-04-07T23:58:45.000Z",
+ "lastUpdated": "2021-07-23T20:41:36.136Z",
+ "keywords": [
+ {
+ "keyword": "invisible",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "invisibles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00304675-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 32759,
+ "created": "2018-04-08T00:05:36.000Z",
+ "lastUpdated": "2021-07-23T20:37:16.114Z",
+ "keywords": [
+ {
+ "keyword": "parachutisme",
+ "hasLocution": false,
+ "plural": "parachutismes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication",
+ "object"
+ ],
+ "synsets": [
+ "01496967-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 32757,
+ "created": "2018-04-08T00:01:10.000Z",
+ "lastUpdated": "2024-12-08T07:30:41.948Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Faire passer quelque chose d'un endroit en un autre : Mettre la voiture au garage, une nappe sur la table, de l'argent à la banque.",
+ "keyword": "mettre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "placer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "situer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adverb of time",
+ "basic concepts",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00061477-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adverb",
+ "adverb of time",
+ "mathematics",
+ "basic concepts",
+ "core vocabulary"
+ ],
+ "_id": 32745,
+ "created": "2018-04-07T23:49:55.000Z",
+ "lastUpdated": "2021-07-23T20:46:54.147Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "avant",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "00706154-v",
+ "04671120-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 32734,
+ "created": "2018-04-07T19:14:58.000Z",
+ "lastUpdated": "2021-07-24T09:33:34.948Z",
+ "keywords": [
+ {
+ "keyword": "pleine conscience",
+ "hasLocution": false,
+ "plural": "pleines consciences",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "literature",
+ "library science"
+ ],
+ "synsets": [
+ "06503777-n"
+ ],
+ "tags": [
+ "literature",
+ "library science"
+ ],
+ "_id": 32767,
+ "created": "2018-04-08T00:21:04.000Z",
+ "lastUpdated": "2024-12-07T15:29:52.114Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "sommaire",
+ "hasLocution": true,
+ "plural": "sommaires"
+ },
+ {
+ "keyword": "index",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "index"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "political geography"
+ ],
+ "synsets": [
+ "13926085-n",
+ "08529331-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography"
+ ],
+ "_id": 32765,
+ "created": "2018-04-08T00:19:10.000Z",
+ "lastUpdated": "2021-07-24T13:45:27.088Z",
+ "keywords": [
+ {
+ "keyword": "limite",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "imites"
+ },
+ {
+ "keyword": "frontière",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "frontières"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01092289-v",
+ "01660471-v",
+ "00182551-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 32769,
+ "created": "2018-04-08T10:57:08.000Z",
+ "lastUpdated": "2021-07-24T08:32:44.651Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ajouter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "grouper",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "regrouper",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00596900-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary"
+ ],
+ "_id": 32771,
+ "created": "2018-04-08T11:01:32.000Z",
+ "lastUpdated": "2021-07-24T08:32:18.393Z",
+ "keywords": [
+ {
+ "keyword": "qu'est-ce que c'est ?",
+ "hasLocution": true,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01280991-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 32763,
+ "created": "2018-04-08T00:08:38.000Z",
+ "lastUpdated": "2021-07-24T08:35:34.225Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "froisser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02209474-v",
+ "02208144-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 32761,
+ "created": "2018-04-08T00:07:40.000Z",
+ "lastUpdated": "2021-07-24T08:35:41.226Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. En parlant de quelqu'un, posséder quelque chose, en disposer, subir, atteindre, obtenir quelque chose, éprouver tel sentiment, présenter telle caractéristique : Avoir beaucoup d'argent. Avoir une profession intéressante. J'ai de la sympathie pour lui. On a le temps. Il a la main leste.",
+ "keyword": "avoir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "tenir",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "posséder",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "verb",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01216829-v",
+ "01210022-v",
+ "01226565-v",
+ "01218568-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 32773,
+ "created": "2018-04-08T11:04:16.000Z",
+ "lastUpdated": "2024-12-15T07:00:16.458Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Saisir, attraper",
+ "keyword": "prendre",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "accrocher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "saisir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "mathematics"
+ ],
+ "synsets": [
+ "06756201-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "mathematics"
+ ],
+ "_id": 32775,
+ "created": "2018-04-08T11:10:39.000Z",
+ "lastUpdated": "2021-07-25T14:28:48.393Z",
+ "keywords": [
+ {
+ "keyword": "quel est le résultat ?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "ça fait combien ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01549738-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 32777,
+ "created": "2018-04-08T11:13:35.000Z",
+ "lastUpdated": "2021-07-24T08:31:32.901Z",
+ "keywords": [
+ {
+ "keyword": "multilingue",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "plurilingue",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01159815-v",
+ "00451952-v",
+ "02285714-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 32778,
+ "created": "2018-04-08T11:21:48.000Z",
+ "lastUpdated": "2021-07-24T08:30:47.798Z",
+ "keywords": [
+ {
+ "keyword": "épuiser",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "s'épuiser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling",
+ "healthy habit"
+ ],
+ "synsets": [
+ "01767681-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion",
+ "health",
+ "lifestyle",
+ "healthy habit"
+ ],
+ "_id": 32780,
+ "created": "2018-04-08T11:25:54.000Z",
+ "lastUpdated": "2021-07-24T08:29:27.879Z",
+ "keywords": [
+ {
+ "keyword": "se calmer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'apaiser",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "07286789-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32782,
+ "created": "2018-04-08T11:28:30.000Z",
+ "lastUpdated": "2021-07-24T13:41:22.131Z",
+ "keywords": [
+ {
+ "keyword": "logo",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "logos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07601670-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 32784,
+ "created": "2018-04-08T11:34:15.000Z",
+ "lastUpdated": "2021-07-24T13:34:08.073Z",
+ "keywords": [
+ {
+ "keyword": "marmite de thon",
+ "hasLocution": false,
+ "plural": "marmites de thon",
+ "type": 2
+ },
+ {
+ "keyword": "marmite de bonite",
+ "hasLocution": false,
+ "plural": "marmites de bonite",
+ "type": 2
+ },
+ {
+ "keyword": "thon à la basquaise",
+ "hasLocution": false,
+ "plural": "thons à la basquaise",
+ "type": 2
+ },
+ {
+ "keyword": "ragoût de thon",
+ "hasLocution": false,
+ "plural": "ragoûts de thon",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious building",
+ "religious place",
+ "christianity",
+ "signaling system"
+ ],
+ "synsets": [
+ "03786777-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "religion",
+ "christianity",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32790,
+ "created": "2018-04-08T11:43:41.000Z",
+ "lastUpdated": "2021-07-22T10:19:05.075Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "monastère",
+ "hasLocution": true,
+ "plural": "monastères"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sculpture",
+ "verb"
+ ],
+ "synsets": [
+ "01688232-v"
+ ],
+ "tags": [
+ "visual art",
+ "sculpture",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 32786,
+ "created": "2018-04-08T11:39:09.000Z",
+ "lastUpdated": "2021-07-24T08:27:58.900Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sculpter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "04756076-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 32792,
+ "created": "2018-04-08T11:52:51.000Z",
+ "lastUpdated": "2021-07-22T10:18:56.325Z",
+ "keywords": [
+ {
+ "keyword": "quelle est la différence ?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "regional dance"
+ ],
+ "synsets": [
+ "10118631-n",
+ "05994487-n",
+ "00538719-n",
+ "01902762-v"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "dance",
+ "regional dance",
+ "show"
+ ],
+ "_id": 32794,
+ "created": "2018-04-08T11:57:45.000Z",
+ "lastUpdated": "2021-07-22T10:18:39.294Z",
+ "keywords": [
+ {
+ "keyword": "danseurs folkloriques",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "danse folklorique",
+ "hasLocution": false,
+ "plural": "danses folkloriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physiotherapy"
+ ],
+ "synsets": [
+ "02557860-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "physiotherapy"
+ ],
+ "_id": 32796,
+ "created": "2018-04-08T12:18:16.000Z",
+ "lastUpdated": "2021-07-22T10:17:53.018Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rééduquer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03224065-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 32798,
+ "created": "2018-04-08T12:19:36.000Z",
+ "lastUpdated": "2021-07-22T10:17:40.492Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maison de poupées",
+ "hasLocution": true,
+ "plural": "maisons de poupées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "law"
+ ],
+ "synsets": [
+ "04630289-n",
+ "01772598-s",
+ "01773890-s"
+ ],
+ "tags": [
+ "law"
+ ],
+ "_id": 32788,
+ "created": "2018-04-08T11:42:27.000Z",
+ "lastUpdated": "2021-07-24T08:27:53.979Z",
+ "keywords": [
+ {
+ "keyword": "sphère privée",
+ "hasLocution": false,
+ "plural": "sphères privées",
+ "type": 2
+ },
+ {
+ "keyword": "vie privée",
+ "hasLocution": false,
+ "plural": "vies privées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "event"
+ ],
+ "synsets": [
+ "08014145-n",
+ "00428985-n"
+ ],
+ "tags": [
+ "event"
+ ],
+ "_id": 32800,
+ "created": "2018-04-08T12:24:39.000Z",
+ "lastUpdated": "2021-07-22T10:17:27.502Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fêtes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "swimming"
+ ],
+ "synsets": [
+ "03266775-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "swimming"
+ ],
+ "_id": 32808,
+ "created": "2018-04-08T12:39:19.000Z",
+ "lastUpdated": "2021-07-24T08:27:10.246Z",
+ "keywords": [
+ {
+ "keyword": "bouchons d'oreille",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ancient history"
+ ],
+ "synsets": [
+ "01732846-s"
+ ],
+ "tags": [
+ "history",
+ "ancient history"
+ ],
+ "_id": 32806,
+ "created": "2018-04-08T12:33:46.000Z",
+ "lastUpdated": "2021-07-24T13:28:13.613Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ancien",
+ "hasLocution": true,
+ "plural": "anciens"
+ },
+ {
+ "keyword": "antique",
+ "type": 4,
+ "hasLocution": false,
+ "plural": "antiques"
+ },
+ {
+ "keyword": "vieux",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "vieux"
+ },
+ {
+ "keyword": "historique",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "historique"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene"
+ ],
+ "synsets": [
+ "00037291-v",
+ "00037507-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 32810,
+ "created": "2018-04-08T12:40:17.000Z",
+ "lastUpdated": "2021-07-24T08:25:53.213Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "raser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "épiler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "06756201-n",
+ "05869651-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 32802,
+ "created": "2018-04-08T12:27:28.000Z",
+ "lastUpdated": "2021-07-22T10:17:22.723Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "résultat ",
+ "hasLocution": false,
+ "plural": "résultats"
+ },
+ {
+ "keyword": "solution",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "solutions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00099475-v",
+ "00625978-n",
+ "02860617-a",
+ "00434742-n",
+ "00442764-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 32812,
+ "created": "2018-04-09T09:40:40.000Z",
+ "lastUpdated": "2021-07-24T08:25:47.290Z",
+ "keywords": [
+ {
+ "keyword": "aquagym",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "aquafitness",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "01781131-v",
+ "01780873-v",
+ "01828678-v",
+ "01779085-v",
+ "02537648-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 32816,
+ "created": "2018-04-09T09:56:20.000Z",
+ "lastUpdated": "2021-07-22T10:15:20.394Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "désirer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "souhaiter",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "aimer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "vouloier",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task",
+ "usual verbs",
+ "core vocabulary-education",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01006451-a",
+ "00353212-v",
+ "00353480-v"
+ ],
+ "tags": [
+ "education",
+ "educational task",
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 32814,
+ "created": "2018-04-09T09:48:20.000Z",
+ "lastUpdated": "2021-07-22T10:15:33.520Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mener quelque chose à son terme, le finir, l'achever : Terminer un tableau. J'ai terminé la lecture de votre rapport.",
+ "keyword": "terminer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "finir",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "oceanography",
+ "sea and oceans"
+ ],
+ "synsets": [
+ "09240545-n"
+ ],
+ "tags": [
+ "oceanography",
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean"
+ ],
+ "_id": 32818,
+ "created": "2018-04-09T09:58:34.000Z",
+ "lastUpdated": "2021-07-22T10:14:47.847Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fond",
+ "hasLocution": true,
+ "plural": "fonds"
+ },
+ {
+ "keyword": "fond marin",
+ "hasLocution": false,
+ "plural": "fonds marins",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "interjection",
+ "verb"
+ ],
+ "synsets": [
+ "00914001-v",
+ "07140231-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "interjection",
+ "verb"
+ ],
+ "_id": 32804,
+ "created": "2018-04-08T12:32:31.000Z",
+ "lastUpdated": "2021-07-24T08:27:17.660Z",
+ "keywords": [
+ {
+ "keyword": "s'exclamer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "14055005-n",
+ "01936911-a",
+ "01938342-s",
+ "01849304-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 32820,
+ "created": "2018-04-09T10:02:48.000Z",
+ "lastUpdated": "2021-07-22T10:14:17.742Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "je suis prêt",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00616690-v",
+ "01970175-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 32822,
+ "created": "2018-04-09T10:07:40.000Z",
+ "lastUpdated": "2021-07-24T09:32:37.196Z",
+ "keywords": [
+ {
+ "keyword": "sauter",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "manquer",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07897775-n",
+ "00898273-a"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 32830,
+ "created": "2018-04-09T10:40:58.000Z",
+ "lastUpdated": "2021-07-24T13:36:55.020Z",
+ "keywords": [
+ {
+ "keyword": "boisson énergétique",
+ "hasLocution": false,
+ "plural": "boissons énergétique",
+ "type": 2
+ },
+ {
+ "keyword": "boisson pour sportifs",
+ "hasLocution": false,
+ "plural": "boissons pour sportifs",
+ "type": 2
+ },
+ {
+ "keyword": "boisson isotonique",
+ "hasLocution": false,
+ "plural": "boissons isotoniques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics"
+ ],
+ "synsets": [
+ "01242654-s",
+ "01989043-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32832,
+ "created": "2018-04-09T10:55:42.000Z",
+ "lastUpdated": "2021-07-24T08:22:09.332Z",
+ "keywords": [
+ {
+ "keyword": "être couché",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'allonger",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics"
+ ],
+ "synsets": [
+ "01977773-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32834,
+ "created": "2018-04-09T17:07:04.000Z",
+ "lastUpdated": "2021-07-24T08:21:18.347Z",
+ "keywords": [
+ {
+ "keyword": "surélever les jambes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "obstetrics"
+ ],
+ "synsets": [
+ "01978076-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 32836,
+ "created": "2018-04-09T17:11:42.000Z",
+ "lastUpdated": "2021-07-24T08:21:14.576Z",
+ "keywords": [
+ {
+ "keyword": "surélever les jambes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual orientation"
+ ],
+ "synsets": [
+ "04697183-n"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual orientation"
+ ],
+ "_id": 32828,
+ "created": "2018-04-09T10:36:51.000Z",
+ "lastUpdated": "2021-07-22T10:13:54.921Z",
+ "keywords": [
+ {
+ "keyword": "orientation sexuelle",
+ "hasLocution": false,
+ "plural": "orientations sexuelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "gynecology"
+ ],
+ "synsets": [
+ "02928282-a",
+ "00143181-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "gynecology"
+ ],
+ "_id": 32838,
+ "created": "2018-04-09T18:01:59.000Z",
+ "lastUpdated": "2021-07-24T08:21:09.920Z",
+ "keywords": [
+ {
+ "keyword": "examen gynécologique",
+ "hasLocution": false,
+ "plural": "examens gynécologiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "04910990-n",
+ "02738693-n",
+ "04112987-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32826,
+ "created": "2018-04-09T10:32:42.000Z",
+ "lastUpdated": "2021-07-24T13:43:06.951Z",
+ "keywords": [
+ {
+ "keyword": "coin calme",
+ "hasLocution": false,
+ "plural": "coins calmes",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "espace de calme-retrait",
+ "plural": "espaces de calme-retrait"
+ },
+ {
+ "keyword": "espace de calme",
+ "hasLocution": false,
+ "plural": "espaces de calme",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "10305010-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 32840,
+ "created": "2018-04-09T18:05:17.000Z",
+ "lastUpdated": "2021-07-24T08:20:53.633Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "garçon",
+ "hasLocution": true,
+ "plural": "garçons"
+ },
+ {
+ "type": 2,
+ "keyword": "petit garçon",
+ "hasLocution": true,
+ "plural": "petits garçons"
+ },
+ {
+ "keyword": "enfant",
+ "hasLocution": true,
+ "plural": "enfants"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "educational institution",
+ "signaling system"
+ ],
+ "synsets": [
+ "05765728-n",
+ "04153115-n",
+ "08293641-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "educational institution",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32824,
+ "created": "2018-04-09T10:11:55.000Z",
+ "lastUpdated": "2021-07-24T13:27:13.831Z",
+ "keywords": [
+ {
+ "keyword": "école spécialisée",
+ "hasLocution": false,
+ "plural": "écoles spécialisées",
+ "type": 2
+ },
+ {
+ "keyword": "établissement médico-social",
+ "hasLocution": false,
+ "plural": "établissements médico-sociaux",
+ "type": 2
+ },
+ {
+ "keyword": "établissement spécialisé",
+ "plural": "établissements spécialisés",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "10305010-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 32841,
+ "created": "2018-04-09T18:05:18.000Z",
+ "lastUpdated": "2021-07-24T08:21:04.502Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "garçon",
+ "hasLocution": true,
+ "plural": "garçons"
+ },
+ {
+ "type": 2,
+ "keyword": "petit garçon",
+ "hasLocution": true,
+ "plural": "petits garçons"
+ },
+ {
+ "keyword": "enfant",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "enfants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "10305010-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 32842,
+ "created": "2018-04-09T18:05:18.000Z",
+ "lastUpdated": "2021-07-22T10:10:43.041Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "garçon",
+ "hasLocution": true,
+ "plural": "garçons"
+ },
+ {
+ "type": 2,
+ "keyword": "petit garçon",
+ "hasLocution": true,
+ "plural": "petits garçons"
+ },
+ {
+ "keyword": "enfant",
+ "hasLocution": true,
+ "plural": "enfants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "10305010-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 32843,
+ "created": "2018-04-09T18:05:18.000Z",
+ "lastUpdated": "2021-07-22T10:11:07.469Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "garçon",
+ "hasLocution": true,
+ "plural": "garçons"
+ },
+ {
+ "type": 2,
+ "keyword": "petit garçon",
+ "hasLocution": true,
+ "plural": "petits garçons"
+ },
+ {
+ "keyword": "enfant",
+ "hasLocution": true,
+ "plural": "enfants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "10104064-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 32844,
+ "created": "2018-04-09T18:07:02.000Z",
+ "lastUpdated": "2021-07-22T10:09:36.036Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fille",
+ "hasLocution": true,
+ "plural": "filles"
+ },
+ {
+ "type": 2,
+ "keyword": "petite fille",
+ "hasLocution": true,
+ "plural": "petites filles"
+ },
+ {
+ "keyword": "fillette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fillettes"
+ },
+ {
+ "keyword": "enfant",
+ "type": 2,
+ "plural": "enfants",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "10104064-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 32846,
+ "created": "2018-04-09T18:07:03.000Z",
+ "lastUpdated": "2021-07-22T10:08:54.057Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fille",
+ "hasLocution": true,
+ "plural": "files"
+ },
+ {
+ "type": 2,
+ "keyword": "petite fille",
+ "hasLocution": true,
+ "plural": "petites filles"
+ },
+ {
+ "keyword": "fillette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fillettes"
+ },
+ {
+ "keyword": "enfant",
+ "type": 2,
+ "plural": "enfants",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day time"
+ ],
+ "synsets": [
+ "00252877-r",
+ "00131773-s"
+ ],
+ "tags": [
+ "time",
+ "calendar"
+ ],
+ "_id": 32850,
+ "created": "2018-04-09T18:16:22.000Z",
+ "lastUpdated": "2021-08-01T21:55:47.051Z",
+ "keywords": [
+ {
+ "keyword": "après-midi",
+ "hasLocution": true,
+ "plural": "après-midis",
+ "type": 2
+ },
+ {
+ "keyword": "P.M.",
+ "hasLocution": false,
+ "plural": "P.M.",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day time"
+ ],
+ "synsets": [
+ "00252773-r",
+ "00131590-s"
+ ],
+ "tags": [
+ "time",
+ "calendar"
+ ],
+ "_id": 32848,
+ "created": "2018-04-09T18:12:21.000Z",
+ "lastUpdated": "2021-08-01T21:55:40.503Z",
+ "keywords": [
+ {
+ "keyword": "matin",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "matins"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "A.M.",
+ "plural": "A.M.",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "05749285-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 32852,
+ "created": "2018-04-09T18:28:01.000Z",
+ "lastUpdated": "2021-07-24T08:21:00.071Z",
+ "keywords": [
+ {
+ "keyword": "analyse de selles",
+ "hasLocution": false,
+ "plural": "analyses de selles",
+ "type": 2
+ },
+ {
+ "keyword": "examen des selles",
+ "hasLocution": false,
+ "plural": "examens des selles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "02652909-a",
+ "05555665-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 32854,
+ "created": "2018-04-09T18:33:28.000Z",
+ "lastUpdated": "2021-07-24T14:07:55.427Z",
+ "keywords": [
+ {
+ "keyword": "fistule artério-veineuse",
+ "hasLocution": false,
+ "plural": "fistules artério-veineuse",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "02652909-a",
+ "05555665-n",
+ "14346126-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 32855,
+ "created": "2018-04-09T18:33:28.000Z",
+ "lastUpdated": "2021-07-24T14:07:42.239Z",
+ "keywords": [
+ {
+ "keyword": "fistule artério-veineuse",
+ "hasLocution": false,
+ "plural": "fistules artério-veineuse",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "covid-19"
+ ],
+ "synsets": [
+ "01449876-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "covid-19"
+ ],
+ "_id": 32858,
+ "created": "2018-04-09T18:39:21.000Z",
+ "lastUpdated": "2021-07-22T10:04:54.931Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "appuyer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "presser",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "child"
+ ],
+ "synsets": [
+ "10104064-n"
+ ],
+ "tags": [
+ "person",
+ "child"
+ ],
+ "_id": 32847,
+ "created": "2018-04-09T18:07:03.000Z",
+ "lastUpdated": "2021-07-22T10:08:46.002Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fille",
+ "hasLocution": true,
+ "plural": "filles"
+ },
+ {
+ "type": 2,
+ "keyword": "petite fille",
+ "hasLocution": true,
+ "plural": "petites filles"
+ },
+ {
+ "keyword": "fillette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fillettes"
+ },
+ {
+ "keyword": "enfant",
+ "hasLocution": true,
+ "plural": "enfants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "child",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "10104064-n"
+ ],
+ "tags": [
+ "person",
+ "child",
+ "core vocabulary"
+ ],
+ "_id": 32845,
+ "created": "2018-04-09T18:07:02.000Z",
+ "lastUpdated": "2021-07-22T10:09:03.330Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fille",
+ "hasLocution": true,
+ "plural": "filles"
+ },
+ {
+ "type": 2,
+ "keyword": "petite fille",
+ "hasLocution": true,
+ "plural": "petites filles"
+ },
+ {
+ "keyword": "fillette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fillettes"
+ },
+ {
+ "keyword": "enfant",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "enfants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "00421085-v",
+ "01390440-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 32866,
+ "created": "2018-04-18T12:32:03.000Z",
+ "lastUpdated": "2021-07-22T10:04:09.812Z",
+ "keywords": [
+ {
+ "keyword": "serrer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "type": 3,
+ "keyword": "presser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00742582-v",
+ "01065952-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 32862,
+ "created": "2018-04-09T18:50:30.000Z",
+ "lastUpdated": "2021-07-22T10:04:26.013Z",
+ "keywords": [
+ {
+ "keyword": "partager une idée",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "special education"
+ ],
+ "synsets": [],
+ "tags": [
+ "education",
+ "educational material",
+ "special education"
+ ],
+ "_id": 32868,
+ "created": "2018-04-18T12:35:12.000Z",
+ "lastUpdated": "2021-07-28T20:03:17.453Z",
+ "keywords": [
+ {
+ "keyword": "TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "approche TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "programme TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "approche TEACCH",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "special education"
+ ],
+ "synsets": [],
+ "tags": [
+ "education",
+ "educational material",
+ "special education"
+ ],
+ "_id": 32869,
+ "created": "2018-04-18T12:35:12.000Z",
+ "lastUpdated": "2021-07-28T20:02:58.294Z",
+ "keywords": [
+ {
+ "keyword": "TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "méthode TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "approche TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "programme TEACCH",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "interrogative pronoun",
+ "core vocabulary-communication",
+ "pronoun",
+ "adverb",
+ "adverb of time"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "pronoun",
+ "interrogative pronoun",
+ "core vocabulary",
+ "adverb",
+ "adverb of time"
+ ],
+ "_id": 32874,
+ "created": "2018-04-18T12:43:03.000Z",
+ "lastUpdated": "2024-10-21T05:07:43.921Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "quand",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03971038-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 32864,
+ "created": "2018-04-09T18:56:48.000Z",
+ "lastUpdated": "2021-03-27T22:07:59.258Z",
+ "keywords": [
+ {
+ "keyword": "slinky",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "slinky"
+ },
+ {
+ "keyword": "jouet à ressort",
+ "hasLocution": false,
+ "plural": "jouets à ressort",
+ "type": 2
+ },
+ {
+ "keyword": "ondamania",
+ "hasLocution": false,
+ "plural": "ondamanias",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "core vocabulary-communication"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "core vocabulary"
+ ],
+ "_id": 32872,
+ "created": "2018-04-18T12:39:18.000Z",
+ "lastUpdated": "2021-07-22T10:02:44.017Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "où est-ce?",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid"
+ ],
+ "synsets": [
+ "03155461-n",
+ "04663006-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 32876,
+ "created": "2018-04-18T12:45:54.000Z",
+ "lastUpdated": "2021-07-24T11:10:16.826Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pointeur de tête",
+ "hasLocution": true,
+ "plural": "pointeurs de tête"
+ },
+ {
+ "keyword": "pointeur laser",
+ "hasLocution": false,
+ "plural": "pointeurs lasers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "07532236-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 32860,
+ "created": "2018-04-09T18:44:02.000Z",
+ "lastUpdated": "2021-07-24T11:07:55.000Z",
+ "keywords": [
+ {
+ "keyword": "s'arracher les cheveux",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 32877,
+ "created": "2018-04-18T12:45:54.000Z",
+ "lastUpdated": "2021-07-27T16:39:00.652Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "souris à la tête",
+ "hasLocution": false,
+ "plural": "souris à la tête"
+ },
+ {
+ "keyword": "souris head mouse",
+ "hasLocution": false,
+ "plural": "souris head mouse",
+ "type": 2
+ },
+ {
+ "keyword": "souris gyroscopique",
+ "hasLocution": false,
+ "plural": "souris gyroscopiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "human response"
+ ],
+ "synsets": [
+ "00139041-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response"
+ ],
+ "_id": 32886,
+ "created": "2018-05-11T12:53:04.000Z",
+ "lastUpdated": "2021-07-22T09:58:36.649Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "embrasser",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "faire un bisou",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "baiser",
+ "hasLocution": false,
+ "plural": "baisers"
+ },
+ {
+ "type": 2,
+ "keyword": "bisou",
+ "hasLocution": false,
+ "plural": "bisous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction",
+ "residential building"
+ ],
+ "synsets": [
+ "04556057-n",
+ "04262144-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction",
+ "home"
+ ],
+ "_id": 32888,
+ "created": "2018-05-11T12:56:37.000Z",
+ "lastUpdated": "2021-07-22T09:58:12.841Z",
+ "keywords": [
+ {
+ "keyword": "prise murale",
+ "hasLocution": false,
+ "plural": "prises mmurales",
+ "type": 2
+ },
+ {
+ "keyword": "prise",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "prises"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid"
+ ],
+ "synsets": [
+ "04663006-n",
+ "03155461-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 32880,
+ "created": "2018-04-18T12:45:54.000Z",
+ "lastUpdated": "2021-07-24T09:32:10.057Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oculométrie",
+ "hasLocution": false,
+ "plural": "oculométries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "03974625-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 32890,
+ "created": "2018-05-11T12:57:30.000Z",
+ "lastUpdated": "2021-07-24T08:11:57.949Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "prise",
+ "hasLocution": false,
+ "plural": "prises"
+ },
+ {
+ "keyword": "fiche",
+ "hasLocution": true,
+ "plural": "fiches",
+ "type": 2
+ },
+ {
+ "keyword": "prise mâle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "prises mâles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03950414-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 32892,
+ "created": "2018-05-11T13:00:23.000Z",
+ "lastUpdated": "2021-07-24T08:11:31.095Z",
+ "keywords": [
+ {
+ "keyword": "moulinet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "moulinets"
+ },
+ {
+ "keyword": "moulin à vent",
+ "hasLocution": false,
+ "plural": "moulins à vent",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "04310233-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 32894,
+ "created": "2018-05-11T13:01:10.000Z",
+ "lastUpdated": "2021-07-22T09:56:10.631Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "agrafe",
+ "hasLocution": true,
+ "plural": "agrafes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "gardening"
+ ],
+ "synsets": [
+ "01859141-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "gardening"
+ ],
+ "_id": 32896,
+ "created": "2018-05-11T13:04:56.000Z",
+ "lastUpdated": "2021-07-23T21:30:03.778Z",
+ "keywords": [
+ {
+ "keyword": "transplanter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rempoter",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "replanter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid"
+ ],
+ "synsets": [
+ "04663006-n",
+ "03155461-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 32879,
+ "created": "2018-04-18T12:45:54.000Z",
+ "lastUpdated": "2021-07-24T09:32:17.822Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oculométrie",
+ "hasLocution": false,
+ "plural": "oculométries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid"
+ ],
+ "synsets": [
+ "04663006-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 32878,
+ "created": "2018-04-18T12:45:54.000Z",
+ "lastUpdated": "2021-07-24T11:04:57.409Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "souris à la tête",
+ "hasLocution": false,
+ "plural": "souris à la tête"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01908286-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 32904,
+ "created": "2018-05-11T13:09:17.000Z",
+ "lastUpdated": "2024-12-10T08:22:53.228Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "flotter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human anatomy",
+ "integumentary system"
+ ],
+ "synsets": [
+ "05574750-n"
+ ],
+ "tags": [
+ "human body",
+ "anatomy",
+ "human anatomy",
+ "human physiology",
+ "physiology",
+ "integumentary system"
+ ],
+ "_id": 32906,
+ "created": "2018-05-11T13:10:27.000Z",
+ "lastUpdated": "2021-07-22T09:53:39.600Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bout du doigt",
+ "hasLocution": false,
+ "plural": "bouts du doigt"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs"
+ ],
+ "synsets": [
+ "01908923-v",
+ "01886163-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs"
+ ],
+ "_id": 32908,
+ "created": "2018-05-11T13:13:09.000Z",
+ "lastUpdated": "2021-07-22T09:53:13.744Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "marcher",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "speech therapy"
+ ],
+ "synsets": [
+ "10653862-n",
+ "00708466-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "speech therapy"
+ ],
+ "_id": 32910,
+ "created": "2018-05-11T13:14:33.000Z",
+ "lastUpdated": "2021-07-22T09:53:09.869Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "orthophoniste",
+ "hasLocution": true,
+ "plural": "orthophonistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "speech therapy"
+ ],
+ "synsets": [
+ "10653862-n",
+ "00708466-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "speech therapy"
+ ],
+ "_id": 32911,
+ "created": "2018-05-11T13:14:33.000Z",
+ "lastUpdated": "2021-07-22T09:53:02.797Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "orthophoniste",
+ "hasLocution": true,
+ "plural": "orthophonistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "land transport"
+ ],
+ "synsets": [
+ "04546173-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 32914,
+ "created": "2018-05-11T13:17:15.000Z",
+ "lastUpdated": "2021-07-22T09:52:56.678Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "visière",
+ "hasLocution": true,
+ "plural": "visières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "road safety",
+ "land transport",
+ "transport services"
+ ],
+ "synsets": [
+ "10054631-n",
+ "09928311-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "movement",
+ "traffic",
+ "road safety",
+ "mode of transport",
+ "land transport",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 32916,
+ "created": "2018-05-11T13:19:05.000Z",
+ "lastUpdated": "2021-07-22T09:52:47.545Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conducteur",
+ "hasLocution": true,
+ "plural": "conducteurs"
+ },
+ {
+ "type": 2,
+ "keyword": "chauffeur",
+ "hasLocution": true,
+ "plural": "chauffeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "computing"
+ ],
+ "synsets": [
+ "04596042-n"
+ ],
+ "tags": [
+ "computing"
+ ],
+ "_id": 32918,
+ "created": "2018-05-11T13:21:42.000Z",
+ "lastUpdated": "2021-07-22T09:52:32.900Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fenêtre",
+ "hasLocution": true,
+ "plural": "fenêtres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "04289632-n",
+ "03106525-a"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 32920,
+ "created": "2018-05-11T13:30:36.000Z",
+ "lastUpdated": "2021-07-24T09:31:58.072Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "orthèse anti-adduction",
+ "hasLocution": false,
+ "plural": "orthèses anti-adduction"
+ },
+ {
+ "keyword": "orthèse",
+ "hasLocution": false,
+ "plural": "orthèses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "04206070-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 32922,
+ "created": "2018-05-11T13:32:40.000Z",
+ "lastUpdated": "2021-07-22T09:52:06.383Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussure",
+ "hasLocution": true,
+ "plural": "chaussures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "04206070-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 32923,
+ "created": "2018-05-11T13:32:40.000Z",
+ "lastUpdated": "2021-07-22T09:52:01.321Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaussure",
+ "hasLocution": true,
+ "plural": "chaussures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "electrical appliance",
+ "cookery"
+ ],
+ "synsets": [
+ "01420522-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 32926,
+ "created": "2018-05-11T13:37:17.000Z",
+ "lastUpdated": "2021-07-22T09:51:50.772Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "battre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "fouetter",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "surf"
+ ],
+ "synsets": [
+ "01951936-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "surf"
+ ],
+ "_id": 32928,
+ "created": "2018-05-11T13:38:25.000Z",
+ "lastUpdated": "2021-07-22T09:51:24.947Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "surfer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "surf"
+ ],
+ "synsets": [
+ "01951936-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "surf"
+ ],
+ "_id": 32929,
+ "created": "2018-05-11T13:38:25.000Z",
+ "lastUpdated": "2021-07-22T09:51:16.472Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "surfer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "surf",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "surfs"
+ },
+ {
+ "keyword": "planche de surf",
+ "plural": "planches de surf",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport modality",
+ "surf"
+ ],
+ "synsets": [
+ "01951936-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport modality",
+ "surf"
+ ],
+ "_id": 32930,
+ "created": "2018-05-11T13:38:25.000Z",
+ "lastUpdated": "2021-07-24T08:10:43.107Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "surfer",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "surf",
+ "hasLocution": true,
+ "plural": "surfs"
+ },
+ {
+ "keyword": "planche de surf",
+ "hasLocution": true,
+ "plural": "planches de surf"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building"
+ ],
+ "synsets": [
+ "02761139-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture"
+ ],
+ "_id": 32934,
+ "created": "2018-05-11T13:40:04.000Z",
+ "lastUpdated": "2021-07-24T08:10:39.114Z",
+ "keywords": [
+ {
+ "keyword": "auditorium",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "auditoriums"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building"
+ ],
+ "synsets": [
+ "02761139-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture"
+ ],
+ "_id": 32935,
+ "created": "2018-05-11T13:40:04.000Z",
+ "lastUpdated": "2021-07-22T09:49:27.237Z",
+ "keywords": [
+ {
+ "keyword": "auditorium",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "auditoriums"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "05765728-n",
+ "10713754-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 32938,
+ "created": "2018-05-11T13:42:02.000Z",
+ "lastUpdated": "2021-07-28T16:10:04.464Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "enseignant spécialisé",
+ "plural": "enseignants spécialisés"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "professeur de soutien scolaire",
+ "plural": "professeurs de soutien scolaire"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "02841963-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 32898,
+ "created": "2018-05-11T13:05:39.000Z",
+ "lastUpdated": "2021-07-23T21:29:23.131Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "visière",
+ "hasLocution": true,
+ "plural": "visières"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "09304683-n"
+ ],
+ "tags": [],
+ "_id": 32900,
+ "created": "2018-05-11T13:06:19.000Z",
+ "lastUpdated": "2021-07-22T09:55:25.990Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "flotteur",
+ "hasLocution": false,
+ "plural": "flotteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "03026168-a",
+ "03568890-n",
+ "03511871-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 32902,
+ "created": "2018-05-11T13:07:29.000Z",
+ "lastUpdated": "2021-07-24T09:32:01.373Z",
+ "keywords": [
+ {
+ "keyword": "implant cochléaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "implants cochléaires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [
+ "02389828-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 32940,
+ "created": "2018-05-11T13:45:40.000Z",
+ "lastUpdated": "2021-07-22T09:48:58.239Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "rentrons à la maison",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "animal-based food",
+ "plant-based food",
+ "core vocabulary-place",
+ "core vocabulary-feeding"
+ ],
+ "synsets": [
+ "03727779-n",
+ "01099197-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "animal-based food",
+ "plant-based food",
+ "core vocabulary"
+ ],
+ "_id": 32942,
+ "created": "2018-05-11T13:47:14.000Z",
+ "lastUpdated": "2021-07-22T09:48:52.411Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marché",
+ "hasLocution": true,
+ "plural": "marchés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "orthopedic product"
+ ],
+ "synsets": [
+ "01908923-v",
+ "01886163-v",
+ "01932791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 32944,
+ "created": "2018-05-11T13:49:40.000Z",
+ "lastUpdated": "2021-07-24T08:09:01.868Z",
+ "keywords": [
+ {
+ "keyword": "marcher avec un déambulateur",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "orthopedic product"
+ ],
+ "synsets": [
+ "01908923-v",
+ "01886163-v",
+ "01932791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 32945,
+ "created": "2018-05-11T13:49:40.000Z",
+ "lastUpdated": "2021-07-24T08:08:58.183Z",
+ "keywords": [
+ {
+ "keyword": "marcher avec un déambulateur",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "orthopedic product"
+ ],
+ "synsets": [
+ "01908923-v",
+ "01886163-v",
+ "01932791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 32946,
+ "created": "2018-05-11T13:49:40.000Z",
+ "lastUpdated": "2021-07-24T08:08:39.935Z",
+ "keywords": [
+ {
+ "keyword": "marcher avec un déambulateur",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry",
+ "residential building"
+ ],
+ "synsets": [
+ "10046278-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry",
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 32956,
+ "created": "2018-05-11T13:56:10.000Z",
+ "lastUpdated": "2021-07-24T11:03:16.720Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "concierge",
+ "hasLocution": true,
+ "plural": "concierges"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "gardien",
+ "type": 2,
+ "plural": "gardiens"
+ },
+ {
+ "keyword": "agent d'accueil",
+ "hasLocution": false,
+ "plural": "agents d'accueil",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry",
+ "residential building"
+ ],
+ "synsets": [
+ "10046278-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry",
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 32957,
+ "created": "2018-05-11T13:56:10.000Z",
+ "lastUpdated": "2021-07-24T11:02:10.565Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "concierge",
+ "hasLocution": true,
+ "plural": "concierges"
+ },
+ {
+ "keyword": "gardienne",
+ "hasLocution": false,
+ "plural": "gardiennes",
+ "type": 2
+ },
+ {
+ "keyword": "hôtesse d'accueil",
+ "hasLocution": false,
+ "plural": "hôtesses d'accueil",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00828450-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 32960,
+ "created": "2018-05-11T13:57:51.000Z",
+ "lastUpdated": "2021-07-24T08:08:11.679Z",
+ "keywords": [
+ {
+ "keyword": "tai-chi-chuan",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "tai-chi",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00828450-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 32961,
+ "created": "2018-05-11T13:57:51.000Z",
+ "lastUpdated": "2021-07-22T09:46:05.909Z",
+ "keywords": [
+ {
+ "keyword": "tai-chi-chuan",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "tai-chi",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00826992-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 32964,
+ "created": "2018-05-11T13:59:06.000Z",
+ "lastUpdated": "2021-07-22T09:45:17.369Z",
+ "keywords": [
+ {
+ "keyword": "aïkido",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task",
+ "special education"
+ ],
+ "synsets": [
+ "01216829-v",
+ "01210022-v"
+ ],
+ "tags": [
+ "education",
+ "educational task",
+ "special education"
+ ],
+ "_id": 32966,
+ "created": "2018-05-11T14:01:25.000Z",
+ "lastUpdated": "2021-07-28T20:02:04.739Z",
+ "keywords": [
+ {
+ "keyword": "TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "programme TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "approche TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "méthode TEACCH",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task",
+ "special education"
+ ],
+ "synsets": [
+ "01496967-v",
+ "01578506-v"
+ ],
+ "tags": [
+ "education",
+ "educational task",
+ "special education"
+ ],
+ "_id": 32967,
+ "created": "2018-05-11T14:01:25.000Z",
+ "lastUpdated": "2021-07-28T19:57:31.836Z",
+ "keywords": [
+ {
+ "keyword": "TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "approche TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "méthode TEACCH",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "programme TEACCH",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "occupational therapy",
+ "professional"
+ ],
+ "synsets": [
+ "00665820-n"
+ ],
+ "tags": [
+ "health",
+ "occupational therapy",
+ "work",
+ "professional"
+ ],
+ "_id": 32970,
+ "created": "2018-05-11T14:03:24.000Z",
+ "lastUpdated": "2021-07-22T09:43:54.302Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ergothérapeute",
+ "hasLocution": true,
+ "plural": "ergothérapeutes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "occupational therapy",
+ "professional"
+ ],
+ "synsets": [
+ "00665820-n"
+ ],
+ "tags": [
+ "health",
+ "occupational therapy",
+ "work",
+ "professional"
+ ],
+ "_id": 32971,
+ "created": "2018-05-11T14:03:24.000Z",
+ "lastUpdated": "2021-07-24T08:07:36.092Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ergothérapeute",
+ "hasLocution": true,
+ "plural": "ergothérapeutes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "psychology"
+ ],
+ "synsets": [
+ "10508450-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "psychology"
+ ],
+ "_id": 32974,
+ "created": "2018-05-11T14:05:32.000Z",
+ "lastUpdated": "2021-07-22T09:43:39.886Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "psychologue",
+ "hasLocution": true,
+ "plural": "psychologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "psychology"
+ ],
+ "synsets": [
+ "10508450-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "psychology"
+ ],
+ "_id": 32976,
+ "created": "2018-05-11T14:05:59.000Z",
+ "lastUpdated": "2021-07-24T08:07:32.164Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "psychologue",
+ "hasLocution": true,
+ "plural": "psychologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "10208334-n",
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 32978,
+ "created": "2018-05-11T14:06:45.000Z",
+ "lastUpdated": "2021-07-24T11:15:17.162Z",
+ "keywords": [
+ {
+ "keyword": "gouvernante",
+ "hasLocution": false,
+ "plural": "gouvernantes",
+ "type": 2
+ },
+ {
+ "keyword": "cheffe d'équipe",
+ "hasLocution": false,
+ "plural": "cheffes d'équipe",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "10208334-n",
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 32980,
+ "created": "2018-05-11T14:07:46.000Z",
+ "lastUpdated": "2021-07-24T11:15:22.869Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "gouvernant",
+ "plural": "gouvernants"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "chef d'équipe",
+ "plural": "chefs d'équipe",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10364831-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "medicine"
+ ],
+ "_id": 32982,
+ "created": "2018-05-11T14:15:47.000Z",
+ "lastUpdated": "2021-08-24T15:47:54.971Z",
+ "keywords": [
+ {
+ "keyword": "aide-médicopédagogique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "aide-médicopédagogiques"
+ },
+ {
+ "type": 2,
+ "keyword": "aide-médicopsychologique",
+ "hasLocution": false,
+ "plural": "aide-médicopsychologiques"
+ },
+ {
+ "keyword": "AMP",
+ "hasLocution": false,
+ "plural": "AMP",
+ "type": 2
+ },
+ {
+ "keyword": "auxiliaire de vie",
+ "hasLocution": false,
+ "plural": "auxiliaires de vie",
+ "type": 2
+ },
+ {
+ "keyword": "tierce-personne",
+ "hasLocution": false,
+ "plural": "tierce-personnes",
+ "type": 2
+ },
+ {
+ "keyword": "aidante",
+ "hasLocution": false,
+ "plural": "aidantes",
+ "type": 2
+ },
+ {
+ "keyword": "accompagnante éducative et sociale",
+ "hasLocution": false,
+ "plural": "accompagnantes éducatives et sociales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10364831-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "medicine"
+ ],
+ "_id": 32983,
+ "created": "2018-05-11T14:15:47.000Z",
+ "lastUpdated": "2021-08-24T15:49:55.555Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 1,
+ "keyword": "aide-médicopédagogique",
+ "plural": "aide-médicopédagogiques"
+ },
+ {
+ "keyword": "auxiliaire de vie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "auxiliaires de vie"
+ },
+ {
+ "keyword": "AMP",
+ "hasLocution": false,
+ "plural": "AMP",
+ "type": 2
+ },
+ {
+ "keyword": "tierce-personne",
+ "hasLocution": false,
+ "plural": "tierce-personnes",
+ "type": 2
+ },
+ {
+ "keyword": "aidant",
+ "hasLocution": false,
+ "plural": "aidants",
+ "type": 2
+ },
+ {
+ "keyword": "aide-médicopsychologique",
+ "hasLocution": false,
+ "plural": "aide-médicopsychologiques",
+ "type": 2
+ },
+ {
+ "keyword": "accompagnant éducatif et social",
+ "hasLocution": false,
+ "plural": "accompagnants éducatifs et sociaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "sports facility",
+ "signaling system",
+ "physical exercise"
+ ],
+ "synsets": [
+ "03477235-n",
+ "08632949-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "sport",
+ "sports facility",
+ "communication",
+ "signaling system",
+ "physical exercise"
+ ],
+ "_id": 32986,
+ "created": "2018-05-11T18:39:54.000Z",
+ "lastUpdated": "2021-07-24T10:46:17.867Z",
+ "keywords": [
+ {
+ "keyword": " salle de sport",
+ "hasLocution": false,
+ "plural": "salles de sport",
+ "type": 2
+ },
+ {
+ "keyword": "salle de fitness",
+ "hasLocution": false,
+ "plural": "salles de fitness",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "sports facility",
+ "physical exercise"
+ ],
+ "synsets": [
+ "03477235-n",
+ "08632949-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "sport",
+ "sports facility",
+ "physical exercise"
+ ],
+ "_id": 32987,
+ "created": "2018-05-11T18:39:54.000Z",
+ "lastUpdated": "2021-07-24T10:45:24.204Z",
+ "keywords": [
+ {
+ "keyword": "aire de sport",
+ "hasLocution": false,
+ "plural": "aires de sport",
+ "type": 2
+ },
+ {
+ "keyword": "aire de fitness",
+ "hasLocution": false,
+ "plural": "aires de fitness",
+ "type": 2
+ },
+ {
+ "keyword": "aire de fitness extérieur",
+ "hasLocution": false,
+ "plural": "aires de fitness extérieur",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "law and justice"
+ ],
+ "synsets": [
+ "02506927-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 32990,
+ "created": "2018-05-11T18:41:45.000Z",
+ "lastUpdated": "2021-07-24T09:31:42.550Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "juger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "easter week",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "15216662-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "easter week",
+ "religious event",
+ "religion",
+ "christianity"
+ ],
+ "_id": 32950,
+ "created": "2018-05-11T13:51:15.000Z",
+ "lastUpdated": "2021-03-26T02:36:35.654Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Vendredi Saint",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "easter week",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "15216662-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "easter week",
+ "religious event",
+ "religion",
+ "christianity"
+ ],
+ "_id": 32951,
+ "created": "2018-05-11T13:51:15.000Z",
+ "lastUpdated": "2021-03-26T02:36:12.330Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Vendredi Saint",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "trade"
+ ],
+ "synsets": [
+ "00795242-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 32954,
+ "created": "2018-05-11T13:53:46.000Z",
+ "lastUpdated": "2021-07-22T09:47:25.362Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "allons dans un autre magasin",
+ "hasLocution": true
+ },
+ {
+ "keyword": "allons dans ce magasin",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "law and justice",
+ "law",
+ "professional"
+ ],
+ "synsets": [
+ "10248138-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice",
+ "professional"
+ ],
+ "_id": 32992,
+ "created": "2018-05-11T18:43:41.000Z",
+ "lastUpdated": "2021-07-24T10:40:57.059Z",
+ "keywords": [
+ {
+ "keyword": "juge de paix",
+ "hasLocution": false,
+ "plural": "juges de paix",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public building",
+ "law and justice",
+ "signaling system"
+ ],
+ "synsets": [
+ "10248138-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "public administration",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32994,
+ "created": "2018-05-11T18:46:11.000Z",
+ "lastUpdated": "2021-07-24T10:40:23.859Z",
+ "keywords": [
+ {
+ "keyword": "juge de paix",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "juges de paix"
+ },
+ {
+ "keyword": "cour des juges de paix",
+ "hasLocution": false,
+ "plural": "cours des juges de paix",
+ "type": 2
+ },
+ {
+ "keyword": "tribunal de paix",
+ "hasLocution": false,
+ "plural": "tribunaux de paix",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public building",
+ "public administration",
+ "signaling system"
+ ],
+ "synsets": [
+ "06519032-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "public administration",
+ "work",
+ "tertiary sector",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 32996,
+ "created": "2018-05-11T18:47:59.000Z",
+ "lastUpdated": "2021-07-24T10:35:53.251Z",
+ "keywords": [
+ {
+ "hasLocution": true,
+ "type": 2,
+ "keyword": "inscription",
+ "plural": "inscriptions"
+ },
+ {
+ "keyword": "bureau d'enregistrement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bureaux d'enregistrement"
+ },
+ {
+ "keyword": "bureau d'inscription",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bureaux d'inscription"
+ },
+ {
+ "keyword": "enregistrement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "enregistrements"
+ },
+ {
+ "keyword": "archives",
+ "hasLocution": false,
+ "plural": "archives",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "registre",
+ "plural": "registres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "02463017-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 33000,
+ "created": "2018-05-11T18:52:21.000Z",
+ "lastUpdated": "2021-07-24T08:02:42.119Z",
+ "keywords": [
+ {
+ "keyword": "tolérer",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "07483256-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 33008,
+ "created": "2018-05-11T19:07:31.000Z",
+ "lastUpdated": "2021-07-24T08:02:26.007Z",
+ "keywords": [
+ {
+ "keyword": "parcours",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "parcours"
+ },
+ {
+ "keyword": "gymkana",
+ "hasLocution": false,
+ "plural": "gymkanas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03879526-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 33010,
+ "created": "2018-05-11T19:17:06.000Z",
+ "lastUpdated": "2021-07-23T20:27:11.347Z",
+ "keywords": [
+ {
+ "keyword": "raquette de padel",
+ "hasLocution": false,
+ "plural": "raquettes de padel",
+ "type": 2
+ },
+ {
+ "keyword": "padel",
+ "hasLocution": false,
+ "plural": "padels",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sportswear"
+ ],
+ "synsets": [
+ "15031944-n",
+ "04581353-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sportswear",
+ "clothing"
+ ],
+ "_id": 33012,
+ "created": "2018-05-11T19:26:06.000Z",
+ "lastUpdated": "2021-07-24T08:02:21.890Z",
+ "keywords": [
+ {
+ "keyword": "combinaison neoprène",
+ "hasLocution": false,
+ "plural": "combinaisons neoprène"
+ },
+ {
+ "keyword": "combinaison",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "combinaisons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "01962311-v",
+ "01982590-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 33014,
+ "created": "2018-05-11T19:30:33.000Z",
+ "lastUpdated": "2021-07-24T08:01:48.751Z",
+ "keywords": [
+ {
+ "keyword": "descendre de cheval",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "descendre",
+ "type": 3,
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "01961388-v",
+ "01927367-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 33016,
+ "created": "2018-05-11T19:33:46.000Z",
+ "lastUpdated": "2021-07-24T08:01:52.307Z",
+ "keywords": [
+ {
+ "keyword": "monter sur le cheval",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "monter à cheval",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "monter",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious act",
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [
+ "07466063-n"
+ ],
+ "tags": [
+ "religion",
+ "event",
+ "religious event",
+ "christianity"
+ ],
+ "_id": 33018,
+ "created": "2018-05-11T19:35:02.000Z",
+ "lastUpdated": "2021-07-22T09:35:53.220Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "funérailles",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "board game"
+ ],
+ "synsets": [
+ "00500077-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "board game"
+ ],
+ "_id": 33020,
+ "created": "2018-05-11T19:37:00.000Z",
+ "lastUpdated": "2021-07-22T09:35:45.759Z",
+ "keywords": [
+ {
+ "keyword": "babyfoot",
+ "hasLocution": false,
+ "plural": "babyfoots",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adapted sport"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "adapted sport"
+ ],
+ "_id": 33022,
+ "created": "2018-05-11T19:41:53.000Z",
+ "lastUpdated": "2021-07-24T10:27:29.377Z",
+ "keywords": [
+ {
+ "keyword": "showdown",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "showdowns"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adapted sport"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "adapted sport"
+ ],
+ "_id": 33023,
+ "created": "2018-05-11T19:41:53.000Z",
+ "lastUpdated": "2021-07-24T09:31:23.423Z",
+ "keywords": [
+ {
+ "keyword": "showdown",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "10787187-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 33026,
+ "created": "2018-05-11T19:51:44.000Z",
+ "lastUpdated": "2021-07-24T09:31:19.946Z",
+ "keywords": [
+ {
+ "keyword": "responsable d'entrepôt",
+ "hasLocution": false,
+ "plural": "responsables d'entrepôt",
+ "type": 2
+ },
+ {
+ "keyword": "gestionnaire d'entrepôts",
+ "plural": "gestionnaires d'entrepôts",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "10787187-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 33028,
+ "created": "2018-05-11T19:52:10.000Z",
+ "lastUpdated": "2021-07-24T09:31:16.661Z",
+ "keywords": [
+ {
+ "keyword": "responsable d'entrepôt",
+ "hasLocution": false,
+ "plural": "responsables d'entrepôt",
+ "type": 2
+ },
+ {
+ "keyword": "gestionnaire d'entrepôt",
+ "hasLocution": false,
+ "plural": "gestionnaires d'entrepôt",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "education professionals"
+ ],
+ "synsets": [
+ "07967506-n",
+ "00033122-n",
+ "09836059-n",
+ "09835195-n",
+ "00373938-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education"
+ ],
+ "_id": 33030,
+ "created": "2018-05-11T19:55:31.000Z",
+ "lastUpdated": "2021-07-24T14:01:07.734Z",
+ "keywords": [
+ {
+ "keyword": "assistant d'inclusion sociale",
+ "hasLocution": false,
+ "plural": "assistants d'inclusion sociale",
+ "type": 2
+ },
+ {
+ "keyword": "assistant socio-éducatif",
+ "hasLocution": false,
+ "plural": "assistants socio-éducatifs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "biology",
+ "chemistry"
+ ],
+ "synsets": [
+ "14943662-n"
+ ],
+ "tags": [
+ "biology",
+ "chemistry"
+ ],
+ "_id": 33032,
+ "created": "2018-05-11T20:01:46.000Z",
+ "lastUpdated": "2021-07-24T10:22:23.159Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "molécules",
+ "keyword": "molécules"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "biomolécules",
+ "keyword": "biomolécules"
+ },
+ {
+ "keyword": "composés minéraux",
+ "hasLocution": false,
+ "plural": "composés minéraux",
+ "type": 2
+ },
+ {
+ "keyword": "composés inorganiques",
+ "hasLocution": false,
+ "plural": "composés inorganiques",
+ "type": 2
+ },
+ {
+ "keyword": "éléments chimiques",
+ "hasLocution": false,
+ "plural": "éléments chimiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "social movement"
+ ],
+ "synsets": [
+ "02817084-a",
+ "13486023-n"
+ ],
+ "tags": [
+ "sociology",
+ "social movement"
+ ],
+ "_id": 33034,
+ "created": "2018-05-11T20:09:33.000Z",
+ "lastUpdated": "2021-07-24T07:52:32.320Z",
+ "keywords": [
+ {
+ "keyword": "développement durable",
+ "hasLocution": false,
+ "plural": "développements durables",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "10302369-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 33036,
+ "created": "2018-05-11T20:13:24.000Z",
+ "lastUpdated": "2021-07-24T11:12:57.254Z",
+ "keywords": [
+ {
+ "keyword": "femme de chambre",
+ "plural": "femmes de chambre",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "femme de ménage",
+ "hasLocution": false,
+ "plural": "femmes de ménage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "09868183-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 33038,
+ "created": "2018-05-11T20:13:42.000Z",
+ "lastUpdated": "2021-07-24T11:13:05.389Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "groom",
+ "plural": "grooms"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "garçon d'étage",
+ "plural": "garçons d'étage"
+ },
+ {
+ "keyword": "homme de ménage",
+ "hasLocution": false,
+ "plural": "hommes de ménage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sea and oceans",
+ "monument"
+ ],
+ "synsets": [
+ "09351652-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "sea",
+ "ocean",
+ "place",
+ "monument"
+ ],
+ "_id": 33040,
+ "created": "2018-05-11T20:15:52.000Z",
+ "lastUpdated": "2021-07-24T07:50:03.626Z",
+ "keywords": [
+ {
+ "keyword": "Mer Mineure",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "workplace",
+ "worksite"
+ ],
+ "synsets": [
+ "04138894-n"
+ ],
+ "tags": [
+ "place",
+ "workplace",
+ "work"
+ ],
+ "_id": 33042,
+ "created": "2018-05-11T20:18:33.000Z",
+ "lastUpdated": "2021-07-22T22:30:13.110Z",
+ "keywords": [
+ {
+ "keyword": "saunerie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sauneries"
+ },
+ {
+ "keyword": "saulnerie",
+ "hasLocution": false,
+ "plural": "saulneries",
+ "type": 2
+ },
+ {
+ "keyword": "saline",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "salines"
+ },
+ {
+ "keyword": "marais salant",
+ "hasLocution": false,
+ "plural": "marais salants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human response"
+ ],
+ "synsets": [
+ "01073014-n",
+ "06214141-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response"
+ ],
+ "_id": 33002,
+ "created": "2018-05-11T18:53:49.000Z",
+ "lastUpdated": "2021-07-24T08:02:37.390Z",
+ "keywords": [
+ {
+ "keyword": "tolérance",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tolérances"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "basic needs"
+ ],
+ "synsets": [
+ "00071765-v",
+ "13555089-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "person",
+ "basic needs"
+ ],
+ "_id": 33004,
+ "created": "2018-05-11T18:58:08.000Z",
+ "lastUpdated": "2021-07-24T10:32:41.657Z",
+ "keywords": [
+ {
+ "keyword": "faire pipi par terre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "uriner sur le siège",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "political representation"
+ ],
+ "synsets": [
+ "08421145-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 33006,
+ "created": "2018-05-11T19:02:25.000Z",
+ "lastUpdated": "2021-07-24T08:02:29.268Z",
+ "keywords": [
+ {
+ "keyword": "parti d'opposition",
+ "hasLocution": false,
+ "plural": "partis d'opposition",
+ "type": 2
+ },
+ {
+ "keyword": "opposition",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "02807776-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 33044,
+ "created": "2018-05-11T20:19:51.000Z",
+ "lastUpdated": "2021-07-22T22:24:07.398Z",
+ "keywords": [
+ {
+ "keyword": "basson",
+ "hasLocution": false,
+ "plural": "bassons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "fashion",
+ "clothes"
+ ],
+ "synsets": [
+ "03490877-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "clothes"
+ ],
+ "_id": 33046,
+ "created": "2018-05-11T20:20:57.000Z",
+ "lastUpdated": "2024-12-08T15:50:36.999Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "foulard",
+ "hasLocution": true,
+ "plural": "foulards"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public building",
+ "signaling system"
+ ],
+ "synsets": [
+ "08354251-n",
+ "08073958-n",
+ "00251126-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "public administration",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 33048,
+ "created": "2018-05-11T20:32:26.000Z",
+ "lastUpdated": "2021-07-24T07:48:25.051Z",
+ "keywords": [
+ {
+ "keyword": "agence de développement",
+ "hasLocution": false,
+ "plural": "agences de développement"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "special education"
+ ],
+ "synsets": [
+ "00045286-r",
+ "00045164-r",
+ "01772487-s",
+ "05763880-n",
+ "02418610-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "special education"
+ ],
+ "_id": 33050,
+ "created": "2018-05-11T20:39:54.000Z",
+ "lastUpdated": "2021-07-26T08:00:24.744Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "travail en face à face",
+ "type": 2,
+ "plural": "travaux en face à face"
+ },
+ {
+ "keyword": "entretien en face à face",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "entretiens en face à face"
+ },
+ {
+ "keyword": "travail en équipe",
+ "hasLocution": false,
+ "plural": "travaux en équipe",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "13765745-n",
+ "05659244-n",
+ "00431591-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 33052,
+ "created": "2018-05-11T20:48:45.000Z",
+ "lastUpdated": "2021-07-22T22:19:02.509Z",
+ "keywords": [
+ {
+ "keyword": "jeu de memory",
+ "hasLocution": false,
+ "plural": "jeux de memory",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "set phrase"
+ ],
+ "synsets": [
+ "02076993-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "set phrase"
+ ],
+ "_id": 33054,
+ "created": "2018-05-11T20:51:26.000Z",
+ "lastUpdated": "2021-07-26T08:00:19.297Z",
+ "keywords": [
+ {
+ "keyword": "le temps file !",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "hasLocution": false,
+ "keyword": "le temps passe !",
+ "type": 5
+ },
+ {
+ "keyword": "le temps vole !",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character"
+ ],
+ "synsets": [
+ "09976259-n",
+ "09976057-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history"
+ ],
+ "_id": 33060,
+ "created": "2018-07-20T10:11:13.000Z",
+ "lastUpdated": "2021-07-22T22:15:14.503Z",
+ "keywords": [
+ {
+ "keyword": "conquérant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "conquérants"
+ },
+ {
+ "keyword": "conquistador",
+ "hasLocution": false,
+ "plural": "conquistadors",
+ "type": 2
+ },
+ {
+ "keyword": "vainqueur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "vainqueurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "place",
+ "facility"
+ ],
+ "synsets": [
+ "08664839-n",
+ "03969939-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "place",
+ "facility"
+ ],
+ "_id": 33065,
+ "created": "2018-07-20T10:16:29.000Z",
+ "lastUpdated": "2024-12-08T07:22:32.028Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cour de récréation",
+ "hasLocution": false,
+ "plural": "cours de récréation"
+ },
+ {
+ "type": 2,
+ "keyword": "cour",
+ "hasLocution": true,
+ "plural": "cours"
+ },
+ {
+ "keyword": "terrain de jeux",
+ "hasLocution": false,
+ "plural": "terrains de jeux",
+ "type": 2
+ },
+ {
+ "keyword": "cour d'école",
+ "hasLocution": false,
+ "plural": "cours d'école",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "water transport"
+ ],
+ "synsets": [
+ "04124310-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "water transport"
+ ],
+ "_id": 33056,
+ "created": "2018-07-19T21:01:09.000Z",
+ "lastUpdated": "2021-07-22T22:16:14.636Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gouvernail",
+ "hasLocution": true,
+ "plural": "gouvernails"
+ },
+ {
+ "keyword": "safran",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "safrans"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room"
+ ],
+ "synsets": [
+ "02824762-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room"
+ ],
+ "_id": 33068,
+ "created": "2018-07-20T10:18:30.000Z",
+ "lastUpdated": "2021-07-22T17:09:59.526Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chambre à coucher",
+ "hasLocution": true,
+ "plural": "chambres à coucher"
+ },
+ {
+ "keyword": "chambre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chambres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "place"
+ ],
+ "synsets": [
+ "03625099-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room"
+ ],
+ "_id": 33070,
+ "created": "2018-07-20T10:19:15.000Z",
+ "lastUpdated": "2024-12-05T07:26:53.715Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuisine",
+ "hasLocution": true,
+ "plural": "cuisines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03042670-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 33072,
+ "created": "2018-07-20T10:20:42.000Z",
+ "lastUpdated": "2021-07-22T16:56:18.920Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de classe",
+ "hasLocution": true,
+ "plural": "salles de classe"
+ },
+ {
+ "type": 2,
+ "keyword": "salle de cours",
+ "hasLocution": true,
+ "plural": "salles de cours"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "core vocabulary-education",
+ "place",
+ "facility"
+ ],
+ "synsets": [
+ "08664839-n",
+ "03969939-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "core vocabulary",
+ "place",
+ "facility"
+ ],
+ "_id": 33064,
+ "created": "2018-07-20T10:16:29.000Z",
+ "lastUpdated": "2024-12-08T07:22:50.598Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cour de récréation",
+ "hasLocution": false,
+ "plural": "cours de récréation"
+ },
+ {
+ "type": 2,
+ "keyword": "cour d'école",
+ "hasLocution": false,
+ "plural": "cours d'école"
+ },
+ {
+ "keyword": "aire de jeux",
+ "hasLocution": false,
+ "plural": "aires de jeux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "special education",
+ "signaling system"
+ ],
+ "synsets": [
+ "10375387-n",
+ "03042670-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "special education",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 33078,
+ "created": "2018-07-20T10:29:11.000Z",
+ "lastUpdated": "2021-07-22T22:09:58.224Z",
+ "keywords": [
+ {
+ "keyword": "classe d'élèves primo-arrivants",
+ "hasLocution": false,
+ "plural": "classes d'élèves primo-arrivants",
+ "type": 2
+ },
+ {
+ "keyword": "classe d'enfants allophones",
+ "hasLocution": false,
+ "plural": "classes d'enfants allophones",
+ "type": 2
+ },
+ {
+ "keyword": "programme pour élèves allophones",
+ "hasLocution": false,
+ "plural": "programmes pour élèves allophones",
+ "type": 2
+ },
+ {
+ "keyword": "programme pour élèves primo-arrivants",
+ "hasLocution": false,
+ "plural": "programmes pour élèves primo-arrivants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "special education",
+ "signaling system"
+ ],
+ "synsets": [
+ "05765728-n",
+ "03042670-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "special education",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 33080,
+ "created": "2018-07-20T10:35:26.000Z",
+ "lastUpdated": "2021-07-24T11:14:04.937Z",
+ "keywords": [
+ {
+ "keyword": "cours de soutien scolaire",
+ "hasLocution": false,
+ "plural": "cours de soutien scolaire",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03477235-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 33076,
+ "created": "2018-07-20T10:22:27.000Z",
+ "lastUpdated": "2021-07-22T16:55:44.815Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gymnase",
+ "hasLocution": true,
+ "plural": "gymnases"
+ },
+ {
+ "keyword": "salle de sport",
+ "hasLocution": false,
+ "plural": "salles de sport",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "07019235-n",
+ "03042670-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 33082,
+ "created": "2018-07-20T10:38:46.000Z",
+ "lastUpdated": "2021-07-22T16:54:31.806Z",
+ "keywords": [
+ {
+ "keyword": "cours de théâtre",
+ "hasLocution": false,
+ "plural": "cours de théâtre",
+ "type": 2
+ },
+ {
+ "keyword": "atelier théâtre",
+ "hasLocution": false,
+ "plural": "ateliers théâtre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "13499728-n",
+ "00635519-n",
+ "05750496-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 33092,
+ "created": "2018-07-21T11:31:09.000Z",
+ "lastUpdated": "2021-07-22T16:52:59.862Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "analyse de sang",
+ "hasLocution": true,
+ "plural": "analyses de sang"
+ },
+ {
+ "keyword": "test sanguin",
+ "hasLocution": false,
+ "plural": "tests sanguins",
+ "type": 2
+ },
+ {
+ "keyword": "analyse sanguine",
+ "hasLocution": false,
+ "plural": "analyses sanguines",
+ "type": 2
+ },
+ {
+ "keyword": "prise de sang",
+ "hasLocution": false,
+ "plural": "prises de sang",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "middle ages"
+ ],
+ "synsets": [
+ "01116721-v",
+ "02277394-v",
+ "02132531-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "history",
+ "middle ages"
+ ],
+ "_id": 33062,
+ "created": "2018-07-20T10:14:15.000Z",
+ "lastUpdated": "2021-07-22T22:13:21.321Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "découvrir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "conquérir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "trouver",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "envahir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "05750496-n",
+ "00635519-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 33094,
+ "created": "2018-07-21T11:31:09.000Z",
+ "lastUpdated": "2021-07-22T16:49:57.509Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "analyse de sang",
+ "hasLocution": true,
+ "plural": "analyses de sang"
+ },
+ {
+ "keyword": "test sanguin",
+ "hasLocution": false,
+ "plural": "tests sanguins",
+ "type": 2
+ },
+ {
+ "keyword": "analyse sanguine",
+ "hasLocution": false,
+ "plural": "analyses sanguines",
+ "type": 2
+ },
+ {
+ "keyword": "prise de sang",
+ "hasLocution": false,
+ "plural": "prises de sang",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "00635519-n",
+ "05750496-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 33093,
+ "created": "2018-07-21T11:31:09.000Z",
+ "lastUpdated": "2021-07-22T16:51:29.568Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "analyse de sang",
+ "hasLocution": true,
+ "plural": "analyses de sang"
+ },
+ {
+ "keyword": "test sanguin",
+ "hasLocution": false,
+ "plural": "tests sanguins",
+ "type": 2
+ },
+ {
+ "keyword": "analyse sanguine",
+ "hasLocution": false,
+ "plural": "analyses sanguines",
+ "type": 2
+ },
+ {
+ "keyword": "prise de sang",
+ "hasLocution": false,
+ "plural": "prises de sang",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room"
+ ],
+ "synsets": [
+ "03685038-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room"
+ ],
+ "_id": 33074,
+ "created": "2018-07-20T10:21:36.000Z",
+ "lastUpdated": "2021-07-22T22:11:10.073Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salon",
+ "hasLocution": true,
+ "plural": "salons"
+ },
+ {
+ "keyword": "salle de séjour",
+ "hasLocution": true,
+ "plural": "salles de séjour",
+ "type": 2
+ },
+ {
+ "keyword": "pièce à vivre",
+ "hasLocution": false,
+ "plural": "pièces à vivre",
+ "type": 2
+ },
+ {
+ "keyword": "living",
+ "hasLocution": false,
+ "plural": "livings",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "human body"
+ ],
+ "synsets": [
+ "00648747-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "human body"
+ ],
+ "_id": 33100,
+ "created": "2018-07-21T12:09:46.000Z",
+ "lastUpdated": "2024-12-19T07:02:55.908Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "mesurer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "medical test",
+ "patient"
+ ],
+ "synsets": [
+ "02393670-a",
+ "05009517-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "person",
+ "patient"
+ ],
+ "_id": 33102,
+ "created": "2018-07-21T12:15:16.000Z",
+ "lastUpdated": "2021-07-22T16:46:57.762Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "Combien mesure-t-il ?",
+ "hasLocution": false
+ },
+ {
+ "keyword": "Combien mesure-t-elle?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "11547628-n",
+ "04617008-n",
+ "04107714-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 33104,
+ "created": "2018-07-21T12:22:24.000Z",
+ "lastUpdated": "2021-07-22T16:46:05.584Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rayons X",
+ "hasLocution": true,
+ "plural": "rayons X"
+ },
+ {
+ "plural": "appareils de radiographie",
+ "keyword": "appareil de radiographie",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "11547628-n",
+ "04617008-n",
+ "04107714-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 33105,
+ "created": "2018-07-21T12:22:24.000Z",
+ "lastUpdated": "2021-07-22T16:45:27.823Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rayons X",
+ "hasLocution": true,
+ "plural": "rayons X"
+ },
+ {
+ "keyword": "appareil de radiographie",
+ "hasLocution": false,
+ "plural": "appareils de radiographie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "medical procedure"
+ ],
+ "synsets": [
+ "03212950-n",
+ "02727132-n",
+ "00089076-v",
+ "01535222-v",
+ "02740665-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 33098,
+ "created": "2018-07-21T12:07:38.000Z",
+ "lastUpdated": "2021-07-22T16:48:07.622Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "désinfecter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nettoyer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "special education",
+ "signaling system"
+ ],
+ "synsets": [
+ "03042670-n",
+ "00732883-s",
+ "14024516-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "special education",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 33084,
+ "created": "2018-07-20T12:28:00.000Z",
+ "lastUpdated": "2021-07-28T16:09:02.564Z",
+ "keywords": [
+ {
+ "keyword": " classe de vie sociale",
+ "hasLocution": false,
+ "plural": "classes de vie sociale",
+ "type": 2
+ },
+ {
+ "keyword": "cours d'aptitudes sociales",
+ "hasLocution": false,
+ "plural": "cours d'aptitudes sociales",
+ "type": 2
+ },
+ {
+ "keyword": "classe de préparation à la vie sociale",
+ "hasLocution": false,
+ "plural": "classes de préparation à la vie sociale",
+ "type": 2
+ },
+ {
+ "keyword": "classe d'aptitudes à la vie quotidienne",
+ "hasLocution": false,
+ "plural": "classe d'aptitudes à la vie quotidienne",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "nursing equipment"
+ ],
+ "synsets": [
+ "04374833-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 33116,
+ "created": "2018-07-21T12:35:08.000Z",
+ "lastUpdated": "2021-07-22T14:53:22.966Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "coton-tige",
+ "plural": "coton-tiges"
+ },
+ {
+ "keyword": "écouvillon",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "écouvillons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "02987924-n",
+ "01059683-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 33118,
+ "created": "2018-07-21T12:39:39.000Z",
+ "lastUpdated": "2021-07-22T17:39:56.170Z",
+ "keywords": [
+ {
+ "keyword": "sonde gastrique",
+ "hasLocution": false,
+ "plural": "sondes gastriques",
+ "type": 2
+ },
+ {
+ "keyword": "tube de gavage",
+ "hasLocution": false,
+ "plural": "tubes de gavage",
+ "type": 2
+ },
+ {
+ "keyword": "sonde d'alimentation",
+ "hasLocution": false,
+ "plural": "sondes d'alimentation",
+ "type": 2
+ },
+ {
+ "keyword": "tube d'alimentation",
+ "hasLocution": false,
+ "plural": "tubes d'alimentation",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "obstetrics"
+ ],
+ "synsets": [
+ "05751241-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 33122,
+ "created": "2018-07-21T12:50:33.000Z",
+ "lastUpdated": "2022-04-27T11:31:34.623Z",
+ "keywords": [
+ {
+ "keyword": "frottis",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "frottis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "04280404-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 33120,
+ "created": "2018-07-21T12:43:13.000Z",
+ "lastUpdated": "2021-07-22T14:56:09.385Z",
+ "keywords": [
+ {
+ "keyword": "spéculum",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "spéculums"
+ },
+ {
+ "keyword": "spéculum vaginal",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "spéculums vaginaux"
+ },
+ {
+ "keyword": "spéculum gynécologique",
+ "hasLocution": false,
+ "plural": "spéculums gynécologiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00945416-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 33124,
+ "created": "2018-07-21T18:19:20.000Z",
+ "lastUpdated": "2021-07-22T16:40:57.451Z",
+ "keywords": [
+ {
+ "keyword": "amniocentèse",
+ "hasLocution": false,
+ "plural": "amniocentèses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "00904277-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 33112,
+ "created": "2018-07-21T12:29:48.000Z",
+ "lastUpdated": "2021-07-22T16:43:35.584Z",
+ "keywords": [
+ {
+ "keyword": "IRM",
+ "hasLocution": false,
+ "plural": "IRMs",
+ "type": 2
+ },
+ {
+ "keyword": "imagerie par résonance magnétique",
+ "hasLocution": false,
+ "plural": "imageries par résonance magnétique",
+ "type": 2
+ },
+ {
+ "keyword": "résonance magnétique",
+ "hasLocution": false,
+ "plural": "résonances magnétiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test",
+ "patient"
+ ],
+ "synsets": [
+ "02710477-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "person",
+ "patient"
+ ],
+ "_id": 33126,
+ "created": "2018-07-21T18:20:51.000Z",
+ "lastUpdated": "2021-07-22T16:40:07.170Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "peser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00143181-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 33114,
+ "created": "2018-07-21T12:33:12.000Z",
+ "lastUpdated": "2021-07-22T21:53:34.874Z",
+ "keywords": [
+ {
+ "keyword": "examen médical",
+ "hasLocution": false,
+ "plural": "examens médicaux",
+ "type": 2
+ },
+ {
+ "keyword": "bilan de santé",
+ "hasLocution": false,
+ "plural": "bilans de santé",
+ "type": 2
+ },
+ {
+ "keyword": "examen de santé",
+ "hasLocution": false,
+ "plural": "examens de santé",
+ "type": 2
+ },
+ {
+ "keyword": "contrôle médical",
+ "hasLocution": false,
+ "plural": "contrôles médicaux",
+ "type": 2
+ },
+ {
+ "keyword": "visite médicale",
+ "hasLocution": false,
+ "plural": "visites médicales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "04199901-n",
+ "11547628-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 33132,
+ "created": "2018-07-21T18:36:00.000Z",
+ "lastUpdated": "2021-07-22T17:36:16.988Z",
+ "keywords": [
+ {
+ "keyword": "protège-testicules",
+ "hasLocution": false,
+ "plural": "protège-testicules",
+ "type": 2
+ },
+ {
+ "keyword": "protège-ovaires",
+ "hasLocution": false,
+ "plural": "protège-ovaires",
+ "type": 2
+ },
+ {
+ "keyword": "protège-gonades",
+ "hasLocution": false,
+ "plural": "protège-gonades",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "protective equipment"
+ ],
+ "synsets": [
+ "04199901-n",
+ "11547628-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "work",
+ "clothes",
+ "workwear",
+ "protective equipment"
+ ],
+ "_id": 33133,
+ "created": "2018-07-21T18:36:00.000Z",
+ "lastUpdated": "2021-07-22T17:34:27.251Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "protège-testicules",
+ "plural": "protège-testicules",
+ "type": 2
+ },
+ {
+ "keyword": "protège-gonades",
+ "hasLocution": false,
+ "plural": "protège-gonades",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression",
+ "medical test",
+ "patient"
+ ],
+ "synsets": [
+ "05034009-n",
+ "07211342-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test",
+ "person",
+ "patient"
+ ],
+ "_id": 33128,
+ "created": "2018-07-21T18:25:51.000Z",
+ "lastUpdated": "2021-07-22T16:39:43.310Z",
+ "keywords": [
+ {
+ "keyword": "Combien pèse-t-il?",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "Combien pèse-t-elle?",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "04199901-n",
+ "11547628-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 33131,
+ "created": "2018-07-21T18:36:00.000Z",
+ "lastUpdated": "2021-07-22T17:37:04.678Z",
+ "keywords": [
+ {
+ "keyword": "protège-testicules",
+ "hasLocution": false,
+ "plural": "protège-testicules",
+ "type": 2
+ },
+ {
+ "keyword": "protège-gonades",
+ "hasLocution": false,
+ "plural": "protège-gonades",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "04199901-n",
+ "11547628-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 33134,
+ "created": "2018-07-21T18:36:00.000Z",
+ "lastUpdated": "2021-07-22T17:33:46.682Z",
+ "keywords": [
+ {
+ "keyword": "protège-testicules",
+ "hasLocution": false,
+ "plural": "protège-testicules",
+ "type": 2
+ },
+ {
+ "keyword": "protège-gonades",
+ "hasLocution": false,
+ "plural": "protège-gonades",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "04199901-n",
+ "11547628-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 33135,
+ "created": "2018-07-21T18:36:00.000Z",
+ "lastUpdated": "2021-07-22T17:31:19.206Z",
+ "keywords": [
+ {
+ "keyword": "protège-ovaires",
+ "hasLocution": false,
+ "plural": "protège-ovaires",
+ "type": 2
+ },
+ {
+ "keyword": "protège-gonades",
+ "hasLocution": false,
+ "plural": "protège-gonades",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "04199901-n",
+ "11547628-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 33136,
+ "created": "2018-07-21T18:36:00.000Z",
+ "lastUpdated": "2021-07-22T17:32:40.704Z",
+ "keywords": [
+ {
+ "keyword": "protège-testicules",
+ "hasLocution": false,
+ "plural": "protège-testicules",
+ "type": 2
+ },
+ {
+ "keyword": "protège-gonades",
+ "hasLocution": false,
+ "plural": "protège-gonades",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "04199901-n",
+ "11547628-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 33130,
+ "created": "2018-07-21T18:36:00.000Z",
+ "lastUpdated": "2021-07-22T17:37:41.969Z",
+ "keywords": [
+ {
+ "keyword": "protège-testicules",
+ "hasLocution": false,
+ "plural": "protège-testicules",
+ "type": 2
+ },
+ {
+ "keyword": "protège-gonades",
+ "plural": "protège-gonades",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "protective equipment"
+ ],
+ "synsets": [
+ "04199901-n",
+ "11547628-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "work",
+ "clothes",
+ "workwear",
+ "protective equipment"
+ ],
+ "_id": 33137,
+ "created": "2018-07-21T18:36:00.000Z",
+ "lastUpdated": "2021-07-22T17:28:11.381Z",
+ "keywords": [
+ {
+ "keyword": "protège-ovaires",
+ "hasLocution": false,
+ "plural": "protège-ovaires"
+ },
+ {
+ "keyword": "protège-gonades",
+ "hasLocution": false,
+ "plural": "protège-gonades",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "protective equipment"
+ ],
+ "synsets": [
+ "04199901-n",
+ "11547628-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "work",
+ "clothes",
+ "workwear",
+ "protective equipment"
+ ],
+ "_id": 33139,
+ "created": "2018-07-21T18:36:00.000Z",
+ "lastUpdated": "2021-07-22T17:26:02.276Z",
+ "keywords": [
+ {
+ "keyword": "protège-ovaires",
+ "hasLocution": false,
+ "plural": "protège-ovaires",
+ "type": 2
+ },
+ {
+ "keyword": "protège-gonades",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "protège-gonades"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human reproduction"
+ ],
+ "synsets": [
+ "01462432-n"
+ ],
+ "tags": [
+ "human body",
+ "human reproduction"
+ ],
+ "_id": 33902,
+ "created": "2018-07-21T22:00:06.000Z",
+ "lastUpdated": "2021-07-22T14:44:36.960Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fœtus",
+ "hasLocution": false,
+ "plural": "fœtus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "protective equipment"
+ ],
+ "synsets": [
+ "04199901-n",
+ "11547628-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "work",
+ "clothes",
+ "workwear",
+ "protective equipment"
+ ],
+ "_id": 33138,
+ "created": "2018-07-21T18:36:00.000Z",
+ "lastUpdated": "2021-07-22T17:27:38.344Z",
+ "keywords": [
+ {
+ "keyword": "protège-gonades",
+ "hasLocution": false,
+ "plural": "protège-gonades",
+ "type": 2
+ },
+ {
+ "keyword": "protège-ovaires",
+ "hasLocution": false,
+ "plural": "protège-ovaires",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "protège-testicules",
+ "plural": "protège-testicules",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03821676-n",
+ "04374292-n",
+ "00717307-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 33904,
+ "created": "2018-07-21T22:04:31.000Z",
+ "lastUpdated": "2021-07-22T14:43:53.548Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fil et aiguille",
+ "hasLocution": true,
+ "plural": "fils et aiguilles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "medical treatment"
+ ],
+ "synsets": [
+ "00005041-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 33906,
+ "created": "2018-07-21T22:07:57.000Z",
+ "lastUpdated": "2021-07-22T14:43:29.015Z",
+ "keywords": [
+ {
+ "keyword": "inhaler",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "inspirer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "obstetrics"
+ ],
+ "synsets": [
+ "00174481-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "medicine",
+ "gynecology",
+ "obstetrics"
+ ],
+ "_id": 33900,
+ "created": "2018-07-21T21:57:09.000Z",
+ "lastUpdated": "2021-07-22T14:45:07.790Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "enceinte",
+ "hasLocution": true,
+ "plural": "enceintes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "respiratory system"
+ ],
+ "synsets": [
+ "00005041-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "respiratory system"
+ ],
+ "_id": 33908,
+ "created": "2018-07-21T22:15:13.000Z",
+ "lastUpdated": "2021-07-22T14:42:51.790Z",
+ "keywords": [
+ {
+ "keyword": "respirer par la bouche",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "medical procedure",
+ "patient"
+ ],
+ "synsets": [
+ "01492094-v",
+ "02013448-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "medical procedure",
+ "person",
+ "patient"
+ ],
+ "_id": 33912,
+ "created": "2018-07-21T22:23:35.000Z",
+ "lastUpdated": "2021-07-22T14:41:37.355Z",
+ "keywords": [
+ {
+ "keyword": "faire sortir un patient",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sortie de l'hôpital",
+ "hasLocution": false,
+ "plural": "sorties de l'hôpital",
+ "type": 2
+ },
+ {
+ "keyword": "sortir de l'hôpital",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "quitter l'hôpital",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "04199901-n",
+ "11547628-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 33150,
+ "created": "2018-07-21T18:37:13.000Z",
+ "lastUpdated": "2021-07-22T14:51:28.302Z",
+ "keywords": [
+ {
+ "keyword": "protège-testicules",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "protège-testicules"
+ },
+ {
+ "plural": "protège-gonades",
+ "keyword": "protège-gonades",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "medical procedure"
+ ],
+ "synsets": [
+ "02788671-n",
+ "01617485-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 33915,
+ "created": "2018-07-21T22:27:02.000Z",
+ "lastUpdated": "2021-07-22T08:47:37.664Z",
+ "keywords": [
+ {
+ "keyword": "mettre un pansement",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "building facility"
+ ],
+ "synsets": [
+ "03488399-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 33920,
+ "created": "2018-07-21T22:30:52.000Z",
+ "lastUpdated": "2021-07-22T08:45:53.228Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sèche-cheveux",
+ "hasLocution": true,
+ "plural": "sèche-cheveux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "building facility"
+ ],
+ "synsets": [
+ "03256469-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 33921,
+ "created": "2018-07-21T22:30:52.000Z",
+ "lastUpdated": "2021-07-22T08:45:29.958Z",
+ "keywords": [
+ {
+ "keyword": "sèche-main",
+ "hasLocution": false,
+ "plural": "sèche-mains",
+ "type": 2
+ },
+ {
+ "keyword": "sèche-mains",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sèche-mains"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01188961-v",
+ "02549967-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 33924,
+ "created": "2018-07-21T22:37:01.000Z",
+ "lastUpdated": "2021-07-22T08:46:47.602Z",
+ "keywords": [
+ {
+ "keyword": "allaiter des jumeaux",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner le sein à des jumeaux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "patient"
+ ],
+ "synsets": [
+ "10425439-n",
+ "03455678-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "person",
+ "patient"
+ ],
+ "_id": 33926,
+ "created": "2018-07-21T22:47:13.000Z",
+ "lastUpdated": "2021-07-22T08:44:00.307Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patient",
+ "hasLocution": true,
+ "plural": "patient"
+ },
+ {
+ "keyword": "malade",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "malades"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "medical procedure",
+ "patient"
+ ],
+ "synsets": [
+ "02020375-v",
+ "02738673-v",
+ "02353923-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "medical procedure",
+ "person",
+ "patient"
+ ],
+ "_id": 33910,
+ "created": "2018-07-21T22:20:36.000Z",
+ "lastUpdated": "2021-07-22T14:40:44.438Z",
+ "keywords": [
+ {
+ "keyword": "aller à l'hôpital",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rentrer à l'hôpital",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "keyword": "être admis à l'hôpital",
+ "type": 3
+ },
+ {
+ "keyword": "être hospitalisé",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "hospitaliser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "patient"
+ ],
+ "synsets": [
+ "10425439-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "person",
+ "patient"
+ ],
+ "_id": 33928,
+ "created": "2018-07-21T22:47:47.000Z",
+ "lastUpdated": "2021-07-22T08:43:37.505Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patiente",
+ "hasLocution": false,
+ "plural": "patientes"
+ },
+ {
+ "keyword": "malade",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "malades"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "02788671-n",
+ "01617485-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 33916,
+ "created": "2018-07-21T22:27:02.000Z",
+ "lastUpdated": "2021-07-22T08:47:19.894Z",
+ "keywords": [
+ {
+ "keyword": "mettre un pansement",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure",
+ "covid-19"
+ ],
+ "synsets": [
+ "02788671-n",
+ "01617485-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "covid-19"
+ ],
+ "_id": 33914,
+ "created": "2018-07-21T22:27:02.000Z",
+ "lastUpdated": "2021-07-22T08:47:52.979Z",
+ "keywords": [
+ {
+ "keyword": "mettre un pansement",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04453410-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "health",
+ "medicine",
+ "medical center",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 33935,
+ "created": "2018-07-21T22:57:36.000Z",
+ "lastUpdated": "2021-07-22T14:32:01.832Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "toilettes",
+ "plural": "toilettes"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "WC",
+ "plural": "WCs"
+ },
+ {
+ "type": 2,
+ "keyword": "sanitaires",
+ "hasLocution": true,
+ "plural": "sanitaires"
+ },
+ {
+ "keyword": "cabinets",
+ "hasLocution": false,
+ "plural": "cabinets",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04453410-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "health",
+ "medicine",
+ "medical center",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 33936,
+ "created": "2018-07-21T22:57:36.000Z",
+ "lastUpdated": "2021-07-22T14:31:05.975Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "toilettes",
+ "plural": "toilettes"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "WC",
+ "plural": "WC"
+ },
+ {
+ "hasLocution": true,
+ "keyword": "sanitaires",
+ "type": 2,
+ "plural": "sanitaires"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "cabinets",
+ "plural": "cabinets",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational space"
+ ],
+ "synsets": [
+ "04453410-n"
+ ],
+ "tags": [
+ "education",
+ "educational space"
+ ],
+ "_id": 33934,
+ "created": "2018-07-21T22:57:36.000Z",
+ "lastUpdated": "2021-07-22T14:32:58.761Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "toilettes",
+ "plural": "toilettes"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "WC",
+ "plural": "WCs"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "sanitaires",
+ "plural": "sanitaires"
+ },
+ {
+ "keyword": "cabinets",
+ "hasLocution": false,
+ "plural": "cabinets",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "14894229-n",
+ "05571403-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 33946,
+ "created": "2018-07-22T12:07:44.000Z",
+ "lastUpdated": "2021-07-22T14:28:03.884Z",
+ "keywords": [
+ {
+ "keyword": "bras avec coton",
+ "hasLocution": false,
+ "plural": "bras avec coton",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03689034-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 33948,
+ "created": "2018-07-22T12:10:49.000Z",
+ "lastUpdated": "2021-07-22T08:42:44.021Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vestiaires",
+ "hasLocution": false,
+ "plural": "vestiaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03689034-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 33949,
+ "created": "2018-07-22T12:10:49.000Z",
+ "lastUpdated": "2021-07-22T08:42:30.711Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vestiaires",
+ "hasLocution": false,
+ "plural": "vestiaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03689034-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 33950,
+ "created": "2018-07-22T12:10:49.000Z",
+ "lastUpdated": "2021-07-22T08:42:17.855Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vestiaires",
+ "hasLocution": false,
+ "plural": "vestiaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "patient"
+ ],
+ "synsets": [
+ "10425439-n",
+ "01452567-v",
+ "10401503-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "person",
+ "patient"
+ ],
+ "_id": 33930,
+ "created": "2018-07-21T22:51:40.000Z",
+ "lastUpdated": "2021-07-22T14:36:06.845Z",
+ "keywords": [
+ {
+ "keyword": "conduire en fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "type": 3,
+ "keyword": "transporter en fauteuil roulant",
+ "hasLocution": false
+ },
+ {
+ "keyword": "amener en fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "aller en fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "patient"
+ ],
+ "synsets": [
+ "01452567-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "person",
+ "patient"
+ ],
+ "_id": 33931,
+ "created": "2018-07-21T22:51:40.000Z",
+ "lastUpdated": "2021-07-22T14:36:24.184Z",
+ "keywords": [
+ {
+ "keyword": "conduire en fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "transporter en fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "amener en fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "aller en fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "signaling system"
+ ],
+ "synsets": [
+ "00924291-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "signaling system"
+ ],
+ "_id": 33956,
+ "created": "2018-07-22T12:20:34.000Z",
+ "lastUpdated": "2021-07-24T09:59:25.411Z",
+ "keywords": [
+ {
+ "keyword": "afficher",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "indiquer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "flécher",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "signaliser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "07994293-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 33962,
+ "created": "2018-07-22T12:29:49.000Z",
+ "lastUpdated": "2021-09-13T14:16:34.679Z",
+ "keywords": [
+ {
+ "keyword": "livres pour enfants",
+ "hasLocution": false,
+ "plural": "livres pour enfants",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "Classification décimale universelle "
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "Classification décimale de Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "littérature enfantine",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "signaling system"
+ ],
+ "synsets": [
+ "00924291-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "signaling system"
+ ],
+ "_id": 33958,
+ "created": "2018-07-22T12:20:34.000Z",
+ "lastUpdated": "2021-07-24T10:00:16.859Z",
+ "keywords": [
+ {
+ "keyword": "afficher",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "indiquer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "flécher",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "signaliser",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "07994293-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 33963,
+ "created": "2018-07-22T12:29:49.000Z",
+ "lastUpdated": "2021-08-23T13:46:00.918Z",
+ "keywords": [
+ {
+ "keyword": "livres pour jeunes",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "livres pour jeunes"
+ },
+ {
+ "keyword": "Classification décimale universelle ",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "Classification décimale de Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "littérature jeunesse",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "07994293-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 33964,
+ "created": "2018-07-22T12:29:49.000Z",
+ "lastUpdated": "2021-09-13T14:15:38.321Z",
+ "keywords": [
+ {
+ "keyword": "livres pour enfants",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "livres pour enfants"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "Classification décimale universelle "
+ },
+ {
+ "hasLocution": false,
+ "plural": "CDU",
+ "keyword": "CDU",
+ "type": 2
+ },
+ {
+ "keyword": "Classification décimale de Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "littérature jeunesse",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "littérature enfantine",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "03205223-n",
+ "03205385-n",
+ "10034684-n",
+ "09983393-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 33968,
+ "created": "2018-07-22T12:34:05.000Z",
+ "lastUpdated": "2021-07-24T11:14:37.435Z",
+ "keywords": [
+ {
+ "keyword": "responsable du réfectoire",
+ "hasLocution": false,
+ "plural": "responsables du réfectoire",
+ "type": 2
+ },
+ {
+ "keyword": "responsable du restaurant",
+ "hasLocution": false,
+ "plural": "responsables du restaurant",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "universal decimal classification"
+ ],
+ "synsets": [
+ "05735165-n",
+ "07994293-n"
+ ],
+ "tags": [
+ "library science",
+ "decimal classification"
+ ],
+ "_id": 33965,
+ "created": "2018-07-22T12:29:49.000Z",
+ "lastUpdated": "2021-08-09T23:26:44.617Z",
+ "keywords": [
+ {
+ "keyword": "livres pour enfants",
+ "hasLocution": false,
+ "plural": "livres pour enfants",
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale universelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "CDU",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "classification décimale de Dewey",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "littérature jeunesse",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "room",
+ "signaling system"
+ ],
+ "synsets": [
+ "02810916-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 33954,
+ "created": "2018-07-22T12:16:49.000Z",
+ "lastUpdated": "2021-07-22T08:41:23.794Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de bain",
+ "hasLocution": true,
+ "plural": "salles de bain"
+ },
+ {
+ "keyword": "salle de bains",
+ "hasLocution": true,
+ "plural": "salles de bains",
+ "type": 2
+ },
+ {
+ "keyword": "toilettes",
+ "hasLocution": true,
+ "plural": "toilettes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "signaling system"
+ ],
+ "synsets": [
+ "00924291-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "signaling system"
+ ],
+ "_id": 33957,
+ "created": "2018-07-22T12:20:34.000Z",
+ "lastUpdated": "2021-07-24T09:58:31.866Z",
+ "keywords": [
+ {
+ "keyword": "afficher",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "signaliser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "indiquer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "flécher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "06262268-n",
+ "10095481-n",
+ "10232171-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education",
+ "special education"
+ ],
+ "_id": 33976,
+ "created": "2018-07-22T12:56:18.000Z",
+ "lastUpdated": "2021-07-22T08:37:29.148Z",
+ "keywords": [
+ {
+ "keyword": "assistant de communication",
+ "hasLocution": false,
+ "plural": "assistants de communication",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "communication system"
+ ],
+ "synsets": [
+ "00931122-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "augmentative communication",
+ "communication system"
+ ],
+ "_id": 33978,
+ "created": "2018-07-22T12:57:26.000Z",
+ "lastUpdated": "2021-07-22T08:36:40.669Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "signer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "animal-assisted therapy"
+ ],
+ "synsets": [
+ "02071627-n",
+ "00662334-n"
+ ],
+ "tags": [
+ "animal",
+ "animal-assisted therapy"
+ ],
+ "_id": 33980,
+ "created": "2018-07-22T13:04:06.000Z",
+ "lastUpdated": "2021-07-22T15:47:21.998Z",
+ "keywords": [
+ {
+ "keyword": "thérapie assistée par les dauphins",
+ "hasLocution": false,
+ "plural": "thérapies assistées par les dauphins",
+ "type": 2
+ },
+ {
+ "keyword": "delphinothérapie",
+ "hasLocution": false,
+ "plural": "delphinothérapies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "animal-assisted therapy"
+ ],
+ "synsets": [
+ "02071627-n",
+ "00662334-n"
+ ],
+ "tags": [
+ "animal",
+ "animal-assisted therapy"
+ ],
+ "_id": 33981,
+ "created": "2018-07-22T13:04:06.000Z",
+ "lastUpdated": "2021-07-22T15:48:17.324Z",
+ "keywords": [
+ {
+ "keyword": "thérapie assistée par les dauphins",
+ "hasLocution": false,
+ "plural": "thérapies assistées par les dauphins",
+ "type": 2
+ },
+ {
+ "keyword": "delphinothérapie",
+ "hasLocution": false,
+ "plural": "delphinothérapies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "02810318-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 33984,
+ "created": "2018-07-22T13:07:17.000Z",
+ "lastUpdated": "2021-07-22T08:36:03.572Z",
+ "keywords": [
+ {
+ "keyword": "bonnet de bain",
+ "hasLocution": true,
+ "plural": "bonnets de bain",
+ "type": 2
+ },
+ {
+ "keyword": "bonnet de piscine",
+ "hasLocution": false,
+ "plural": "bonnets de piscine",
+ "type": 2
+ },
+ {
+ "keyword": "bonnet de natation",
+ "hasLocution": false,
+ "plural": "bonnets de natation",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "swimming",
+ "swimming pool"
+ ],
+ "synsets": [
+ "03298959-n",
+ "00443055-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "swimming",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 33986,
+ "created": "2018-07-22T13:15:37.000Z",
+ "lastUpdated": "2021-07-24T07:41:38.521Z",
+ "keywords": [
+ {
+ "keyword": "équipement de natation",
+ "hasLocution": false,
+ "plural": "équipements de natation",
+ "type": 2
+ },
+ {
+ "keyword": "matériel de piscine",
+ "hasLocution": false,
+ "plural": "matériels de piscine",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture",
+ "playground"
+ ],
+ "synsets": [
+ "03970107-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground"
+ ],
+ "_id": 33988,
+ "created": "2018-07-22T13:24:09.000Z",
+ "lastUpdated": "2021-03-28T03:09:01.584Z",
+ "keywords": [
+ {
+ "keyword": "maisonnette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "maisonnettes"
+ },
+ {
+ "keyword": "cabane",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cabane"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "00553134-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 33990,
+ "created": "2018-07-22T13:28:48.000Z",
+ "lastUpdated": "2021-07-22T14:09:25.604Z",
+ "keywords": [
+ {
+ "keyword": "jeu symbolique",
+ "hasLocution": false,
+ "plural": "jeux symboliques",
+ "type": 2
+ },
+ {
+ "keyword": "jeu de rôle",
+ "hasLocution": false,
+ "plural": "jeux de rôle",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "education"
+ ],
+ "synsets": [
+ "10065521-n",
+ "10508450-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education"
+ ],
+ "_id": 33972,
+ "created": "2018-07-22T12:39:56.000Z",
+ "lastUpdated": "2021-07-25T14:27:14.927Z",
+ "keywords": [
+ {
+ "keyword": "psychopédagogue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "psychopédagogues"
+ },
+ {
+ "keyword": "psychologue",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "psychologues"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "work organization",
+ "political representation"
+ ],
+ "synsets": [
+ "10657783-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "work",
+ "organization",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 33992,
+ "created": "2018-07-22T13:31:33.000Z",
+ "lastUpdated": "2021-07-22T12:56:32.366Z",
+ "keywords": [
+ {
+ "keyword": "porte-parole",
+ "hasLocution": false,
+ "plural": "porte-paroles",
+ "type": 2
+ },
+ {
+ "keyword": "représentant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "représentants"
+ },
+ {
+ "keyword": "rapporteur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "rapporteurs"
+ },
+ {
+ "keyword": "délégué",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "délégués"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01374976-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 33994,
+ "created": "2018-07-22T13:33:29.000Z",
+ "lastUpdated": "2021-07-22T12:54:07.695Z",
+ "keywords": [
+ {
+ "keyword": "gentil",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "gentils"
+ },
+ {
+ "keyword": "bon",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "bons"
+ },
+ {
+ "keyword": "bienveillant",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "bienveillants"
+ },
+ {
+ "keyword": "aimable",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "aimables"
+ },
+ {
+ "keyword": "doux",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "doux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work organization"
+ ],
+ "synsets": [
+ "13300285-n"
+ ],
+ "tags": [
+ "work",
+ "organization"
+ ],
+ "_id": 33996,
+ "created": "2018-07-22T13:35:51.000Z",
+ "lastUpdated": "2021-07-22T15:25:13.577Z",
+ "keywords": [
+ {
+ "keyword": "salaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "salaires"
+ },
+ {
+ "keyword": "paie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paies"
+ },
+ {
+ "keyword": "rémunération",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "rémunérations"
+ },
+ {
+ "keyword": "paye",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "payes"
+ },
+ {
+ "keyword": "solde",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "soldes"
+ },
+ {
+ "keyword": "revenu",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "revenus"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public administration"
+ ],
+ "synsets": [
+ "13288037-n",
+ "00088243-n",
+ "13287915-n",
+ "01063127-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "public administration"
+ ],
+ "_id": 33998,
+ "created": "2018-07-22T13:39:16.000Z",
+ "lastUpdated": "2021-07-22T15:20:51.962Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "allocation",
+ "plural": "allocations"
+ },
+ {
+ "keyword": "avantages sociaux",
+ "hasLocution": false,
+ "plural": "avantages sociaux",
+ "type": 2
+ },
+ {
+ "keyword": "subvention",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "subventions"
+ },
+ {
+ "keyword": "bourse",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "bourses"
+ },
+ {
+ "keyword": "allocation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "allocations"
+ },
+ {
+ "keyword": "aide économique",
+ "hasLocution": false,
+ "plural": "aides économiques",
+ "type": 2
+ },
+ {
+ "keyword": "indemnité",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "indemnités"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "signaling system"
+ ],
+ "synsets": [
+ "07165352-n",
+ "01203761-n",
+ "08327319-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34000,
+ "created": "2018-07-22T13:45:40.000Z",
+ "lastUpdated": "2021-09-11T21:48:07.302Z",
+ "keywords": [
+ {
+ "keyword": "rencontre de médiation familiale",
+ "hasLocution": false,
+ "plural": "rencontres de médiation familiale",
+ "type": 2
+ },
+ {
+ "keyword": "médiation parent-enfant",
+ "hasLocution": false,
+ "plural": "médiations parent-enfant",
+ "type": 2
+ },
+ {
+ "keyword": "espace de rencontre parents-enfants",
+ "hasLocution": false,
+ "plural": "espaces de rencontre parents-enfants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "child"
+ ],
+ "synsets": [
+ "10128966-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "child"
+ ],
+ "_id": 34002,
+ "created": "2018-07-22T13:54:40.000Z",
+ "lastUpdated": "2021-07-22T08:33:03.236Z",
+ "keywords": [
+ {
+ "keyword": "faux jumeaux",
+ "hasLocution": false,
+ "plural": "faux jumeaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "computing"
+ ],
+ "synsets": [
+ "07162730-n"
+ ],
+ "tags": [
+ "computing"
+ ],
+ "_id": 34004,
+ "created": "2018-07-22T13:57:45.000Z",
+ "lastUpdated": "2021-07-22T08:31:57.639Z",
+ "keywords": [
+ {
+ "keyword": "tutoriel",
+ "hasLocution": false,
+ "plural": "tutoriels",
+ "type": 2
+ },
+ {
+ "keyword": "didacticiel",
+ "hasLocution": false,
+ "plural": "didacticiels",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dietetics",
+ "cereal"
+ ],
+ "synsets": [
+ "07585802-n"
+ ],
+ "tags": [
+ "health",
+ "dietetics",
+ "feeding",
+ "food",
+ "plant-based food",
+ "cereal"
+ ],
+ "_id": 34006,
+ "created": "2018-07-22T14:05:19.000Z",
+ "lastUpdated": "2021-07-22T08:31:00.013Z",
+ "keywords": [
+ {
+ "keyword": "gluten",
+ "hasLocution": false,
+ "plural": "glutens",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07860018-n",
+ "14530258-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 34008,
+ "created": "2018-07-22T14:08:02.000Z",
+ "lastUpdated": "2021-07-22T08:30:30.843Z",
+ "keywords": [
+ {
+ "keyword": "lait sans lactose",
+ "hasLocution": false,
+ "plural": "laits sans lactose",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "crustacean",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "07810135-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "arthropod",
+ "crustacean",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 34010,
+ "created": "2018-07-22T14:09:28.000Z",
+ "lastUpdated": "2021-07-24T07:40:49.862Z",
+ "keywords": [
+ {
+ "keyword": "crevette",
+ "hasLocution": true,
+ "plural": "crevettes",
+ "type": 2
+ },
+ {
+ "keyword": "grosse crevette",
+ "hasLocution": false,
+ "plural": "grosses crevettes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "personal services"
+ ],
+ "synsets": [
+ "10024466-n",
+ "07962874-n",
+ "10715747-n",
+ "00656128-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "personal services"
+ ],
+ "_id": 33974,
+ "created": "2018-07-22T12:51:38.000Z",
+ "lastUpdated": "2021-08-24T15:49:07.995Z",
+ "keywords": [
+ {
+ "keyword": "auxiliaire de vie",
+ "hasLocution": false,
+ "plural": "auxiliaires de vie",
+ "type": 2
+ },
+ {
+ "keyword": "tierce-personne",
+ "hasLocution": false,
+ "plural": "tierce-personnes",
+ "type": 2
+ },
+ {
+ "keyword": "aidant",
+ "hasLocution": false,
+ "plural": "aidants",
+ "type": 2
+ },
+ {
+ "keyword": "accompagnant éducatif et social",
+ "hasLocution": false,
+ "plural": "accompagnants éducatifs et sociaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "work organization"
+ ],
+ "synsets": [
+ "00405549-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "work",
+ "organization"
+ ],
+ "_id": 33970,
+ "created": "2018-07-22T12:37:50.000Z",
+ "lastUpdated": "2021-07-22T08:39:10.211Z",
+ "keywords": [
+ {
+ "keyword": "coordonner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "organiser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07865312-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "ultra-processed food"
+ ],
+ "_id": 34012,
+ "created": "2018-07-22T14:15:24.000Z",
+ "lastUpdated": "2021-07-22T08:26:33.106Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "yaourt",
+ "hasLocution": true,
+ "plural": "yaourts"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "yoghourt",
+ "type": 2,
+ "plural": "yoghourts"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "15094387-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 34015,
+ "created": "2018-07-22T18:43:40.000Z",
+ "lastUpdated": "2021-07-22T08:25:11.906Z",
+ "keywords": [
+ {
+ "keyword": "épaississant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "épaississants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "cookery"
+ ],
+ "synsets": [
+ "02424186-a",
+ "00480171-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 34017,
+ "created": "2018-07-22T18:52:44.000Z",
+ "lastUpdated": "2021-07-22T08:24:28.534Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "épais",
+ "type": 4,
+ "plural": "épais"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "01353852-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 34021,
+ "created": "2018-07-22T19:03:34.000Z",
+ "lastUpdated": "2021-07-22T08:22:10.020Z",
+ "keywords": [
+ {
+ "keyword": "mettre un T-shirt",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enfiler un T-shirt",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00177253-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 34019,
+ "created": "2018-07-22T18:54:13.000Z",
+ "lastUpdated": "2021-07-22T15:14:24.983Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "déshabiller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "enlever les vêtements",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se déshabiller",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "être déshabillé",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "03726875-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 34027,
+ "created": "2018-07-22T19:07:56.000Z",
+ "lastUpdated": "2021-07-22T08:18:49.304Z",
+ "keywords": [
+ {
+ "keyword": "marimba",
+ "hasLocution": false,
+ "plural": "marimbas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "02806832-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 34029,
+ "created": "2018-07-22T19:10:06.000Z",
+ "lastUpdated": "2021-07-22T08:17:39.054Z",
+ "keywords": [
+ {
+ "keyword": "grosse caisse",
+ "hasLocution": false,
+ "plural": "grosses caisse",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00648747-v",
+ "02710477-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 34031,
+ "created": "2018-07-22T20:04:47.000Z",
+ "lastUpdated": "2021-07-22T08:16:58.287Z",
+ "keywords": [
+ {
+ "keyword": "mesurer le poids et la taille",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "prendre le poids et la taille",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fossil"
+ ],
+ "synsets": [
+ "09307495-n",
+ "02321747-n"
+ ],
+ "tags": [
+ "extinct being",
+ "fossil",
+ "paleontology"
+ ],
+ "_id": 34033,
+ "created": "2018-09-24T19:46:53.000Z",
+ "lastUpdated": "2021-07-22T08:16:06.874Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oursin",
+ "hasLocution": true,
+ "plural": "oursins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fossil"
+ ],
+ "synsets": [
+ "01770885-n",
+ "09307495-n"
+ ],
+ "tags": [
+ "extinct being",
+ "fossil",
+ "paleontology"
+ ],
+ "_id": 34035,
+ "created": "2018-09-24T19:49:00.000Z",
+ "lastUpdated": "2021-07-22T08:15:35.484Z",
+ "keywords": [
+ {
+ "keyword": "trilobite",
+ "hasLocution": false,
+ "plural": "trilobites",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "paleontology",
+ "fossil"
+ ],
+ "synsets": [
+ "01316583-v",
+ "02148219-v",
+ "02148002-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "paleontology",
+ "extinct being",
+ "fossil"
+ ],
+ "_id": 34037,
+ "created": "2018-09-24T19:51:42.000Z",
+ "lastUpdated": "2021-07-22T12:51:29.191Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "déterrer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "découvrir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "01353852-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 34022,
+ "created": "2018-07-22T19:03:34.000Z",
+ "lastUpdated": "2021-07-22T08:21:25.947Z",
+ "keywords": [
+ {
+ "keyword": "mettre un T-shirt",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "enfiler un T-shirt",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "nursing equipment"
+ ],
+ "synsets": [
+ "01895242-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 34025,
+ "created": "2018-07-22T19:05:46.000Z",
+ "lastUpdated": "2021-07-22T08:20:29.883Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "vibrer"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "egg product"
+ ],
+ "synsets": [
+ "07856780-n",
+ "01463098-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "egg product"
+ ],
+ "_id": 34039,
+ "created": "2018-09-24T19:55:33.000Z",
+ "lastUpdated": "2021-03-25T21:54:51.059Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oeufs",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "pet"
+ ],
+ "synsets": [
+ "01324834-n"
+ ],
+ "tags": [
+ "animal",
+ "pet"
+ ],
+ "_id": 34041,
+ "created": "2018-09-24T19:57:03.000Z",
+ "lastUpdated": "2021-07-22T08:14:56.276Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chiot",
+ "hasLocution": true,
+ "plural": "chiots"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07769568-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 34045,
+ "created": "2018-09-24T20:00:26.000Z",
+ "lastUpdated": "2021-07-22T08:13:19.149Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bananes",
+ "hasLocution": true,
+ "plural": "bananes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower"
+ ],
+ "synsets": [
+ "12474664-n"
+ ],
+ "tags": [
+ "plant",
+ "flower"
+ ],
+ "_id": 34043,
+ "created": "2018-09-24T19:59:03.000Z",
+ "lastUpdated": "2021-03-26T13:53:03.119Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tulipes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "02996250-n",
+ "02978156-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 34047,
+ "created": "2018-09-24T20:02:24.000Z",
+ "lastUpdated": "2021-04-12T17:30:42.263Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "dévidoir de scotch",
+ "plural": "dévidoirs de scotch"
+ },
+ {
+ "keyword": "scotch",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "scotchs"
+ },
+ {
+ "keyword": "dévidoir de ruban adhésif",
+ "hasLocution": false,
+ "plural": "dévidoirs de ruban adhésif",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "derived material"
+ ],
+ "synsets": [
+ "01364587-v",
+ "01537533-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "material",
+ "derived material"
+ ],
+ "_id": 34050,
+ "created": "2018-09-24T20:08:55.000Z",
+ "lastUpdated": "2021-07-22T08:11:52.316Z",
+ "keywords": [
+ {
+ "keyword": "plein de boue",
+ "hasLocution": false,
+ "plural": "pleins de boue",
+ "type": 4
+ },
+ {
+ "keyword": "boue",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "boues"
+ },
+ {
+ "keyword": "couvert de boue",
+ "hasLocution": false,
+ "plural": "couverts de boue",
+ "type": 4
+ },
+ {
+ "keyword": "gadoue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gadoues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "extinct being"
+ ],
+ "synsets": [
+ "09307495-n",
+ "09218836-n"
+ ],
+ "tags": [
+ "extinct being",
+ "paleontology"
+ ],
+ "_id": 34056,
+ "created": "2018-09-24T20:18:59.000Z",
+ "lastUpdated": "2021-07-22T08:02:59.803Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ammonite",
+ "hasLocution": false,
+ "plural": "ammonites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "extinct being"
+ ],
+ "synsets": [
+ "09307495-n",
+ "09218836-n"
+ ],
+ "tags": [
+ "extinct being",
+ "paleontology"
+ ],
+ "_id": 34055,
+ "created": "2018-09-24T20:18:59.000Z",
+ "lastUpdated": "2021-07-22T08:03:11.317Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ammonite",
+ "hasLocution": false,
+ "plural": "ammonites"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07738784-n",
+ "12454744-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 34059,
+ "created": "2018-09-24T20:20:27.000Z",
+ "lastUpdated": "2021-07-22T08:01:59.007Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poireaux",
+ "hasLocution": true,
+ "plural": "poireaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "00463344-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 34061,
+ "created": "2018-09-24T20:22:17.000Z",
+ "lastUpdated": "2021-07-22T08:01:36.917Z",
+ "keywords": [
+ {
+ "type": 4,
+ "hasLocution": true,
+ "keyword": "nuageux",
+ "plural": "nuageux"
+ },
+ {
+ "keyword": "couvert",
+ "type": 4,
+ "hasLocution": true,
+ "plural": "couverts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy"
+ ],
+ "synsets": [
+ "11710924-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy"
+ ],
+ "_id": 34063,
+ "created": "2018-09-24T20:23:55.000Z",
+ "lastUpdated": "2021-07-22T08:00:43.321Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pétale",
+ "hasLocution": true,
+ "plural": "pétales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "04125870-n",
+ "03084637-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 34065,
+ "created": "2018-09-24T20:25:16.000Z",
+ "lastUpdated": "2021-07-22T08:00:31.494Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "compas et règle",
+ "hasLocution": false,
+ "plural": "compas et règles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "02888703-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 34067,
+ "created": "2018-09-24T20:28:11.000Z",
+ "lastUpdated": "2021-07-22T07:59:42.794Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gant de boxe",
+ "hasLocution": true,
+ "plural": "gants de boxe"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "shape",
+ "geometry"
+ ],
+ "synsets": [
+ "05135784-n",
+ "05108937-n"
+ ],
+ "tags": [
+ "shape",
+ "mathematics",
+ "geometry"
+ ],
+ "_id": 34053,
+ "created": "2018-09-24T20:11:41.000Z",
+ "lastUpdated": "2021-07-22T08:03:56.639Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cercle",
+ "hasLocution": true,
+ "plural": "cercles"
+ },
+ {
+ "keyword": "rond",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ronds"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01364587-v",
+ "01537533-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 34049,
+ "created": "2018-09-24T20:08:55.000Z",
+ "lastUpdated": "2021-07-22T08:13:05.288Z",
+ "keywords": [
+ {
+ "keyword": "plein de boue",
+ "hasLocution": false,
+ "plural": "pleins de boue",
+ "type": 2
+ },
+ {
+ "keyword": "boue",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "boues"
+ },
+ {
+ "keyword": "couvert de boue",
+ "hasLocution": false,
+ "plural": "couverts de boue",
+ "type": 2
+ },
+ {
+ "keyword": "gadoue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gadoues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "region"
+ ],
+ "synsets": [
+ "08778689-n",
+ "08778343-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "region"
+ ],
+ "_id": 34069,
+ "created": "2018-09-24T20:29:41.000Z",
+ "lastUpdated": "2021-07-22T07:59:11.023Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Scandinavie",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "keyword": "Péninsule Scandinave",
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "cattle farming"
+ ],
+ "synsets": [
+ "01794683-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming"
+ ],
+ "_id": 34076,
+ "created": "2018-09-24T21:16:30.000Z",
+ "lastUpdated": "2021-07-22T07:54:25.238Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poussin",
+ "hasLocution": true,
+ "plural": "poussin"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "cattle farming"
+ ],
+ "synsets": [
+ "02415086-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming"
+ ],
+ "_id": 34078,
+ "created": "2018-09-24T21:17:19.000Z",
+ "lastUpdated": "2021-03-26T14:05:24.479Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "agneau",
+ "hasLocution": true,
+ "plural": "agneaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal reproduction"
+ ],
+ "synsets": [
+ "01324070-n"
+ ],
+ "tags": [
+ "animal",
+ "animal reproduction"
+ ],
+ "_id": 34072,
+ "created": "2018-09-24T20:34:34.000Z",
+ "lastUpdated": "2021-07-25T14:26:58.012Z",
+ "keywords": [
+ {
+ "keyword": "jeune",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "jeunes"
+ },
+ {
+ "keyword": "descendance",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "descendance"
+ },
+ {
+ "keyword": "descendant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "descendants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "cattle farming"
+ ],
+ "synsets": [
+ "01890537-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "work",
+ "primary sector",
+ "cattle farming"
+ ],
+ "_id": 34080,
+ "created": "2018-09-24T21:21:00.000Z",
+ "lastUpdated": "2021-07-22T07:54:13.006Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "veau",
+ "plural": "veaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "domestic animal",
+ "pet"
+ ],
+ "synsets": [
+ "02125600-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "domestic",
+ "pet"
+ ],
+ "_id": 34082,
+ "created": "2018-09-24T21:24:56.000Z",
+ "lastUpdated": "2021-07-22T07:53:34.629Z",
+ "keywords": [
+ {
+ "keyword": "chaton",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chatons"
+ },
+ {
+ "keyword": "minou",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "minous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07834398-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 34084,
+ "created": "2018-09-24T21:27:53.000Z",
+ "lastUpdated": "2021-07-22T07:52:40.906Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gousse d'ail",
+ "hasLocution": true,
+ "plural": "gousses d'ail"
+ },
+ {
+ "keyword": "gousse",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "gousses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07834398-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 34086,
+ "created": "2018-09-24T21:28:22.000Z",
+ "lastUpdated": "2021-07-22T07:52:13.689Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gousses d'ail",
+ "hasLocution": true,
+ "plural": "gousses d'ail"
+ },
+ {
+ "keyword": "gousses",
+ "hasLocution": true,
+ "plural": "gousses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07670276-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 34070,
+ "created": "2018-09-24T20:31:08.000Z",
+ "lastUpdated": "2021-07-22T07:57:59.066Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tranches",
+ "hasLocution": true,
+ "plural": "tranches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "construction"
+ ],
+ "synsets": [
+ "03607053-n",
+ "02819085-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 34074,
+ "created": "2018-09-24T21:15:27.000Z",
+ "lastUpdated": "2021-07-22T07:55:32.093Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poutres",
+ "hasLocution": true,
+ "plural": "poutres"
+ },
+ {
+ "keyword": "poutrelles",
+ "hasLocution": false,
+ "plural": "poutrelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crockery",
+ "cookery"
+ ],
+ "synsets": [
+ "04146374-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 34088,
+ "created": "2018-09-24T21:30:46.000Z",
+ "lastUpdated": "2021-07-22T07:51:13.504Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "petite assiette",
+ "hasLocution": true,
+ "plural": "petites assiettes"
+ },
+ {
+ "keyword": "soucoupe",
+ "hasLocution": true,
+ "plural": "soucoupes",
+ "type": 2
+ },
+ {
+ "keyword": "assiette à dessert",
+ "hasLocution": false,
+ "plural": "assiettes à dessert",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "02802230-n",
+ "02802334-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 34090,
+ "created": "2018-09-24T21:33:57.000Z",
+ "lastUpdated": "2021-07-22T07:50:03.992Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "batte et balle",
+ "hasLocution": true,
+ "plural": "battes et balles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "baby",
+ "childcare"
+ ],
+ "synsets": [
+ "10754051-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "baby",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 34094,
+ "created": "2018-09-24T21:51:16.000Z",
+ "lastUpdated": "2024-10-19T10:32:55.374Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "jumeaux",
+ "hasLocution": true,
+ "plural": "jumeaux"
+ },
+ {
+ "keyword": "jumeaux ",
+ "hasLocution": false,
+ "plural": "jumeaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03307616-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 34100,
+ "created": "2018-09-25T09:44:47.000Z",
+ "lastUpdated": "2021-07-22T07:42:00.319Z",
+ "keywords": [
+ {
+ "keyword": "vélo d'appartement",
+ "hasLocution": false,
+ "plural": "vélos d'appartement",
+ "type": 2
+ },
+ {
+ "keyword": "vélo d'intérieur",
+ "hasLocution": false,
+ "plural": "vélos d'intérieur",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00452356-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 34102,
+ "created": "2018-09-25T09:45:59.000Z",
+ "lastUpdated": "2021-07-22T07:42:06.240Z",
+ "keywords": [
+ {
+ "keyword": "faire du vélo d'appartement",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire du vélo d'intérieur",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recycling center",
+ "recycling"
+ ],
+ "synsets": [
+ "04073021-n",
+ "01017785-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recycling center",
+ "recycling",
+ "environmental science"
+ ],
+ "_id": 34104,
+ "created": "2018-09-25T09:50:15.000Z",
+ "lastUpdated": "2021-07-22T15:12:04.476Z",
+ "keywords": [
+ {
+ "keyword": "recyclerie",
+ "hasLocution": false,
+ "plural": "recycleriez",
+ "type": 2
+ },
+ {
+ "keyword": "ressourcerie",
+ "hasLocution": false,
+ "plural": "ressourceries",
+ "type": 2
+ },
+ {
+ "keyword": "centre de recyclage",
+ "hasLocution": false,
+ "plural": "centres de recyclage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recycling center",
+ "recycling"
+ ],
+ "synsets": [
+ "04073021-n",
+ "01017785-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recycling center",
+ "recycling",
+ "environmental science"
+ ],
+ "_id": 34105,
+ "created": "2018-09-25T09:50:15.000Z",
+ "lastUpdated": "2021-07-22T07:44:53.223Z",
+ "keywords": [
+ {
+ "keyword": "recyclerie",
+ "hasLocution": false,
+ "plural": "recycleriez",
+ "type": 2
+ },
+ {
+ "keyword": "ressourcerie",
+ "hasLocution": false,
+ "plural": "ressourceries",
+ "type": 2
+ },
+ {
+ "keyword": "centre de recyclage",
+ "hasLocution": false,
+ "plural": "centres de recyclage",
+ "type": 2
+ },
+ {
+ "keyword": "centre de tri",
+ "hasLocution": false,
+ "plural": "centres de tri",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cosmetic"
+ ],
+ "synsets": [
+ "00041148-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 34108,
+ "created": "2018-09-25T10:08:57.000Z",
+ "lastUpdated": "2021-07-21T22:33:43.604Z",
+ "keywords": [
+ {
+ "keyword": "mettre du rouge à lèvres",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "03947960-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 34110,
+ "created": "2018-09-25T10:10:48.000Z",
+ "lastUpdated": "2021-07-21T22:32:37.174Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pinces à épiler",
+ "hasLocution": false,
+ "plural": "pinces à épiler"
+ },
+ {
+ "keyword": "pincettes",
+ "hasLocution": false,
+ "plural": "pincettes",
+ "type": 2
+ },
+ {
+ "keyword": "pinces",
+ "hasLocution": true,
+ "plural": "pinces",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02189819-v",
+ "01208838-v",
+ "07424192-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 34098,
+ "created": "2018-09-25T09:27:17.000Z",
+ "lastUpdated": "2021-07-22T07:49:13.093Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "toucher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "toucher",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "touchers"
+ },
+ {
+ "keyword": "contact",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "contacts"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "popular festival"
+ ],
+ "synsets": [
+ "07175534-n",
+ "07253354-n"
+ ],
+ "tags": [
+ "event",
+ "popular event",
+ "popular festival"
+ ],
+ "_id": 34116,
+ "created": "2018-09-25T10:23:06.000Z",
+ "lastUpdated": "2021-07-21T22:27:49.037Z",
+ "keywords": [
+ {
+ "keyword": "discours d'ouverture",
+ "hasLocution": false,
+ "plural": "discours d'ouverture",
+ "type": 2
+ },
+ {
+ "keyword": "discours d'inauguration",
+ "hasLocution": false,
+ "plural": "discours d'inauguration",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "derived material"
+ ],
+ "synsets": [
+ "14980464-n"
+ ],
+ "tags": [
+ "material",
+ "derived material"
+ ],
+ "_id": 34118,
+ "created": "2018-09-25T10:25:34.000Z",
+ "lastUpdated": "2021-07-21T22:25:36.131Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boue",
+ "hasLocution": true,
+ "plural": "boues"
+ },
+ {
+ "keyword": "vase",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "vases"
+ },
+ {
+ "keyword": "gadoue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gadoue"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07774656-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 34120,
+ "created": "2018-09-25T10:27:19.000Z",
+ "lastUpdated": "2021-07-21T22:23:44.477Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "raisins noirs",
+ "hasLocution": true,
+ "plural": "raisins noirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "04503138-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 34121,
+ "created": "2018-09-25T10:32:16.000Z",
+ "lastUpdated": "2021-07-21T22:23:13.860Z",
+ "keywords": [
+ {
+ "keyword": "remorqueur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "remorqueurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "water transport"
+ ],
+ "synsets": [
+ "01457247-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 34123,
+ "created": "2018-09-25T10:35:06.000Z",
+ "lastUpdated": "2021-07-21T22:21:46.882Z",
+ "keywords": [
+ {
+ "keyword": "remorquer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "tirer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03563020-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 34125,
+ "created": "2018-09-25T10:36:33.000Z",
+ "lastUpdated": "2021-07-21T17:13:47.415Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sac de glaçons",
+ "hasLocution": true,
+ "plural": "sacs de glaçons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07734958-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 34127,
+ "created": "2018-09-25T10:37:53.000Z",
+ "lastUpdated": "2021-07-21T17:13:35.853Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "asperges",
+ "hasLocution": true
+ },
+ {
+ "keyword": "asperges vertes",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "baking"
+ ],
+ "synsets": [
+ "07638745-n",
+ "03906011-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 34129,
+ "created": "2018-09-25T10:41:07.000Z",
+ "lastUpdated": "2021-07-21T22:20:33.031Z",
+ "keywords": [
+ {
+ "keyword": "magasin de churros",
+ "hasLocution": false,
+ "plural": "magasins de churros",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "boutique de chichis",
+ "plural": "boutiques de chichis",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03487960-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 34112,
+ "created": "2018-09-25T10:15:50.000Z",
+ "lastUpdated": "2021-07-21T22:30:51.787Z",
+ "keywords": [
+ {
+ "keyword": "handball",
+ "hasLocution": false,
+ "plural": "handballs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "orthopedic product",
+ "signaling system"
+ ],
+ "synsets": [
+ "03511871-n",
+ "04610439-n",
+ "14574389-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "orthopedic product",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34133,
+ "created": "2018-09-25T10:53:36.000Z",
+ "lastUpdated": "2021-07-21T22:16:03.801Z",
+ "keywords": [
+ {
+ "keyword": "centre d'audition",
+ "hasLocution": false,
+ "plural": "centres d'audition",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "costume"
+ ],
+ "synsets": [
+ "09987789-n",
+ "03118308-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 34135,
+ "created": "2018-09-25T11:13:25.000Z",
+ "lastUpdated": "2021-07-21T22:14:19.346Z",
+ "keywords": [
+ {
+ "keyword": "magasin de déguisement",
+ "hasLocution": false,
+ "plural": "magasins de déguisement",
+ "type": 2
+ },
+ {
+ "keyword": "magasin de costumes",
+ "hasLocution": false,
+ "plural": "magasins de costumes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dessert"
+ ],
+ "synsets": [
+ "07630339-n",
+ "07630434-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert"
+ ],
+ "_id": 34092,
+ "created": "2018-09-24T21:40:31.000Z",
+ "lastUpdated": "2021-07-22T07:48:51.770Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cône au chocolat",
+ "hasLocution": true,
+ "plural": "cônes au chocolat"
+ },
+ {
+ "type": 2,
+ "keyword": "cornet au chocolat ",
+ "hasLocution": false,
+ "plural": "cornets au chocolat "
+ },
+ {
+ "keyword": "glace au chocolat",
+ "hasLocution": false,
+ "plural": "glaces au chocolat",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building"
+ ],
+ "synsets": [
+ "03441327-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade"
+ ],
+ "_id": 34137,
+ "created": "2018-09-25T11:17:12.000Z",
+ "lastUpdated": "2021-07-25T14:25:55.394Z",
+ "keywords": [
+ {
+ "keyword": "boutique de cadeaux",
+ "hasLocution": false,
+ "plural": "boutiques de cadeaux",
+ "type": 2
+ },
+ {
+ "keyword": "magasin de souvenirs",
+ "hasLocution": false,
+ "plural": "magasins de souvenirs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "04547339-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 34114,
+ "created": "2018-09-25T10:20:04.000Z",
+ "lastUpdated": "2021-07-21T22:29:38.807Z",
+ "keywords": [
+ {
+ "keyword": "volley",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "volleys"
+ },
+ {
+ "keyword": "ballon de volley",
+ "hasLocution": false,
+ "plural": "ballons de volley",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building"
+ ],
+ "synsets": [
+ "10288896-n",
+ "04610439-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade"
+ ],
+ "_id": 34131,
+ "created": "2018-09-25T10:46:30.000Z",
+ "lastUpdated": "2021-07-21T22:17:20.710Z",
+ "keywords": [
+ {
+ "keyword": "serrurerie",
+ "hasLocution": false,
+ "plural": "serrureries",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "animal physiology"
+ ],
+ "synsets": [
+ "00071765-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "animal physiology"
+ ],
+ "_id": 34141,
+ "created": "2018-09-25T11:27:03.000Z",
+ "lastUpdated": "2021-07-21T17:13:06.122Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire pipi",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "uriner",
+ "hasLocution": false
+ },
+ {
+ "keyword": "pisser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic"
+ ],
+ "synsets": [
+ "03719774-n",
+ "02911542-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 34145,
+ "created": "2018-09-25T11:36:33.000Z",
+ "lastUpdated": "2021-07-21T17:11:53.164Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pinceau de maquillage",
+ "hasLocution": true,
+ "plural": "pinceaux de maquillage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "landform",
+ "rural area"
+ ],
+ "synsets": [
+ "09325914-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "place",
+ "rural area"
+ ],
+ "_id": 34147,
+ "created": "2018-09-25T11:40:10.000Z",
+ "lastUpdated": "2021-07-21T17:11:43.526Z",
+ "keywords": [
+ {
+ "keyword": "colline",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "collines"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dance"
+ ],
+ "synsets": [],
+ "tags": [
+ "scenic art",
+ "dance",
+ "show"
+ ],
+ "_id": 34149,
+ "created": "2018-09-25T11:46:05.000Z",
+ "lastUpdated": "2021-07-21T17:11:06.134Z",
+ "keywords": [
+ {
+ "keyword": "zumba",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07705897-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 34151,
+ "created": "2018-09-25T11:53:40.000Z",
+ "lastUpdated": "2021-07-21T22:01:16.244Z",
+ "keywords": [
+ {
+ "keyword": "pain de hamburger",
+ "hasLocution": false,
+ "plural": "pains de hamburger",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mountain"
+ ],
+ "synsets": [
+ "04343930-n",
+ "02821967-n",
+ "01057089-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 34155,
+ "created": "2018-09-25T12:12:57.000Z",
+ "lastUpdated": "2021-07-21T22:01:06.458Z",
+ "keywords": [
+ {
+ "keyword": "lit de camp",
+ "hasLocution": false,
+ "plural": "lits de camps",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "pet",
+ "signaling system"
+ ],
+ "synsets": [
+ "08632949-n",
+ "02086723-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "animal",
+ "pet",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34143,
+ "created": "2018-09-25T11:33:20.000Z",
+ "lastUpdated": "2021-07-21T22:03:22.127Z",
+ "keywords": [
+ {
+ "keyword": "parc pour chien",
+ "hasLocution": false,
+ "plural": "parcs pour chien",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "gambling"
+ ],
+ "synsets": [
+ "02836345-n",
+ "00509102-n",
+ "00507669-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "leisure",
+ "game",
+ "gambling"
+ ],
+ "_id": 34139,
+ "created": "2018-09-25T11:22:20.000Z",
+ "lastUpdated": "2021-07-25T14:25:42.476Z",
+ "keywords": [
+ {
+ "keyword": "loterie et paris",
+ "hasLocution": false,
+ "plural": "loteries et paris",
+ "type": 2
+ },
+ {
+ "keyword": "PMU",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "PMU"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "signaling system"
+ ],
+ "synsets": [
+ "02672515-n",
+ "08294726-n",
+ "08296219-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34161,
+ "created": "2018-12-13T12:16:03.000Z",
+ "lastUpdated": "2021-07-25T14:25:36.826Z",
+ "keywords": [
+ {
+ "keyword": "académie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "académies"
+ },
+ {
+ "keyword": "centre de formation",
+ "hasLocution": false,
+ "plural": "centres de formation",
+ "type": 2
+ },
+ {
+ "keyword": "école",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "écoles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional services",
+ "commercial building",
+ "consultancy"
+ ],
+ "synsets": [
+ "00632955-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "professional services",
+ "place",
+ "building",
+ "trade",
+ "consultancy"
+ ],
+ "_id": 34163,
+ "created": "2018-12-13T12:18:58.000Z",
+ "lastUpdated": "2021-07-22T07:36:44.649Z",
+ "keywords": [
+ {
+ "keyword": "cabinet de conseils",
+ "hasLocution": false,
+ "plural": "cabinets de conseils",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 34157,
+ "created": "2018-09-25T12:21:52.000Z",
+ "lastUpdated": "2021-07-21T22:00:10.486Z",
+ "keywords": [
+ {
+ "keyword": "course de brouette",
+ "hasLocution": false,
+ "plural": "courses de brouette",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chess"
+ ],
+ "synsets": [
+ "02984084-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "chess"
+ ],
+ "_id": 34165,
+ "created": "2018-12-13T12:20:24.000Z",
+ "lastUpdated": "2021-07-21T17:09:02.628Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tour",
+ "hasLocution": true,
+ "plural": "tours"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chess"
+ ],
+ "synsets": [
+ "03907828-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "chess"
+ ],
+ "_id": 34167,
+ "created": "2018-12-13T12:21:57.000Z",
+ "lastUpdated": "2021-07-21T17:08:56.498Z",
+ "keywords": [
+ {
+ "keyword": "pion",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chess"
+ ],
+ "synsets": [
+ "02847294-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "chess"
+ ],
+ "_id": 34169,
+ "created": "2018-12-13T12:24:30.000Z",
+ "lastUpdated": "2021-07-21T17:08:45.548Z",
+ "keywords": [
+ {
+ "keyword": "fou",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "fous"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chess"
+ ],
+ "synsets": [
+ "04039763-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "chess"
+ ],
+ "_id": 34171,
+ "created": "2018-12-13T12:25:12.000Z",
+ "lastUpdated": "2021-07-21T17:08:22.566Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "reine",
+ "hasLocution": true,
+ "plural": "reines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "clothing industry"
+ ],
+ "synsets": [
+ "03821676-n",
+ "04433923-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "clothing industry"
+ ],
+ "_id": 34159,
+ "created": "2018-09-25T12:59:36.000Z",
+ "lastUpdated": "2021-07-21T17:09:24.130Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "épingle et bobine de fil",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "special education"
+ ],
+ "synsets": [
+ "02194386-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "special education"
+ ],
+ "_id": 34177,
+ "created": "2018-12-13T13:58:53.000Z",
+ "lastUpdated": "2021-07-21T22:52:31.908Z",
+ "keywords": [
+ {
+ "keyword": "devenir sourd",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "assourdir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "13140970-n",
+ "13121436-n"
+ ],
+ "tags": [],
+ "_id": 34179,
+ "created": "2018-12-13T14:02:06.000Z",
+ "lastUpdated": "2021-07-21T17:07:49.902Z",
+ "keywords": [
+ {
+ "keyword": "liane",
+ "hasLocution": false,
+ "plural": "lianes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12321697-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 34175,
+ "created": "2018-12-13T13:56:02.000Z",
+ "lastUpdated": "2021-07-21T17:08:12.982Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "olivier",
+ "hasLocution": true,
+ "plural": "oliviers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical instrument"
+ ],
+ "synsets": [
+ "04505096-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument"
+ ],
+ "_id": 34181,
+ "created": "2018-12-13T14:04:28.000Z",
+ "lastUpdated": "2021-07-21T17:07:26.622Z",
+ "keywords": [
+ {
+ "keyword": "diapason",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "diapasons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room"
+ ],
+ "synsets": [
+ "03049785-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room"
+ ],
+ "_id": 34183,
+ "created": "2018-12-13T14:06:08.000Z",
+ "lastUpdated": "2021-07-21T17:06:52.563Z",
+ "keywords": [
+ {
+ "keyword": "vestiaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vestiaires"
+ },
+ {
+ "keyword": "penderie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "penderies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01577123-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 34185,
+ "created": "2018-12-13T22:10:45.000Z",
+ "lastUpdated": "2021-07-22T15:11:35.442Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "attraper",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "prendre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tenir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01219234-v",
+ "01352965-v",
+ "01216829-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 34186,
+ "created": "2018-12-13T22:10:45.000Z",
+ "lastUpdated": "2021-07-22T15:11:31.267Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": true,
+ "keyword": "attraper"
+ },
+ {
+ "keyword": "prendre",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "hasLocution": true,
+ "keyword": "tenir",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "cultural building",
+ "cinema",
+ "theater",
+ "signaling system"
+ ],
+ "synsets": [
+ "02889123-n",
+ "13279066-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "culture",
+ "scenic art",
+ "cinema",
+ "show",
+ "theater",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34189,
+ "created": "2018-12-13T22:11:44.000Z",
+ "lastUpdated": "2021-07-21T17:05:50.722Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guichet",
+ "hasLocution": false,
+ "plural": "guichets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "agriculture",
+ "gardening"
+ ],
+ "synsets": [
+ "00228662-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "primary sector",
+ "agriculture",
+ "gardening"
+ ],
+ "_id": 34173,
+ "created": "2018-12-13T13:32:22.000Z",
+ "lastUpdated": "2021-07-21T17:08:17.643Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "arroser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "ophthalmology"
+ ],
+ "synsets": [],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "ophthalmology"
+ ],
+ "_id": 34193,
+ "created": "2018-12-13T22:18:48.000Z",
+ "lastUpdated": "2021-07-22T12:50:29.022Z",
+ "keywords": [
+ {
+ "keyword": "cernes",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cernes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human reproduction",
+ "medical procedure"
+ ],
+ "synsets": [
+ "00670724-n"
+ ],
+ "tags": [
+ "human body",
+ "human reproduction",
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 34199,
+ "created": "2018-12-13T22:33:50.000Z",
+ "lastUpdated": "2021-07-21T02:21:40.064Z",
+ "keywords": [
+ {
+ "keyword": "curetage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "curetages"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "special education"
+ ],
+ "synsets": [],
+ "tags": [
+ "work",
+ "professional",
+ "education",
+ "special education"
+ ],
+ "_id": 34201,
+ "created": "2018-12-13T22:38:31.000Z",
+ "lastUpdated": "2021-07-22T15:11:22.512Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "formateur en intervention sociale et familiale",
+ "plural": "formateur en intervention sociale et familiale"
+ },
+ {
+ "hasLocution": false,
+ "plural": "techniciens en intervention sociale et familiale",
+ "keyword": "technicien en intervention sociale et familiale",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "death"
+ ],
+ "synsets": [
+ "01549783-v",
+ "00096133-a",
+ "07962243-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 34203,
+ "created": "2018-12-13T22:42:05.000Z",
+ "lastUpdated": "2022-02-03T09:32:55.976Z",
+ "keywords": [
+ {
+ "keyword": "reposer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon",
+ "middle ages"
+ ],
+ "synsets": [
+ "04199741-n"
+ ],
+ "tags": [
+ "object",
+ "weapon",
+ "history",
+ "middle ages"
+ ],
+ "_id": 34197,
+ "created": "2018-12-13T22:28:27.000Z",
+ "lastUpdated": "2021-07-21T02:22:52.765Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouclier",
+ "hasLocution": true,
+ "plural": "boucliers"
+ },
+ {
+ "keyword": "blason",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "blasons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chess"
+ ],
+ "synsets": [
+ "03629976-n"
+ ],
+ "tags": [
+ "chess"
+ ],
+ "_id": 34205,
+ "created": "2018-12-13T22:43:51.000Z",
+ "lastUpdated": "2024-12-10T06:20:39.085Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cheval",
+ "hasLocution": true,
+ "plural": "chevaux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "marital status",
+ "wedding",
+ "core vocabulary-living being",
+ "core vocabulary-time"
+ ],
+ "synsets": [
+ "08005815-n",
+ "13987306-n",
+ "01039028-n"
+ ],
+ "tags": [
+ "person",
+ "marital status",
+ "event",
+ "social event",
+ "wedding",
+ "core vocabulary"
+ ],
+ "_id": 34207,
+ "created": "2018-12-13T22:45:34.000Z",
+ "lastUpdated": "2021-07-18T08:25:01.886Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mariage",
+ "hasLocution": true
+ },
+ {
+ "keyword": "noces",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "theater"
+ ],
+ "synsets": [
+ "04306837-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "scenic art",
+ "theater",
+ "show"
+ ],
+ "_id": 34209,
+ "created": "2018-12-13T22:47:12.000Z",
+ "lastUpdated": "2021-07-21T22:49:36.221Z",
+ "keywords": [
+ {
+ "keyword": "parterre",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "parterres"
+ },
+ {
+ "keyword": "orchestre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "orchestres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "theater"
+ ],
+ "synsets": [
+ "02889424-n",
+ "02887466-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "scenic art",
+ "theater",
+ "show"
+ ],
+ "_id": 34211,
+ "created": "2018-12-13T22:48:44.000Z",
+ "lastUpdated": "2021-07-18T08:24:02.327Z",
+ "keywords": [
+ {
+ "keyword": "loge",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "loges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "baking"
+ ],
+ "synsets": [
+ "03906011-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 34195,
+ "created": "2018-12-13T22:23:26.000Z",
+ "lastUpdated": "2021-07-21T02:23:34.080Z",
+ "keywords": [
+ {
+ "keyword": "magasin de churros",
+ "hasLocution": false,
+ "plural": "magasins de churros",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "02874508-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 34225,
+ "created": "2018-12-15T14:34:43.000Z",
+ "lastUpdated": "2021-07-18T08:23:06.042Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marque-pages",
+ "hasLocution": true,
+ "plural": "marque-pages"
+ },
+ {
+ "keyword": "signet",
+ "hasLocution": true,
+ "plural": "signets",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "06504930-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "work",
+ "tertiary sector",
+ "hospitality industry"
+ ],
+ "_id": 34221,
+ "created": "2018-12-15T14:30:18.000Z",
+ "lastUpdated": "2021-07-18T08:23:46.266Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "menu",
+ "hasLocution": true,
+ "plural": "menus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy"
+ ],
+ "synsets": [
+ "13178493-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy"
+ ],
+ "_id": 34223,
+ "created": "2018-12-15T14:33:14.000Z",
+ "lastUpdated": "2021-07-18T08:23:36.927Z",
+ "keywords": [
+ {
+ "keyword": "aiguilles",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "aiguilles de pin",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "plant anatomy"
+ ],
+ "synsets": [
+ "13178493-n"
+ ],
+ "tags": [
+ "plant",
+ "plant anatomy",
+ "anatomy"
+ ],
+ "_id": 34229,
+ "created": "2018-12-15T14:36:57.000Z",
+ "lastUpdated": "2021-07-21T02:15:56.501Z",
+ "keywords": [
+ {
+ "keyword": "aiguilles",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "aiguilles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07657308-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 34227,
+ "created": "2018-12-15T14:36:19.000Z",
+ "lastUpdated": "2021-07-18T08:22:57.255Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gaufre",
+ "hasLocution": true,
+ "plural": "gaufres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "baking"
+ ],
+ "synsets": [
+ "07656747-n",
+ "07657308-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 34231,
+ "created": "2018-12-15T14:38:32.000Z",
+ "lastUpdated": "2021-07-21T02:15:21.571Z",
+ "keywords": [
+ {
+ "keyword": "crêperie",
+ "hasLocution": false,
+ "plural": "crêperies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "traditional dish"
+ ],
+ "synsets": [
+ "07656747-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 34233,
+ "created": "2018-12-15T14:40:19.000Z",
+ "lastUpdated": "2021-07-21T02:15:03.048Z",
+ "keywords": [
+ {
+ "keyword": "crêpe",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "crêpes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "osseous system",
+ "muscular system",
+ "joint system"
+ ],
+ "synsets": [
+ "10404858-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "osseous system",
+ "muscular system",
+ "joint system"
+ ],
+ "_id": 34235,
+ "created": "2018-12-15T14:43:03.000Z",
+ "lastUpdated": "2021-07-21T02:14:28.457Z",
+ "keywords": [
+ {
+ "keyword": "chirgurgien orthopédiste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chirurgiens orthopédistes"
+ },
+ {
+ "keyword": "orthopédiste",
+ "hasLocution": false,
+ "plural": "orthopédistes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 34153,
+ "created": "2018-09-25T12:04:18.000Z",
+ "lastUpdated": "2021-07-21T17:10:17.060Z",
+ "keywords": [
+ {
+ "keyword": "matériel scolaire",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "osseous system",
+ "muscular system",
+ "joint system"
+ ],
+ "synsets": [
+ "10404858-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "osseous system",
+ "muscular system",
+ "joint system"
+ ],
+ "_id": 34237,
+ "created": "2018-12-15T14:43:29.000Z",
+ "lastUpdated": "2021-07-21T02:13:42.361Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chirurgiennes orthopédistes",
+ "keyword": "chirurgienne orthopédiste"
+ },
+ {
+ "keyword": "orthopédiste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "orthopédiste"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "04671120-n"
+ ],
+ "tags": [],
+ "_id": 34239,
+ "created": "2018-12-15T14:44:04.000Z",
+ "lastUpdated": "2021-07-21T02:12:32.438Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "pleine conscience",
+ "plural": "pleines consciences"
+ },
+ {
+ "hasLocution": false,
+ "plural": "méditations",
+ "keyword": "méditation",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "signaling system"
+ ],
+ "synsets": [
+ "01549944-s",
+ "04153115-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34246,
+ "created": "2018-12-15T16:59:52.000Z",
+ "lastUpdated": "2021-07-21T02:09:55.330Z",
+ "keywords": [
+ {
+ "keyword": "école bilingue",
+ "plural": "écoles bilingues",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chess"
+ ],
+ "synsets": [
+ "03623310-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "chess"
+ ],
+ "_id": 34244,
+ "created": "2018-12-15T16:57:23.000Z",
+ "lastUpdated": "2021-07-18T08:19:38.857Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "roi",
+ "hasLocution": true,
+ "plural": "rois"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human response",
+ "feeling"
+ ],
+ "synsets": [
+ "14406657-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 34242,
+ "created": "2018-12-15T16:54:56.000Z",
+ "lastUpdated": "2022-05-24T16:13:33.860Z",
+ "keywords": [
+ {
+ "keyword": "claustrophobie",
+ "hasLocution": false,
+ "plural": "claustrophobies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "signaling system"
+ ],
+ "synsets": [
+ "01549944-s",
+ "04153115-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34248,
+ "created": "2018-12-15T16:59:52.000Z",
+ "lastUpdated": "2021-07-21T02:09:39.251Z",
+ "keywords": [
+ {
+ "keyword": "école bilingue",
+ "hasLocution": false,
+ "plural": "écoles bilingues",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology",
+ "verb"
+ ],
+ "synsets": [
+ "00062866-v"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 34252,
+ "created": "2018-12-15T23:24:45.000Z",
+ "lastUpdated": "2021-07-21T02:09:23.162Z",
+ "keywords": [
+ {
+ "keyword": "éclore",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "signaling system"
+ ],
+ "synsets": [
+ "01549944-s",
+ "04153115-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34247,
+ "created": "2018-12-15T16:59:52.000Z",
+ "lastUpdated": "2021-07-21T02:09:47.660Z",
+ "keywords": [
+ {
+ "keyword": "école bilingue",
+ "hasLocution": false,
+ "plural": "écoles bilingues",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "paleontology",
+ "professional"
+ ],
+ "synsets": [
+ "10414485-n"
+ ],
+ "tags": [
+ "paleontology",
+ "work",
+ "professional"
+ ],
+ "_id": 34254,
+ "created": "2018-12-15T23:27:01.000Z",
+ "lastUpdated": "2021-07-21T22:49:20.358Z",
+ "keywords": [
+ {
+ "keyword": "paléontologue",
+ "type": 2,
+ "plural": "paléontologues",
+ "hasLocution": false
+ },
+ {
+ "keyword": "paléontologiste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paléontologistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "paleontology",
+ "professional"
+ ],
+ "synsets": [
+ "10414485-n"
+ ],
+ "tags": [
+ "paleontology",
+ "work",
+ "professional"
+ ],
+ "_id": 34256,
+ "created": "2018-12-15T23:27:23.000Z",
+ "lastUpdated": "2021-07-21T02:08:39.942Z",
+ "keywords": [
+ {
+ "keyword": "paléontologiste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paléontologistes"
+ },
+ {
+ "keyword": "paléontologue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paléontologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "09375746-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 34241,
+ "created": "2018-12-15T16:53:23.000Z",
+ "lastUpdated": "2021-07-21T02:10:35.785Z",
+ "keywords": [
+ {
+ "keyword": "météorite",
+ "hasLocution": false,
+ "plural": "météorites",
+ "type": 2
+ },
+ {
+ "keyword": "météore",
+ "hasLocution": false,
+ "plural": "météores",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "prehistory"
+ ],
+ "synsets": [
+ "09922184-n"
+ ],
+ "tags": [
+ "history",
+ "prehistory"
+ ],
+ "_id": 34258,
+ "created": "2018-12-15T23:36:49.000Z",
+ "lastUpdated": "2021-07-21T02:08:05.097Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "homme des cavernes",
+ "hasLocution": false,
+ "plural": "hommes des cavernes"
+ },
+ {
+ "keyword": "homme préhistorique",
+ "hasLocution": false,
+ "plural": "hommes préhistoriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n",
+ "00420921-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 34264,
+ "created": "2018-12-15T23:41:08.000Z",
+ "lastUpdated": "2021-07-18T08:15:21.067Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "prehistory"
+ ],
+ "synsets": [
+ "15280006-n"
+ ],
+ "tags": [
+ "history",
+ "prehistory"
+ ],
+ "_id": 34268,
+ "created": "2018-12-15T23:44:09.000Z",
+ "lastUpdated": "2021-07-21T02:07:47.520Z",
+ "keywords": [
+ {
+ "keyword": "Age de glace",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "période glaciaire",
+ "hasLocution": false,
+ "plural": "périodes glaciaires",
+ "type": 2
+ },
+ {
+ "keyword": "époque glaciaire",
+ "hasLocution": false,
+ "plural": "époques glaciaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n",
+ "00420921-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 34262,
+ "created": "2018-12-15T23:41:08.000Z",
+ "lastUpdated": "2021-07-18T08:15:29.318Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "sports facility",
+ "signaling system"
+ ],
+ "synsets": [
+ "04006950-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34270,
+ "created": "2018-12-15T23:49:42.000Z",
+ "lastUpdated": "2021-07-21T22:49:10.724Z",
+ "keywords": [
+ {
+ "keyword": "studio de presse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "studios de presse"
+ },
+ {
+ "keyword": "cabine de presse",
+ "hasLocution": false,
+ "plural": "cabines de presse",
+ "type": 2
+ },
+ {
+ "keyword": "stand de presse",
+ "hasLocution": false,
+ "plural": "stands de presse",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "death"
+ ],
+ "synsets": [
+ "01313763-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 34272,
+ "created": "2018-12-15T23:54:34.000Z",
+ "lastUpdated": "2021-07-21T17:01:15.095Z",
+ "keywords": [
+ {
+ "keyword": "creuser une tombe",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "hygiene product",
+ "cosmetic",
+ "nursing equipment"
+ ],
+ "synsets": [],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "fashion",
+ "cosmetic",
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 34274,
+ "created": "2018-12-15T23:58:05.000Z",
+ "lastUpdated": "2021-07-21T02:05:33.289Z",
+ "keywords": [
+ {
+ "keyword": "parapharmacie",
+ "hasLocution": false,
+ "plural": "parapharmacies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "00145265-n",
+ "05730815-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 34276,
+ "created": "2018-12-16T00:00:50.000Z",
+ "lastUpdated": "2021-07-21T02:05:20.810Z",
+ "keywords": [
+ {
+ "keyword": "fourmillement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fourmillements"
+ },
+ {
+ "keyword": "picotement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "picotements"
+ },
+ {
+ "keyword": "chatouillement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chatouillements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "prehistory"
+ ],
+ "synsets": [
+ "09922184-n",
+ "02477709-n"
+ ],
+ "tags": [
+ "history",
+ "prehistory"
+ ],
+ "_id": 34259,
+ "created": "2018-12-15T23:36:49.000Z",
+ "lastUpdated": "2021-07-18T08:16:31.981Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "femme des cavernes",
+ "hasLocution": false,
+ "plural": "femmes des cavernes"
+ },
+ {
+ "keyword": "femme préhistorique",
+ "hasLocution": false,
+ "plural": "femmes préhistoriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00775604-n",
+ "00420921-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 34263,
+ "created": "2018-12-15T23:41:08.000Z",
+ "lastUpdated": "2021-07-18T08:15:25.369Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "abus sexuel",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "maltraitance",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "orthopedic product"
+ ],
+ "synsets": [
+ "00050369-v",
+ "03511871-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 34279,
+ "created": "2018-12-16T00:03:11.000Z",
+ "lastUpdated": "2021-07-21T17:01:11.771Z",
+ "keywords": [
+ {
+ "keyword": "mettre son appareil auditif",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "fish"
+ ],
+ "synsets": [
+ "03727779-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 34284,
+ "created": "2018-12-16T00:16:32.000Z",
+ "lastUpdated": "2021-07-21T02:03:20.441Z",
+ "keywords": [
+ {
+ "keyword": "poissonnerie",
+ "hasLocution": true,
+ "plural": "poissonneries",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "wedding"
+ ],
+ "synsets": [
+ "00881285-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "wedding"
+ ],
+ "_id": 34286,
+ "created": "2018-12-16T00:18:06.000Z",
+ "lastUpdated": "2021-07-21T17:01:06.561Z",
+ "keywords": [
+ {
+ "keyword": "demander en mariage",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 34288,
+ "created": "2018-12-16T00:23:40.000Z",
+ "lastUpdated": "2021-07-21T02:02:39.747Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "balles de massage",
+ "keyword": "balle de massage"
+ },
+ {
+ "keyword": "balle à picots",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "balles à picots"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 34290,
+ "created": "2018-12-16T00:26:54.000Z",
+ "lastUpdated": "2021-07-21T01:58:35.224Z",
+ "keywords": [
+ {
+ "keyword": "thérasuit",
+ "hasLocution": false,
+ "plural": "thérasuits",
+ "type": 2
+ },
+ {
+ "keyword": "combinaison thérasuit",
+ "hasLocution": false,
+ "plural": "combinaisons thérasuits",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "pet"
+ ],
+ "synsets": [
+ "00036355-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "pet"
+ ],
+ "_id": 34294,
+ "created": "2018-12-16T00:33:24.000Z",
+ "lastUpdated": "2021-07-21T01:56:04.474Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "baigner un animal",
+ "hasLocution": false
+ },
+ {
+ "keyword": "laver un animal",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner un bain à un animal",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physiotherapy"
+ ],
+ "synsets": [
+ "00270891-v",
+ "10447528-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "physiotherapy"
+ ],
+ "_id": 34292,
+ "created": "2018-12-16T00:29:17.000Z",
+ "lastUpdated": "2022-06-28T14:22:11.442Z",
+ "keywords": [
+ {
+ "keyword": "mobiliser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade"
+ ],
+ "synsets": [
+ "03121181-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 34298,
+ "created": "2018-12-16T00:41:10.000Z",
+ "lastUpdated": "2021-07-21T01:53:17.306Z",
+ "keywords": [
+ {
+ "keyword": "comptoir",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "comptoirs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "theater"
+ ],
+ "synsets": [
+ "02708060-n",
+ "02780932-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "scenic art",
+ "theater",
+ "show"
+ ],
+ "_id": 34300,
+ "created": "2018-12-16T00:42:42.000Z",
+ "lastUpdated": "2021-09-08T11:13:36.182Z",
+ "keywords": [
+ {
+ "keyword": "balcon",
+ "hasLocution": true,
+ "plural": "balcons",
+ "type": 2
+ },
+ {
+ "keyword": "amphithéâtre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "amphithéâtres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07710757-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 34302,
+ "created": "2018-12-16T00:44:49.000Z",
+ "lastUpdated": "2021-07-21T01:51:08.504Z",
+ "keywords": [
+ {
+ "keyword": "gaufrette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gaufrettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural disaster"
+ ],
+ "synsets": [
+ "11482224-n",
+ "11482925-n"
+ ],
+ "tags": [
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 34296,
+ "created": "2018-12-16T00:35:59.000Z",
+ "lastUpdated": "2021-07-21T01:54:57.302Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tempêtes",
+ "keyword": "tempête"
+ },
+ {
+ "keyword": "vent fort",
+ "hasLocution": false,
+ "plural": "vents forts",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "coup de vent",
+ "plural": "coups de vent"
+ },
+ {
+ "keyword": "vent violent",
+ "hasLocution": false,
+ "plural": "vents violents",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "08661788-n",
+ "14564367-n",
+ "14565454-n",
+ "07376986-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34304,
+ "created": "2018-12-16T00:48:52.000Z",
+ "lastUpdated": "2021-07-21T01:50:23.471Z",
+ "keywords": [
+ {
+ "keyword": "risque de chute",
+ "hasLocution": false,
+ "plural": "risques de chute",
+ "type": 2
+ },
+ {
+ "keyword": "danger de chute",
+ "hasLocution": false,
+ "plural": "dangers de chute",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "geology",
+ "paleontology"
+ ],
+ "synsets": [
+ "03486255-n",
+ "03935681-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "geology",
+ "paleontology"
+ ],
+ "_id": 34306,
+ "created": "2018-12-16T00:53:24.000Z",
+ "lastUpdated": "2021-07-21T01:48:56.340Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "pic à pierre",
+ "plural": "pics à pierre"
+ },
+ {
+ "keyword": "marteau à pointe",
+ "hasLocution": false,
+ "plural": "marteaux à pointe",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "pet"
+ ],
+ "synsets": [
+ "00256577-n",
+ "03926763-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "animal",
+ "pet"
+ ],
+ "_id": 34308,
+ "created": "2018-12-16T01:05:26.000Z",
+ "lastUpdated": "2021-07-21T01:18:48.184Z",
+ "keywords": [
+ {
+ "keyword": "toilettage",
+ "hasLocution": false,
+ "plural": "toilettages",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "extinct being"
+ ],
+ "synsets": [
+ "02133197-n"
+ ],
+ "tags": [
+ "extinct being",
+ "paleontology"
+ ],
+ "_id": 34310,
+ "created": "2018-12-16T01:11:25.000Z",
+ "lastUpdated": "2021-07-21T01:17:51.012Z",
+ "keywords": [
+ {
+ "keyword": "tigre à dents de sabre",
+ "hasLocution": false,
+ "plural": "tigres à dents de sabre",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "orthopedic product"
+ ],
+ "synsets": [
+ "00050369-v",
+ "03511871-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 34278,
+ "created": "2018-12-16T00:03:11.000Z",
+ "lastUpdated": "2021-07-21T02:03:57.468Z",
+ "keywords": [
+ {
+ "keyword": "mettre son appareil auditif",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "orthopedic product"
+ ],
+ "synsets": [
+ "00050369-v",
+ "03511871-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 34280,
+ "created": "2018-12-16T00:03:11.000Z",
+ "lastUpdated": "2021-07-21T02:03:45.108Z",
+ "keywords": [
+ {
+ "keyword": "mettre son appareil auditif",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "industrial building",
+ "workplace",
+ "special education",
+ "signaling system"
+ ],
+ "synsets": [],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "industry",
+ "workplace",
+ "special education",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34312,
+ "created": "2018-12-16T01:17:19.000Z",
+ "lastUpdated": "2021-08-18T15:39:31.629Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ESAT",
+ "keyword": "ESAT"
+ },
+ {
+ "keyword": "entreprise adaptée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "entreprises adaptées"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "atelier adapté",
+ "plural": "ateliers adaptés"
+ },
+ {
+ "keyword": "établissement et service d'aide par le travail",
+ "hasLocution": false,
+ "plural": "établissements et services d'aide par le travail",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cinema",
+ "show"
+ ],
+ "synsets": [
+ "02155378-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "scenic art",
+ "cinema",
+ "show",
+ "leisure",
+ "work"
+ ],
+ "_id": 34319,
+ "created": "2018-12-20T13:36:12.000Z",
+ "lastUpdated": "2024-12-08T15:45:21.253Z",
+ "keywords": [
+ {
+ "keyword": "regarder un film",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "voir un film",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "teaching activity"
+ ],
+ "synsets": [
+ "08327319-n",
+ "15228025-n"
+ ],
+ "tags": [
+ "education",
+ "teaching activity"
+ ],
+ "_id": 34325,
+ "created": "2018-12-20T13:37:55.000Z",
+ "lastUpdated": "2021-08-01T21:52:27.488Z",
+ "keywords": [
+ {
+ "keyword": "temps de parole",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "temps de parole"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "temps de groupe",
+ "plural": "temps de groupe"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "signaling system"
+ ],
+ "synsets": [
+ "03689034-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34327,
+ "created": "2018-12-20T13:46:21.000Z",
+ "lastUpdated": "2021-07-28T16:00:31.439Z",
+ "keywords": [
+ {
+ "keyword": "vestiaires de l'équipe locale",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "casiers de l'équipe locale",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "signaling system"
+ ],
+ "synsets": [
+ "03689034-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34329,
+ "created": "2018-12-20T13:47:11.000Z",
+ "lastUpdated": "2021-07-21T00:52:46.296Z",
+ "keywords": [
+ {
+ "keyword": "vestiaire des visiteurs",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vestiaires des visiteurs"
+ },
+ {
+ "keyword": "casiers visiteurs",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "casiers visiteurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public building",
+ "signaling system"
+ ],
+ "synsets": [
+ "08374456-n",
+ "09990915-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "public administration",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34331,
+ "created": "2018-12-20T13:49:51.000Z",
+ "lastUpdated": "2021-07-21T00:51:05.889Z",
+ "keywords": [
+ {
+ "keyword": "hôtel de ville",
+ "hasLocution": false,
+ "plural": "hôtels de ville",
+ "type": 2
+ },
+ {
+ "keyword": "mairie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "mairies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "cinema"
+ ],
+ "synsets": [
+ "03036237-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "scenic art",
+ "cinema",
+ "show"
+ ],
+ "_id": 34333,
+ "created": "2018-12-20T13:51:42.000Z",
+ "lastUpdated": "2021-07-21T00:50:16.043Z",
+ "keywords": [
+ {
+ "keyword": "cinéma 4-D",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cinémas 4-D"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility"
+ ],
+ "synsets": [
+ "04228890-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 34335,
+ "created": "2018-12-20T13:54:01.000Z",
+ "lastUpdated": "2021-07-21T00:48:05.556Z",
+ "keywords": [
+ {
+ "keyword": "simulateur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "simulateurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena",
+ "road safety"
+ ],
+ "synsets": [
+ "13506473-n"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena",
+ "movement",
+ "traffic",
+ "road safety"
+ ],
+ "_id": 34323,
+ "created": "2018-12-20T13:37:09.000Z",
+ "lastUpdated": "2021-07-18T08:01:39.138Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gelée",
+ "hasLocution": false
+ },
+ {
+ "keyword": "verglas",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre"
+ ],
+ "synsets": [
+ "03752065-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building"
+ ],
+ "_id": 34337,
+ "created": "2018-12-20T14:01:14.000Z",
+ "lastUpdated": "2021-07-21T00:47:40.040Z",
+ "keywords": [
+ {
+ "keyword": "unité de long séjour",
+ "hasLocution": false,
+ "plural": "unités de long séjour",
+ "type": 2
+ },
+ {
+ "keyword": "service de court séjour",
+ "hasLocution": false,
+ "plural": "service de court séjour ",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "07219764-n",
+ "00024715-r",
+ "00818217-v",
+ "02217607-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 34341,
+ "created": "2019-03-05T11:53:31.000Z",
+ "lastUpdated": "2024-10-13T06:13:37.694Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "non",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "nier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "refuser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "dénier",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "bullying"
+ ],
+ "synsets": [
+ "01419525-v",
+ "00134488-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "bullying"
+ ],
+ "_id": 34343,
+ "created": "2019-03-05T11:56:47.000Z",
+ "lastUpdated": "2021-07-18T07:57:41.167Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gifle",
+ "hasLocution": false
+ },
+ {
+ "keyword": "gifler",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "frapper",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "gender violence",
+ "bullying"
+ ],
+ "synsets": [
+ "01419525-v",
+ "00134488-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "gender violence",
+ "bullying"
+ ],
+ "_id": 34345,
+ "created": "2019-03-05T11:56:47.000Z",
+ "lastUpdated": "2021-07-18T07:57:03.877Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gifle",
+ "hasLocution": false,
+ "plural": "gifles"
+ },
+ {
+ "keyword": "gifler",
+ "hasLocution": false,
+ "type": 3,
+ "plural": "gifler"
+ },
+ {
+ "keyword": "frapper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "gender violence",
+ "bullying"
+ ],
+ "synsets": [
+ "01419525-v",
+ "00134488-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "gender violence",
+ "bullying"
+ ],
+ "_id": 34344,
+ "created": "2019-03-05T11:56:47.000Z",
+ "lastUpdated": "2021-07-18T07:57:23.053Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gifle",
+ "hasLocution": false
+ },
+ {
+ "keyword": "gifler",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "frapper",
+ "type": 3,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "gender violence",
+ "bullying"
+ ],
+ "synsets": [
+ "01373226-v",
+ "01122487-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "gender violence",
+ "bullying"
+ ],
+ "_id": 34349,
+ "created": "2019-03-05T11:58:50.000Z",
+ "lastUpdated": "2021-07-18T07:56:08.534Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frapper",
+ "hasLocution": false
+ },
+ {
+ "keyword": "cogner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner un coup de pied",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "law and justice"
+ ],
+ "synsets": [
+ "10806193-n",
+ "10805709-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 34351,
+ "created": "2019-03-05T12:00:34.000Z",
+ "lastUpdated": "2021-07-18T07:55:35.727Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "témoin",
+ "hasLocution": true,
+ "plural": "témoins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport",
+ "security and defense",
+ "road safety"
+ ],
+ "synsets": [
+ "00751382-v",
+ "00751211-v",
+ "01935739-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "road safety"
+ ],
+ "_id": 34353,
+ "created": "2019-03-05T12:02:59.000Z",
+ "lastUpdated": "2024-12-05T18:24:19.470Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "diriger",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "diriger la circulation",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "fishing",
+ "wild animal"
+ ],
+ "synsets": [
+ "02520955-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "work",
+ "primary sector",
+ "fishing",
+ "wild"
+ ],
+ "_id": 34355,
+ "created": "2019-03-05T12:07:05.000Z",
+ "lastUpdated": "2021-07-21T00:44:58.396Z",
+ "keywords": [
+ {
+ "keyword": "silure glane",
+ "hasLocution": false,
+ "plural": "silures glanes",
+ "type": 2
+ },
+ {
+ "keyword": "silure",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "silures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "derived material",
+ "vehicle component",
+ "mode of transport"
+ ],
+ "synsets": [
+ "14991055-n"
+ ],
+ "tags": [
+ "material",
+ "derived material",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component"
+ ],
+ "_id": 34357,
+ "created": "2019-03-05T12:08:07.000Z",
+ "lastUpdated": "2024-12-09T06:13:55.270Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "huile",
+ "hasLocution": true,
+ "plural": "huiles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34317,
+ "created": "2018-12-20T13:33:05.000Z",
+ "lastUpdated": "2021-09-11T21:54:00.358Z",
+ "keywords": [
+ {
+ "keyword": " rencontre de médiation familiale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "rencontres de médiation familiale"
+ },
+ {
+ "keyword": "espace de rencontre parents-enfants",
+ "hasLocution": false,
+ "plural": "espaces de rencontre parents-enfants",
+ "type": 2
+ },
+ {
+ "keyword": "médiation parent-enfant",
+ "hasLocution": false,
+ "plural": "médiations parent-enfant",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cinema",
+ "core vocabulary-communication",
+ "show"
+ ],
+ "synsets": [
+ "02155378-v"
+ ],
+ "tags": [
+ "scenic art",
+ "cinema",
+ "show",
+ "core vocabulary",
+ "leisure",
+ "work"
+ ],
+ "_id": 34320,
+ "created": "2018-12-20T13:36:12.000Z",
+ "lastUpdated": "2024-12-08T15:45:10.459Z",
+ "keywords": [
+ {
+ "keyword": "regarder un film",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "voir un film",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "condiment",
+ "cookery"
+ ],
+ "synsets": [
+ "07825344-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment",
+ "cookery"
+ ],
+ "_id": 34359,
+ "created": "2019-03-05T12:11:59.000Z",
+ "lastUpdated": "2021-07-18T07:55:02.987Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "assaisonnement",
+ "hasLocution": false,
+ "plural": "assaisonnements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "letter",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "06841868-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "letter",
+ "core vocabulary"
+ ],
+ "_id": 34361,
+ "created": "2019-03-05T12:13:23.000Z",
+ "lastUpdated": "2021-07-18T07:54:43.757Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "lettre",
+ "hasLocution": true,
+ "plural": "lettres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "summer",
+ "beach"
+ ],
+ "synsets": [
+ "02913195-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "summer",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 34363,
+ "created": "2019-03-05T12:19:19.000Z",
+ "lastUpdated": "2024-12-11T17:34:42.567Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "seau",
+ "hasLocution": false,
+ "plural": "seaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "00007012-v",
+ "02105324-v",
+ "00004227-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 34365,
+ "created": "2019-03-05T12:22:07.000Z",
+ "lastUpdated": "2021-07-18T07:54:17.848Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "souffler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "expirer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01978076-v",
+ "01987278-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 34367,
+ "created": "2019-03-05T12:22:56.000Z",
+ "lastUpdated": "2021-07-18T07:53:59.369Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se lever",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se relever",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "01427110-v",
+ "01428162-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 34369,
+ "created": "2019-03-05T12:24:54.000Z",
+ "lastUpdated": "2021-07-18T07:53:33.757Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "serrer dans les bras",
+ "hasLocution": true
+ },
+ {
+ "keyword": "embrasser",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "câliner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "covid-19"
+ ],
+ "synsets": [
+ "00001740-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "covid-19"
+ ],
+ "_id": 34377,
+ "created": "2019-03-05T12:33:38.000Z",
+ "lastUpdated": "2021-07-18T07:52:07.463Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "respirer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "diving"
+ ],
+ "synsets": [
+ "10039131-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "diving"
+ ],
+ "_id": 34379,
+ "created": "2019-03-05T12:34:44.000Z",
+ "lastUpdated": "2021-07-18T07:52:02.297Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "plongeur",
+ "hasLocution": true,
+ "plural": "plongeurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "00663583-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 34381,
+ "created": "2019-03-05T12:36:05.000Z",
+ "lastUpdated": "2021-07-21T00:34:24.646Z",
+ "keywords": [
+ {
+ "keyword": "chimiothérapie",
+ "hasLocution": false,
+ "plural": "chimiothérapies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "atmospheric phenomena",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "02776675-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "meteorology",
+ "atmospheric phenomena",
+ "core vocabulary"
+ ],
+ "_id": 34383,
+ "created": "2019-03-05T12:37:39.000Z",
+ "lastUpdated": "2021-07-18T07:51:31.083Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se couvrir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container"
+ ],
+ "synsets": [
+ "03254659-n"
+ ],
+ "tags": [
+ "object",
+ "container"
+ ],
+ "_id": 34385,
+ "created": "2019-03-05T12:38:38.000Z",
+ "lastUpdated": "2021-07-18T07:51:18.241Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bidon",
+ "hasLocution": true,
+ "plural": "bidons"
+ },
+ {
+ "keyword": "baril",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "barils"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "region"
+ ],
+ "synsets": [
+ "09463304-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "region"
+ ],
+ "_id": 34387,
+ "created": "2019-03-05T12:39:22.000Z",
+ "lastUpdated": "2021-07-18T07:50:42.538Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Amérique du Sud",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "integumentary system"
+ ],
+ "synsets": [
+ "10025839-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "human physiology",
+ "physiology",
+ "integumentary system"
+ ],
+ "_id": 34373,
+ "created": "2019-03-05T12:29:58.000Z",
+ "lastUpdated": "2021-07-18T07:52:38.970Z",
+ "keywords": [
+ {
+ "keyword": "dermatologue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dermatologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "river",
+ "egypt"
+ ],
+ "synsets": [
+ "09394271-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "river",
+ "history",
+ "civilization",
+ "Egypt"
+ ],
+ "_id": 34389,
+ "created": "2019-03-05T12:46:35.000Z",
+ "lastUpdated": "2021-06-16T14:02:21.566Z",
+ "keywords": [
+ {
+ "keyword": "Nil",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "river"
+ ],
+ "synsets": [
+ "09386317-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "river"
+ ],
+ "_id": 34391,
+ "created": "2019-03-05T12:48:20.000Z",
+ "lastUpdated": "2021-07-21T00:34:15.812Z",
+ "keywords": [
+ {
+ "keyword": "Murray",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "professional"
+ ],
+ "synsets": [
+ "02418610-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "professional"
+ ],
+ "_id": 34393,
+ "created": "2019-03-05T12:50:28.000Z",
+ "lastUpdated": "2021-07-18T07:50:11.892Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Avoir une profession, exercer un métier",
+ "keyword": "travailler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur",
+ "paleontology",
+ "verb"
+ ],
+ "synsets": [
+ "02148002-v"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 34397,
+ "created": "2019-03-05T12:56:27.000Z",
+ "lastUpdated": "2021-07-21T00:33:38.306Z",
+ "keywords": [
+ {
+ "keyword": "déterrer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "creuser",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "découvrir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "footwear",
+ "categorization"
+ ],
+ "synsets": [
+ "03423924-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "footwear",
+ "categorization"
+ ],
+ "_id": 34395,
+ "created": "2019-03-05T12:55:10.000Z",
+ "lastUpdated": "2021-07-18T07:50:03.886Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vêtement",
+ "hasLocution": true,
+ "plural": "vêtements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10778715-n",
+ "00481222-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 34399,
+ "created": "2019-03-05T13:01:05.000Z",
+ "lastUpdated": "2021-07-18T07:49:11.460Z",
+ "keywords": [
+ {
+ "keyword": "volleyeuse",
+ "hasLocution": false,
+ "plural": "volleyeuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10198922-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 34401,
+ "created": "2019-03-05T13:02:26.000Z",
+ "lastUpdated": "2021-07-21T00:32:55.760Z",
+ "keywords": [
+ {
+ "keyword": "hockeyeuse sur gazon",
+ "hasLocution": false,
+ "plural": "hockeyeuses sur gazon",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00630153-v",
+ "01640708-v",
+ "00710367-v",
+ "00610362-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 34403,
+ "created": "2019-03-05T13:03:20.000Z",
+ "lastUpdated": "2021-07-18T07:47:47.753Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "penser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media device"
+ ],
+ "synsets": [
+ "00791110-v",
+ "00965602-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media"
+ ],
+ "_id": 34405,
+ "created": "2019-03-05T13:04:03.000Z",
+ "lastUpdated": "2021-07-18T07:47:44.825Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "parler au téléphone",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01309314-v",
+ "02522260-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 34407,
+ "created": "2019-03-05T13:05:24.000Z",
+ "lastUpdated": "2021-07-18T07:47:37.463Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "Griffer",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "Érafler",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "Égratigner",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01252288-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 34371,
+ "created": "2019-03-05T12:25:36.000Z",
+ "lastUpdated": "2021-07-18T07:53:09.130Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frotter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "gommer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "waste disposal"
+ ],
+ "synsets": [
+ "09946547-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "waste disposal"
+ ],
+ "_id": 34411,
+ "created": "2019-03-05T13:12:07.000Z",
+ "lastUpdated": "2021-04-30T12:54:41.427Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "personne d'entretien",
+ "plural": "personnes d'entretien"
+ },
+ {
+ "keyword": "personne du nettoyage",
+ "hasLocution": false,
+ "plural": "personnes du nettoyage",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "integumentary system"
+ ],
+ "synsets": [
+ "10025839-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "human physiology",
+ "physiology",
+ "integumentary system"
+ ],
+ "_id": 34375,
+ "created": "2019-03-05T12:30:16.000Z",
+ "lastUpdated": "2021-07-21T00:34:34.619Z",
+ "keywords": [
+ {
+ "keyword": "dermatologue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dermatologue"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "00480451-n",
+ "10658320-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 34413,
+ "created": "2019-03-05T13:14:31.000Z",
+ "lastUpdated": "2021-07-18T07:47:25.861Z",
+ "keywords": [
+ {
+ "keyword": "handballeuse",
+ "hasLocution": false,
+ "plural": "handballeuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "amphibian",
+ "oviparous",
+ "river animal"
+ ],
+ "synsets": [
+ "01652589-n",
+ "01647014-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "amphibian",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river"
+ ],
+ "_id": 34415,
+ "created": "2019-03-05T13:17:56.000Z",
+ "lastUpdated": "2021-04-30T12:56:48.113Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "rainette",
+ "plural": "rainettes"
+ },
+ {
+ "keyword": "amphibien",
+ "hasLocution": false,
+ "plural": "amphibiens",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "fish-animal",
+ "oviparous",
+ "marine animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02623888-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "wild"
+ ],
+ "_id": 34417,
+ "created": "2019-03-05T13:21:31.000Z",
+ "lastUpdated": "2021-07-21T00:32:43.970Z",
+ "keywords": [
+ {
+ "keyword": "poisson-chirurgien ",
+ "hasLocution": false,
+ "plural": "poissons-chirurgiens",
+ "type": 2
+ },
+ {
+ "keyword": "poisson-palette",
+ "hasLocution": false,
+ "plural": "poissons-palettes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal"
+ ],
+ "synsets": [
+ "01441361-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river"
+ ],
+ "_id": 34419,
+ "created": "2019-03-05T13:23:12.000Z",
+ "lastUpdated": "2021-07-21T00:30:35.884Z",
+ "keywords": [
+ {
+ "keyword": "rasbora arlequin",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "rasboras arlequins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02492850-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "mammal",
+ "viviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 34421,
+ "created": "2019-03-05T13:25:40.000Z",
+ "lastUpdated": "2021-04-30T13:16:32.692Z",
+ "keywords": [
+ {
+ "keyword": "marmouset",
+ "hasLocution": false,
+ "plural": "marmousets",
+ "type": 2
+ },
+ {
+ "keyword": "ouistiti",
+ "hasLocution": false,
+ "plural": "ouistitis",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "covid-19"
+ ],
+ "synsets": [
+ "00001740-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "covid-19"
+ ],
+ "_id": 34409,
+ "created": "2019-03-05T13:07:10.000Z",
+ "lastUpdated": "2021-07-18T07:47:34.014Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "respirer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal"
+ ],
+ "synsets": [],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river"
+ ],
+ "_id": 34425,
+ "created": "2019-03-05T13:30:47.000Z",
+ "lastUpdated": "2021-04-30T13:10:34.921Z",
+ "keywords": [
+ {
+ "keyword": "gourami",
+ "hasLocution": false,
+ "plural": "gouramis",
+ "type": 2
+ },
+ {
+ "keyword": "poisson tropical",
+ "hasLocution": false,
+ "plural": "poissons tropicaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02623208-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "wild"
+ ],
+ "_id": 34431,
+ "created": "2019-03-05T13:44:38.000Z",
+ "lastUpdated": "2021-04-30T13:05:01.479Z",
+ "keywords": [
+ {
+ "keyword": "poisson-archer",
+ "hasLocution": false,
+ "plural": "poissons-archers",
+ "type": 2
+ },
+ {
+ "keyword": "toxote",
+ "hasLocution": false,
+ "plural": "toxotes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02547385-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "wild"
+ ],
+ "_id": 34429,
+ "created": "2019-03-05T13:41:53.000Z",
+ "lastUpdated": "2021-04-30T13:07:32.920Z",
+ "keywords": [
+ {
+ "keyword": "arowana australien",
+ "hasLocution": false,
+ "plural": "arowanas australiens",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur"
+ ],
+ "synsets": [
+ "01702472-n",
+ "01717890-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 34435,
+ "created": "2019-03-05T13:53:22.000Z",
+ "lastUpdated": "2021-04-30T13:01:01.676Z",
+ "keywords": [
+ {
+ "keyword": "Torvosaurus",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "reptile",
+ "oviparous",
+ "river animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01700098-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "reptile",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "wild"
+ ],
+ "_id": 34433,
+ "created": "2019-03-05T13:50:46.000Z",
+ "lastUpdated": "2021-04-30T13:01:43.269Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crocodile",
+ "hasLocution": true,
+ "plural": "crocodiles"
+ },
+ {
+ "keyword": "crocodile du Nil",
+ "hasLocution": false,
+ "plural": "crocodiles du Nil",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur"
+ ],
+ "synsets": [
+ "01702472-n",
+ "01711639-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 34437,
+ "created": "2019-03-05T13:54:40.000Z",
+ "lastUpdated": "2021-04-30T13:00:29.637Z",
+ "keywords": [
+ {
+ "keyword": "Aragosaurus ischiaticus",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Aragosaurus",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur"
+ ],
+ "synsets": [
+ "01702472-n",
+ "01714649-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 34439,
+ "created": "2019-03-05T13:58:05.000Z",
+ "lastUpdated": "2021-04-30T12:59:05.261Z",
+ "keywords": [
+ {
+ "keyword": "Baryonyx",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "domestic animal",
+ "pet"
+ ],
+ "synsets": [
+ "01442155-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "domestic",
+ "pet"
+ ],
+ "_id": 34427,
+ "created": "2019-03-05T13:37:37.000Z",
+ "lastUpdated": "2021-04-30T13:09:02.865Z",
+ "keywords": [
+ {
+ "keyword": "carpe Koï",
+ "hasLocution": false,
+ "plural": "carpes Koïs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal"
+ ],
+ "synsets": [
+ "01441361-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river"
+ ],
+ "_id": 34423,
+ "created": "2019-03-05T13:27:18.000Z",
+ "lastUpdated": "2021-04-30T13:12:55.256Z",
+ "keywords": [
+ {
+ "keyword": "requin bala",
+ "hasLocution": false,
+ "plural": "requins balas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "00465546-n",
+ "10459618-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 34449,
+ "created": "2019-03-05T14:07:18.000Z",
+ "lastUpdated": "2021-07-18T07:46:09.100Z",
+ "keywords": [
+ {
+ "keyword": "joueuse de waterpolo",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "joueuses de waterpolo"
+ },
+ {
+ "keyword": "waterpoliste",
+ "hasLocution": false,
+ "plural": "waterpolistes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective"
+ ],
+ "synsets": [
+ "02209976-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective"
+ ],
+ "_id": 34447,
+ "created": "2019-03-05T14:05:50.000Z",
+ "lastUpdated": "2021-09-02T11:39:24.247Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "troisième",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "waste disposal"
+ ],
+ "synsets": [
+ "10802821-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "waste disposal"
+ ],
+ "_id": 34451,
+ "created": "2019-03-05T14:10:59.000Z",
+ "lastUpdated": "2021-07-18T07:45:05.570Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "laveur de vitres",
+ "hasLocution": true,
+ "plural": "laveurs de vitres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "show",
+ "musical art"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "show",
+ "work",
+ "music"
+ ],
+ "_id": 34455,
+ "created": "2019-03-05T18:00:46.000Z",
+ "lastUpdated": "2021-07-18T07:44:53.298Z",
+ "keywords": [
+ {
+ "keyword": "batucada",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "batucadas"
+ },
+ {
+ "keyword": "fanfare",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fanfare"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "political representation"
+ ],
+ "synsets": [
+ "09975260-n",
+ "10657783-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "political representation"
+ ],
+ "_id": 34457,
+ "created": "2019-03-05T18:03:54.000Z",
+ "lastUpdated": "2021-07-26T07:59:16.546Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "congressiste",
+ "hasLocution": true,
+ "plural": "congressiste"
+ },
+ {
+ "keyword": "législatrice",
+ "hasLocution": false,
+ "plural": "législatrices",
+ "type": 2
+ },
+ {
+ "keyword": "déléguée",
+ "hasLocution": false,
+ "plural": "déléguées",
+ "type": 2
+ },
+ {
+ "keyword": "députée",
+ "hasLocution": false,
+ "plural": "députée",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01285811-v",
+ "01335412-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 34459,
+ "created": "2019-03-05T18:04:41.000Z",
+ "lastUpdated": "2021-07-18T07:43:12.090Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couvrir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur"
+ ],
+ "synsets": [
+ "01702472-n",
+ "01711639-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 34441,
+ "created": "2019-03-05T14:00:54.000Z",
+ "lastUpdated": "2021-04-30T12:58:16.238Z",
+ "keywords": [
+ {
+ "keyword": "Brachiosaurus",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine",
+ "trousseau"
+ ],
+ "synsets": [
+ "01285811-v",
+ "01335412-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine",
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 34465,
+ "created": "2019-03-05T18:07:33.000Z",
+ "lastUpdated": "2024-12-05T10:45:49.078Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couvrir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body sensation"
+ ],
+ "synsets": [
+ "00007328-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 34463,
+ "created": "2019-03-05T18:06:53.000Z",
+ "lastUpdated": "2021-07-18T07:42:55.603Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "bailler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical notation"
+ ],
+ "synsets": [
+ "01736802-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music",
+ "musical notation",
+ "musical composition"
+ ],
+ "_id": 34443,
+ "created": "2019-03-05T14:03:52.000Z",
+ "lastUpdated": "2021-04-30T12:57:44.121Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "diriger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "04531608-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 34461,
+ "created": "2019-03-05T18:05:43.000Z",
+ "lastUpdated": "2021-07-18T07:43:07.476Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "véhicule",
+ "hasLocution": true,
+ "plural": "véhicules"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "polite set expression"
+ ],
+ "synsets": [
+ "06642117-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 34467,
+ "created": "2019-03-05T18:08:40.000Z",
+ "lastUpdated": "2021-07-18T07:42:17.946Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "au revoir",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "à tout à l'heure",
+ "hasLocution": true
+ },
+ {
+ "type": 5,
+ "keyword": "au revoir ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "à plus",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "covid-19"
+ ],
+ "synsets": [
+ "00034941-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "covid-19"
+ ],
+ "_id": 34469,
+ "created": "2019-03-05T18:09:59.000Z",
+ "lastUpdated": "2021-07-18T07:41:50.228Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "moucher",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se moucher le nez",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "education professionals",
+ "educational staff"
+ ],
+ "synsets": [
+ "10272244-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education"
+ ],
+ "_id": 34471,
+ "created": "2019-03-05T18:11:11.000Z",
+ "lastUpdated": "2021-07-21T00:26:48.611Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conférencière",
+ "hasLocution": false,
+ "plural": "conférencières"
+ },
+ {
+ "keyword": "professeure",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "professeures"
+ },
+ {
+ "keyword": "oratrice",
+ "hasLocution": false,
+ "plural": "oratrices",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective",
+ "person according to their age"
+ ],
+ "synsets": [
+ "00346567-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective",
+ "person"
+ ],
+ "_id": 34475,
+ "created": "2019-03-05T18:13:05.000Z",
+ "lastUpdated": "2024-12-12T06:48:36.997Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quatrième",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "adapted sport",
+ "basketball"
+ ],
+ "synsets": [
+ "00482004-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "adapted sport",
+ "basketball"
+ ],
+ "_id": 34473,
+ "created": "2019-03-05T18:12:13.000Z",
+ "lastUpdated": "2021-03-25T22:44:00.953Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "basket en fauteuil",
+ "hasLocution": false
+ },
+ {
+ "keyword": "basket adapté",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "legal institution"
+ ],
+ "synsets": [
+ "08346380-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice",
+ "legal institution"
+ ],
+ "_id": 34479,
+ "created": "2019-03-05T18:17:30.000Z",
+ "lastUpdated": "2021-07-21T00:27:02.744Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tribunal",
+ "hasLocution": true,
+ "plural": "tribunaux"
+ },
+ {
+ "keyword": "juge",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "juges"
+ },
+ {
+ "keyword": "cour",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cours"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ordinal adjective"
+ ],
+ "synsets": [
+ "13868743-n",
+ "00103431-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "ordinal adjective"
+ ],
+ "_id": 34477,
+ "created": "2019-03-05T18:13:46.000Z",
+ "lastUpdated": "2021-07-18T07:40:00.230Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "deuxième",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "second",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "legal institution"
+ ],
+ "synsets": [
+ "08346380-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice",
+ "legal institution"
+ ],
+ "_id": 34480,
+ "created": "2019-03-05T18:17:30.000Z",
+ "lastUpdated": "2021-07-18T07:39:34.902Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tribunal",
+ "hasLocution": true,
+ "plural": "tribunaux"
+ },
+ {
+ "keyword": "cour",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cours"
+ },
+ {
+ "keyword": "juge",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "juges"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "color"
+ ],
+ "synsets": [
+ "04978025-n"
+ ],
+ "tags": [
+ "color"
+ ],
+ "_id": 34483,
+ "created": "2019-03-05T18:18:35.000Z",
+ "lastUpdated": "2021-07-18T07:38:38.782Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "violet",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "synsets": [
+ "07471429-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "_id": 34484,
+ "created": "2019-03-05T18:19:22.000Z",
+ "lastUpdated": "2021-07-18T07:38:18.671Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "athlétisme",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container"
+ ],
+ "synsets": [
+ "02805104-n"
+ ],
+ "tags": [
+ "object",
+ "container"
+ ],
+ "_id": 34486,
+ "created": "2019-03-05T18:20:01.000Z",
+ "lastUpdated": "2021-03-25T22:42:10.171Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "panier",
+ "hasLocution": true,
+ "plural": "paniers"
+ },
+ {
+ "keyword": "panier à linge",
+ "hasLocution": false,
+ "plural": "paniers à linge",
+ "type": 2
+ },
+ {
+ "keyword": "corbeille à linge",
+ "hasLocution": true,
+ "plural": "corbeilles à linge",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "bullying"
+ ],
+ "synsets": [
+ "01373226-v",
+ "01122487-v",
+ "00137149-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "bullying"
+ ],
+ "_id": 34488,
+ "created": "2019-03-05T20:16:04.000Z",
+ "lastUpdated": "2021-07-21T17:00:44.386Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frapper",
+ "hasLocution": false
+ },
+ {
+ "keyword": "cogner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner un coup de pied",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01092746-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 34492,
+ "created": "2019-03-05T20:19:00.000Z",
+ "lastUpdated": "2021-07-21T17:00:37.037Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se battre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se bagarrer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "gender violence"
+ ],
+ "synsets": [
+ "01402698-v",
+ "01122487-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "gender violence"
+ ],
+ "_id": 34498,
+ "created": "2019-03-05T20:21:59.000Z",
+ "lastUpdated": "2021-07-18T07:35:40.261Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "donner un coup",
+ "hasLocution": true
+ },
+ {
+ "keyword": "frapper",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "battre",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01092746-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 34496,
+ "created": "2019-03-05T20:20:51.000Z",
+ "lastUpdated": "2021-07-18T07:36:23.944Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bagarre",
+ "hasLocution": false,
+ "plural": "bagarres"
+ },
+ {
+ "type": 2,
+ "keyword": "dispute",
+ "hasLocution": false,
+ "plural": "disputes"
+ },
+ {
+ "keyword": "querelle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "querelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "gender violence"
+ ],
+ "synsets": [
+ "01402698-v",
+ "01122487-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "gender violence"
+ ],
+ "_id": 34500,
+ "created": "2019-03-05T20:24:30.000Z",
+ "lastUpdated": "2021-07-18T07:35:20.651Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "donner un coup",
+ "hasLocution": true
+ },
+ {
+ "keyword": "frapper",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "battre",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "gender violence"
+ ],
+ "synsets": [
+ "01402698-v",
+ "01122487-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "gender violence"
+ ],
+ "_id": 34501,
+ "created": "2019-03-05T20:24:30.000Z",
+ "lastUpdated": "2021-07-18T07:35:01.067Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "donner un coup",
+ "hasLocution": true
+ },
+ {
+ "keyword": "frapper",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "battre",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "00007012-v",
+ "02105324-v",
+ "00004227-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 34504,
+ "created": "2019-03-05T20:26:27.000Z",
+ "lastUpdated": "2021-07-16T16:03:17.051Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "souffler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "expirer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "birthday"
+ ],
+ "synsets": [
+ "00007012-v",
+ "02767855-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 34506,
+ "created": "2019-03-05T20:28:14.000Z",
+ "lastUpdated": "2021-07-18T07:34:33.966Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "souffler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "souffler les bougies",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00046251-v",
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 34494,
+ "created": "2019-03-05T20:20:14.000Z",
+ "lastUpdated": "2021-07-18T07:36:46.662Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'habiller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "mettre son manteau",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09895920-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 34511,
+ "created": "2019-03-05T20:32:36.000Z",
+ "lastUpdated": "2021-07-20T16:55:47.044Z",
+ "keywords": [
+ {
+ "keyword": "frères",
+ "hasLocution": false,
+ "plural": "frères",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00008299-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 34514,
+ "created": "2019-03-05T20:33:31.000Z",
+ "lastUpdated": "2021-08-04T09:04:00.034Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire un clin d'œil",
+ "hasLocution": false
+ },
+ {
+ "keyword": "cligner de l'oeil",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "cligner des yeux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "outdoor activity"
+ ],
+ "synsets": [
+ "10616097-n",
+ "10195742-n"
+ ],
+ "tags": [
+ "leisure",
+ "outdoor activity"
+ ],
+ "_id": 34516,
+ "created": "2019-03-05T20:34:21.000Z",
+ "lastUpdated": "2021-07-18T07:34:13.442Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "randonneur",
+ "hasLocution": false,
+ "plural": "randonneurs"
+ },
+ {
+ "keyword": "marcheur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "marcheurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "educational material"
+ ],
+ "synsets": [
+ "04034791-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "education",
+ "educational material"
+ ],
+ "_id": 34518,
+ "created": "2019-03-05T20:37:52.000Z",
+ "lastUpdated": "2021-07-16T16:00:09.052Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "jeu d'encastrement",
+ "plural": "jeux d'encastrement"
+ },
+ {
+ "keyword": "jeu de formes",
+ "hasLocution": false,
+ "plural": "jeux de formes",
+ "type": 2
+ },
+ {
+ "keyword": "puzzle",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "puzzles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "gender violence",
+ "bullying"
+ ],
+ "synsets": [
+ "01373226-v",
+ "01122487-v",
+ "00137149-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "gender violence",
+ "bullying"
+ ],
+ "_id": 34489,
+ "created": "2019-03-05T20:16:04.000Z",
+ "lastUpdated": "2021-07-21T17:00:41.142Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "frapper",
+ "hasLocution": false
+ },
+ {
+ "keyword": "cogner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner un coup de pied",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual practice"
+ ],
+ "synsets": [
+ "00847184-n"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual practice"
+ ],
+ "_id": 34519,
+ "created": "2019-03-05T20:37:53.000Z",
+ "lastUpdated": "2021-07-16T15:58:24.969Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "relation sexuelle",
+ "plural": "relations sexuelles"
+ },
+ {
+ "keyword": "rapport sexuel",
+ "hasLocution": false,
+ "plural": "rapports sexuels",
+ "type": 2
+ },
+ {
+ "keyword": "acte sexuel",
+ "hasLocution": false,
+ "plural": "actes sexuels",
+ "type": 2
+ },
+ {
+ "keyword": "coït",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "coïts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "covid-19"
+ ],
+ "synsets": [
+ "00001740-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "covid-19"
+ ],
+ "_id": 34508,
+ "created": "2019-03-05T20:30:48.000Z",
+ "lastUpdated": "2021-07-16T16:02:23.971Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "respirer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "inspirer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "souffler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09895920-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 34510,
+ "created": "2019-03-05T20:32:36.000Z",
+ "lastUpdated": "2021-07-20T16:55:43.054Z",
+ "keywords": [
+ {
+ "keyword": "frères",
+ "hasLocution": false,
+ "plural": "frères",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "07218560-n",
+ "00515323-r",
+ "01013752-v",
+ "01013058-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 34521,
+ "created": "2019-03-05T20:38:56.000Z",
+ "lastUpdated": "2024-10-13T06:09:51.540Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "oui",
+ "hasLocution": true
+ },
+ {
+ "keyword": "affirmer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "acquiescer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "furniture"
+ ],
+ "synsets": [
+ "01978076-v",
+ "01986058-v",
+ "01371262-v",
+ "01987278-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "furniture"
+ ],
+ "_id": 34523,
+ "created": "2019-03-05T20:39:51.000Z",
+ "lastUpdated": "2021-07-18T07:31:20.597Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se lever",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "library science"
+ ],
+ "synsets": [
+ "10277645-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "library science"
+ ],
+ "_id": 34531,
+ "created": "2019-03-05T20:49:05.000Z",
+ "lastUpdated": "2021-07-16T15:53:08.943Z",
+ "keywords": [
+ {
+ "keyword": "bibliothécaire",
+ "hasLocution": true,
+ "plural": "bibliothécaires",
+ "type": 2
+ },
+ {
+ "keyword": "documentaliste",
+ "hasLocution": false,
+ "plural": "documentalistes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual practice"
+ ],
+ "synsets": [
+ "00847184-n",
+ "01429048-v"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual practice"
+ ],
+ "_id": 34533,
+ "created": "2019-03-05T20:49:56.000Z",
+ "lastUpdated": "2021-07-16T15:52:03.043Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "relation sexuelle",
+ "plural": "relations sexuelles"
+ },
+ {
+ "keyword": "rapport sexuel",
+ "hasLocution": false,
+ "plural": "rapports sexuels",
+ "type": 2
+ },
+ {
+ "keyword": "acte sexuel",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "actes sexuels"
+ },
+ {
+ "keyword": "coït",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "coïts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "library science"
+ ],
+ "synsets": [
+ "10277645-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "library science"
+ ],
+ "_id": 34529,
+ "created": "2019-03-05T20:44:55.000Z",
+ "lastUpdated": "2021-07-16T15:53:40.696Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bibliothécaire",
+ "hasLocution": true,
+ "plural": "bibliothécaires"
+ },
+ {
+ "keyword": "documentaliste",
+ "hasLocution": false,
+ "plural": "documentalistes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual practice"
+ ],
+ "synsets": [
+ "00847184-n",
+ "01429048-v"
+ ],
+ "tags": [
+ "sexuality",
+ "sexual practice"
+ ],
+ "_id": 34537,
+ "created": "2019-03-05T20:52:52.000Z",
+ "lastUpdated": "2021-07-16T15:46:57.480Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "plural": "relations sexuelles",
+ "keyword": "relation sexuelle"
+ },
+ {
+ "keyword": "acte sexuel",
+ "hasLocution": false,
+ "plural": "actes sexuels",
+ "type": 2
+ },
+ {
+ "keyword": "coït",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "coïts"
+ },
+ {
+ "keyword": "rapport sexuel",
+ "hasLocution": false,
+ "plural": "rapports sexuels",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "tourism"
+ ],
+ "synsets": [
+ "10761478-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 34539,
+ "created": "2019-03-05T20:53:48.000Z",
+ "lastUpdated": "2021-07-16T15:41:58.501Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guide",
+ "hasLocution": true,
+ "plural": "guides"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "tourism"
+ ],
+ "synsets": [
+ "10761478-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 34540,
+ "created": "2019-03-05T20:53:48.000Z",
+ "lastUpdated": "2021-07-16T15:41:41.346Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "guide",
+ "hasLocution": true,
+ "plural": "guides"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "light fixture"
+ ],
+ "synsets": [
+ "00292635-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "light fixture",
+ "home"
+ ],
+ "_id": 34535,
+ "created": "2019-03-05T20:50:51.000Z",
+ "lastUpdated": "2021-07-16T15:48:30.549Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": true,
+ "keyword": "éclairer"
+ },
+ {
+ "keyword": "illuminer",
+ "type": 3,
+ "hasLocution": true
+ },
+ {
+ "keyword": "allumer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "beach"
+ ],
+ "synsets": [
+ "04273596-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "outdoor activity",
+ "beach"
+ ],
+ "_id": 34543,
+ "created": "2019-03-05T20:54:49.000Z",
+ "lastUpdated": "2021-07-16T15:40:59.491Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pelle",
+ "hasLocution": true,
+ "plural": "pelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine",
+ "furniture"
+ ],
+ "synsets": [
+ "00018151-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine",
+ "object",
+ "furniture"
+ ],
+ "_id": 34525,
+ "created": "2019-03-05T20:40:31.000Z",
+ "lastUpdated": "2021-07-16T15:56:29.152Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se lever",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sortir du lit",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical artist",
+ "professional artist",
+ "musical notation",
+ "verb"
+ ],
+ "synsets": [
+ "09972018-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "music",
+ "visual art",
+ "musical notation",
+ "musical composition",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 34527,
+ "created": "2019-03-05T20:42:31.000Z",
+ "lastUpdated": "2021-07-16T15:55:56.338Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chef d'orchestre",
+ "hasLocution": true,
+ "plural": "chefs d'orchestre"
+ },
+ {
+ "keyword": "diriger",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02141219-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 34551,
+ "created": "2019-03-05T21:00:37.000Z",
+ "lastUpdated": "2021-07-18T07:31:01.809Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "refléter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work tool",
+ "construction"
+ ],
+ "synsets": [
+ "01259737-v",
+ "01165936-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tool",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 34553,
+ "created": "2019-03-05T21:01:37.000Z",
+ "lastUpdated": "2021-07-18T07:30:56.377Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "tailler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "bullying"
+ ],
+ "synsets": [
+ "01402698-v",
+ "01417939-v",
+ "01423419-v",
+ "02522260-v",
+ "00135600-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime",
+ "bullying"
+ ],
+ "_id": 34555,
+ "created": "2019-03-05T21:03:30.000Z",
+ "lastUpdated": "2021-07-18T07:30:46.166Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "cogner",
+ "hasLocution": false
+ },
+ {
+ "keyword": "frapper",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "donner un coup de poing",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "coup",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "coups"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10698501-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 34549,
+ "created": "2019-03-05T20:59:10.000Z",
+ "lastUpdated": "2021-07-18T07:31:05.769Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "surfeur",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "person according to their age"
+ ],
+ "synsets": [
+ "05224944-n"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 34557,
+ "created": "2019-03-05T21:09:32.000Z",
+ "lastUpdated": "2021-07-18T07:29:56.690Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "personne",
+ "hasLocution": true,
+ "plural": "personnes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "person according to their age",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05224944-n"
+ ],
+ "tags": [
+ "person",
+ "core vocabulary"
+ ],
+ "_id": 34558,
+ "created": "2019-03-05T21:09:32.000Z",
+ "lastUpdated": "2021-07-18T07:29:48.913Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "personne",
+ "hasLocution": true,
+ "plural": "personnes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "person according to their age"
+ ],
+ "synsets": [
+ "05224944-n"
+ ],
+ "tags": [
+ "person"
+ ],
+ "_id": 34559,
+ "created": "2019-03-05T21:09:32.000Z",
+ "lastUpdated": "2021-07-18T07:29:42.239Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "personne",
+ "hasLocution": true,
+ "plural": "personnes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament"
+ ],
+ "synsets": [
+ "03942844-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament"
+ ],
+ "_id": 34565,
+ "created": "2019-03-05T21:13:11.000Z",
+ "lastUpdated": "2021-07-28T15:27:38.534Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pilule",
+ "hasLocution": true,
+ "plural": "pilules"
+ },
+ {
+ "keyword": "comprimé",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "comprimés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "polite set expression"
+ ],
+ "synsets": [
+ "06645018-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 34567,
+ "created": "2019-03-05T21:14:37.000Z",
+ "lastUpdated": "2021-07-18T07:29:09.502Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "salut",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "saluer",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": false,
+ "keyword": "hi",
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine",
+ "fashion"
+ ],
+ "synsets": [
+ "00046251-v",
+ "00050369-v",
+ "03061006-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 34569,
+ "created": "2019-03-05T21:16:12.000Z",
+ "lastUpdated": "2024-12-08T15:51:37.117Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "habiller",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'habiller",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "mettre un manteau",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal"
+ ],
+ "synsets": [
+ "02588503-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river"
+ ],
+ "_id": 34571,
+ "created": "2019-03-06T11:30:13.000Z",
+ "lastUpdated": "2021-07-19T22:26:39.161Z",
+ "keywords": [
+ {
+ "keyword": "cichlidé princesse ",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cichlidés princesses "
+ },
+ {
+ "keyword": "Princesse du Burundi",
+ "hasLocution": false,
+ "plural": "Princesses du Burundi",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal"
+ ],
+ "synsets": [
+ "02588503-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river"
+ ],
+ "_id": 34573,
+ "created": "2019-03-06T11:33:17.000Z",
+ "lastUpdated": "2021-07-21T01:14:58.556Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "bossu du Malawi",
+ "plural": "bossu du Malawi"
+ },
+ {
+ "keyword": "frontonsa",
+ "hasLocution": false,
+ "plural": "frontonsas",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "cyphotilapia frontosa",
+ "plural": "cyphotilapias frontosas"
+ },
+ {
+ "keyword": "haplo à bosse ",
+ "hasLocution": false,
+ "plural": "haplos à bosse ",
+ "type": 2
+ },
+ {
+ "keyword": "dauphin bleu",
+ "hasLocution": false,
+ "plural": "dauphins bleus",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "11495679-n",
+ "07427593-n"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena",
+ "core vocabulary"
+ ],
+ "_id": 34545,
+ "created": "2019-03-05T20:56:51.000Z",
+ "lastUpdated": "2021-07-16T15:40:32.476Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "éclair",
+ "plural": "éclairs"
+ },
+ {
+ "type": 2,
+ "keyword": "foudre",
+ "hasLocution": false,
+ "plural": "foudres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02520073-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "wild"
+ ],
+ "_id": 34575,
+ "created": "2019-03-06T11:35:20.000Z",
+ "lastUpdated": "2021-07-19T21:03:15.928Z",
+ "keywords": [
+ {
+ "keyword": "silure",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "silures"
+ },
+ {
+ "keyword": "poisson-chat",
+ "hasLocution": false,
+ "plural": "poissons-chats",
+ "type": 2
+ },
+ {
+ "keyword": "pangasius",
+ "hasLocution": false,
+ "plural": "pangasius",
+ "type": 2
+ },
+ {
+ "keyword": "panga géant",
+ "hasLocution": false,
+ "plural": "pangas géants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "continent"
+ ],
+ "synsets": [
+ "09277520-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "continent"
+ ],
+ "_id": 34547,
+ "created": "2019-03-05T20:57:55.000Z",
+ "lastUpdated": "2021-07-16T15:38:47.387Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "continent",
+ "hasLocution": true,
+ "plural": "continents"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "person according to their age",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "05224944-n"
+ ],
+ "tags": [
+ "person",
+ "core vocabulary"
+ ],
+ "_id": 34560,
+ "created": "2019-03-05T21:09:32.000Z",
+ "lastUpdated": "2021-07-21T01:15:42.765Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "personne",
+ "hasLocution": true,
+ "plural": "personnes"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "individu",
+ "type": 2,
+ "plural": "individus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02518819-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "wild"
+ ],
+ "_id": 34583,
+ "created": "2019-03-06T12:14:50.000Z",
+ "lastUpdated": "2021-04-23T21:32:07.926Z",
+ "keywords": [
+ {
+ "keyword": "protoptère éthiopien",
+ "hasLocution": false,
+ "plural": "protoptères éthiopiens",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "reptile",
+ "oviparous",
+ "river animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01665425-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "reptile",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "wild"
+ ],
+ "_id": 34581,
+ "created": "2019-03-06T12:10:12.000Z",
+ "lastUpdated": "2021-07-19T12:51:34.482Z",
+ "keywords": [
+ {
+ "keyword": "tortue d'eau douce",
+ "hasLocution": true,
+ "plural": "tortues d'eau douce",
+ "type": 2
+ },
+ {
+ "keyword": "tortue cistude",
+ "hasLocution": false,
+ "plural": "tortues cistudes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur"
+ ],
+ "synsets": [
+ "01710074-n",
+ "01702472-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 34587,
+ "created": "2019-03-06T12:19:18.000Z",
+ "lastUpdated": "2021-04-23T21:28:23.260Z",
+ "keywords": [
+ {
+ "keyword": "Proa valdearinnoensis",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "reptile",
+ "oviparous",
+ "river animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01665425-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "reptile",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "wild"
+ ],
+ "_id": 34589,
+ "created": "2019-03-06T12:23:20.000Z",
+ "lastUpdated": "2021-04-23T21:27:32.110Z",
+ "keywords": [
+ {
+ "keyword": "tortue à long cou",
+ "hasLocution": false,
+ "plural": "tortues à long cou",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur"
+ ],
+ "synsets": [
+ "01702472-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 34591,
+ "created": "2019-03-06T12:25:07.000Z",
+ "lastUpdated": "2021-07-19T12:48:48.312Z",
+ "keywords": [
+ {
+ "keyword": "Europelta carbonensis",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "dinosaure",
+ "hasLocution": true,
+ "plural": "dinosaures",
+ "type": 2
+ },
+ {
+ "keyword": "Europelta",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur"
+ ],
+ "synsets": [
+ "01711639-n",
+ "01702472-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 34585,
+ "created": "2019-03-06T12:16:21.000Z",
+ "lastUpdated": "2021-04-23T21:28:56.330Z",
+ "keywords": [
+ {
+ "keyword": "Turiasaurus",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur"
+ ],
+ "synsets": [
+ "01706964-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 34593,
+ "created": "2019-03-06T12:28:23.000Z",
+ "lastUpdated": "2021-04-23T21:26:29.393Z",
+ "keywords": [
+ {
+ "keyword": "Tricératops",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur"
+ ],
+ "synsets": [
+ "01704500-n",
+ "01702472-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 34595,
+ "created": "2019-03-06T12:30:21.000Z",
+ "lastUpdated": "2021-04-23T21:24:45.476Z",
+ "keywords": [
+ {
+ "keyword": "Dacentrurus Armatus",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "omnivorous",
+ "pet"
+ ],
+ "synsets": [
+ "02588503-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "omnivorous",
+ "pet"
+ ],
+ "_id": 34577,
+ "created": "2019-03-06T11:36:46.000Z",
+ "lastUpdated": "2021-07-19T20:53:17.551Z",
+ "keywords": [
+ {
+ "keyword": "discus",
+ "hasLocution": false,
+ "plural": "discus",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "symphysodon",
+ "plural": "symphysodons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "wild animal"
+ ],
+ "synsets": [],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "wild"
+ ],
+ "_id": 34599,
+ "created": "2019-03-06T12:35:51.000Z",
+ "lastUpdated": "2021-05-10T21:00:00.814Z",
+ "keywords": [
+ {
+ "keyword": " tambaqui",
+ "hasLocution": false,
+ "plural": " tambaquis",
+ "type": 2
+ },
+ {
+ "keyword": "cachama",
+ "hasLocution": false,
+ "plural": "cachamas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "wild animal"
+ ],
+ "synsets": [],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "wild"
+ ],
+ "_id": 34601,
+ "created": "2019-03-06T12:39:04.000Z",
+ "lastUpdated": "2021-05-10T20:56:46.150Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "arapaîma",
+ "plural": "arapaïmas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "00171352-v",
+ "02073479-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 34603,
+ "created": "2019-03-06T13:04:34.000Z",
+ "lastUpdated": "2021-07-19T12:43:31.494Z",
+ "keywords": [
+ {
+ "keyword": "mettre de la crème chantilly",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre de la crème fouettée",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": true,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sexual crime"
+ ],
+ "synsets": [
+ "00774891-n",
+ "02573434-v"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "sexual crime"
+ ],
+ "_id": 34605,
+ "created": "2019-03-06T13:06:54.000Z",
+ "lastUpdated": "2021-07-19T12:41:59.967Z",
+ "keywords": [
+ {
+ "keyword": "viol",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "viols"
+ },
+ {
+ "keyword": "violer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "agresser sexuellement",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "agression sexuelle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "agressions sexuelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00510430-v",
+ "01585566-v",
+ "01698271-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 34607,
+ "created": "2019-03-06T13:07:28.000Z",
+ "lastUpdated": "2021-07-19T12:41:20.767Z",
+ "keywords": [
+ {
+ "keyword": "finir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "terminer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "06062216-n",
+ "10040615-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 34609,
+ "created": "2019-03-06T13:09:49.000Z",
+ "lastUpdated": "2021-07-19T12:40:53.722Z",
+ "keywords": [
+ {
+ "keyword": "docteur de médecine nucléaire",
+ "hasLocution": false,
+ "plural": "docteurs de médecine nucléaire",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur"
+ ],
+ "synsets": [
+ "01711639-n",
+ "01702472-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 34579,
+ "created": "2019-03-06T12:07:56.000Z",
+ "lastUpdated": "2021-07-19T20:38:02.855Z",
+ "keywords": [
+ {
+ "keyword": "Tastavinsaurus",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "titanosaure",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "titanosaures"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "oviparous",
+ "river animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "02657650-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "oviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "wild"
+ ],
+ "_id": 34597,
+ "created": "2019-03-06T12:32:54.000Z",
+ "lastUpdated": "2021-07-19T12:46:27.718Z",
+ "keywords": [
+ {
+ "keyword": "poisson-globe à lunettes",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "poissons-globes à lunettes"
+ },
+ {
+ "keyword": "tétraodon",
+ "hasLocution": false,
+ "plural": "tétraodons",
+ "type": 2
+ },
+ {
+ "keyword": "poisson-globe",
+ "hasLocution": false,
+ "plural": "poissons-globe",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "aerial transport",
+ "land transport"
+ ],
+ "synsets": [
+ "03701635-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "air transport",
+ "land transport"
+ ],
+ "_id": 34617,
+ "created": "2019-03-06T13:15:10.000Z",
+ "lastUpdated": "2021-04-23T21:20:13.499Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coffre à bagages",
+ "hasLocution": false,
+ "plural": "coffres à bagages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeding"
+ ],
+ "synsets": [
+ "02073479-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding"
+ ],
+ "_id": 34615,
+ "created": "2019-03-06T13:14:11.000Z",
+ "lastUpdated": "2021-07-16T20:33:26.971Z",
+ "keywords": [
+ {
+ "keyword": "verser le sirop au chocolat",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "01335412-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 34619,
+ "created": "2019-03-06T13:18:07.000Z",
+ "lastUpdated": "2021-07-18T07:21:51.855Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "couvrir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "couvrir les yeux",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "cacher les yeux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "00682414-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 34621,
+ "created": "2019-03-06T13:22:48.000Z",
+ "lastUpdated": "2021-04-23T21:18:37.850Z",
+ "keywords": [
+ {
+ "keyword": "écran abîmé",
+ "hasLocution": false,
+ "plural": "écrans abîmés",
+ "type": 2
+ },
+ {
+ "keyword": "écran endommagé",
+ "hasLocution": false,
+ "plural": "écrans endommagés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media",
+ "person according to their age",
+ "human response"
+ ],
+ "synsets": [
+ "00033319-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "person",
+ "psychology",
+ "human response"
+ ],
+ "_id": 34623,
+ "created": "2019-03-06T13:23:18.000Z",
+ "lastUpdated": "2024-12-12T06:47:29.359Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "communication",
+ "hasLocution": true,
+ "plural": "communications"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "01906823-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy",
+ "core vocabulary"
+ ],
+ "_id": 34625,
+ "created": "2019-03-06T13:24:44.000Z",
+ "lastUpdated": "2024-12-11T17:21:45.193Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coquille",
+ "hasLocution": true,
+ "plural": "coquilles"
+ },
+ {
+ "type": 2,
+ "keyword": "coquillages",
+ "hasLocution": false,
+ "plural": "coquillages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "fish-animal",
+ "ovoviviparous",
+ "river animal",
+ "marine animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01498342-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "fish",
+ "ovoviviparous",
+ "aquatic animal",
+ "freshwater animal",
+ "river",
+ "marine animal",
+ "sea",
+ "wild"
+ ],
+ "_id": 34627,
+ "created": "2019-03-06T13:27:00.000Z",
+ "lastUpdated": "2021-04-23T21:15:44.338Z",
+ "keywords": [
+ {
+ "keyword": "raie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "raies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "11445694-n"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 34613,
+ "created": "2019-03-06T13:11:25.000Z",
+ "lastUpdated": "2021-04-23T21:21:39.435Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "phénomène atmosphérique",
+ "hasLocution": false,
+ "plural": "phénomènes atmosphériques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthographic sign"
+ ],
+ "synsets": [
+ "06830640-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "orthographic sign"
+ ],
+ "_id": 34629,
+ "created": "2019-03-06T13:29:08.000Z",
+ "lastUpdated": "2021-07-16T15:31:41.141Z",
+ "keywords": [
+ {
+ "keyword": "ponctuation",
+ "hasLocution": false,
+ "plural": "ponctuations",
+ "type": 2
+ },
+ {
+ "keyword": "signes de ponctuation",
+ "hasLocution": false,
+ "plural": "signes de ponctuation",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "paleontology",
+ "natural disaster"
+ ],
+ "synsets": [
+ "07347291-n"
+ ],
+ "tags": [
+ "paleontology",
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 34633,
+ "created": "2019-03-06T13:32:22.000Z",
+ "lastUpdated": "2021-05-10T20:53:30.030Z",
+ "keywords": [
+ {
+ "keyword": "extinction",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "extinctions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "03626258-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 34631,
+ "created": "2019-03-06T13:31:06.000Z",
+ "lastUpdated": "2021-04-23T21:14:48.887Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ustensiles de cuisine",
+ "hasLocution": true,
+ "plural": "ustensiles de cuisine"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "clothes"
+ ],
+ "synsets": [
+ "00462190-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 34637,
+ "created": "2019-03-06T13:58:57.000Z",
+ "lastUpdated": "2021-05-10T20:50:33.679Z",
+ "keywords": [
+ {
+ "hasLocution": true,
+ "keyword": "nu",
+ "type": 4,
+ "plural": "nus"
+ },
+ {
+ "keyword": "dévêtu",
+ "plural": "dévêtus",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "déshabillé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "déshabillés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "expression"
+ ],
+ "synsets": [
+ "00635278-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "expression"
+ ],
+ "_id": 34639,
+ "created": "2019-03-06T13:59:25.000Z",
+ "lastUpdated": "2021-07-16T20:31:55.186Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "incorrect",
+ "hasLocution": true,
+ "plural": "incorrects"
+ },
+ {
+ "keyword": "mauvais",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "mauvais"
+ },
+ {
+ "keyword": "inexact",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "inexacts"
+ },
+ {
+ "keyword": "faux",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "faux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "expression"
+ ],
+ "synsets": [
+ "00634232-a",
+ "01885517-s",
+ "01885314-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "expression"
+ ],
+ "_id": 34641,
+ "created": "2019-03-06T13:59:58.000Z",
+ "lastUpdated": "2021-07-16T20:30:30.953Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "correct",
+ "hasLocution": true,
+ "plural": "corrects"
+ },
+ {
+ "keyword": "juste",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "justes"
+ },
+ {
+ "keyword": "exact",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "exacts"
+ },
+ {
+ "keyword": "bon",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "bons"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number"
+ ],
+ "synsets": [
+ "00916501-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics"
+ ],
+ "_id": 34643,
+ "created": "2019-03-06T14:02:30.000Z",
+ "lastUpdated": "2021-05-10T20:48:36.898Z",
+ "keywords": [
+ {
+ "keyword": "nombre pair",
+ "hasLocution": false,
+ "plural": "nombres pairs",
+ "type": 2
+ },
+ {
+ "keyword": "nombres pairs",
+ "hasLocution": false,
+ "plural": "nombres pairs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human value"
+ ],
+ "synsets": [
+ "00595453-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human value"
+ ],
+ "_id": 34647,
+ "created": "2019-03-06T14:04:27.000Z",
+ "lastUpdated": "2021-07-16T20:28:29.938Z",
+ "keywords": [
+ {
+ "keyword": "sympathiser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "compatir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "avoir de l'empathie ",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "clothes"
+ ],
+ "synsets": [
+ "00462190-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 34635,
+ "created": "2019-03-06T13:53:24.000Z",
+ "lastUpdated": "2021-05-10T20:52:18.944Z",
+ "keywords": [
+ {
+ "keyword": "nue",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "nues"
+ },
+ {
+ "keyword": "dévêtue",
+ "hasLocution": false,
+ "plural": "dévêtues",
+ "type": 4
+ },
+ {
+ "keyword": "déshabillées",
+ "hasLocution": false,
+ "plural": "déshabillées",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 34649,
+ "created": "2019-03-06T14:11:53.000Z",
+ "lastUpdated": "2021-07-19T20:34:49.846Z",
+ "keywords": [
+ {
+ "keyword": "baisser la tablette",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "ouvrir la tablette",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "aerial transport"
+ ],
+ "synsets": [
+ "04132954-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "air transport"
+ ],
+ "_id": 34655,
+ "created": "2019-03-06T14:17:44.000Z",
+ "lastUpdated": "2021-03-13T14:01:06.048Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ceinture de sécurité",
+ "hasLocution": true,
+ "plural": "ceintures de sécurité"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "06062216-n",
+ "10040615-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 34653,
+ "created": "2019-03-06T14:16:27.000Z",
+ "lastUpdated": "2021-07-16T20:27:10.323Z",
+ "keywords": [
+ {
+ "keyword": "docteur spécialisé en médecine nucléaire",
+ "hasLocution": false,
+ "plural": "docteurs spécialisés en médecine nucléaire",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "01551229-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 34659,
+ "created": "2019-03-06T14:25:30.000Z",
+ "lastUpdated": "2021-07-18T07:20:32.445Z",
+ "keywords": [
+ {
+ "keyword": "ouvrir la ceinture",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "détacher la ceinture",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport",
+ "land transport"
+ ],
+ "synsets": [
+ "00780930-v",
+ "01496967-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport",
+ "land transport"
+ ],
+ "_id": 34661,
+ "created": "2019-03-06T14:27:06.000Z",
+ "lastUpdated": "2021-07-18T07:20:13.236Z",
+ "keywords": [
+ {
+ "keyword": "mettre les sacs dans le compartiment supérieur",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre les bagages dans le compartiment supérieur",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "placer dans le compartiment à bagages",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "01346574-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 34663,
+ "created": "2019-03-06T14:27:42.000Z",
+ "lastUpdated": "2021-07-16T20:17:48.389Z",
+ "keywords": [
+ {
+ "keyword": "mettre la ceinture",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "fermer la ceinture",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "fermer a boucle",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "00780930-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 34665,
+ "created": "2019-03-06T14:31:38.000Z",
+ "lastUpdated": "2021-07-19T12:38:59.583Z",
+ "keywords": [
+ {
+ "keyword": "mettre sous le siège",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sécuriser sous le siège",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "ranger sous le siège",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "aerial transport"
+ ],
+ "synsets": [
+ "03350504-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "air transport"
+ ],
+ "_id": 34651,
+ "created": "2019-03-06T14:15:32.000Z",
+ "lastUpdated": "2021-05-10T20:47:12.399Z",
+ "keywords": [
+ {
+ "keyword": "sorties de secours",
+ "hasLocution": false,
+ "plural": "sorties de secours",
+ "type": 2
+ },
+ {
+ "keyword": "issues de secours",
+ "hasLocution": false,
+ "plural": "issues de secours",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "00780930-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 34657,
+ "created": "2019-03-06T14:21:06.000Z",
+ "lastUpdated": "2021-07-19T12:39:28.463Z",
+ "keywords": [
+ {
+ "keyword": "ranger sous le siège de devant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sécuriser sous le siège de devant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre sour le siège de devant",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 34667,
+ "created": "2019-03-06T14:33:15.000Z",
+ "lastUpdated": "2021-07-19T12:38:43.979Z",
+ "keywords": [
+ {
+ "keyword": "relever la tablette",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "remonter la tablette",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "ranger la tablette",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00036355-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 34611,
+ "created": "2019-03-06T13:10:18.000Z",
+ "lastUpdated": "2021-07-18T07:22:02.893Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver le visage",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "01716405-n",
+ "06631572-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 34673,
+ "created": "2019-03-06T14:47:52.000Z",
+ "lastUpdated": "2021-07-18T07:18:24.637Z",
+ "keywords": [
+ {
+ "keyword": "spectacle T-Rex",
+ "hasLocution": false,
+ "plural": "spectacles T-Rex",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sexual practice"
+ ],
+ "synsets": [
+ "06702412-n",
+ "00754770-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "sexuality",
+ "sexual practice"
+ ],
+ "_id": 34675,
+ "created": "2019-03-06T14:50:05.000Z",
+ "lastUpdated": "2021-07-18T07:18:20.141Z",
+ "keywords": [
+ {
+ "keyword": "demander le consentement",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "00278705-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 34679,
+ "created": "2019-03-06T16:22:50.000Z",
+ "lastUpdated": "2021-07-19T12:37:57.348Z",
+ "keywords": [
+ {
+ "keyword": "remonter le dossier",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "redresser le dossier",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "redresser le siège",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "remettre le dossier à la verticale",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "aerial transport"
+ ],
+ "synsets": [
+ "08665191-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "air transport"
+ ],
+ "_id": 34677,
+ "created": "2019-03-06T16:20:27.000Z",
+ "lastUpdated": "2021-07-18T07:18:15.747Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "siège",
+ "hasLocution": true
+ },
+ {
+ "keyword": "siège hublot",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "01977139-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 34681,
+ "created": "2019-03-06T16:24:34.000Z",
+ "lastUpdated": "2021-07-19T12:37:16.102Z",
+ "keywords": [
+ {
+ "keyword": "incliner le dossier en arrière",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "incliner le siège",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "01346574-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 34669,
+ "created": "2019-03-06T14:33:58.000Z",
+ "lastUpdated": "2021-07-16T20:16:26.166Z",
+ "keywords": [
+ {
+ "keyword": "mettre la ceinture",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "fermer la boucle",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "healthy habit"
+ ],
+ "synsets": [
+ "05087073-n",
+ "01988916-v",
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "lifestyle",
+ "healthy habit"
+ ],
+ "_id": 34683,
+ "created": "2019-03-06T16:25:45.000Z",
+ "lastUpdated": "2021-08-01T19:02:24.193Z",
+ "keywords": [
+ {
+ "keyword": "bonne posture",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bonnes postures"
+ },
+ {
+ "keyword": "bien s'assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "posture correcte",
+ "hasLocution": false,
+ "plural": "postures correctes",
+ "type": 2
+ },
+ {
+ "keyword": "être bien assis",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "bien s'asseoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "bonne position",
+ "hasLocution": false,
+ "plural": "bonnes positions",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "aerial transport"
+ ],
+ "synsets": [
+ "04132954-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "air transport"
+ ],
+ "_id": 34671,
+ "created": "2019-03-06T14:35:01.000Z",
+ "lastUpdated": "2021-03-13T14:01:48.940Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ceinture de sécurité",
+ "hasLocution": true,
+ "plural": "ceintures de sécurité"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "computing"
+ ],
+ "synsets": [],
+ "tags": [
+ "computing"
+ ],
+ "_id": 34685,
+ "created": "2019-03-06T16:28:46.000Z",
+ "lastUpdated": "2021-05-10T20:44:47.163Z",
+ "keywords": [
+ {
+ "keyword": "mode avion",
+ "hasLocution": false,
+ "plural": "modes avions",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "publication",
+ "sexuality"
+ ],
+ "synsets": [
+ "02141644-s"
+ ],
+ "tags": [
+ "object",
+ "publication",
+ "sexuality"
+ ],
+ "_id": 34693,
+ "created": "2019-03-06T16:38:37.000Z",
+ "lastUpdated": "2021-05-10T20:44:08.166Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "revue pornographique",
+ "hasLocution": false,
+ "plural": "revues pornographiques"
+ },
+ {
+ "keyword": "magazine pornographique",
+ "hasLocution": false,
+ "plural": "magazines pornographiques",
+ "type": 2
+ },
+ {
+ "keyword": "journal porno",
+ "hasLocution": false,
+ "plural": "journaux pornos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "01346574-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 34691,
+ "created": "2019-03-06T16:36:03.000Z",
+ "lastUpdated": "2021-07-16T08:34:28.841Z",
+ "keywords": [
+ {
+ "keyword": "attacher la ceinture",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "boucler la ceinture",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "security and defense",
+ "law and justice"
+ ],
+ "synsets": [
+ "00967422-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "law",
+ "justice"
+ ],
+ "_id": 34695,
+ "created": "2019-03-06T16:39:26.000Z",
+ "lastUpdated": "2021-06-07T08:59:29.537Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "dénoncer",
+ "hasLocution": false
+ },
+ {
+ "keyword": "signaler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "06702042-n",
+ "00755473-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 34697,
+ "created": "2019-03-06T16:42:19.000Z",
+ "lastUpdated": "2021-07-16T08:34:22.881Z",
+ "keywords": [
+ {
+ "keyword": "demander la permission",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "demander l'autorisation",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "01433863-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 34699,
+ "created": "2019-03-06T16:43:10.000Z",
+ "lastUpdated": "2021-06-07T08:40:32.704Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "embrasser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "workwear",
+ "work tool",
+ "hairdresser"
+ ],
+ "synsets": [],
+ "tags": [
+ "work",
+ "clothes",
+ "workwear",
+ "tool",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 34701,
+ "created": "2019-03-06T16:47:19.000Z",
+ "lastUpdated": "2021-07-16T15:36:01.148Z",
+ "keywords": [
+ {
+ "keyword": "blouse de coiffeur",
+ "hasLocution": false,
+ "plural": "blouses de coiffeur",
+ "type": 2
+ },
+ {
+ "keyword": "cape de coiffeur",
+ "hasLocution": false,
+ "plural": "capes de coiffeur",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "entertainment facility",
+ "recreational facility"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "place",
+ "facility",
+ "recreational facility"
+ ],
+ "_id": 34703,
+ "created": "2019-03-06T16:51:02.000Z",
+ "lastUpdated": "2021-07-19T20:34:23.268Z",
+ "keywords": [
+ {
+ "keyword": "bonne taille",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bonnes tailles"
+ },
+ {
+ "keyword": "hauteur réglementaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "hauteurs réglementaires"
+ },
+ {
+ "keyword": "taille réglementaire",
+ "hasLocution": false,
+ "plural": "tailles réglementaires",
+ "type": 2
+ },
+ {
+ "keyword": "bonne hauteur",
+ "hasLocution": false,
+ "plural": "bonnes hauteurs"
+ },
+ {
+ "keyword": "hauteur requise",
+ "hasLocution": false,
+ "plural": "hauteurs requises"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport",
+ "vehicle component"
+ ],
+ "synsets": [],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport",
+ "vehicle component"
+ ],
+ "_id": 34687,
+ "created": "2019-03-06T16:32:47.000Z",
+ "lastUpdated": "2021-07-16T15:34:40.664Z",
+ "keywords": [
+ {
+ "keyword": "toboggan d'évacuation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "toboggans d'évacuation"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document"
+ ],
+ "synsets": [
+ "06433787-n"
+ ],
+ "tags": [
+ "document",
+ "information document"
+ ],
+ "_id": 34705,
+ "created": "2019-03-06T16:52:39.000Z",
+ "lastUpdated": "2021-05-10T20:38:52.830Z",
+ "keywords": [
+ {
+ "keyword": "instructions",
+ "hasLocution": false,
+ "plural": "consignes",
+ "type": 2
+ },
+ {
+ "keyword": "consignes",
+ "hasLocution": false,
+ "plural": "consignes",
+ "type": 2
+ },
+ {
+ "keyword": "indications",
+ "hasLocution": false,
+ "plural": "indications",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothes"
+ ],
+ "synsets": [
+ "08083153-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 34711,
+ "created": "2019-03-06T17:01:32.000Z",
+ "lastUpdated": "2021-05-10T20:36:02.461Z",
+ "keywords": [
+ {
+ "keyword": "magasin de mode",
+ "hasLocution": false,
+ "plural": "magasins de mode",
+ "type": 2
+ },
+ {
+ "keyword": "boutique de vêtements",
+ "hasLocution": false,
+ "plural": "boutiques de vêtements",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "game",
+ "sport"
+ ],
+ "synsets": [
+ "00196933-n"
+ ],
+ "tags": [
+ "leisure",
+ "game",
+ "sport"
+ ],
+ "_id": 34713,
+ "created": "2019-03-06T17:04:07.000Z",
+ "lastUpdated": "2021-07-19T20:28:08.192Z",
+ "keywords": [
+ {
+ "keyword": "changement d'équipe",
+ "plural": "changements d'équipes",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "changement de poste",
+ "hasLocution": false,
+ "plural": "changements de postes",
+ "type": 2
+ },
+ {
+ "keyword": "relève",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "relèves"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00886144-n",
+ "05964886-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 34709,
+ "created": "2019-03-06T16:58:46.000Z",
+ "lastUpdated": "2021-07-21T17:00:15.321Z",
+ "keywords": [
+ {
+ "keyword": "leçon d'éthique",
+ "hasLocution": false,
+ "plural": "leçons d'éthique",
+ "type": 2
+ },
+ {
+ "keyword": "éducation morale et civique",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "unhealthy habit"
+ ],
+ "synsets": [
+ "05087073-n",
+ "01988916-v",
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "lifestyle",
+ "unhealthy habit"
+ ],
+ "_id": 34689,
+ "created": "2019-03-06T16:33:39.000Z",
+ "lastUpdated": "2021-08-01T19:01:16.944Z",
+ "keywords": [
+ {
+ "keyword": "mauvaise posture",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "mauvaises postures"
+ },
+ {
+ "keyword": "s'assoir mal",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir mal",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00218901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 34715,
+ "created": "2019-03-06T17:04:31.000Z",
+ "lastUpdated": "2021-07-16T08:33:13.993Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Rendre quelque chose sec en faisant évaporer l'eau ou le liquide qui l'imprègne ou qui recouvre sa surface",
+ "keyword": "sécher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "essuyer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "supporting document",
+ "medical documentation",
+ "medical document"
+ ],
+ "synsets": [
+ "01090781-n",
+ "06489042-n"
+ ],
+ "tags": [
+ "document",
+ "supporting document",
+ "medicine",
+ "health"
+ ],
+ "_id": 34717,
+ "created": "2019-03-06T17:06:46.000Z",
+ "lastUpdated": "2021-05-10T20:33:25.699Z",
+ "keywords": [
+ {
+ "keyword": "carte de santé",
+ "hasLocution": false,
+ "plural": "cartes de santé",
+ "type": 2
+ },
+ {
+ "keyword": "carte médicale",
+ "hasLocution": false,
+ "plural": "cartes médicales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "digestive system"
+ ],
+ "synsets": [
+ "10141457-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "human physiology",
+ "physiology",
+ "digestive system"
+ ],
+ "_id": 34719,
+ "created": "2019-03-06T17:10:26.000Z",
+ "lastUpdated": "2021-05-10T20:32:16.149Z",
+ "keywords": [
+ {
+ "keyword": "gastroentérologue",
+ "hasLocution": false,
+ "plural": "gastroentérologues",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "digestive system"
+ ],
+ "synsets": [
+ "10141457-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "human physiology",
+ "physiology",
+ "digestive system"
+ ],
+ "_id": 34721,
+ "created": "2019-03-06T17:11:37.000Z",
+ "lastUpdated": "2021-05-10T20:31:55.832Z",
+ "keywords": [
+ {
+ "keyword": "gastroentérologue",
+ "hasLocution": false,
+ "plural": "gastroentérologues",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10397332-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 34727,
+ "created": "2019-03-06T19:57:10.000Z",
+ "lastUpdated": "2021-05-10T20:29:26.827Z",
+ "keywords": [
+ {
+ "keyword": "oncologiste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "oncologistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "endocrine system"
+ ],
+ "synsets": [
+ "10076722-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "endocrine system"
+ ],
+ "_id": 34725,
+ "created": "2019-03-06T17:16:03.000Z",
+ "lastUpdated": "2021-05-10T20:30:56.514Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "endocrinologue",
+ "plural": "endocrinologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10397332-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 34729,
+ "created": "2019-03-06T19:58:54.000Z",
+ "lastUpdated": "2021-05-10T20:29:05.229Z",
+ "keywords": [
+ {
+ "keyword": "oncologiste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "oncologistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10079131-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 34731,
+ "created": "2019-03-06T20:02:23.000Z",
+ "lastUpdated": "2021-07-16T08:33:08.683Z",
+ "keywords": [
+ {
+ "plural": "otorhinolaryngologistes",
+ "keyword": "otorhinolaryngologiste",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "ORL",
+ "hasLocution": false,
+ "plural": "ORLs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "auditory system"
+ ],
+ "synsets": [
+ "10079131-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "auditory system"
+ ],
+ "_id": 34733,
+ "created": "2019-03-06T20:02:59.000Z",
+ "lastUpdated": "2023-03-27T16:37:09.675Z",
+ "keywords": [
+ {
+ "keyword": "otorhinolaryngologiste",
+ "hasLocution": false,
+ "plural": "otorhinolaryngologistes"
+ },
+ {
+ "keyword": "ORL",
+ "hasLocution": false,
+ "plural": "ORLs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00456473-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 34735,
+ "created": "2019-03-06T20:05:48.000Z",
+ "lastUpdated": "2021-05-10T20:26:42.560Z",
+ "keywords": [
+ {
+ "keyword": "habillée",
+ "hasLocution": false,
+ "plural": "habillées",
+ "type": 4
+ },
+ {
+ "keyword": "vêtue",
+ "hasLocution": false,
+ "plural": "vêtues",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00456473-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 34737,
+ "created": "2019-03-06T20:06:39.000Z",
+ "lastUpdated": "2021-05-10T20:25:57.895Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "habillé",
+ "hasLocution": false,
+ "plural": "habillé"
+ },
+ {
+ "keyword": "vêtu",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "vêtus"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "endocrine system"
+ ],
+ "synsets": [
+ "10076722-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "endocrine system"
+ ],
+ "_id": 34723,
+ "created": "2019-03-06T17:15:20.000Z",
+ "lastUpdated": "2021-05-10T20:31:18.854Z",
+ "keywords": [
+ {
+ "keyword": "endocrinologue",
+ "hasLocution": false,
+ "plural": "endocrinologue",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "categorization",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "02731365-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "categorization",
+ "core vocabulary"
+ ],
+ "_id": 34739,
+ "created": "2019-03-06T20:08:00.000Z",
+ "lastUpdated": "2024-12-08T15:54:38.054Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vêtement",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "vêtements",
+ "hasLocution": true
+ },
+ {
+ "keyword": "habits",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "02772753-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 34743,
+ "created": "2019-03-06T20:12:31.000Z",
+ "lastUpdated": "2021-06-07T08:36:13.688Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sac à dos",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic"
+ ],
+ "synsets": [
+ "03719774-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 34745,
+ "created": "2019-03-06T20:15:46.000Z",
+ "lastUpdated": "2021-06-07T08:35:59.702Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maquillage",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "maquillages",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07875559-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 34747,
+ "created": "2019-03-06T20:20:42.000Z",
+ "lastUpdated": "2021-05-10T20:23:05.560Z",
+ "keywords": [
+ {
+ "keyword": "sirop de chocolat",
+ "hasLocution": false,
+ "plural": "sirops de chocolat",
+ "type": 2
+ },
+ {
+ "keyword": "sirop au chocolat",
+ "hasLocution": false,
+ "plural": "sirops au chocolat",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cereal",
+ "agriculture"
+ ],
+ "synsets": [
+ "12162012-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "cereal",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 34749,
+ "created": "2019-03-06T20:25:59.000Z",
+ "lastUpdated": "2024-12-11T06:36:52.622Z",
+ "keywords": [
+ {
+ "keyword": "céréales",
+ "hasLocution": true,
+ "plural": "céréales",
+ "type": 2
+ },
+ {
+ "keyword": "céréale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "céréales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tree",
+ "agriculture"
+ ],
+ "synsets": [
+ "12672582-n"
+ ],
+ "tags": [
+ "plant",
+ "tree",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 34753,
+ "created": "2019-03-06T20:28:30.000Z",
+ "lastUpdated": "2021-05-10T20:20:59.006Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arbres fruitiers",
+ "hasLocution": false,
+ "plural": "arbres fruitiers"
+ },
+ {
+ "keyword": "arbre fruitier",
+ "hasLocution": true,
+ "plural": "arbres fruitiers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic"
+ ],
+ "synsets": [
+ "03117803-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 34741,
+ "created": "2019-03-06T20:11:14.000Z",
+ "lastUpdated": "2021-05-10T20:24:51.726Z",
+ "keywords": [
+ {
+ "keyword": "cosmétiques",
+ "hasLocution": false,
+ "plural": "cosmétiques",
+ "type": 2
+ },
+ {
+ "keyword": "produits de beauté",
+ "hasLocution": false,
+ "plural": "produits de beauté",
+ "type": 2
+ },
+ {
+ "keyword": "maquillage",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "maquillage"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document",
+ "aerial transport"
+ ],
+ "synsets": [
+ "06433787-n"
+ ],
+ "tags": [
+ "document",
+ "information document",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 34755,
+ "created": "2019-03-06T20:31:03.000Z",
+ "lastUpdated": "2021-07-18T07:14:02.167Z",
+ "keywords": [
+ {
+ "keyword": "instructions",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "09988375-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 34707,
+ "created": "2019-03-06T16:54:11.000Z",
+ "lastUpdated": "2021-07-16T08:33:30.812Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conseiller",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "conseillère",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "container"
+ ],
+ "synsets": [
+ "03099154-n"
+ ],
+ "tags": [
+ "object",
+ "container"
+ ],
+ "_id": 34759,
+ "created": "2019-03-06T20:32:52.000Z",
+ "lastUpdated": "2021-05-10T20:20:04.153Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "récipient",
+ "hasLocution": true,
+ "plural": "récipients"
+ },
+ {
+ "type": 2,
+ "keyword": "récipients",
+ "hasLocution": false,
+ "plural": "récipients"
+ },
+ {
+ "keyword": "contenants",
+ "hasLocution": false,
+ "plural": "contenants",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07636997-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "ultra-processed food"
+ ],
+ "_id": 34763,
+ "created": "2019-03-06T20:35:50.000Z",
+ "lastUpdated": "2021-04-21T21:34:12.618Z",
+ "keywords": [
+ {
+ "keyword": "crème fouettée",
+ "hasLocution": false,
+ "plural": "crèmes fouettées",
+ "type": 2
+ },
+ {
+ "keyword": "crème chantilly",
+ "hasLocution": false,
+ "plural": "crèmes chantilly",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural disaster"
+ ],
+ "synsets": [
+ "07329438-n"
+ ],
+ "tags": [
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 34765,
+ "created": "2019-03-06T20:36:47.000Z",
+ "lastUpdated": "2021-05-10T20:17:31.142Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "catastrophe",
+ "hasLocution": false,
+ "plural": "catastrophes"
+ },
+ {
+ "type": 2,
+ "keyword": "catastrophes",
+ "hasLocution": false,
+ "plural": "catastrophes"
+ },
+ {
+ "keyword": "désastre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "désastres"
+ },
+ {
+ "keyword": "désastres",
+ "hasLocution": false,
+ "plural": "désastres"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "01346975-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 34761,
+ "created": "2019-03-06T20:33:27.000Z",
+ "lastUpdated": "2021-07-15T21:06:59.081Z",
+ "keywords": [
+ {
+ "keyword": "détacher la ceinture",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "alphabet"
+ ],
+ "synsets": [
+ "06831828-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet"
+ ],
+ "_id": 34769,
+ "created": "2019-03-06T20:39:26.000Z",
+ "lastUpdated": "2021-05-10T20:14:58.330Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "caractère",
+ "hasLocution": true,
+ "plural": "caractères"
+ },
+ {
+ "keyword": "caractères",
+ "hasLocution": false,
+ "plural": "caractères",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number"
+ ],
+ "synsets": [
+ "06820056-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics"
+ ],
+ "_id": 34771,
+ "created": "2019-03-06T20:41:07.000Z",
+ "lastUpdated": "2021-05-10T20:13:15.838Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nombres",
+ "hasLocution": true,
+ "plural": "nombres"
+ },
+ {
+ "type": 2,
+ "keyword": "nombre",
+ "hasLocution": false,
+ "plural": "nombres"
+ },
+ {
+ "keyword": "chiffres",
+ "hasLocution": true,
+ "plural": "chiffres",
+ "type": 2
+ },
+ {
+ "keyword": "numéro",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "numéros"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number"
+ ],
+ "synsets": [
+ "00916568-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics"
+ ],
+ "_id": 34773,
+ "created": "2019-03-06T20:44:48.000Z",
+ "lastUpdated": "2021-05-10T20:12:38.549Z",
+ "keywords": [
+ {
+ "keyword": "nombres impairs",
+ "hasLocution": false,
+ "plural": "nombres impairs",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "nombre impair",
+ "plural": "nombres impairs",
+ "type": 2
+ },
+ {
+ "keyword": "numéro impair",
+ "hasLocution": false,
+ "plural": "numéros impairs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "aerial transport"
+ ],
+ "synsets": [
+ "02694015-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 34757,
+ "created": "2019-03-06T20:32:10.000Z",
+ "lastUpdated": "2021-06-07T08:35:21.260Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "aéroplane",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "aéroplanes",
+ "hasLocution": true
+ },
+ {
+ "keyword": "avion",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "avions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document",
+ "educational document"
+ ],
+ "synsets": [
+ "05854581-n"
+ ],
+ "tags": [
+ "document",
+ "information document",
+ "education"
+ ],
+ "_id": 34779,
+ "created": "2019-03-07T08:40:23.000Z",
+ "lastUpdated": "2021-05-10T20:07:47.331Z",
+ "keywords": [
+ {
+ "keyword": "règles",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "règles"
+ },
+ {
+ "keyword": "règlements",
+ "hasLocution": false,
+ "plural": "règlements",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00853615-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 34781,
+ "created": "2019-03-07T08:41:11.000Z",
+ "lastUpdated": "2021-07-15T21:06:50.976Z",
+ "keywords": [
+ {
+ "keyword": "se moquer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "ridiculiser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "artist",
+ "professional artist"
+ ],
+ "synsets": [
+ "09831743-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "visual art"
+ ],
+ "_id": 34767,
+ "created": "2019-03-06T20:37:49.000Z",
+ "lastUpdated": "2021-05-10T20:15:49.473Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "artiste ",
+ "hasLocution": false,
+ "plural": "artistes"
+ },
+ {
+ "type": 2,
+ "keyword": "artistes",
+ "hasLocution": true,
+ "plural": "artistes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "education professionals",
+ "educational organization"
+ ],
+ "synsets": [
+ "10494230-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education",
+ "organization"
+ ],
+ "_id": 34782,
+ "created": "2019-03-07T08:41:12.000Z",
+ "lastUpdated": "2021-07-11T09:52:05.043Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "directeur d'école",
+ "hasLocution": true,
+ "plural": "directeurs d'école"
+ },
+ {
+ "keyword": "principal",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "education professionals",
+ "educational organization"
+ ],
+ "synsets": [
+ "10589463-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education",
+ "organization"
+ ],
+ "_id": 34784,
+ "created": "2019-03-07T08:42:09.000Z",
+ "lastUpdated": "2021-04-27T22:38:37.298Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "secrétaire",
+ "hasLocution": true,
+ "plural": "secrétaires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00036355-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 34777,
+ "created": "2019-03-06T20:52:22.000Z",
+ "lastUpdated": "2021-06-07T08:34:19.212Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver le visage",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se laver le visage",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "education professionals",
+ "educational organization"
+ ],
+ "synsets": [
+ "10034684-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "education",
+ "organization"
+ ],
+ "_id": 34786,
+ "created": "2019-03-07T08:57:19.000Z",
+ "lastUpdated": "2021-06-07T08:31:54.355Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chef d'études",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34788,
+ "created": "2019-03-07T08:58:03.000Z",
+ "lastUpdated": "2021-04-27T22:38:11.528Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle des professeurs",
+ "hasLocution": true,
+ "plural": "salles des professeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "library science"
+ ],
+ "synsets": [
+ "02329178-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "library science"
+ ],
+ "_id": 34790,
+ "created": "2019-03-07T08:59:57.000Z",
+ "lastUpdated": "2021-05-10T20:06:13.305Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prêter un livre",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "00997883-v",
+ "01704793-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 34792,
+ "created": "2019-03-07T09:01:08.000Z",
+ "lastUpdated": "2021-04-27T22:37:41.407Z",
+ "keywords": [
+ {
+ "keyword": "réécrire",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational document",
+ "information document"
+ ],
+ "synsets": [
+ "05854581-n"
+ ],
+ "tags": [
+ "document",
+ "education",
+ "information document"
+ ],
+ "_id": 34794,
+ "created": "2019-03-07T09:01:40.000Z",
+ "lastUpdated": "2021-05-10T20:04:51.087Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "règlements",
+ "plural": "règlements"
+ },
+ {
+ "keyword": "règles",
+ "hasLocution": true,
+ "plural": "règles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "00036355-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 34775,
+ "created": "2019-03-06T20:51:57.000Z",
+ "lastUpdated": "2021-06-07T08:34:36.428Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver le visage",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se laver le visage",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "calendar"
+ ],
+ "synsets": [
+ "15185626-n"
+ ],
+ "tags": [
+ "time",
+ "calendar"
+ ],
+ "_id": 34799,
+ "created": "2019-03-07T09:04:01.000Z",
+ "lastUpdated": "2021-04-27T22:36:38.961Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "date",
+ "hasLocution": true,
+ "plural": "dates"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 34801,
+ "created": "2019-03-07T09:10:05.000Z",
+ "lastUpdated": "2021-05-10T20:01:23.180Z",
+ "keywords": [
+ {
+ "keyword": "table lumineuse",
+ "hasLocution": false,
+ "plural": "tables lumineuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "measurement unit"
+ ],
+ "synsets": [
+ "05058400-n"
+ ],
+ "tags": [
+ "mathematics",
+ "measurement unit"
+ ],
+ "_id": 34805,
+ "created": "2019-03-07T09:12:09.000Z",
+ "lastUpdated": "2021-04-27T22:35:33.539Z",
+ "keywords": [
+ {
+ "keyword": "durée d'une activité ",
+ "hasLocution": false,
+ "plural": "durées d'une activité",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "calendar"
+ ],
+ "synsets": [
+ "15185626-n"
+ ],
+ "tags": [
+ "time",
+ "calendar"
+ ],
+ "_id": 34803,
+ "created": "2019-03-07T09:10:25.000Z",
+ "lastUpdated": "2021-04-27T22:35:59.044Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "date",
+ "hasLocution": true,
+ "plural": "dates"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01974840-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 34807,
+ "created": "2019-03-07T09:14:59.000Z",
+ "lastUpdated": "2021-07-15T21:06:33.744Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "descendre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "06979234-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 34798,
+ "created": "2019-03-07T09:04:01.000Z",
+ "lastUpdated": "2021-05-10T20:02:56.770Z",
+ "keywords": [
+ {
+ "keyword": "cours de galicien",
+ "hasLocution": false,
+ "plural": "cours de galicien",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "photography"
+ ],
+ "synsets": [],
+ "tags": [
+ "visual art",
+ "photography"
+ ],
+ "_id": 34809,
+ "created": "2019-03-07T09:18:44.000Z",
+ "lastUpdated": "2021-04-27T22:34:48.445Z",
+ "keywords": [
+ {
+ "keyword": "selfie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "selfies"
+ },
+ {
+ "type": 3,
+ "keyword": "faire un selfie",
+ "hasLocution": false
+ },
+ {
+ "type": 3,
+ "keyword": "prendre un selfie",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "library science"
+ ],
+ "synsets": [
+ "01095590-n",
+ "03661417-n"
+ ],
+ "tags": [
+ "library science"
+ ],
+ "_id": 34814,
+ "created": "2019-03-07T09:31:05.000Z",
+ "lastUpdated": "2021-05-10T20:00:14.066Z",
+ "keywords": [
+ {
+ "keyword": "bibliothèque de prêt",
+ "hasLocution": false,
+ "plural": "bibliothèques de prêt",
+ "type": 2
+ },
+ {
+ "keyword": "prêt",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "prêts"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "02189819-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 34816,
+ "created": "2019-03-07T09:32:40.000Z",
+ "lastUpdated": "2021-07-15T21:06:27.065Z",
+ "keywords": [
+ {
+ "keyword": "frapper la vitre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00715072-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 34812,
+ "created": "2019-03-07T09:23:28.000Z",
+ "lastUpdated": "2021-07-14T21:30:07.454Z",
+ "keywords": [
+ {
+ "type": 3,
+ "hasLocution": false,
+ "keyword": "associer"
+ },
+ {
+ "keyword": "relier",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "type": 3,
+ "keyword": "mettre en relation"
+ },
+ {
+ "keyword": "lien",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "liens"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "06612141-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 34796,
+ "created": "2019-03-07T09:02:10.000Z",
+ "lastUpdated": "2021-07-15T21:06:42.016Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "matière",
+ "hasLocution": true,
+ "plural": "matières"
+ },
+ {
+ "keyword": "discipline",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "disciplines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "01335412-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 34818,
+ "created": "2019-03-07T09:35:21.000Z",
+ "lastUpdated": "2021-05-10T19:57:59.199Z",
+ "keywords": [
+ {
+ "keyword": "couvrir les yeux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "01335412-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 34819,
+ "created": "2019-03-07T09:35:21.000Z",
+ "lastUpdated": "2021-05-10T19:57:33.894Z",
+ "keywords": [
+ {
+ "keyword": "couvrir les yeux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "01335412-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 34822,
+ "created": "2019-03-07T09:36:44.000Z",
+ "lastUpdated": "2021-05-10T19:57:07.161Z",
+ "keywords": [
+ {
+ "keyword": "couvrir les yeux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "01538956-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 34824,
+ "created": "2019-03-07T09:37:47.000Z",
+ "lastUpdated": "2021-05-10T19:55:12.788Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rincer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "nettoyer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "horse riding",
+ "sport event",
+ "animal"
+ ],
+ "synsets": [
+ "07476368-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "horse riding",
+ "event",
+ "sport event",
+ "animal"
+ ],
+ "_id": 34830,
+ "created": "2019-03-07T13:05:31.000Z",
+ "lastUpdated": "2024-12-13T08:27:37.317Z",
+ "keywords": [
+ {
+ "keyword": "course de chevaux",
+ "hasLocution": false,
+ "plural": "courses de chevaux",
+ "type": 2
+ },
+ {
+ "keyword": "course hippique",
+ "hasLocution": false,
+ "plural": "courses hippiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "animal physiology",
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "01963786-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "animal physiology",
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 34832,
+ "created": "2019-03-07T13:08:55.000Z",
+ "lastUpdated": "2021-05-10T19:52:22.431Z",
+ "keywords": [
+ {
+ "keyword": "galoper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "horse riding"
+ ],
+ "synsets": [
+ "10205762-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "horse riding"
+ ],
+ "_id": 34834,
+ "created": "2019-03-07T13:10:01.000Z",
+ "lastUpdated": "2021-05-10T19:51:42.844Z",
+ "keywords": [
+ {
+ "keyword": "cavalière",
+ "hasLocution": false,
+ "plural": "cavalières",
+ "type": 2
+ },
+ {
+ "keyword": "écuyère",
+ "hasLocution": false,
+ "plural": "écuyères",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "regional costume",
+ "teruel"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "regional costume",
+ "Aragon",
+ "Teruel"
+ ],
+ "_id": 34836,
+ "created": "2019-03-07T13:13:54.000Z",
+ "lastUpdated": "2021-07-21T17:00:09.470Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "danseur folklorique",
+ "plural": "danseurs folkloriques"
+ },
+ {
+ "keyword": "vaquillero",
+ "plural": "vaquillero",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "regional costume",
+ "teruel"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "regional costume",
+ "Aragon",
+ "Teruel"
+ ],
+ "_id": 34838,
+ "created": "2019-03-07T13:14:19.000Z",
+ "lastUpdated": "2021-07-21T17:00:05.408Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "danseuse folklorique",
+ "plural": "danseuses folkloriques"
+ },
+ {
+ "plural": "vaquilleras",
+ "keyword": "vaquillera",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01581103-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 34828,
+ "created": "2019-03-07T09:48:44.000Z",
+ "lastUpdated": "2021-07-14T21:27:06.505Z",
+ "keywords": [
+ {
+ "hasLocution": true,
+ "type": 3,
+ "keyword": "plonger"
+ },
+ {
+ "keyword": "submerger",
+ "type": 3,
+ "hasLocution": false
+ },
+ {
+ "keyword": "immerger",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10755748-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 34840,
+ "created": "2019-03-07T13:17:12.000Z",
+ "lastUpdated": "2021-05-10T19:50:25.729Z",
+ "keywords": [
+ {
+ "keyword": "oncles",
+ "hasLocution": false,
+ "plural": "oncles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10755748-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 34841,
+ "created": "2019-03-07T13:17:12.000Z",
+ "lastUpdated": "2021-05-10T19:50:03.590Z",
+ "keywords": [
+ {
+ "keyword": "oncles",
+ "hasLocution": false,
+ "plural": "oncles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00036925-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 34846,
+ "created": "2019-03-07T13:24:46.000Z",
+ "lastUpdated": "2021-07-14T21:23:53.539Z",
+ "keywords": [
+ {
+ "keyword": "savonner",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "faire mousser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "02053645-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 34844,
+ "created": "2019-03-07T13:17:45.000Z",
+ "lastUpdated": "2021-06-07T08:29:53.939Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "dépasser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "doubler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00558763-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 34826,
+ "created": "2019-03-07T09:38:31.000Z",
+ "lastUpdated": "2021-05-10T19:54:12.765Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Nettoyer avec de l'eau et le plus souvent un produit spécial (savon, lessive, détergent, etc.)",
+ "keyword": "laver",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "crime"
+ ],
+ "synsets": [
+ "00787352-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime"
+ ],
+ "_id": 34854,
+ "created": "2019-03-07T13:30:48.000Z",
+ "lastUpdated": "2021-05-10T19:47:50.463Z",
+ "keywords": [
+ {
+ "keyword": "regarder par le trou de la serrure",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 34848,
+ "created": "2019-03-07T13:27:44.000Z",
+ "lastUpdated": "2021-07-14T21:23:27.550Z",
+ "keywords": [
+ {
+ "keyword": "mettre ses doigts dans la bouche",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre la main dans la bouche ",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human response"
+ ],
+ "synsets": [
+ "14562870-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response"
+ ],
+ "_id": 34856,
+ "created": "2019-03-07T13:31:39.000Z",
+ "lastUpdated": "2021-05-10T19:46:24.174Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sécurité",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tranquillité",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "sûreté",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime",
+ "categorization"
+ ],
+ "synsets": [
+ "00419038-n"
+ ],
+ "tags": [
+ "law",
+ "crime",
+ "categorization"
+ ],
+ "_id": 34858,
+ "created": "2019-03-07T13:32:37.000Z",
+ "lastUpdated": "2021-05-10T19:44:43.055Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "maltraitance",
+ "plural": "maltraitances"
+ },
+ {
+ "type": 2,
+ "keyword": "mauvais traitements",
+ "hasLocution": false,
+ "plural": "mauvais traitements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology",
+ "bird",
+ "categorization",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01606971-n",
+ "00084491-s",
+ "00030911-s"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology",
+ "vertebrate",
+ "bird",
+ "categorization",
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 34860,
+ "created": "2019-03-07T13:35:14.000Z",
+ "lastUpdated": "2024-10-21T12:05:23.522Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rapaces",
+ "hasLocution": false,
+ "plural": "rapaces"
+ },
+ {
+ "keyword": "oiseaux rapaces",
+ "hasLocution": false,
+ "plural": "oiseaux rapaces",
+ "type": 2
+ },
+ {
+ "keyword": "oiseau de proie",
+ "hasLocution": false,
+ "plural": "oiseaux de proie",
+ "type": 2
+ },
+ {
+ "keyword": "rapace",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "rapaces"
+ },
+ {
+ "keyword": "prédateur",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "prédateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10755748-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 34851,
+ "created": "2019-03-07T13:28:47.000Z",
+ "lastUpdated": "2021-05-10T19:48:59.677Z",
+ "keywords": [
+ {
+ "keyword": "oncles",
+ "hasLocution": false,
+ "plural": "oncles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "03314753-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 34862,
+ "created": "2019-03-07T14:01:38.000Z",
+ "lastUpdated": "2021-05-10T19:39:17.356Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chiffon",
+ "hasLocution": true,
+ "plural": "chiffon"
+ },
+ {
+ "keyword": "tissu",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "tissus"
+ },
+ {
+ "keyword": "torchon",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "torchons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal physiology",
+ "mammal",
+ "herbivorous",
+ "categorization"
+ ],
+ "synsets": [
+ "02332053-n"
+ ],
+ "tags": [
+ "animal",
+ "animal physiology",
+ "vertebrate",
+ "mammal",
+ "herbivorous",
+ "categorization"
+ ],
+ "_id": 34864,
+ "created": "2019-03-07T14:02:48.000Z",
+ "lastUpdated": "2021-05-10T19:37:40.960Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rongeur",
+ "hasLocution": true,
+ "plural": "rongeurs"
+ },
+ {
+ "keyword": "rongeurs",
+ "hasLocution": false,
+ "plural": "rongeurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01471892-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 34866,
+ "created": "2019-03-07T14:04:57.000Z",
+ "lastUpdated": "2021-07-14T21:21:53.223Z",
+ "keywords": [
+ {
+ "keyword": "superposer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "color",
+ "visual art"
+ ],
+ "synsets": [
+ "01471892-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "color",
+ "visual art"
+ ],
+ "_id": 34868,
+ "created": "2019-03-07T14:05:27.000Z",
+ "lastUpdated": "2021-07-14T21:21:45.094Z",
+ "keywords": [
+ {
+ "keyword": "superposer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work organization"
+ ],
+ "synsets": [
+ "01146646-n"
+ ],
+ "tags": [
+ "work",
+ "organization"
+ ],
+ "_id": 34870,
+ "created": "2019-03-07T14:07:18.000Z",
+ "lastUpdated": "2021-07-14T21:21:21.588Z",
+ "keywords": [
+ {
+ "keyword": "planning",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "plannings"
+ },
+ {
+ "keyword": "emploi du temps",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "emplois du temps"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10755748-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 34850,
+ "created": "2019-03-07T13:28:47.000Z",
+ "lastUpdated": "2021-05-10T19:49:28.293Z",
+ "keywords": [
+ {
+ "keyword": "oncles",
+ "hasLocution": false,
+ "plural": "oncles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "seller",
+ "trade"
+ ],
+ "synsets": [
+ "10567784-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "seller",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 34878,
+ "created": "2019-03-07T14:11:15.000Z",
+ "lastUpdated": "2021-07-14T21:18:56.205Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vendeur",
+ "hasLocution": true,
+ "plural": "vendeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "land transport"
+ ],
+ "synsets": [
+ "13269497-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 34880,
+ "created": "2019-03-07T14:14:36.000Z",
+ "lastUpdated": "2021-07-14T21:17:12.694Z",
+ "keywords": [
+ {
+ "keyword": "magasin de location de voitures",
+ "hasLocution": false,
+ "plural": "magasins de location de voitures",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "household"
+ ],
+ "synsets": [
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "household",
+ "home"
+ ],
+ "_id": 34882,
+ "created": "2019-03-07T14:16:43.000Z",
+ "lastUpdated": "2021-07-14T21:14:22.853Z",
+ "keywords": [
+ {
+ "keyword": "magasin d'articles ménagers",
+ "hasLocution": false,
+ "plural": "magasins d'articles ménagers",
+ "type": 2
+ },
+ {
+ "keyword": "magasin de vaisselle",
+ "hasLocution": false,
+ "plural": "magasins de vaisselle",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "clothes"
+ ],
+ "synsets": [
+ "03056449-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 34884,
+ "created": "2019-03-07T14:19:50.000Z",
+ "lastUpdated": "2021-07-15T21:06:15.943Z",
+ "keywords": [
+ {
+ "keyword": "magasin de vêtements d'enfant",
+ "hasLocution": false,
+ "plural": "magasins de vêtements d'enfant",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building"
+ ],
+ "synsets": [
+ "04209460-n",
+ "06806088-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade"
+ ],
+ "_id": 34886,
+ "created": "2019-03-07T14:22:22.000Z",
+ "lastUpdated": "2021-07-18T07:12:18.405Z",
+ "keywords": [
+ {
+ "keyword": "magasin de luminaires",
+ "hasLocution": false,
+ "plural": "magasins de luminaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "12596828-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 34888,
+ "created": "2019-03-07T14:27:14.000Z",
+ "lastUpdated": "2021-07-19T12:35:51.680Z",
+ "keywords": [
+ {
+ "keyword": "fève",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fèves"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility"
+ ],
+ "synsets": [
+ "03514169-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 34872,
+ "created": "2019-03-07T14:08:35.000Z",
+ "lastUpdated": "2021-07-14T21:20:27.209Z",
+ "keywords": [
+ {
+ "keyword": "chauffage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chauffages"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "03078859-n",
+ "01463787-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 34874,
+ "created": "2019-03-07T14:10:04.000Z",
+ "lastUpdated": "2021-07-14T21:19:55.836Z",
+ "keywords": [
+ {
+ "keyword": "peigne à poux",
+ "hasLocution": false,
+ "plural": "peignes à poux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "12596828-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 34890,
+ "created": "2019-03-07T14:28:48.000Z",
+ "lastUpdated": "2021-07-14T21:08:40.668Z",
+ "keywords": [
+ {
+ "keyword": "haricot sec",
+ "hasLocution": false,
+ "plural": "haricots secs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "02776128-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 34892,
+ "created": "2019-03-07T14:29:29.000Z",
+ "lastUpdated": "2021-07-19T12:35:25.179Z",
+ "keywords": [
+ {
+ "keyword": "avoir un orage",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "elderly",
+ "person according to their age"
+ ],
+ "synsets": [
+ "01648667-s"
+ ],
+ "tags": [
+ "person",
+ "elderly"
+ ],
+ "_id": 34894,
+ "created": "2019-03-07T14:37:05.000Z",
+ "lastUpdated": "2024-12-12T15:46:02.591Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "vieux",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "âgé",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "02776675-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 34896,
+ "created": "2019-03-07T14:44:16.000Z",
+ "lastUpdated": "2021-06-07T08:24:05.809Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se couvrir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cookery"
+ ],
+ "synsets": [
+ "05018974-n"
+ ],
+ "tags": [
+ "feeding",
+ "cookery"
+ ],
+ "_id": 34898,
+ "created": "2019-03-07T14:44:50.000Z",
+ "lastUpdated": "2021-06-07T08:23:40.269Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "température",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "01890481-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 34900,
+ "created": "2019-03-07T16:32:47.000Z",
+ "lastUpdated": "2021-07-18T07:07:39.887Z",
+ "keywords": [
+ {
+ "keyword": "débarquer par le toboggan",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "évacuer par le toboggan",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "aerial transport"
+ ],
+ "synsets": [
+ "03668213-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "air transport"
+ ],
+ "_id": 34876,
+ "created": "2019-03-07T14:10:30.000Z",
+ "lastUpdated": "2021-06-07T08:25:40.354Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gilet de sauvetage",
+ "hasLocution": true,
+ "plural": "gilets de sauvetage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility"
+ ],
+ "synsets": [
+ "04506595-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 34902,
+ "created": "2019-03-07T16:34:46.000Z",
+ "lastUpdated": "2021-07-15T21:05:45.365Z",
+ "keywords": [
+ {
+ "keyword": "bains turcs",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "hammam",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "object",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "00360340-s"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 34910,
+ "created": "2019-03-07T16:47:40.000Z",
+ "lastUpdated": "2021-07-19T12:34:12.010Z",
+ "keywords": [
+ {
+ "keyword": "batterie vide",
+ "hasLocution": false,
+ "plural": "batteries vides",
+ "type": 2
+ },
+ {
+ "keyword": "pile vide",
+ "hasLocution": false,
+ "plural": "piles vides",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "pile déchargée",
+ "plural": "piles déchargées",
+ "type": 2
+ },
+ {
+ "keyword": "pile usée",
+ "hasLocution": false,
+ "plural": "piles usées",
+ "type": 2
+ },
+ {
+ "keyword": "déchargée",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "déchargées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "02458503-a"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 34912,
+ "created": "2019-03-07T16:54:20.000Z",
+ "lastUpdated": "2021-06-07T08:21:42.652Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "toxique",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "00289948-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 34908,
+ "created": "2019-03-07T16:44:01.000Z",
+ "lastUpdated": "2021-07-15T21:05:14.241Z",
+ "keywords": [
+ {
+ "keyword": "écran cassé",
+ "hasLocution": false,
+ "plural": "écrans cassés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical test"
+ ],
+ "synsets": [
+ "07017051-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 34904,
+ "created": "2019-03-07T16:37:26.000Z",
+ "lastUpdated": "2021-07-19T12:34:48.266Z",
+ "keywords": [
+ {
+ "keyword": "échocardiogramme",
+ "hasLocution": false,
+ "plural": "échocardiogrammes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "land transport"
+ ],
+ "synsets": [
+ "02903416-a"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 34918,
+ "created": "2019-03-07T16:59:36.000Z",
+ "lastUpdated": "2021-07-15T21:04:52.063Z",
+ "keywords": [
+ {
+ "keyword": "location de vélo",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04237021-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 34916,
+ "created": "2019-03-07T16:55:09.000Z",
+ "lastUpdated": "2021-06-07T08:21:10.118Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "écumoire",
+ "hasLocution": true,
+ "plural": "écumoires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics",
+ "energy"
+ ],
+ "synsets": [
+ "11446103-n"
+ ],
+ "tags": [
+ "physics",
+ "work",
+ "secondary sector",
+ "energy"
+ ],
+ "_id": 34914,
+ "created": "2019-03-07T16:54:44.000Z",
+ "lastUpdated": "2021-06-07T08:21:29.631Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "énergie nucléaire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "énergie atomique",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "basketball"
+ ],
+ "synsets": [
+ "09861435-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "basketball"
+ ],
+ "_id": 34920,
+ "created": "2019-03-07T17:00:52.000Z",
+ "lastUpdated": "2021-07-15T21:05:00.135Z",
+ "keywords": [
+ {
+ "keyword": "basketteuse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "basketteuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "00481519-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 34922,
+ "created": "2019-03-07T19:39:59.000Z",
+ "lastUpdated": "2021-07-19T12:31:19.433Z",
+ "keywords": [
+ {
+ "keyword": "joueuse de badmington",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "joueuses de badmington"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "historical character",
+ "history"
+ ],
+ "_id": 34927,
+ "created": "2019-03-07T19:48:03.000Z",
+ "lastUpdated": "2021-07-16T15:30:27.897Z",
+ "keywords": [
+ {
+ "keyword": "Diego de Marcilla",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "hardware",
+ "categorization"
+ ],
+ "synsets": [
+ "03187746-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "computing",
+ "hardware",
+ "categorization"
+ ],
+ "_id": 34906,
+ "created": "2019-03-07T16:41:28.000Z",
+ "lastUpdated": "2021-07-15T21:05:25.625Z",
+ "keywords": [
+ {
+ "keyword": "appareils mobiles",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "historical character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "historical character",
+ "history"
+ ],
+ "_id": 34931,
+ "created": "2019-03-08T09:09:48.000Z",
+ "lastUpdated": "2021-07-16T15:27:24.869Z",
+ "keywords": [
+ {
+ "keyword": "Pedro Segura",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "historical character",
+ "history"
+ ],
+ "_id": 34933,
+ "created": "2019-03-08T09:11:57.000Z",
+ "lastUpdated": "2021-07-16T15:26:35.294Z",
+ "keywords": [
+ {
+ "keyword": "Pedro de Azagra",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "historical character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "historical character",
+ "history"
+ ],
+ "_id": 34935,
+ "created": "2019-03-08T09:13:18.000Z",
+ "lastUpdated": "2021-07-18T07:04:41.359Z",
+ "keywords": [
+ {
+ "keyword": "Isabel et Diego",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "les Amants de Teruel",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "middle ages",
+ "war"
+ ],
+ "synsets": [
+ "00955670-n"
+ ],
+ "tags": [
+ "history",
+ "middle ages",
+ "event",
+ "war"
+ ],
+ "_id": 34937,
+ "created": "2019-03-08T09:14:22.000Z",
+ "lastUpdated": "2021-05-10T12:56:31.264Z",
+ "keywords": [
+ {
+ "keyword": "bataille",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "batailles"
+ },
+ {
+ "keyword": "combat",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "combats"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "appliance",
+ "electrical appliance"
+ ],
+ "synsets": [
+ "00518927-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 34939,
+ "created": "2019-03-08T09:16:58.000Z",
+ "lastUpdated": "2021-07-16T15:24:10.847Z",
+ "keywords": [
+ {
+ "keyword": "charger les piles",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "recharger la pile",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "river"
+ ],
+ "synsets": [
+ "09218250-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "river"
+ ],
+ "_id": 34941,
+ "created": "2019-03-08T09:20:55.000Z",
+ "lastUpdated": "2021-05-10T12:55:34.912Z",
+ "keywords": [
+ {
+ "keyword": "Amazone",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": " Fleuve Amazone",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "river"
+ ],
+ "synsets": [
+ "09373421-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "landform",
+ "river"
+ ],
+ "_id": 34943,
+ "created": "2019-03-08T09:22:32.000Z",
+ "lastUpdated": "2021-05-10T12:55:14.391Z",
+ "keywords": [
+ {
+ "keyword": "Mékong",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "fleuve du Mékong",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy"
+ ],
+ "synsets": [
+ "02740838-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy"
+ ],
+ "_id": 34945,
+ "created": "2019-03-10T08:24:14.000Z",
+ "lastUpdated": "2021-07-16T15:23:37.019Z",
+ "keywords": [
+ {
+ "keyword": "bras de dinosaures",
+ "hasLocution": false,
+ "plural": "bras de dinosaures",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character"
+ ],
+ "synsets": [],
+ "tags": [
+ "character",
+ "historical character",
+ "history"
+ ],
+ "_id": 34929,
+ "created": "2019-03-08T09:05:29.000Z",
+ "lastUpdated": "2021-07-16T15:27:59.332Z",
+ "keywords": [
+ {
+ "keyword": "Isabel de Segura",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing"
+ ],
+ "synsets": [
+ "04421334-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing"
+ ],
+ "_id": 34946,
+ "created": "2019-03-10T08:24:14.000Z",
+ "lastUpdated": "2021-04-21T21:06:18.077Z",
+ "keywords": [
+ {
+ "keyword": "terrarium",
+ "hasLocution": false,
+ "plural": "terrariums",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "00050289-n"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 34925,
+ "created": "2019-03-07T19:42:18.000Z",
+ "lastUpdated": "2021-07-19T12:31:12.536Z",
+ "keywords": [
+ {
+ "keyword": "intrusion dans le vie privée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "intrusions dans le vie privée"
+ },
+ {
+ "keyword": "intrusion",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "intrusions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy"
+ ],
+ "synsets": [
+ "05588980-n",
+ "04283523-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy"
+ ],
+ "_id": 34949,
+ "created": "2019-03-10T08:27:39.000Z",
+ "lastUpdated": "2021-07-16T15:22:27.831Z",
+ "keywords": [
+ {
+ "keyword": "piques de dinosaure",
+ "hasLocution": false,
+ "plural": "piques de dinosaure",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy"
+ ],
+ "synsets": [
+ "02158792-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy"
+ ],
+ "_id": 34951,
+ "created": "2019-03-10T08:29:37.000Z",
+ "lastUpdated": "2021-07-16T15:12:10.702Z",
+ "keywords": [
+ {
+ "keyword": "griffes de dinosaure",
+ "hasLocution": false,
+ "plural": "griffes de dinosaure",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy"
+ ],
+ "synsets": [
+ "05554173-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy"
+ ],
+ "_id": 34953,
+ "created": "2019-03-10T08:30:50.000Z",
+ "lastUpdated": "2021-04-21T21:05:13.331Z",
+ "keywords": [
+ {
+ "keyword": "cou de dinosaure",
+ "hasLocution": false,
+ "plural": "cous de dinosaure",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy"
+ ],
+ "synsets": [
+ "05554173-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy"
+ ],
+ "_id": 34957,
+ "created": "2019-03-10T08:33:21.000Z",
+ "lastUpdated": "2021-04-21T21:04:27.983Z",
+ "keywords": [
+ {
+ "keyword": "cou de dinosaure",
+ "hasLocution": false,
+ "plural": "cous de dinosaure",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy"
+ ],
+ "synsets": [
+ "05289932-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy"
+ ],
+ "_id": 34959,
+ "created": "2019-03-10T08:36:19.000Z",
+ "lastUpdated": "2021-04-21T21:03:40.341Z",
+ "keywords": [
+ {
+ "keyword": "dents de dinosaure",
+ "hasLocution": false,
+ "plural": "dents de dinosaure",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy",
+ "fossil"
+ ],
+ "synsets": [
+ "05547754-n",
+ "01706964-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy",
+ "fossil",
+ "paleontology"
+ ],
+ "_id": 34967,
+ "created": "2019-03-10T08:46:08.000Z",
+ "lastUpdated": "2021-05-10T12:48:10.067Z",
+ "keywords": [
+ {
+ "keyword": "crâne de Triceratops",
+ "hasLocution": false,
+ "plural": "crânes de Triceratops",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy",
+ "fossil"
+ ],
+ "synsets": [
+ "05547754-n",
+ "01716405-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy",
+ "fossil",
+ "paleontology"
+ ],
+ "_id": 34969,
+ "created": "2019-03-10T08:47:38.000Z",
+ "lastUpdated": "2021-04-21T21:01:12.250Z",
+ "keywords": [
+ {
+ "keyword": "crâne de Tyrannosaure Rex",
+ "hasLocution": false,
+ "plural": "crânes de Tyrannosaure Rex",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy"
+ ],
+ "synsets": [
+ "05569140-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy"
+ ],
+ "_id": 34971,
+ "created": "2019-03-10T08:50:30.000Z",
+ "lastUpdated": "2021-07-16T15:11:14.725Z",
+ "keywords": [
+ {
+ "keyword": "jambes de dinosaure",
+ "hasLocution": false,
+ "plural": "jambes de dinosaure",
+ "type": 2
+ },
+ {
+ "keyword": "pattes de dinosaure",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pattes de dinosaure"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy",
+ "animal",
+ "extinct being"
+ ],
+ "synsets": [
+ "06657802-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy",
+ "paleontology"
+ ],
+ "_id": 34973,
+ "created": "2019-03-10T08:52:00.000Z",
+ "lastUpdated": "2024-12-06T07:16:28.165Z",
+ "keywords": [
+ {
+ "keyword": "empreinte de dinosaure",
+ "hasLocution": false,
+ "plural": "empreintes de dinosaure",
+ "type": 2
+ },
+ {
+ "keyword": "empreinte de pied fossilisée",
+ "hasLocution": false,
+ "plural": "empreintes de pied fossilisées",
+ "type": 2
+ },
+ {
+ "keyword": "ichnite",
+ "hasLocution": false,
+ "plural": "ichnites",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy",
+ "animal",
+ "extinct being"
+ ],
+ "synsets": [
+ "06657802-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy",
+ "paleontology"
+ ],
+ "_id": 34974,
+ "created": "2019-03-10T08:52:00.000Z",
+ "lastUpdated": "2024-12-06T07:16:14.526Z",
+ "keywords": [
+ {
+ "keyword": "empreinte de pied fossilisée",
+ "plural": "empreintes de pied fossilisées",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "empreinte de dinosaure",
+ "hasLocution": false,
+ "plural": "empreintes de dinosaure",
+ "type": 2
+ },
+ {
+ "keyword": "ichnite",
+ "hasLocution": false,
+ "plural": "ichnites",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy",
+ "extinct being"
+ ],
+ "synsets": [
+ "06657802-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy",
+ "paleontology"
+ ],
+ "_id": 34975,
+ "created": "2019-03-10T08:52:00.000Z",
+ "lastUpdated": "2024-12-06T07:16:46.658Z",
+ "keywords": [
+ {
+ "keyword": "empreinte fossilisée",
+ "hasLocution": false,
+ "plural": "empreintes fossilisées",
+ "type": 2
+ },
+ {
+ "keyword": "empreinte de dinosaure",
+ "hasLocution": false,
+ "plural": "empreintes de dinosaure",
+ "type": 2
+ },
+ {
+ "keyword": "ichnite",
+ "hasLocution": false,
+ "plural": "ichnites",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy"
+ ],
+ "synsets": [
+ "05291832-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy"
+ ],
+ "_id": 34963,
+ "created": "2019-03-10T08:40:57.000Z",
+ "lastUpdated": "2021-04-21T21:02:24.450Z",
+ "keywords": [
+ {
+ "keyword": "vertèbres de dinosaure",
+ "hasLocution": false,
+ "plural": "vertèbres de dinosaure",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy"
+ ],
+ "synsets": [
+ "02160209-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy"
+ ],
+ "_id": 34961,
+ "created": "2019-03-10T08:38:46.000Z",
+ "lastUpdated": "2021-04-21T21:03:04.648Z",
+ "keywords": [
+ {
+ "keyword": "queue de dinosaure",
+ "hasLocution": false,
+ "plural": "queues de dinosaure",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy",
+ "fossil"
+ ],
+ "synsets": [
+ "05291832-n",
+ "09307495-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy",
+ "fossil",
+ "paleontology"
+ ],
+ "_id": 34965,
+ "created": "2019-03-10T08:44:18.000Z",
+ "lastUpdated": "2021-07-19T12:29:59.834Z",
+ "keywords": [
+ {
+ "keyword": "vertèbre fossilisée",
+ "hasLocution": false,
+ "plural": "vertèbres fossilisées",
+ "type": 2
+ },
+ {
+ "keyword": "vertèbre de dinosaure",
+ "hasLocution": false,
+ "plural": "vertèbres de dinosaure",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur"
+ ],
+ "synsets": [
+ "01710339-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 34983,
+ "created": "2019-03-10T08:56:51.000Z",
+ "lastUpdated": "2021-05-10T12:41:15.819Z",
+ "keywords": [
+ {
+ "keyword": "Iguanodon Galvensis",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "iguanodon",
+ "hasLocution": false,
+ "plural": "iguanodon",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy",
+ "fossil"
+ ],
+ "synsets": [
+ "06657802-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy",
+ "fossil",
+ "paleontology"
+ ],
+ "_id": 34985,
+ "created": "2019-03-10T08:58:03.000Z",
+ "lastUpdated": "2021-06-07T08:19:15.734Z",
+ "keywords": [
+ {
+ "keyword": "trace de pas",
+ "hasLocution": false,
+ "plural": "traces de pas",
+ "type": 2
+ },
+ {
+ "keyword": "empreinte de pied fossilisée",
+ "hasLocution": false,
+ "plural": "empreintes de pied fossilisées",
+ "type": 2
+ },
+ {
+ "keyword": "ichnite de dinosaure",
+ "hasLocution": false,
+ "plural": "ichnites de dinosaure",
+ "type": 2
+ },
+ {
+ "keyword": "trace de pas de dinosaure",
+ "hasLocution": false,
+ "plural": "traces de pas de dinosaure",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur"
+ ],
+ "synsets": [
+ "09392066-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 34987,
+ "created": "2019-03-10T08:59:44.000Z",
+ "lastUpdated": "2021-05-10T12:34:59.694Z",
+ "keywords": [
+ {
+ "keyword": "nid de dinosaures",
+ "hasLocution": false,
+ "plural": "nids de dinosaures",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03976904-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 34989,
+ "created": "2019-03-10T09:01:10.000Z",
+ "lastUpdated": "2021-04-21T20:58:50.276Z",
+ "keywords": [
+ {
+ "keyword": "dinosaure en peluche",
+ "hasLocution": false,
+ "plural": "dinosaures en peluche",
+ "type": 2
+ },
+ {
+ "keyword": "peluche dinosaure",
+ "hasLocution": false,
+ "plural": "peluches dinosaures",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "prehistory"
+ ],
+ "synsets": [
+ "10212645-n"
+ ],
+ "tags": [
+ "history",
+ "prehistory"
+ ],
+ "_id": 34991,
+ "created": "2019-03-10T09:03:47.000Z",
+ "lastUpdated": "2021-07-15T21:04:20.360Z",
+ "keywords": [
+ {
+ "keyword": "chasseur préhistorique",
+ "hasLocution": false,
+ "plural": "chasseurs préhistoriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "dinosaur"
+ ],
+ "synsets": [
+ "01146304-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 34993,
+ "created": "2019-03-10T09:04:13.000Z",
+ "lastUpdated": "2021-04-21T20:56:33.531Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chasser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy",
+ "animal",
+ "extinct being"
+ ],
+ "synsets": [
+ "06657802-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy",
+ "paleontology"
+ ],
+ "_id": 34976,
+ "created": "2019-03-10T08:52:00.000Z",
+ "lastUpdated": "2024-12-06T07:16:36.950Z",
+ "keywords": [
+ {
+ "keyword": "trace de pied de dinosaure fossilisée",
+ "hasLocution": false,
+ "plural": "traces de pied de dinosaure fossilisées",
+ "type": 2
+ },
+ {
+ "keyword": "ichnite",
+ "hasLocution": false,
+ "plural": "ichnites",
+ "type": 2
+ },
+ {
+ "keyword": "empreinte de pied de dinosaure fossilisée",
+ "hasLocution": false,
+ "plural": "empreintes de pied de dinosaure fossilisées",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur"
+ ],
+ "synsets": [
+ "01716405-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "paleontology"
+ ],
+ "_id": 34981,
+ "created": "2019-03-10T08:53:36.000Z",
+ "lastUpdated": "2021-04-21T20:59:59.309Z",
+ "keywords": [
+ {
+ "keyword": "Tyrannosaure Rex",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building",
+ "cinema"
+ ],
+ "synsets": [
+ "06631444-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture",
+ "scenic art",
+ "cinema",
+ "show"
+ ],
+ "_id": 34997,
+ "created": "2019-03-10T09:07:11.000Z",
+ "lastUpdated": "2021-04-21T20:56:14.290Z",
+ "keywords": [
+ {
+ "keyword": "cinéma 3D",
+ "hasLocution": false,
+ "plural": "cinémas 3D",
+ "type": 2
+ },
+ {
+ "keyword": "cinéma en relief",
+ "hasLocution": false,
+ "plural": "cinémas en relief",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy",
+ "natural disaster"
+ ],
+ "synsets": [
+ "09375746-n",
+ "09376006-n"
+ ],
+ "tags": [
+ "astronomy",
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 35001,
+ "created": "2019-03-10T09:07:59.000Z",
+ "lastUpdated": "2021-04-21T20:53:31.447Z",
+ "keywords": [
+ {
+ "keyword": "météorite",
+ "hasLocution": false,
+ "plural": "météorites",
+ "type": 2
+ },
+ {
+ "keyword": "météore",
+ "hasLocution": false,
+ "plural": "météores",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural disaster"
+ ],
+ "synsets": [
+ "00378172-n"
+ ],
+ "tags": [
+ "meteorology",
+ "natural disaster"
+ ],
+ "_id": 35003,
+ "created": "2019-03-10T09:08:27.000Z",
+ "lastUpdated": "2021-07-15T21:04:12.823Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "explosion",
+ "hasLocution": true,
+ "plural": "explosions"
+ },
+ {
+ "keyword": "impact",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "impacts"
+ },
+ {
+ "keyword": "éclatement",
+ "type": 2,
+ "plural": "éclatements",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "entertainment facility",
+ "recreational facility",
+ "paleontology",
+ "dinosaur"
+ ],
+ "synsets": [
+ "08632949-n"
+ ],
+ "tags": [
+ "leisure",
+ "place",
+ "facility",
+ "recreational facility",
+ "paleontology",
+ "animal",
+ "extinct being",
+ "dinosaur"
+ ],
+ "_id": 35005,
+ "created": "2019-03-10T09:11:48.000Z",
+ "lastUpdated": "2021-05-10T12:33:59.407Z",
+ "keywords": [
+ {
+ "keyword": "parc de dinosaures",
+ "hasLocution": false,
+ "plural": "parcs de dinosaures",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "entertainment facility",
+ "recreational facility",
+ "paleontology",
+ "dinosaur"
+ ],
+ "synsets": [
+ "08632949-n"
+ ],
+ "tags": [
+ "leisure",
+ "place",
+ "facility",
+ "recreational facility",
+ "paleontology",
+ "animal",
+ "extinct being",
+ "dinosaur"
+ ],
+ "_id": 35006,
+ "created": "2019-03-10T09:11:48.000Z",
+ "lastUpdated": "2021-05-10T12:33:39.825Z",
+ "keywords": [
+ {
+ "keyword": "parc de dinosaures",
+ "hasLocution": false,
+ "plural": "parcs de dinosaures",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "paleontology",
+ "workplace"
+ ],
+ "synsets": [
+ "08567651-n"
+ ],
+ "tags": [
+ "paleontology",
+ "place",
+ "workplace"
+ ],
+ "_id": 35009,
+ "created": "2019-03-10T09:13:25.000Z",
+ "lastUpdated": "2021-05-10T12:32:23.683Z",
+ "keywords": [
+ {
+ "keyword": "site paléontologique",
+ "hasLocution": false,
+ "plural": "sites paléontologiques",
+ "type": 2
+ },
+ {
+ "keyword": "fouille paléontologique",
+ "hasLocution": false,
+ "plural": "fouilles paléontologiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "06627914-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 35011,
+ "created": "2019-03-10T09:17:01.000Z",
+ "lastUpdated": "2021-07-18T07:00:40.257Z",
+ "keywords": [
+ {
+ "keyword": "attraction de voiture",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "prehistory"
+ ],
+ "synsets": [
+ "01146304-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "history",
+ "prehistory"
+ ],
+ "_id": 34999,
+ "created": "2019-03-10T09:07:29.000Z",
+ "lastUpdated": "2021-04-21T20:54:17.507Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "chasser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "drawing",
+ "cinema"
+ ],
+ "synsets": [
+ "06631444-n"
+ ],
+ "tags": [
+ "visual art",
+ "drawing",
+ "scenic art",
+ "cinema",
+ "show"
+ ],
+ "_id": 34995,
+ "created": "2019-03-10T09:06:05.000Z",
+ "lastUpdated": "2021-04-21T20:57:19.233Z",
+ "keywords": [
+ {
+ "keyword": "image 3D",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "images 3D"
+ },
+ {
+ "keyword": "3D",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "02969645-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 35013,
+ "created": "2019-03-10T09:18:58.000Z",
+ "lastUpdated": "2021-06-07T08:15:18.719Z",
+ "keywords": [
+ {
+ "keyword": "carroussel",
+ "hasLocution": false,
+ "plural": "carroussels",
+ "type": 2
+ },
+ {
+ "keyword": "carroussel de Sauriopark",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "02066560-v",
+ "02040935-v",
+ "02042202-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 35021,
+ "created": "2019-03-26T17:21:24.000Z",
+ "lastUpdated": "2021-07-15T21:03:24.552Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "incliner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se pencher",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "pencher",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character",
+ "musical art"
+ ],
+ "synsets": [
+ "10849825-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "music"
+ ],
+ "_id": 35023,
+ "created": "2019-03-26T17:22:21.000Z",
+ "lastUpdated": "2021-04-21T20:49:58.464Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Bach",
+ "hasLocution": true
+ },
+ {
+ "keyword": "Jean-Sébastien Bach",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01216829-v",
+ "01980103-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 35019,
+ "created": "2019-03-26T17:20:20.000Z",
+ "lastUpdated": "2021-07-15T21:03:31.621Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Saisir, attraper",
+ "keyword": "prendre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "ramasser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "02876113-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 35025,
+ "created": "2019-03-26T17:22:53.000Z",
+ "lastUpdated": "2021-05-08T20:42:19.029Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "bottes de marche",
+ "plural": "bottes de marche"
+ },
+ {
+ "keyword": "bottes",
+ "hasLocution": true,
+ "plural": "bottes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "03498434-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 35027,
+ "created": "2019-03-26T17:23:27.000Z",
+ "lastUpdated": "2021-04-21T20:47:46.181Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "matériel hardware",
+ "hasLocution": true,
+ "plural": "matériels hardwares"
+ },
+ {
+ "keyword": "matériel",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "matériels"
+ },
+ {
+ "keyword": "hardware",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "hardware"
+ },
+ {
+ "keyword": "matériel informatique",
+ "hasLocution": false,
+ "plural": "matériels informatiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "street furniture"
+ ],
+ "synsets": [
+ "01988916-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 35029,
+ "created": "2019-03-26T17:24:33.000Z",
+ "lastUpdated": "2021-08-01T18:49:57.298Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mettre quelqu'un sur son séant en le plaçant sur un siège ou sur une autre chose : Asseoir un jeune enfant sur sa chaise.",
+ "keyword": "s'asseoir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'assoir sur un banc",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir sur un banc",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body position"
+ ],
+ "synsets": [
+ "01988916-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "position"
+ ],
+ "_id": 35031,
+ "created": "2019-03-26T17:25:00.000Z",
+ "lastUpdated": "2021-08-01T18:55:20.086Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mettre quelqu'un sur son séant en le plaçant sur un siège ou sur une autre chose : Asseoir un jeune enfant sur sa chaise.",
+ "keyword": "asseoir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'assoir par terre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir par terre",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "être assis par terre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "furniture"
+ ],
+ "synsets": [
+ "01988916-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "furniture"
+ ],
+ "_id": 35033,
+ "created": "2019-03-26T17:25:29.000Z",
+ "lastUpdated": "2021-08-01T18:56:51.143Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mettre quelqu'un sur son séant en le plaçant sur un siège ou sur une autre chose : Asseoir un jeune enfant sur sa chaise.",
+ "keyword": "asseoir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'assoir sur une chaise",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir sur une chaise",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "assoir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "06530710-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 35015,
+ "created": "2019-03-10T09:20:42.000Z",
+ "lastUpdated": "2021-04-21T20:51:57.201Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "ticket",
+ "plural": "ticket"
+ },
+ {
+ "keyword": "billet",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "billets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trade document",
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "06530710-n"
+ ],
+ "tags": [
+ "document",
+ "trade",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 35016,
+ "created": "2019-03-10T09:20:42.000Z",
+ "lastUpdated": "2021-04-21T20:51:15.028Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "ticket",
+ "plural": "tickets"
+ },
+ {
+ "keyword": "billet",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "billet"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy"
+ ],
+ "synsets": [
+ "01946540-n"
+ ],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy"
+ ],
+ "_id": 35035,
+ "created": "2019-03-26T17:26:09.000Z",
+ "lastUpdated": "2021-04-21T20:45:53.824Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conque",
+ "hasLocution": true,
+ "plural": "conques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "hairdresser",
+ "routine"
+ ],
+ "synsets": [
+ "01538956-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser",
+ "person",
+ "routine"
+ ],
+ "_id": 35037,
+ "created": "2019-03-26T17:26:50.000Z",
+ "lastUpdated": "2021-06-07T08:12:41.340Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "laver les cheveux",
+ "hasLocution": true
+ },
+ {
+ "keyword": "se laver les cheveux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "00373938-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 35039,
+ "created": "2019-03-26T17:27:14.000Z",
+ "lastUpdated": "2021-06-07T08:12:23.726Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "inclusion",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "01889838-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 35043,
+ "created": "2019-03-26T17:29:55.000Z",
+ "lastUpdated": "2021-04-21T20:45:07.297Z",
+ "keywords": [
+ {
+ "keyword": "ramper",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se trainer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "special education"
+ ],
+ "synsets": [
+ "02454712-v",
+ "00468364-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "special education"
+ ],
+ "_id": 35041,
+ "created": "2019-03-26T17:29:28.000Z",
+ "lastUpdated": "2021-06-07T08:12:14.507Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "inclure",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "intégrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cookery"
+ ],
+ "synsets": [
+ "07670276-n",
+ "09460145-n"
+ ],
+ "tags": [
+ "feeding",
+ "cookery"
+ ],
+ "_id": 35045,
+ "created": "2019-03-26T17:30:17.000Z",
+ "lastUpdated": "2021-04-21T20:43:44.257Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tranche",
+ "hasLocution": true,
+ "plural": "tranches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "atmospheric phenomena",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "11478731-n",
+ "14545250-n"
+ ],
+ "tags": [
+ "meteorology",
+ "atmospheric phenomena",
+ "core vocabulary"
+ ],
+ "_id": 35049,
+ "created": "2019-03-26T17:31:16.000Z",
+ "lastUpdated": "2021-04-21T20:40:32.504Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "brouillard",
+ "hasLocution": true,
+ "plural": "brouillards"
+ },
+ {
+ "keyword": "brume",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "brumes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "mollusc",
+ "oviparous",
+ "marine animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01971538-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "wild"
+ ],
+ "_id": 35055,
+ "created": "2019-03-26T17:33:04.000Z",
+ "lastUpdated": "2021-04-21T20:38:30.215Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nautile",
+ "hasLocution": false,
+ "plural": "nautiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "domestic animal"
+ ],
+ "synsets": [
+ "01816026-n"
+ ],
+ "tags": [
+ "animal",
+ "herbivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "domestic"
+ ],
+ "_id": 35053,
+ "created": "2019-03-26T17:32:06.000Z",
+ "lastUpdated": "2021-04-21T20:39:01.822Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tourterelle",
+ "hasLocution": true,
+ "plural": "tourterelles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "historical character",
+ "musical art"
+ ],
+ "synsets": [
+ "10861001-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "music"
+ ],
+ "_id": 35057,
+ "created": "2019-03-26T17:34:47.000Z",
+ "lastUpdated": "2021-04-21T20:37:44.618Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Beethoven",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10419190-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 35059,
+ "created": "2019-03-26T17:35:57.000Z",
+ "lastUpdated": "2021-05-01T00:27:31.766Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parents",
+ "hasLocution": true,
+ "plural": "parents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10419190-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 35060,
+ "created": "2019-03-26T17:35:57.000Z",
+ "lastUpdated": "2021-05-01T00:27:16.287Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parents",
+ "hasLocution": true,
+ "plural": "parents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family",
+ "person according to their age"
+ ],
+ "synsets": [
+ "10419190-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 35061,
+ "created": "2019-03-26T17:35:57.000Z",
+ "lastUpdated": "2024-12-13T06:46:25.905Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parents",
+ "hasLocution": true,
+ "plural": "parents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10419190-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 35062,
+ "created": "2019-03-26T17:35:57.000Z",
+ "lastUpdated": "2021-05-01T00:26:48.240Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parents",
+ "hasLocution": true,
+ "plural": "parents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "reptile",
+ "oviparous",
+ "terrestrial animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01729333-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "reptile",
+ "oviparous",
+ "terrestrial animal",
+ "wild"
+ ],
+ "_id": 35051,
+ "created": "2019-03-26T17:31:39.000Z",
+ "lastUpdated": "2021-04-21T20:39:55.636Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "serpent",
+ "plural": "serpents"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication system"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication system"
+ ],
+ "_id": 35071,
+ "created": "2019-03-26T17:56:51.000Z",
+ "lastUpdated": "2021-04-21T20:36:03.176Z",
+ "keywords": [
+ {
+ "keyword": "ARASAAC",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "astronomy"
+ ],
+ "synsets": [
+ "09262646-n"
+ ],
+ "tags": [
+ "astronomy"
+ ],
+ "_id": 35073,
+ "created": "2019-03-26T17:57:21.000Z",
+ "lastUpdated": "2021-07-15T21:02:41.422Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "astre",
+ "hasLocution": true,
+ "plural": "astres"
+ },
+ {
+ "keyword": "corps céleste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "corps célestes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 35075,
+ "created": "2019-03-26T18:01:25.000Z",
+ "lastUpdated": "2021-04-21T20:35:25.149Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "carte conceptuelle",
+ "hasLocution": true,
+ "plural": "cartes conceptuelles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "09559169-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 35069,
+ "created": "2019-03-26T17:56:29.000Z",
+ "lastUpdated": "2021-04-21T20:37:26.577Z",
+ "keywords": [
+ {
+ "type": 1,
+ "keyword": "Dieu",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "visual artist",
+ "professional artist",
+ "sculpture"
+ ],
+ "synsets": [
+ "10585500-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "visual art",
+ "sculpture"
+ ],
+ "_id": 35077,
+ "created": "2019-03-26T18:03:22.000Z",
+ "lastUpdated": "2021-05-08T20:39:19.941Z",
+ "keywords": [
+ {
+ "keyword": "sculpteur",
+ "hasLocution": false,
+ "plural": "sculpteurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "visual artist",
+ "professional artist",
+ "sculpture"
+ ],
+ "synsets": [
+ "10585500-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "visual art",
+ "sculpture"
+ ],
+ "_id": 35078,
+ "created": "2019-03-26T18:03:22.000Z",
+ "lastUpdated": "2021-05-08T20:38:52.632Z",
+ "keywords": [
+ {
+ "keyword": "sculpteur",
+ "hasLocution": false,
+ "plural": "sculpteurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "visual artist",
+ "professional artist",
+ "sculpture"
+ ],
+ "synsets": [
+ "10585500-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "visual art",
+ "sculpture"
+ ],
+ "_id": 35081,
+ "created": "2019-03-26T18:03:45.000Z",
+ "lastUpdated": "2021-05-08T20:39:41.553Z",
+ "keywords": [
+ {
+ "keyword": "sculptrice",
+ "hasLocution": false,
+ "plural": "sculptrices",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sculpture",
+ "verb"
+ ],
+ "synsets": [
+ "01688232-v"
+ ],
+ "tags": [
+ "visual art",
+ "sculpture",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 35083,
+ "created": "2019-03-26T18:07:19.000Z",
+ "lastUpdated": "2021-04-21T20:33:57.836Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sculpter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sculpture",
+ "verb"
+ ],
+ "synsets": [
+ "01688232-v"
+ ],
+ "tags": [
+ "visual art",
+ "sculpture",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 35084,
+ "created": "2019-03-26T18:07:19.000Z",
+ "lastUpdated": "2021-04-21T20:33:50.368Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "sculpter",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cold meat"
+ ],
+ "synsets": [
+ "07694173-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 35047,
+ "created": "2019-03-26T17:30:41.000Z",
+ "lastUpdated": "2021-04-21T20:42:13.897Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charcuterie",
+ "hasLocution": true,
+ "plural": "charcuteries"
+ },
+ {
+ "keyword": "viande froide",
+ "hasLocution": false,
+ "plural": "viandes froides",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "horse riding"
+ ],
+ "synsets": [
+ "02345243-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "horse riding"
+ ],
+ "_id": 35087,
+ "created": "2019-03-26T18:08:14.000Z",
+ "lastUpdated": "2021-05-08T20:37:47.255Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ferrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "horse riding"
+ ],
+ "synsets": [
+ "02345243-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "horse riding"
+ ],
+ "_id": 35088,
+ "created": "2019-03-26T18:08:14.000Z",
+ "lastUpdated": "2021-05-08T20:37:39.869Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ferrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "horse riding"
+ ],
+ "synsets": [
+ "02345243-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "horse riding"
+ ],
+ "_id": 35089,
+ "created": "2019-03-26T18:08:14.000Z",
+ "lastUpdated": "2021-05-08T20:37:33.604Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ferrer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01839438-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 35093,
+ "created": "2019-03-26T18:10:01.000Z",
+ "lastUpdated": "2021-06-07T08:11:24.170Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "intr. Se mouvoir d'un lieu vers un autre, s'y rendre",
+ "keyword": "aller",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00909100-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 35095,
+ "created": "2019-03-26T18:10:37.000Z",
+ "lastUpdated": "2021-07-15T21:02:16.493Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "trépigner",
+ "hasLocution": true
+ },
+ {
+ "keyword": "faire une crise",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "official document"
+ ],
+ "synsets": [
+ "02480958-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "document",
+ "public administration"
+ ],
+ "_id": 35097,
+ "created": "2019-03-26T18:12:55.000Z",
+ "lastUpdated": "2021-07-18T07:00:36.109Z",
+ "keywords": [
+ {
+ "keyword": "accréditer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "certifier",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "10352098-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 35067,
+ "created": "2019-03-26T17:39:36.000Z",
+ "lastUpdated": "2021-05-01T00:26:33.255Z",
+ "keywords": [
+ {
+ "keyword": "mères",
+ "hasLocution": false,
+ "plural": "mères",
+ "type": 2
+ },
+ {
+ "keyword": "mamans",
+ "hasLocution": false,
+ "plural": "mamans",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "02765073-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 35105,
+ "created": "2019-03-26T18:20:09.000Z",
+ "lastUpdated": "2021-04-21T20:32:50.199Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "grêler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "00306024-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 35107,
+ "created": "2019-03-26T18:23:34.000Z",
+ "lastUpdated": "2021-06-07T08:09:38.104Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "venteux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03336022-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 35109,
+ "created": "2019-03-26T18:25:27.000Z",
+ "lastUpdated": "2021-04-21T20:31:33.709Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fez",
+ "hasLocution": true,
+ "plural": "fez"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "urban area"
+ ],
+ "synsets": [
+ "04016581-n",
+ "04552265-n"
+ ],
+ "tags": [
+ "place",
+ "urban area"
+ ],
+ "_id": 35111,
+ "created": "2019-03-26T18:26:28.000Z",
+ "lastUpdated": "2021-07-15T21:00:49.214Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "promenade",
+ "hasLocution": true,
+ "plural": "promenades"
+ },
+ {
+ "keyword": "allée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "allées"
+ },
+ {
+ "keyword": "trottoir",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "trottoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "urban area"
+ ],
+ "synsets": [
+ "04016581-n",
+ "04552265-n"
+ ],
+ "tags": [
+ "place",
+ "urban area"
+ ],
+ "_id": 35112,
+ "created": "2019-03-26T18:26:28.000Z",
+ "lastUpdated": "2021-07-15T21:00:37.647Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "promenade",
+ "hasLocution": true,
+ "plural": "promenades"
+ },
+ {
+ "keyword": "allée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "allées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes"
+ ],
+ "synsets": [
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 35099,
+ "created": "2019-03-26T18:13:41.000Z",
+ "lastUpdated": "2021-07-15T21:01:11.431Z",
+ "keywords": [
+ {
+ "keyword": "se déshabiller",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "se dévétir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enlever ses vêtements",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "quitter ses vêtements",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "object",
+ "mass media"
+ ],
+ "synsets": [
+ "03663511-n"
+ ],
+ "tags": [
+ "object",
+ "communication",
+ "mass media"
+ ],
+ "_id": 35115,
+ "created": "2019-03-26T18:27:00.000Z",
+ "lastUpdated": "2021-04-21T20:28:58.040Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coupe-papier",
+ "hasLocution": true,
+ "plural": "coupe-papiers"
+ },
+ {
+ "keyword": "ouvre-lettre",
+ "hasLocution": false,
+ "plural": "ouvre-lettres",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication",
+ "object"
+ ],
+ "synsets": [
+ "01978076-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 35101,
+ "created": "2019-03-26T18:18:03.000Z",
+ "lastUpdated": "2024-12-10T18:23:27.129Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mouvoir quelque chose de bas en haut, le faire monter, le placer à un niveau supérieur",
+ "keyword": "lever",
+ "hasLocution": true
+ },
+ {
+ "keyword": "soulever",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "home",
+ "verb",
+ "basic needs"
+ ],
+ "synsets": [
+ "02655932-v",
+ "02654741-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs"
+ ],
+ "_id": 35103,
+ "created": "2019-03-26T18:18:46.000Z",
+ "lastUpdated": "2022-11-09T08:52:32.273Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "vivre",
+ "hasLocution": true
+ },
+ {
+ "keyword": "habiter",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "résider",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "demeurer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "basic concepts"
+ ],
+ "synsets": [
+ "08447525-n"
+ ],
+ "tags": [
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 35123,
+ "created": "2019-03-26T18:32:45.000Z",
+ "lastUpdated": "2021-06-07T08:07:54.642Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rangée",
+ "hasLocution": true,
+ "plural": "rangées"
+ },
+ {
+ "keyword": "file",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "files"
+ },
+ {
+ "keyword": "queue leu leu",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "queues leu leu"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04160812-n",
+ "04161401-n",
+ "03841711-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 35125,
+ "created": "2019-03-26T18:33:10.000Z",
+ "lastUpdated": "2021-04-21T20:24:24.141Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vis et écrou",
+ "hasLocution": true,
+ "plural": "vis et écrous"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "04445438-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 35127,
+ "created": "2019-03-26T18:33:40.000Z",
+ "lastUpdated": "2021-04-21T20:23:29.868Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "minuteur",
+ "hasLocution": false,
+ "plural": "minuteur"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "residential building"
+ ],
+ "synsets": [
+ "04418399-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "home"
+ ],
+ "_id": 35119,
+ "created": "2019-03-26T18:28:56.000Z",
+ "lastUpdated": "2021-04-21T20:32:23.270Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "tente",
+ "plural": "tentes"
+ },
+ {
+ "keyword": "chapiteau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chapiteaux"
+ },
+ {
+ "keyword": "haima",
+ "hasLocution": true,
+ "plural": "haimas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "00878415-n"
+ ],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 35131,
+ "created": "2019-03-26T18:36:27.000Z",
+ "lastUpdated": "2021-05-01T00:22:14.802Z",
+ "keywords": [
+ {
+ "keyword": "sac sensoriel",
+ "hasLocution": false,
+ "plural": "sacs sensoriels",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "09796794-n",
+ "00325776-s"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 35133,
+ "created": "2019-03-26T18:39:31.000Z",
+ "lastUpdated": "2021-07-16T15:05:39.499Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "responsable",
+ "hasLocution": true,
+ "plural": "responsables"
+ },
+ {
+ "keyword": "agent",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "agents"
+ },
+ {
+ "keyword": "fonctionnaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fonctionnaires"
+ },
+ {
+ "keyword": "directeur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "directeur"
+ },
+ {
+ "keyword": "chef",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chefs"
+ },
+ {
+ "keyword": "patron",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "patrons"
+ },
+ {
+ "keyword": "représentant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "représentants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "chess"
+ ],
+ "synsets": [
+ "03017971-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "chess"
+ ],
+ "_id": 35129,
+ "created": "2019-03-26T18:34:28.000Z",
+ "lastUpdated": "2021-04-21T20:24:56.476Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "échiquier",
+ "hasLocution": true,
+ "plural": "échiquiers"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre",
+ "covid-19"
+ ],
+ "synsets": [
+ "03047259-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "covid-19"
+ ],
+ "_id": 35121,
+ "created": "2019-03-26T18:31:53.000Z",
+ "lastUpdated": "2021-07-18T07:00:29.688Z",
+ "keywords": [
+ {
+ "keyword": "hôpital de jour",
+ "hasLocution": false,
+ "plural": "hôpitaux de jour",
+ "type": 2
+ },
+ {
+ "keyword": "centre de soins ambulatoires",
+ "hasLocution": false,
+ "plural": "centres de soins ambulatoires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07858729-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 35135,
+ "created": "2019-03-26T18:39:51.000Z",
+ "lastUpdated": "2021-05-01T00:21:35.645Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "omelette au thon",
+ "hasLocution": false,
+ "plural": "omelettes au thon"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room"
+ ],
+ "synsets": [
+ "07157845-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room"
+ ],
+ "_id": 35139,
+ "created": "2019-03-26T18:43:25.000Z",
+ "lastUpdated": "2021-05-01T00:19:58.765Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "consultation",
+ "type": 2,
+ "plural": "consultations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "07788123-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 35141,
+ "created": "2019-03-26T18:44:02.000Z",
+ "lastUpdated": "2021-05-01T00:18:51.294Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "noix de cajou",
+ "hasLocution": true,
+ "plural": "noix de cajou"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "13158186-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 35145,
+ "created": "2019-03-26T18:46:46.000Z",
+ "lastUpdated": "2021-05-01T00:13:00.892Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "baies",
+ "hasLocution": true,
+ "plural": "baies"
+ },
+ {
+ "keyword": "grains",
+ "hasLocution": true,
+ "plural": "grains",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dried fruit"
+ ],
+ "synsets": [
+ "07766562-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "dried fruit"
+ ],
+ "_id": 35143,
+ "created": "2019-03-26T18:45:18.000Z",
+ "lastUpdated": "2021-05-01T00:18:08.700Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "amande",
+ "hasLocution": true,
+ "plural": "amandes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "show"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "show",
+ "work"
+ ],
+ "_id": 35149,
+ "created": "2019-03-26T19:05:28.000Z",
+ "lastUpdated": "2021-05-01T00:08:21.208Z",
+ "keywords": [
+ {
+ "keyword": "séance de photos",
+ "hasLocution": false,
+ "plural": "séances de photos"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cookery"
+ ],
+ "synsets": [
+ "07675810-n",
+ "07673512-n"
+ ],
+ "tags": [
+ "feeding",
+ "cookery"
+ ],
+ "_id": 35147,
+ "created": "2019-03-26T19:02:50.000Z",
+ "lastUpdated": "2021-05-01T00:09:39.000Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "filet",
+ "hasLocution": true,
+ "plural": "filets"
+ },
+ {
+ "keyword": "steak",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "steaks"
+ },
+ {
+ "keyword": "bifteck",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "biftecks"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "painting"
+ ],
+ "synsets": [
+ "03849753-n",
+ "00940354-n"
+ ],
+ "tags": [
+ "visual art",
+ "painting"
+ ],
+ "_id": 35137,
+ "created": "2019-03-26T18:40:51.000Z",
+ "lastUpdated": "2021-05-01T00:21:17.400Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peinture à l'huile",
+ "hasLocution": false,
+ "plural": "peintures à l'huile"
+ },
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "peintures à l'huile",
+ "plural": "peintures à l'huile"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "christianity",
+ "popular event"
+ ],
+ "synsets": [
+ "15246392-n"
+ ],
+ "tags": [
+ "event",
+ "religious event",
+ "religion",
+ "christianity",
+ "popular event"
+ ],
+ "_id": 35155,
+ "created": "2019-03-26T19:09:43.000Z",
+ "lastUpdated": "2024-12-13T07:10:13.346Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "jours de la fête",
+ "keyword": "jour de la fête"
+ },
+ {
+ "hasLocution": true,
+ "type": 2,
+ "plural": "fêtes",
+ "keyword": "fête"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable",
+ "agriculture"
+ ],
+ "synsets": [
+ "12453313-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable",
+ "work",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 35157,
+ "created": "2019-03-26T19:14:45.000Z",
+ "lastUpdated": "2024-12-11T06:32:59.570Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "oignon",
+ "hasLocution": true,
+ "plural": "oignon"
+ },
+ {
+ "keyword": "ognon",
+ "hasLocution": false,
+ "plural": "ognons",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "10778819-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 35153,
+ "created": "2019-03-26T19:06:18.000Z",
+ "lastUpdated": "2021-06-07T08:06:58.822Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "volontaire",
+ "hasLocution": false,
+ "plural": "volontaires"
+ },
+ {
+ "keyword": "bénévole",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bénévoles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07754546-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 35159,
+ "created": "2019-03-26T19:16:12.000Z",
+ "lastUpdated": "2021-06-07T08:05:04.241Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "peau de banane",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cookery"
+ ],
+ "synsets": [
+ "07670276-n"
+ ],
+ "tags": [
+ "feeding",
+ "cookery"
+ ],
+ "_id": 35163,
+ "created": "2019-03-26T19:19:58.000Z",
+ "lastUpdated": "2021-07-15T20:59:43.199Z",
+ "keywords": [
+ {
+ "keyword": "tranche",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "tranches"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "04160812-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 35161,
+ "created": "2019-03-26T19:17:08.000Z",
+ "lastUpdated": "2021-06-07T08:04:55.327Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "vis",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "work organization"
+ ],
+ "synsets": [
+ "09983393-n",
+ "10402936-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "organization"
+ ],
+ "_id": 35167,
+ "created": "2019-03-26T19:21:09.000Z",
+ "lastUpdated": "2021-07-19T12:28:11.174Z",
+ "keywords": [
+ {
+ "keyword": "coordinateur",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "coordinateurs"
+ },
+ {
+ "keyword": "organisateur",
+ "hasLocution": false,
+ "plural": "organisateurs",
+ "type": 2
+ },
+ {
+ "keyword": "coordonateur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "coordonateurs"
+ },
+ {
+ "keyword": "animateur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "animateurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "foreign currency",
+ "money",
+ "trade"
+ ],
+ "synsets": [
+ "13683925-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "foreign currency",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 35165,
+ "created": "2019-03-26T19:20:35.000Z",
+ "lastUpdated": "2024-12-06T06:20:40.144Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "euros",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07749993-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 35151,
+ "created": "2019-03-26T19:05:47.000Z",
+ "lastUpdated": "2021-05-01T00:07:25.701Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tomate-poire",
+ "hasLocution": false,
+ "plural": "tomates-poires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device",
+ "odontology"
+ ],
+ "synsets": [],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device",
+ "odontology"
+ ],
+ "_id": 35173,
+ "created": "2019-03-26T19:44:08.000Z",
+ "lastUpdated": "2021-07-18T06:57:38.835Z",
+ "keywords": [
+ {
+ "keyword": "fauteuil de dentiste",
+ "hasLocution": false,
+ "plural": "fauteuils de dentiste",
+ "type": 2
+ },
+ {
+ "keyword": "fauteuil dentaire",
+ "hasLocution": false,
+ "plural": "fauteuils dentaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "odontology"
+ ],
+ "synsets": [
+ "04288398-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "odontology"
+ ],
+ "_id": 35171,
+ "created": "2019-03-26T19:40:42.000Z",
+ "lastUpdated": "2021-07-18T06:58:20.715Z",
+ "keywords": [
+ {
+ "keyword": "crachoir",
+ "hasLocution": false,
+ "plural": "crachoirs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public administration",
+ "construction"
+ ],
+ "synsets": [
+ "00880949-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "public administration",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 35175,
+ "created": "2019-03-26T19:52:58.000Z",
+ "lastUpdated": "2021-08-01T18:14:45.272Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "permis de construire",
+ "plural": "permis de construire"
+ },
+ {
+ "keyword": "certificat d'urbanisme",
+ "hasLocution": false,
+ "plural": "certificats d'urbanisme",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work organization"
+ ],
+ "synsets": [
+ "08229268-n"
+ ],
+ "tags": [
+ "work",
+ "organization"
+ ],
+ "_id": 35177,
+ "created": "2019-03-26T19:53:55.000Z",
+ "lastUpdated": "2021-07-22T14:20:16.906Z",
+ "keywords": [
+ {
+ "keyword": "ressources humaines",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ressources humaines"
+ },
+ {
+ "keyword": "main-d'œuvre",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "main-d'œuvres"
+ },
+ {
+ "keyword": "service du personnel",
+ "hasLocution": false,
+ "plural": "services du personnel",
+ "type": 2
+ },
+ {
+ "keyword": "travailleurs",
+ "hasLocution": true,
+ "plural": "travailleurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "law and justice",
+ "consultancy",
+ "public administration"
+ ],
+ "synsets": [
+ "10417585-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice",
+ "consultancy",
+ "public administration"
+ ],
+ "_id": 35179,
+ "created": "2019-03-26T19:55:32.000Z",
+ "lastUpdated": "2021-07-21T16:59:54.038Z",
+ "keywords": [
+ {
+ "keyword": "consultation juridique",
+ "hasLocution": false,
+ "plural": "consultations juridiques",
+ "type": 2
+ },
+ {
+ "keyword": "conseil juridique",
+ "hasLocution": false,
+ "plural": "conseils juridiques",
+ "type": 2
+ },
+ {
+ "keyword": "aide juridique",
+ "hasLocution": false,
+ "plural": "aides juridiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "information document",
+ "tourism"
+ ],
+ "synsets": [
+ "03725654-n"
+ ],
+ "tags": [
+ "document",
+ "information document",
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 35181,
+ "created": "2019-03-26T19:57:54.000Z",
+ "lastUpdated": "2021-07-18T06:54:04.637Z",
+ "keywords": [
+ {
+ "keyword": "plan",
+ "hasLocution": true,
+ "plural": "plans",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "social movement"
+ ],
+ "synsets": [
+ "13969940-n"
+ ],
+ "tags": [
+ "sociology",
+ "social movement"
+ ],
+ "_id": 35183,
+ "created": "2019-03-26T19:59:39.000Z",
+ "lastUpdated": "2021-07-15T20:59:13.238Z",
+ "keywords": [
+ {
+ "keyword": "égalité de genre",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "égalité des sexes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "signaling system"
+ ],
+ "synsets": [
+ "03042670-n",
+ "08077282-n"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35169,
+ "created": "2019-03-26T19:33:49.000Z",
+ "lastUpdated": "2021-07-19T12:26:27.183Z",
+ "keywords": [
+ {
+ "keyword": "fablab",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fablabs"
+ },
+ {
+ "keyword": "atelier de fabrication numérique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ateliers de fabrication numérique"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "social movement"
+ ],
+ "synsets": [
+ "13969940-n"
+ ],
+ "tags": [
+ "sociology",
+ "social movement"
+ ],
+ "_id": 35184,
+ "created": "2019-03-26T19:59:39.000Z",
+ "lastUpdated": "2021-07-15T20:59:21.867Z",
+ "keywords": [
+ {
+ "keyword": "égalité des sexes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01967949-v",
+ "01970175-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 35189,
+ "created": "2019-03-26T20:25:04.000Z",
+ "lastUpdated": "2021-07-18T06:53:56.495Z",
+ "keywords": [
+ {
+ "keyword": "franchir la barrière",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sauter par dessus la barrière",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "01348685-v",
+ "00220389-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 35193,
+ "created": "2019-03-26T20:33:47.000Z",
+ "lastUpdated": "2021-07-18T06:53:44.646Z",
+ "keywords": [
+ {
+ "keyword": "ouvrir la barrière",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "keyword": "ouvrir le portillon",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment",
+ "odontology"
+ ],
+ "synsets": [
+ "03947960-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment",
+ "odontology"
+ ],
+ "_id": 35191,
+ "created": "2019-03-26T20:27:51.000Z",
+ "lastUpdated": "2025-01-13T08:23:19.872Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pinces",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "07353281-n"
+ ],
+ "tags": [],
+ "_id": 35195,
+ "created": "2019-03-26T20:35:36.000Z",
+ "lastUpdated": "2021-07-28T15:57:41.679Z",
+ "keywords": [
+ {
+ "keyword": "chest bump",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "check de poitrine",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "polite set expression"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 35197,
+ "created": "2019-03-26T20:37:03.000Z",
+ "lastUpdated": "2021-07-12T20:09:52.140Z",
+ "keywords": [
+ {
+ "keyword": "tope là",
+ "hasLocution": false,
+ "type": 5
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "playground",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00205206-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 35199,
+ "created": "2019-03-27T11:37:02.000Z",
+ "lastUpdated": "2021-06-07T08:00:24.375Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "plonger",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "playground",
+ "education"
+ ],
+ "synsets": [
+ "01925957-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground",
+ "education"
+ ],
+ "_id": 35203,
+ "created": "2019-03-27T11:42:23.000Z",
+ "lastUpdated": "2021-07-12T20:08:01.498Z",
+ "keywords": [
+ {
+ "keyword": "grimper sur le tobbogan",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "monter sur le tobbogan",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "02020375-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 35205,
+ "created": "2019-03-27T11:44:38.000Z",
+ "lastUpdated": "2024-12-05T08:57:25.218Z",
+ "keywords": [
+ {
+ "keyword": "monter dans l'attraction",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'installer dans l'attraction",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recreational facility"
+ ],
+ "synsets": [
+ "02019020-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 35207,
+ "created": "2019-03-27T11:46:06.000Z",
+ "lastUpdated": "2021-07-18T06:52:00.782Z",
+ "keywords": [
+ {
+ "keyword": "descendre de l'attraction",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "descendre du manège",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "family"
+ ],
+ "synsets": [
+ "09791871-n"
+ ],
+ "tags": [
+ "person",
+ "family"
+ ],
+ "_id": 35201,
+ "created": "2019-03-27T11:41:08.000Z",
+ "lastUpdated": "2021-06-07T08:00:03.573Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parents adoptifs",
+ "hasLocution": false
+ },
+ {
+ "keyword": "parents",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dessert",
+ "summer"
+ ],
+ "synsets": [
+ "07630109-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "summer"
+ ],
+ "_id": 35209,
+ "created": "2019-03-27T11:47:52.000Z",
+ "lastUpdated": "2021-07-12T20:06:01.720Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "glace",
+ "hasLocution": true,
+ "plural": "glaces"
+ },
+ {
+ "keyword": "crème glacée",
+ "hasLocution": false,
+ "plural": "crème glacées",
+ "type": 2
+ },
+ {
+ "keyword": "esquimau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "esquimaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "routine"
+ ],
+ "synsets": [
+ "00071765-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "routine"
+ ],
+ "_id": 35211,
+ "created": "2019-03-27T11:55:41.000Z",
+ "lastUpdated": "2021-07-19T10:20:18.794Z",
+ "keywords": [
+ {
+ "keyword": "faire pipi assis",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "uriner assis",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "odontology"
+ ],
+ "synsets": [
+ "04357182-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "odontology"
+ ],
+ "_id": 35213,
+ "created": "2019-03-27T11:57:46.000Z",
+ "lastUpdated": "2021-07-19T23:01:34.026Z",
+ "keywords": [
+ {
+ "keyword": "pompe à salive",
+ "hasLocution": false,
+ "plural": "pompes à salive",
+ "type": 2
+ },
+ {
+ "keyword": "aspirateur salivaire",
+ "hasLocution": false,
+ "plural": "aspirateurs salivaires",
+ "type": 2
+ },
+ {
+ "keyword": "évacuateur de salive",
+ "plural": "évacuateurs de salive",
+ "type": 2,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "odontology"
+ ],
+ "synsets": [
+ "04383963-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "odontology"
+ ],
+ "_id": 35217,
+ "created": "2019-03-27T16:14:32.000Z",
+ "lastUpdated": "2021-07-24T16:35:52.418Z",
+ "keywords": [
+ {
+ "keyword": "seringue dentaire",
+ "hasLocution": false,
+ "plural": "seringues dentaires",
+ "type": 2
+ },
+ {
+ "keyword": "seringue air/eau",
+ "hasLocution": false,
+ "plural": "seringues air/eau",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "odontology"
+ ],
+ "synsets": [
+ "03778568-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "odontology"
+ ],
+ "_id": 35221,
+ "created": "2019-03-27T16:20:51.000Z",
+ "lastUpdated": "2021-04-20T20:01:10.804Z",
+ "keywords": [
+ {
+ "keyword": "miroir dentaire",
+ "hasLocution": false,
+ "plural": "miroirs dentaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "08449355-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 35187,
+ "created": "2019-03-26T20:20:52.000Z",
+ "lastUpdated": "2021-07-18T06:54:01.061Z",
+ "keywords": [
+ {
+ "keyword": "faire la queue",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "attendre en file",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device",
+ "odontology"
+ ],
+ "synsets": [
+ "03670692-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device",
+ "odontology"
+ ],
+ "_id": 35225,
+ "created": "2019-03-27T16:34:22.000Z",
+ "lastUpdated": "2021-07-19T22:45:19.496Z",
+ "keywords": [
+ {
+ "keyword": "scialytique dentaire",
+ "hasLocution": false,
+ "plural": "Scialytiques dentaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "odontology"
+ ],
+ "synsets": [
+ "04012787-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "odontology"
+ ],
+ "_id": 35223,
+ "created": "2019-03-27T16:27:09.000Z",
+ "lastUpdated": "2021-07-24T16:41:17.462Z",
+ "keywords": [
+ {
+ "keyword": "spatule dentaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "spatules dentaires"
+ },
+ {
+ "keyword": "sonde dentaire",
+ "hasLocution": false,
+ "plural": "sondes dentaires",
+ "type": 2
+ },
+ {
+ "keyword": "explorateur dentaire",
+ "hasLocution": false,
+ "plural": "explorateurs dentaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recreational facility",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "02695935-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 35227,
+ "created": "2019-03-27T16:37:17.000Z",
+ "lastUpdated": "2021-07-18T12:23:55.170Z",
+ "keywords": [
+ {
+ "keyword": "sortir les bras",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recreational facility",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01548893-v",
+ "01978076-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 35229,
+ "created": "2019-03-27T16:42:43.000Z",
+ "lastUpdated": "2021-07-15T20:57:05.726Z",
+ "keywords": [
+ {
+ "keyword": "se lever",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 35231,
+ "created": "2019-03-27T16:45:16.000Z",
+ "lastUpdated": "2021-07-18T12:23:52.251Z",
+ "keywords": [
+ {
+ "keyword": "jeu des anneaux",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "fishing"
+ ],
+ "synsets": [
+ "10113427-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 35235,
+ "created": "2019-05-16T11:48:33.000Z",
+ "lastUpdated": "2021-06-07T07:56:56.361Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pêche",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "pêcher",
+ "hasLocution": true
+ },
+ {
+ "keyword": "pêcheuse",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pêcheuses"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "psychomotor equipment"
+ ],
+ "synsets": [
+ "03027561-n"
+ ],
+ "tags": [
+ "object",
+ "psychomotor equipment"
+ ],
+ "_id": 35237,
+ "created": "2019-05-16T11:49:17.000Z",
+ "lastUpdated": "2021-06-07T07:56:28.738Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cale",
+ "hasLocution": true,
+ "plural": "cales"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicine",
+ "circulatory system"
+ ],
+ "synsets": [
+ "06060665-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "human body",
+ "physiology",
+ "human physiology",
+ "circulatory system"
+ ],
+ "_id": 35233,
+ "created": "2019-05-16T11:47:46.000Z",
+ "lastUpdated": "2021-07-15T20:56:49.959Z",
+ "keywords": [
+ {
+ "keyword": "hématologie",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10387518-n",
+ "10386665-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 35239,
+ "created": "2019-05-16T11:51:59.000Z",
+ "lastUpdated": "2021-06-07T07:56:17.470Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "infirmier",
+ "hasLocution": true,
+ "plural": "infirmiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "03879526-n",
+ "00524569-n",
+ "01075360-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 35241,
+ "created": "2019-05-16T11:53:24.000Z",
+ "lastUpdated": "2021-07-18T12:23:48.516Z",
+ "keywords": [
+ {
+ "keyword": "paddle tennis",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "jouer au paddle tennis",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "03879526-n",
+ "00524569-n",
+ "01075360-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 35242,
+ "created": "2019-05-16T11:53:24.000Z",
+ "lastUpdated": "2021-07-19T22:42:27.634Z",
+ "keywords": [
+ {
+ "keyword": "paddle-tennis",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "jouer au paddle-tennis",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "jouer au padel",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "padel",
+ "hasLocution": false,
+ "plural": "padels",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "01075360-v",
+ "00462843-n",
+ "01148973-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 35245,
+ "created": "2019-05-16T11:54:17.000Z",
+ "lastUpdated": "2021-07-15T20:56:38.332Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "quilles",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "jouer au bowling",
+ "hasLocution": true
+ },
+ {
+ "keyword": "bowling",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bowlings"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00465962-n",
+ "01149259-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 35247,
+ "created": "2019-05-16T11:55:14.000Z",
+ "lastUpdated": "2021-06-07T07:55:16.751Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "golf",
+ "hasLocution": true
+ },
+ {
+ "keyword": "golfer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment",
+ "odontology"
+ ],
+ "synsets": [],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "odontology"
+ ],
+ "_id": 35219,
+ "created": "2019-03-27T16:18:32.000Z",
+ "lastUpdated": "2021-07-24T16:41:39.154Z",
+ "keywords": [
+ {
+ "keyword": "fraise dentaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fraises dentaires"
+ },
+ {
+ "keyword": "contre-angle",
+ "hasLocution": false,
+ "plural": "contre-angles",
+ "type": 2
+ },
+ {
+ "keyword": "turbine dentaire ",
+ "hasLocution": false,
+ "plural": "turbines dentaires ",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00500274-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 35252,
+ "created": "2019-05-16T11:57:22.000Z",
+ "lastUpdated": "2021-06-07T07:53:43.387Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ping-pong",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tennis de table",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10156479-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 35249,
+ "created": "2019-05-16T11:56:28.000Z",
+ "lastUpdated": "2021-06-07T07:54:35.719Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "joueuse de golf",
+ "hasLocution": false,
+ "plural": "joueuses de golf"
+ },
+ {
+ "keyword": "golfeuse",
+ "hasLocution": false,
+ "plural": "golfeuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "football"
+ ],
+ "synsets": [
+ "00479273-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "football"
+ ],
+ "_id": 35255,
+ "created": "2019-05-16T11:59:00.000Z",
+ "lastUpdated": "2021-06-07T07:53:18.973Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "football",
+ "hasLocution": true
+ },
+ {
+ "keyword": "foot",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "football"
+ ],
+ "synsets": [
+ "00479273-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "football"
+ ],
+ "_id": 35256,
+ "created": "2019-05-16T11:59:01.000Z",
+ "lastUpdated": "2021-06-07T07:53:07.338Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "football",
+ "hasLocution": true
+ },
+ {
+ "keyword": "foot",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00469063-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 35259,
+ "created": "2019-05-16T12:00:53.000Z",
+ "lastUpdated": "2021-07-15T20:56:20.081Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hockey",
+ "hasLocution": true
+ },
+ {
+ "keyword": "hockey sur gazon",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00469063-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 35260,
+ "created": "2019-05-16T12:00:53.000Z",
+ "lastUpdated": "2021-06-07T07:52:33.243Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hockey",
+ "hasLocution": true
+ },
+ {
+ "keyword": "hockey sur gazon",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00483309-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 35263,
+ "created": "2019-05-16T12:01:48.000Z",
+ "lastUpdated": "2021-06-07T07:52:12.539Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tennis",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00500274-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 35251,
+ "created": "2019-05-16T11:57:21.000Z",
+ "lastUpdated": "2021-06-07T07:54:00.538Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ping-pong",
+ "hasLocution": true
+ },
+ {
+ "keyword": "tennis de table",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00483309-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 35264,
+ "created": "2019-05-16T12:01:48.000Z",
+ "lastUpdated": "2021-04-14T21:25:09.390Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "tennis",
+ "hasLocution": true,
+ "plural": "tennis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "invertebrate animal",
+ "marine animal",
+ "carnivorous",
+ "oceanography",
+ "sea and oceans"
+ ],
+ "synsets": [
+ "14847206-n",
+ "01918452-n"
+ ],
+ "tags": [
+ "animal",
+ "invertebrate",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "carnivorous",
+ "oceanography",
+ "geography",
+ "physical geography",
+ "landform",
+ "ocean"
+ ],
+ "_id": 35269,
+ "created": "2019-05-16T12:06:46.000Z",
+ "lastUpdated": "2021-04-14T21:23:13.215Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "corail",
+ "hasLocution": true,
+ "plural": "coraux"
+ },
+ {
+ "keyword": "corail rouge",
+ "hasLocution": false,
+ "plural": "coraux rouges",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "covid-19"
+ ],
+ "synsets": [
+ "10387518-n",
+ "10386665-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "covid-19"
+ ],
+ "_id": 35271,
+ "created": "2019-05-16T12:07:25.000Z",
+ "lastUpdated": "2021-06-07T07:52:04.623Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "infirmier",
+ "hasLocution": true,
+ "plural": "infirmiers"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "reproductive system",
+ "excretory system"
+ ],
+ "synsets": [
+ "10761150-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "reproductive system",
+ "excretory system"
+ ],
+ "_id": 35273,
+ "created": "2019-05-16T12:08:50.000Z",
+ "lastUpdated": "2021-07-15T20:56:12.233Z",
+ "keywords": [
+ {
+ "plural": "urologues",
+ "keyword": "urologues",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "reproductive system",
+ "excretory system"
+ ],
+ "synsets": [
+ "10761150-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "reproductive system",
+ "excretory system"
+ ],
+ "_id": 35275,
+ "created": "2019-05-16T12:09:08.000Z",
+ "lastUpdated": "2021-07-15T20:55:55.075Z",
+ "keywords": [
+ {
+ "keyword": "urologue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "urologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "09812936-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 35277,
+ "created": "2019-05-16T12:11:24.000Z",
+ "lastUpdated": "2021-04-14T21:20:54.627Z",
+ "keywords": [
+ {
+ "keyword": "anesthésiste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "anesthésistes"
+ },
+ {
+ "keyword": "médecin anesthésiste",
+ "hasLocution": false,
+ "plural": "médecins anesthésistes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "09812936-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 35279,
+ "created": "2019-05-16T12:12:13.000Z",
+ "lastUpdated": "2021-04-14T21:21:45.819Z",
+ "keywords": [
+ {
+ "keyword": "médecin anesthésiste",
+ "hasLocution": false,
+ "plural": "médecins anesthésistes",
+ "type": 2
+ },
+ {
+ "keyword": "anesthésiste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "anesthésistes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "00502091-n",
+ "00500935-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 35267,
+ "created": "2019-05-16T12:03:26.000Z",
+ "lastUpdated": "2021-04-14T21:24:49.018Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "billard",
+ "hasLocution": true,
+ "plural": "billards"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "reproductive system",
+ "gynecology"
+ ],
+ "synsets": [
+ "10173582-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "reproductive system",
+ "gynecology"
+ ],
+ "_id": 35285,
+ "created": "2019-05-16T12:15:47.000Z",
+ "lastUpdated": "2021-04-14T21:19:32.258Z",
+ "keywords": [
+ {
+ "keyword": "gynécologue",
+ "hasLocution": false,
+ "plural": "gynécologues",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10401503-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 35287,
+ "created": "2019-05-16T12:16:06.000Z",
+ "lastUpdated": "2021-07-19T10:19:34.891Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "aide-soignants",
+ "keyword": "aide-soignant"
+ },
+ {
+ "hasLocution": false,
+ "plural": "personnels hospitaliers",
+ "keyword": "personnel hospitalier",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "reproductive system",
+ "gynecology"
+ ],
+ "synsets": [
+ "10173582-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "reproductive system",
+ "gynecology"
+ ],
+ "_id": 35283,
+ "created": "2019-05-16T12:14:51.000Z",
+ "lastUpdated": "2021-04-14T21:19:11.792Z",
+ "keywords": [
+ {
+ "keyword": "gynécologue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gynécologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10346809-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 35289,
+ "created": "2019-05-16T12:19:14.000Z",
+ "lastUpdated": "2021-07-19T10:18:01.048Z",
+ "keywords": [
+ {
+ "keyword": "biologiste moléculaire",
+ "plural": "biologistes moléculaires",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10346809-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 35291,
+ "created": "2019-05-16T12:20:36.000Z",
+ "lastUpdated": "2021-07-18T12:23:34.522Z",
+ "keywords": [
+ {
+ "keyword": "bioligiste moléculaire",
+ "hasLocution": false,
+ "plural": "bioligistes moléculaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "nervous system"
+ ],
+ "synsets": [
+ "10373964-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "nervous system"
+ ],
+ "_id": 35293,
+ "created": "2019-05-16T12:34:43.000Z",
+ "lastUpdated": "2021-07-15T20:55:40.791Z",
+ "keywords": [
+ {
+ "keyword": "neurologue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "neurologues"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "nervous system"
+ ],
+ "synsets": [
+ "10373964-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "nervous system"
+ ],
+ "_id": 35295,
+ "created": "2019-05-16T12:35:13.000Z",
+ "lastUpdated": "2021-07-15T20:55:33.371Z",
+ "keywords": [
+ {
+ "plural": "neurologues",
+ "keyword": "neurologue",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "medical test"
+ ],
+ "synsets": [
+ "10030728-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 35297,
+ "created": "2019-05-16T12:41:03.000Z",
+ "lastUpdated": "2021-07-19T10:17:14.515Z",
+ "keywords": [
+ {
+ "keyword": "anatomopathologiste",
+ "plural": "anatomopathologistes",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "covid-19"
+ ],
+ "synsets": [
+ "10387518-n",
+ "10386665-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "covid-19"
+ ],
+ "_id": 35301,
+ "created": "2019-05-16T12:42:00.000Z",
+ "lastUpdated": "2021-04-29T23:05:23.458Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "infirmière",
+ "hasLocution": true,
+ "plural": "infirmières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "health sciences"
+ ],
+ "synsets": [
+ "10401503-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "health"
+ ],
+ "_id": 35281,
+ "created": "2019-05-16T12:12:57.000Z",
+ "lastUpdated": "2021-07-18T12:23:42.654Z",
+ "keywords": [
+ {
+ "keyword": "personnel hospitalier",
+ "hasLocution": false,
+ "plural": "personnels hospitaliers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10698621-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 35303,
+ "created": "2019-05-16T12:42:43.000Z",
+ "lastUpdated": "2021-04-29T23:05:09.287Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chirurgienne",
+ "hasLocution": true,
+ "plural": "chirurgiennes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10698621-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 35304,
+ "created": "2019-05-16T12:42:44.000Z",
+ "lastUpdated": "2021-07-15T20:55:22.710Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chirurgien",
+ "hasLocution": true,
+ "plural": "chirurgiens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "excretory system"
+ ],
+ "synsets": [
+ "06062052-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "excretory system"
+ ],
+ "_id": 35309,
+ "created": "2019-05-16T12:47:21.000Z",
+ "lastUpdated": "2021-04-29T23:03:50.388Z",
+ "keywords": [
+ {
+ "keyword": "néphrologue",
+ "hasLocution": false,
+ "plural": "néphrologue",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10386665-n",
+ "10387518-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 35307,
+ "created": "2019-05-16T12:45:32.000Z",
+ "lastUpdated": "2021-04-29T23:04:37.746Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "infirmière",
+ "hasLocution": true,
+ "plural": "infirmières"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "excretory system"
+ ],
+ "synsets": [
+ "06062052-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "human body",
+ "physiology",
+ "human physiology",
+ "excretory system"
+ ],
+ "_id": 35311,
+ "created": "2019-05-16T12:47:43.000Z",
+ "lastUpdated": "2021-04-29T23:03:25.545Z",
+ "keywords": [
+ {
+ "keyword": "néphrologue",
+ "hasLocution": false,
+ "plural": "néphrologues",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10190353-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 35315,
+ "created": "2019-05-16T12:50:56.000Z",
+ "lastUpdated": "2021-04-29T23:02:01.787Z",
+ "keywords": [
+ {
+ "keyword": "hématologiste",
+ "hasLocution": false,
+ "plural": "hématologistes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03242342-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 35317,
+ "created": "2019-05-16T12:53:10.000Z",
+ "lastUpdated": "2021-04-29T23:01:05.103Z",
+ "keywords": [
+ {
+ "keyword": "pansement",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pansements"
+ },
+ {
+ "keyword": "pansement adhésif",
+ "hasLocution": false,
+ "plural": "pansements adhésifs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "02267835-v",
+ "02204104-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 35319,
+ "created": "2019-05-16T12:54:17.000Z",
+ "lastUpdated": "2021-04-29T22:59:48.440Z",
+ "keywords": [
+ {
+ "keyword": "donner",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "faire don",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "10190353-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work"
+ ],
+ "_id": 35313,
+ "created": "2019-05-16T12:50:31.000Z",
+ "lastUpdated": "2021-04-29T23:02:22.864Z",
+ "keywords": [
+ {
+ "keyword": "hématologiste",
+ "hasLocution": false,
+ "plural": "hématologistes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "09880219-n",
+ "13389690-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35321,
+ "created": "2019-05-16T12:56:11.000Z",
+ "lastUpdated": "2021-07-19T10:17:01.761Z",
+ "keywords": [
+ {
+ "keyword": "don du sang",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dons du sang"
+ },
+ {
+ "keyword": "salle de don de sang",
+ "hasLocution": false,
+ "plural": "salles de don de sang",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "00393758-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35323,
+ "created": "2019-05-16T12:59:25.000Z",
+ "lastUpdated": "2021-04-29T22:58:56.034Z",
+ "keywords": [
+ {
+ "keyword": "salle de prélèvement sanguin",
+ "hasLocution": false,
+ "plural": "salles de prélèvement sanguin",
+ "type": 2
+ },
+ {
+ "keyword": "salle de prise de sang",
+ "hasLocution": false,
+ "plural": "salles de prise de sang",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03546271-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35325,
+ "created": "2019-05-16T13:00:47.000Z",
+ "lastUpdated": "2021-07-18T06:38:03.927Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chambre",
+ "hasLocution": false,
+ "plural": "chambres"
+ },
+ {
+ "keyword": "chambre d'hopital",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chambres d'hopital"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [
+ "00024040-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 35327,
+ "created": "2019-05-16T13:03:48.000Z",
+ "lastUpdated": "2021-07-19T10:16:45.850Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "réanimer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "01050134-n",
+ "03546271-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35329,
+ "created": "2019-05-16T13:07:27.000Z",
+ "lastUpdated": "2021-07-18T06:37:26.832Z",
+ "keywords": [
+ {
+ "keyword": "salle de réveil",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "salle de réanimation",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "medical test"
+ ],
+ "synsets": [
+ "10030728-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 35299,
+ "created": "2019-05-16T12:41:38.000Z",
+ "lastUpdated": "2021-07-18T12:23:28.389Z",
+ "keywords": [
+ {
+ "keyword": "anatomopathologiste",
+ "hasLocution": false,
+ "plural": "anatomopathologistes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "14046962-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 35335,
+ "created": "2019-05-16T13:23:44.000Z",
+ "lastUpdated": "2021-07-19T10:34:33.206Z",
+ "keywords": [
+ {
+ "keyword": "chariot d'anesthésie",
+ "hasLocution": false,
+ "plural": "chariots d'anesthésie",
+ "type": 2
+ },
+ {
+ "keyword": "appareil d'anesthésie",
+ "hasLocution": false,
+ "plural": "appareis d'anesthésie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "03856012-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 35331,
+ "created": "2019-05-16T13:15:05.000Z",
+ "lastUpdated": "2021-07-18T06:37:19.217Z",
+ "keywords": [
+ {
+ "keyword": "table d'opération",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tables d'opération"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "04371078-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35337,
+ "created": "2019-05-16T13:24:33.000Z",
+ "lastUpdated": "2021-07-18T06:36:03.310Z",
+ "keywords": [
+ {
+ "keyword": "salle d'examen",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "salle de consultation",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disease",
+ "covid-19"
+ ],
+ "synsets": [
+ "00089502-v",
+ "02236443-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "disease",
+ "covid-19"
+ ],
+ "_id": 35339,
+ "created": "2019-05-16T13:28:21.000Z",
+ "lastUpdated": "2021-07-15T20:55:01.658Z",
+ "keywords": [
+ {
+ "keyword": "infecter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "contaminer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "transmettre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "03546094-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 35341,
+ "created": "2019-05-16T13:30:46.000Z",
+ "lastUpdated": "2021-07-19T10:32:50.147Z",
+ "keywords": [
+ {
+ "keyword": "lit d'hôpital",
+ "hasLocution": false,
+ "plural": "lits d'hôpital",
+ "type": 2
+ },
+ {
+ "keyword": "lit médical",
+ "hasLocution": false,
+ "plural": "lits médicaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "07447435-n",
+ "00383263-r"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 35343,
+ "created": "2019-05-16T13:32:58.000Z",
+ "lastUpdated": "2021-07-19T10:31:59.981Z",
+ "keywords": [
+ {
+ "keyword": "intraveineuse",
+ "hasLocution": false,
+ "plural": "intraveineuses",
+ "type": 2
+ },
+ {
+ "keyword": "perfusion intraveineuse",
+ "hasLocution": false,
+ "plural": "perfusions intraveineuses",
+ "type": 2
+ },
+ {
+ "keyword": "traitement intraveineux",
+ "hasLocution": false,
+ "plural": "traitement intraveineux",
+ "type": 2
+ },
+ {
+ "keyword": "injection intraveineuse",
+ "hasLocution": false,
+ "plural": "injections intraveineuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "05100680-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35345,
+ "created": "2019-05-16T13:38:50.000Z",
+ "lastUpdated": "2021-07-16T08:25:31.911Z",
+ "keywords": [
+ {
+ "keyword": "risque infectieux",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "risques infectieux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes",
+ "patient"
+ ],
+ "synsets": [
+ "03883150-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "health",
+ "medicine",
+ "person",
+ "patient"
+ ],
+ "_id": 35333,
+ "created": "2019-05-16T13:17:50.000Z",
+ "lastUpdated": "2021-07-19T10:34:41.875Z",
+ "keywords": [
+ {
+ "keyword": "pyjama d'hôpital",
+ "hasLocution": false,
+ "plural": "pyjamas d'hôpital",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "basic needs",
+ "routine",
+ "core vocabulary-communication",
+ "core vocabulary-living being"
+ ],
+ "synsets": [
+ "00073096-v",
+ "00073791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "person",
+ "basic needs",
+ "routine",
+ "core vocabulary"
+ ],
+ "_id": 35347,
+ "created": "2019-05-16T13:42:48.000Z",
+ "lastUpdated": "2021-06-07T07:48:28.143Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire caca",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "chier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "aller à la selle",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "routine"
+ ],
+ "synsets": [
+ "00073096-v",
+ "00073791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "routine"
+ ],
+ "_id": 35349,
+ "created": "2019-05-16T13:42:48.000Z",
+ "lastUpdated": "2021-06-07T07:47:57.826Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire caca",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "chier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "aller à la selle",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "13916387-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 35353,
+ "created": "2019-05-16T13:44:11.000Z",
+ "lastUpdated": "2021-07-14T21:04:17.222Z",
+ "keywords": [
+ {
+ "keyword": "cuvette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cuvettes"
+ },
+ {
+ "keyword": "bassine",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bassines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07599543-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 35355,
+ "created": "2019-05-16T13:44:31.000Z",
+ "lastUpdated": "2021-07-14T21:04:02.689Z",
+ "keywords": [
+ {
+ "keyword": "pâtes alphabet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pâtes alphabet"
+ },
+ {
+ "keyword": "soupe alphabet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "soupes alphabet"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wedding"
+ ],
+ "synsets": [
+ "02882329-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "wedding"
+ ],
+ "_id": 35357,
+ "created": "2019-05-16T13:45:03.000Z",
+ "lastUpdated": "2021-04-16T15:55:04.298Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouquet de la mariée",
+ "hasLocution": false,
+ "plural": "bouquets de la mariée"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "carnivorous",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild animal"
+ ],
+ "synsets": [
+ "01531037-n"
+ ],
+ "tags": [
+ "animal",
+ "carnivorous",
+ "vertebrate",
+ "bird",
+ "oviparous",
+ "flying animal",
+ "wild"
+ ],
+ "_id": 35359,
+ "created": "2019-05-16T13:45:27.000Z",
+ "lastUpdated": "2021-04-16T15:54:06.679Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "bergeronnette",
+ "plural": "bergeronnettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport modality",
+ "chess"
+ ],
+ "synsets": [
+ "01075360-v",
+ "07481248-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport modality",
+ "chess"
+ ],
+ "_id": 35361,
+ "created": "2019-05-16T13:46:03.000Z",
+ "lastUpdated": "2021-07-14T21:03:45.517Z",
+ "keywords": [
+ {
+ "keyword": "jouer aux échecs",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic needs",
+ "routine"
+ ],
+ "synsets": [
+ "00073096-v",
+ "00073791-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "basic needs",
+ "routine"
+ ],
+ "_id": 35348,
+ "created": "2019-05-16T13:42:48.000Z",
+ "lastUpdated": "2021-06-07T07:48:12.859Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire caca",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "chier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "aller à la selle",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "natural habitat",
+ "tree"
+ ],
+ "synsets": [
+ "08455525-n"
+ ],
+ "tags": [
+ "geography",
+ "physical geography",
+ "natural habitat",
+ "plant",
+ "tree"
+ ],
+ "_id": 35367,
+ "created": "2019-05-16T13:57:05.000Z",
+ "lastUpdated": "2021-06-07T07:44:47.390Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pinède",
+ "hasLocution": true,
+ "plural": "pinèdes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "election"
+ ],
+ "synsets": [
+ "03984779-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 35369,
+ "created": "2019-05-16T13:58:09.000Z",
+ "lastUpdated": "2022-04-10T00:14:50.737Z",
+ "keywords": [
+ {
+ "keyword": "isoloir",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "isoloirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "02423786-v",
+ "02423521-v",
+ "01887709-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 35371,
+ "created": "2019-05-16T13:58:57.000Z",
+ "lastUpdated": "2021-07-14T21:03:37.370Z",
+ "keywords": [
+ {
+ "keyword": "jouer au ballon",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport rules"
+ ],
+ "synsets": [
+ "01045484-v",
+ "02188072-v",
+ "06818956-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport rules"
+ ],
+ "_id": 35364,
+ "created": "2019-05-16T13:47:02.000Z",
+ "lastUpdated": "2021-06-07T07:45:07.257Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coup de sifflet",
+ "hasLocution": true,
+ "plural": "coups de sifflet"
+ },
+ {
+ "type": 3,
+ "keyword": "siffler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "mass media"
+ ],
+ "synsets": [
+ "10244248-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "communication",
+ "mass media"
+ ],
+ "_id": 35373,
+ "created": "2019-05-16T13:59:17.000Z",
+ "lastUpdated": "2021-06-07T07:43:29.838Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "journaliste",
+ "hasLocution": true,
+ "plural": "journalistes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure",
+ "facility",
+ "transport services"
+ ],
+ "synsets": [
+ "03517974-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure",
+ "facility",
+ "work",
+ "tertiary sector",
+ "transport services"
+ ],
+ "_id": 35377,
+ "created": "2019-05-16T14:00:37.000Z",
+ "lastUpdated": "2021-07-14T21:03:29.206Z",
+ "keywords": [
+ {
+ "keyword": "héliport",
+ "hasLocution": false,
+ "plural": "héliports",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "coin",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "13686626-n"
+ ],
+ "tags": [
+ "economy",
+ "money",
+ "coin",
+ "core vocabulary"
+ ],
+ "_id": 35117,
+ "created": "2019-03-26T18:27:31.000Z",
+ "lastUpdated": "2021-04-21T20:28:01.534Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "centimes",
+ "hasLocution": true,
+ "plural": "centimes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "03486255-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 35379,
+ "created": "2019-05-16T14:01:18.000Z",
+ "lastUpdated": "2021-06-07T07:42:05.337Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "marteau de cordonnier",
+ "hasLocution": true,
+ "plural": "marteaux de cordonnier"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "appliance",
+ "document"
+ ],
+ "synsets": [
+ "03930801-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "document"
+ ],
+ "_id": 35383,
+ "created": "2019-05-16T14:01:58.000Z",
+ "lastUpdated": "2021-06-07T07:41:41.259Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "photocopieuse",
+ "hasLocution": true,
+ "plural": "photocopieuses"
+ },
+ {
+ "keyword": "photocopieur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "photocopieurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01045484-v",
+ "02188072-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 35363,
+ "created": "2019-05-16T13:47:02.000Z",
+ "lastUpdated": "2021-06-07T07:45:46.487Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "siffler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sifflement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sifflements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 35385,
+ "created": "2019-05-16T14:02:18.000Z",
+ "lastUpdated": "2021-07-14T21:02:40.411Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pétanque",
+ "hasLocution": true,
+ "plural": "pétanques"
+ },
+ {
+ "keyword": "jeu de boules",
+ "hasLocution": false,
+ "plural": "jeux de boules",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "workwear"
+ ],
+ "synsets": [
+ "03502782-n"
+ ],
+ "tags": [
+ "work",
+ "clothes",
+ "workwear"
+ ],
+ "_id": 35387,
+ "created": "2019-05-16T14:02:35.000Z",
+ "lastUpdated": "2021-07-14T21:01:51.791Z",
+ "keywords": [
+ {
+ "keyword": "toque",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "toques"
+ },
+ {
+ "keyword": "charlotte",
+ "plural": "charlottes",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "gastronomy"
+ ],
+ "synsets": [
+ "04088393-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 35391,
+ "created": "2019-05-16T14:04:20.000Z",
+ "lastUpdated": "2021-04-12T21:24:07.242Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "restaurant",
+ "hasLocution": true,
+ "plural": "restaurants"
+ },
+ {
+ "keyword": "resto",
+ "hasLocution": false,
+ "plural": "restos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "tv show"
+ ],
+ "synsets": [
+ "10717864-n",
+ "06632357-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show"
+ ],
+ "_id": 35389,
+ "created": "2019-05-16T14:03:40.000Z",
+ "lastUpdated": "2021-06-07T07:40:23.356Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "journal télévisé",
+ "hasLocution": true,
+ "plural": "journaux télévisés"
+ },
+ {
+ "type": 2,
+ "keyword": "nouvelles",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "journal",
+ "hasLocution": true,
+ "plural": "journaux"
+ },
+ {
+ "type": 2,
+ "keyword": "bulletin d'informations",
+ "hasLocution": false,
+ "plural": "bulletins d'information"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "industrial building",
+ "signaling system"
+ ],
+ "synsets": [
+ "03321351-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "industry",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35393,
+ "created": "2019-05-16T14:04:45.000Z",
+ "lastUpdated": "2021-06-07T07:39:45.013Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "usine",
+ "hasLocution": true,
+ "plural": "usines"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vehicle component",
+ "land transport",
+ "cycling"
+ ],
+ "synsets": [
+ "04120288-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport",
+ "leisure",
+ "sport",
+ "cycling"
+ ],
+ "_id": 35381,
+ "created": "2019-05-16T14:01:40.000Z",
+ "lastUpdated": "2021-07-14T21:03:20.902Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "roue dentée",
+ "hasLocution": true,
+ "plural": "roues dentées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "12602129-n"
+ ],
+ "tags": [
+ "plant",
+ "hervaceouos plant"
+ ],
+ "_id": 35399,
+ "created": "2019-05-16T14:05:49.000Z",
+ "lastUpdated": "2021-04-14T20:45:46.826Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "kentia",
+ "hasLocution": true,
+ "plural": "kentias"
+ },
+ {
+ "keyword": "palmier d'intérieur",
+ "hasLocution": false,
+ "plural": "palmiers d'intérieur",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 35397,
+ "created": "2019-05-16T14:05:24.000Z",
+ "lastUpdated": "2021-04-14T20:48:23.244Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "dégrafeur",
+ "plural": "dégrafeurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "06152605-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 35402,
+ "created": "2019-05-16T14:06:27.000Z",
+ "lastUpdated": "2021-04-14T20:44:17.617Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sciences sociales",
+ "hasLocution": true,
+ "plural": "sciences sociales"
+ },
+ {
+ "keyword": "cours de sciences sociales",
+ "hasLocution": false,
+ "plural": "cours de sciences sociales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dinosaur anatomy",
+ "fossil"
+ ],
+ "synsets": [
+ "05290245-n"
+ ],
+ "tags": [
+ "animal",
+ "extinct being",
+ "dinosaur",
+ "anatomy",
+ "dinosaur anatomy",
+ "fossil",
+ "paleontology"
+ ],
+ "_id": 35405,
+ "created": "2019-05-16T14:07:39.000Z",
+ "lastUpdated": "2021-04-14T20:41:14.202Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "dent de requin",
+ "hasLocution": true,
+ "plural": "dents de requin"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mollusc",
+ "oviparous",
+ "marine animal",
+ "fishing",
+ "food"
+ ],
+ "synsets": [
+ "01968530-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing",
+ "feeding",
+ "food"
+ ],
+ "_id": 35395,
+ "created": "2019-05-16T14:05:07.000Z",
+ "lastUpdated": "2024-12-13T07:23:25.251Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coquille Saint-Jacques",
+ "hasLocution": true,
+ "plural": "coquilles Saint-Jacques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "omnivorous",
+ "mollusc",
+ "oviparous",
+ "marine animal",
+ "fishing"
+ ],
+ "synsets": [
+ "01907447-n"
+ ],
+ "tags": [
+ "animal",
+ "omnivorous",
+ "invertebrate",
+ "mollusc",
+ "oviparous",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "work",
+ "primary sector",
+ "fishing"
+ ],
+ "_id": 35375,
+ "created": "2019-05-16T13:59:38.000Z",
+ "lastUpdated": "2021-03-26T16:25:34.661Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "coquille Saint-Jacques",
+ "hasLocution": true,
+ "plural": "coquille Saint-Jacques"
+ },
+ {
+ "hasLocution": true,
+ "keyword": "coquille",
+ "type": 2,
+ "plural": "coquille"
+ },
+ {
+ "keyword": "pétoncle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pétoncles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture"
+ ],
+ "synsets": [
+ "08534954-n",
+ "08674524-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 35407,
+ "created": "2019-05-16T14:08:03.000Z",
+ "lastUpdated": "2021-07-15T20:54:37.638Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "arrêt",
+ "hasLocution": true,
+ "plural": "arrêts"
+ },
+ {
+ "keyword": "arrêt de bus",
+ "hasLocution": false,
+ "plural": "arrêts de bus",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03987092-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 35409,
+ "created": "2019-05-16T14:09:05.000Z",
+ "lastUpdated": "2021-04-14T20:37:24.791Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pompon",
+ "hasLocution": true,
+ "plural": "pompons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "02423786-v",
+ "02423521-v",
+ "01887709-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 35411,
+ "created": "2019-05-16T14:09:45.000Z",
+ "lastUpdated": "2021-07-14T20:56:23.117Z",
+ "keywords": [
+ {
+ "keyword": "jouer au ballon",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public building",
+ "law and justice",
+ "signaling system"
+ ],
+ "synsets": [
+ "10382848-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "public administration",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35417,
+ "created": "2019-05-16T14:17:52.000Z",
+ "lastUpdated": "2021-04-14T20:16:46.401Z",
+ "keywords": [
+ {
+ "keyword": "étude de notaire",
+ "hasLocution": false,
+ "plural": "études de notaire",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "security and defense",
+ "signaling system"
+ ],
+ "synsets": [
+ "02797802-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35419,
+ "created": "2019-05-16T14:19:56.000Z",
+ "lastUpdated": "2021-04-14T20:12:56.759Z",
+ "keywords": [
+ {
+ "keyword": "caserne",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "casernes"
+ },
+ {
+ "keyword": "baraquement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "baraquements"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10555161-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 35421,
+ "created": "2019-05-16T14:21:13.000Z",
+ "lastUpdated": "2021-04-14T20:11:49.643Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "grimpeur",
+ "hasLocution": true,
+ "plural": "grimpeurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "law and justice",
+ "professional"
+ ],
+ "synsets": [
+ "10382848-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice",
+ "professional"
+ ],
+ "_id": 35415,
+ "created": "2019-05-16T14:11:40.000Z",
+ "lastUpdated": "2021-04-14T20:36:41.180Z",
+ "keywords": [
+ {
+ "keyword": "notaire",
+ "hasLocution": false,
+ "plural": "notaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07670276-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 35423,
+ "created": "2019-05-16T14:21:45.000Z",
+ "lastUpdated": "2021-04-14T20:10:23.763Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "part de gâteau",
+ "plural": "parts de gâteau"
+ },
+ {
+ "keyword": "morceau de gâteau",
+ "hasLocution": false,
+ "plural": "morceaux de gâteau",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "07287250-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 35425,
+ "created": "2019-05-16T14:22:02.000Z",
+ "lastUpdated": "2021-04-14T20:08:37.662Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gommette",
+ "hasLocution": true,
+ "plural": "gommettes"
+ },
+ {
+ "keyword": "autocollant",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "autocollants"
+ },
+ {
+ "keyword": "vignette",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vignettes"
+ },
+ {
+ "keyword": "étiquette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "étiquettes"
+ },
+ {
+ "keyword": "sticker",
+ "hasLocution": false,
+ "plural": "stickers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport modality",
+ "chess"
+ ],
+ "synsets": [
+ "01075360-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport modality",
+ "chess"
+ ],
+ "_id": 35428,
+ "created": "2019-05-16T14:23:21.000Z",
+ "lastUpdated": "2021-04-14T20:05:37.319Z",
+ "keywords": [
+ {
+ "keyword": "jouer aux échecs",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool"
+ ],
+ "synsets": [
+ "02820166-n"
+ ],
+ "tags": [
+ "work",
+ "tool"
+ ],
+ "_id": 35429,
+ "created": "2019-05-16T14:24:02.000Z",
+ "lastUpdated": "2021-04-14T20:05:10.238Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "roulement à billes",
+ "hasLocution": false,
+ "plural": "roulements à billes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "country"
+ ],
+ "synsets": [
+ "08562388-n"
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "country"
+ ],
+ "_id": 35431,
+ "created": "2019-05-16T14:24:31.000Z",
+ "lastUpdated": "2021-04-14T20:35:57.934Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pays",
+ "hasLocution": true,
+ "plural": "pays"
+ },
+ {
+ "keyword": "région",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "régions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "law and justice",
+ "professional"
+ ],
+ "synsets": [
+ "10382848-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice",
+ "professional"
+ ],
+ "_id": 35413,
+ "created": "2019-05-16T14:11:20.000Z",
+ "lastUpdated": "2021-04-14T20:17:48.023Z",
+ "keywords": [
+ {
+ "keyword": "notaire",
+ "hasLocution": false,
+ "plural": "notaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "06152605-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 35401,
+ "created": "2019-05-16T14:06:27.000Z",
+ "lastUpdated": "2021-04-14T20:43:47.646Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sciences sociales",
+ "hasLocution": true,
+ "plural": "sciences sociales"
+ },
+ {
+ "keyword": "cours de sciences sociales",
+ "hasLocution": false,
+ "plural": "cours de sciences sociales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00891438-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 35433,
+ "created": "2019-05-16T17:18:06.000Z",
+ "lastUpdated": "2021-04-14T20:35:01.210Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cours de musique",
+ "hasLocution": true,
+ "plural": "cours de musique"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00891438-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 35434,
+ "created": "2019-05-16T17:18:06.000Z",
+ "lastUpdated": "2021-04-14T20:34:43.448Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cours de musique",
+ "hasLocution": true,
+ "plural": "cours de musique"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "06009578-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 35437,
+ "created": "2019-05-16T17:19:18.000Z",
+ "lastUpdated": "2021-04-14T20:33:42.752Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sciences de la nature",
+ "hasLocution": true,
+ "plural": "sciences de la nature"
+ },
+ {
+ "keyword": "sciences naturelles",
+ "hasLocution": true,
+ "plural": "sciences naturelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "visual art",
+ "tourism"
+ ],
+ "synsets": [
+ "01235721-n"
+ ],
+ "tags": [
+ "visual art",
+ "work",
+ "tertiary sector",
+ "tourism"
+ ],
+ "_id": 35439,
+ "created": "2019-05-16T17:19:50.000Z",
+ "lastUpdated": "2021-06-07T07:38:34.646Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "visite",
+ "hasLocution": true,
+ "plural": "visites"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "meat",
+ "cookery"
+ ],
+ "synsets": [
+ "00325361-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat",
+ "cookery"
+ ],
+ "_id": 35441,
+ "created": "2019-05-16T17:22:54.000Z",
+ "lastUpdated": "2021-04-14T20:31:15.194Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "rôtir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "griller",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "meat"
+ ],
+ "synsets": [
+ "03464846-n",
+ "04118508-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 35443,
+ "created": "2019-05-16T17:23:51.000Z",
+ "lastUpdated": "2021-04-21T21:24:21.310Z",
+ "keywords": [
+ {
+ "keyword": "rôtisserie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "rôtisseries"
+ },
+ {
+ "keyword": "grill",
+ "hasLocution": false,
+ "plural": "grills"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "pet"
+ ],
+ "synsets": [
+ "00258095-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "animal",
+ "pet"
+ ],
+ "_id": 35451,
+ "created": "2019-05-16T17:31:58.000Z",
+ "lastUpdated": "2021-07-14T20:49:32.135Z",
+ "keywords": [
+ {
+ "keyword": "toilettage canin",
+ "hasLocution": false,
+ "plural": "toilettages canins",
+ "type": 2
+ },
+ {
+ "keyword": "salon de toilettage pour chiens",
+ "hasLocution": false,
+ "plural": "salons de toilettage pour chiens",
+ "type": 2
+ },
+ {
+ "keyword": "toiletteur pour chiens",
+ "hasLocution": false,
+ "plural": "toiletteurs pour chiens",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "infrastructure"
+ ],
+ "synsets": [
+ "03727081-n"
+ ],
+ "tags": [
+ "place",
+ "infrastructure"
+ ],
+ "_id": 35453,
+ "created": "2019-05-16T17:33:00.000Z",
+ "lastUpdated": "2021-04-14T20:30:22.039Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "port de plaisance",
+ "hasLocution": true,
+ "plural": "ports de plaisance"
+ },
+ {
+ "keyword": "marina",
+ "hasLocution": false,
+ "plural": "marinas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public administration"
+ ],
+ "synsets": [
+ "08156795-n",
+ "06560662-n",
+ "13330021-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "public administration"
+ ],
+ "_id": 35449,
+ "created": "2019-05-16T17:30:20.000Z",
+ "lastUpdated": "2021-07-19T10:29:46.786Z",
+ "keywords": [
+ {
+ "keyword": "trésorerie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "trésoreries"
+ },
+ {
+ "keyword": "taxe",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "taxes"
+ },
+ {
+ "keyword": "déclaration d'impôts",
+ "hasLocution": false,
+ "plural": "déclarations d'impôts",
+ "type": 2
+ },
+ {
+ "keyword": "déclaration fiscale",
+ "hasLocution": false,
+ "plural": "déclaration fiscale",
+ "type": 2
+ },
+ {
+ "keyword": "déclaration de revenus",
+ "hasLocution": false,
+ "plural": "déclarations de revenus",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "death",
+ "signaling system"
+ ],
+ "synsets": [
+ "08538806-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "event",
+ "social event",
+ "death",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35455,
+ "created": "2019-05-16T17:33:49.000Z",
+ "lastUpdated": "2021-07-14T20:43:26.740Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cimetière",
+ "hasLocution": true,
+ "plural": "cimetières"
+ },
+ {
+ "keyword": "lieu de sépulture",
+ "hasLocution": false,
+ "plural": "lieus de sépulture",
+ "type": 2
+ },
+ {
+ "keyword": "site funéraire",
+ "hasLocution": false,
+ "plural": "sites funéraire",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "judaism",
+ "death",
+ "signaling system"
+ ],
+ "synsets": [
+ "08538806-n",
+ "02933576-a"
+ ],
+ "tags": [
+ "religion",
+ "judaism",
+ "event",
+ "social event",
+ "death",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35457,
+ "created": "2019-05-16T17:36:00.000Z",
+ "lastUpdated": "2021-07-14T20:41:20.881Z",
+ "keywords": [
+ {
+ "keyword": "cimetière juif",
+ "hasLocution": false,
+ "plural": "cimetières juifs",
+ "type": 2
+ },
+ {
+ "keyword": "tombe juive",
+ "hasLocution": false,
+ "plural": "tombes juives",
+ "type": 2
+ },
+ {
+ "keyword": "tombe",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "tombes"
+ },
+ {
+ "keyword": "pierre tombale",
+ "hasLocution": false,
+ "plural": "pierres tombales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "islamism",
+ "death",
+ "signaling system"
+ ],
+ "synsets": [
+ "08538806-n",
+ "02934823-a"
+ ],
+ "tags": [
+ "religion",
+ "islamism",
+ "event",
+ "social event",
+ "death",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35459,
+ "created": "2019-05-16T17:37:52.000Z",
+ "lastUpdated": "2021-07-14T20:37:43.762Z",
+ "keywords": [
+ {
+ "keyword": "cimetière musulman",
+ "hasLocution": false,
+ "plural": "cimetières musulmans",
+ "type": 2
+ },
+ {
+ "keyword": "tombe ",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "tombes"
+ },
+ {
+ "keyword": "tombe musulmane",
+ "hasLocution": false,
+ "plural": "tombes musulmanes",
+ "type": 2
+ },
+ {
+ "keyword": "pierre tombale",
+ "hasLocution": false,
+ "plural": "pierres tombales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "03921556-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 35461,
+ "created": "2019-05-16T19:49:00.000Z",
+ "lastUpdated": "2021-04-14T20:27:55.727Z",
+ "keywords": [
+ {
+ "keyword": "guiro",
+ "hasLocution": false,
+ "plural": "guiros",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "string instrument"
+ ],
+ "synsets": [
+ "04023240-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "string instrument"
+ ],
+ "_id": 35463,
+ "created": "2019-05-16T19:50:01.000Z",
+ "lastUpdated": "2021-04-14T20:23:26.381Z",
+ "keywords": [
+ {
+ "keyword": "psaltérion",
+ "hasLocution": false,
+ "plural": "psaltérions",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "public building",
+ "public administration",
+ "signaling system"
+ ],
+ "synsets": [
+ "08156795-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "public administration",
+ "work",
+ "tertiary sector",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35447,
+ "created": "2019-05-16T17:27:59.000Z",
+ "lastUpdated": "2021-07-14T20:51:30.336Z",
+ "keywords": [
+ {
+ "keyword": "centre des impôts",
+ "hasLocution": false,
+ "plural": "centres des impôts",
+ "type": 2
+ },
+ {
+ "keyword": "bureau des impôts",
+ "hasLocution": false,
+ "plural": "bureaux des impôts",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "document"
+ ],
+ "synsets": [
+ "04011466-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "document"
+ ],
+ "_id": 35445,
+ "created": "2019-05-16T17:25:43.000Z",
+ "lastUpdated": "2024-12-11T17:24:58.349Z",
+ "keywords": [
+ {
+ "keyword": "magasin de photocopies",
+ "hasLocution": false,
+ "plural": "magasins de photocopies",
+ "type": 2
+ },
+ {
+ "keyword": "atelier de reprographie",
+ "hasLocution": false,
+ "plural": "ateliers de reprographie",
+ "type": 2
+ },
+ {
+ "keyword": "atelier d'imprimerie",
+ "hasLocution": false,
+ "plural": "ateliers d'imprimerie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "animal anatomy",
+ "animal-assisted therapy"
+ ],
+ "synsets": [
+ "01228534-v",
+ "01428543-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "anatomy",
+ "animal anatomy",
+ "animal-assisted therapy"
+ ],
+ "_id": 35471,
+ "created": "2019-05-16T20:03:32.000Z",
+ "lastUpdated": "2021-04-21T21:22:43.043Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "caresser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "public administration"
+ ],
+ "synsets": [
+ "00698828-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "public administration"
+ ],
+ "_id": 35473,
+ "created": "2019-05-16T20:06:17.000Z",
+ "lastUpdated": "2021-07-18T06:32:11.425Z",
+ "keywords": [
+ {
+ "keyword": "inspecter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "auditer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "vérifier",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "easter week",
+ "christianity"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "easter week",
+ "religion",
+ "christianity"
+ ],
+ "_id": 35475,
+ "created": "2019-05-16T20:07:38.000Z",
+ "lastUpdated": "2021-04-21T21:21:37.292Z",
+ "keywords": [
+ {
+ "keyword": "le Nazaréen",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "easter week",
+ "christianity"
+ ],
+ "synsets": [],
+ "tags": [
+ "religion",
+ "object",
+ "event",
+ "popular event",
+ "easter week",
+ "christianity"
+ ],
+ "_id": 35477,
+ "created": "2019-05-16T20:13:01.000Z",
+ "lastUpdated": "2021-07-18T06:32:05.228Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "char",
+ "hasLocution": true,
+ "plural": "chars"
+ },
+ {
+ "keyword": "char de procession",
+ "hasLocution": false,
+ "plural": "chars de procession",
+ "type": 2
+ },
+ {
+ "keyword": "char de la Passion",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "chars de la Passion"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "01635953-v",
+ "00723361-v",
+ "01641524-v",
+ "00592510-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 35479,
+ "created": "2019-05-16T20:14:42.000Z",
+ "lastUpdated": "2021-06-07T07:32:53.920Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "avoir une idée",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "trouver",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "inventer",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "découvrir",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "00662334-n"
+ ],
+ "tags": [
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 35481,
+ "created": "2019-05-16T20:16:20.000Z",
+ "lastUpdated": "2021-07-29T00:17:37.460Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "thérapie assistée par le cheval",
+ "plural": "thérapies assistées par le cheval"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "équithérapies",
+ "keyword": "équithérapie"
+ },
+ {
+ "keyword": "hippothérapie",
+ "hasLocution": false,
+ "plural": "hippothérapies",
+ "type": 2
+ },
+ {
+ "plural": "thérapies équines",
+ "keyword": "thérapie équine",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "03951891-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 35465,
+ "created": "2019-05-16T19:53:01.000Z",
+ "lastUpdated": "2021-06-07T07:35:43.341Z",
+ "keywords": [
+ {
+ "keyword": "flûte à bec",
+ "hasLocution": false,
+ "plural": "flûtes à bec",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "12157237-n",
+ "12130015-n",
+ "04594218-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 35467,
+ "created": "2019-05-16T20:01:49.000Z",
+ "lastUpdated": "2021-04-14T20:20:32.954Z",
+ "keywords": [
+ {
+ "keyword": "roseau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "roseaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "senses"
+ ],
+ "synsets": [
+ "01228779-v",
+ "01228534-v",
+ "00145598-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 35469,
+ "created": "2019-05-16T20:02:34.000Z",
+ "lastUpdated": "2021-07-15T20:53:56.647Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "caresser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "caresse",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "caresses"
+ },
+ {
+ "keyword": "câlin",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "câlins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "04305309-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 35489,
+ "created": "2019-05-16T20:35:38.000Z",
+ "lastUpdated": "2022-03-06T21:25:04.379Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "escalier",
+ "hasLocution": true,
+ "plural": "escaliers"
+ },
+ {
+ "keyword": "marchepied",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "marchepieds"
+ },
+ {
+ "keyword": "marche",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "marches"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "01961388-v",
+ "01927367-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 35483,
+ "created": "2019-05-16T20:17:14.000Z",
+ "lastUpdated": "2021-07-19T10:26:41.325Z",
+ "keywords": [
+ {
+ "keyword": "monter",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "faire du cheval",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "construction"
+ ],
+ "synsets": [
+ "03286056-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 35491,
+ "created": "2019-05-16T20:37:03.000Z",
+ "lastUpdated": "2021-07-10T21:50:01.403Z",
+ "keywords": [
+ {
+ "keyword": "monte-escalier",
+ "hasLocution": false,
+ "plural": "monte-escaliers",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "measurement unit",
+ "trade"
+ ],
+ "synsets": [
+ "13630031-n",
+ "13737860-n"
+ ],
+ "tags": [
+ "mathematics",
+ "measurement unit",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 35493,
+ "created": "2019-05-16T20:39:04.000Z",
+ "lastUpdated": "2024-12-08T15:41:58.875Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poids",
+ "hasLocution": true,
+ "plural": "poids"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "01243817-v",
+ "00860463-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 35487,
+ "created": "2019-05-16T20:19:53.000Z",
+ "lastUpdated": "2021-07-10T21:52:47.727Z",
+ "keywords": [
+ {
+ "keyword": "éperonner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "encourager",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hobby"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "hobby"
+ ],
+ "_id": 35495,
+ "created": "2019-05-16T20:40:08.000Z",
+ "lastUpdated": "2021-07-10T21:49:11.315Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "plural": "sculptures de ballons",
+ "keyword": "sculpture de ballons"
+ },
+ {
+ "keyword": "globoflexie",
+ "hasLocution": true,
+ "plural": "globoflexies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "industrial building",
+ "cattle farming",
+ "signaling system"
+ ],
+ "synsets": [
+ "02669573-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "industry",
+ "work",
+ "primary sector",
+ "cattle farming",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35501,
+ "created": "2019-05-16T20:44:56.000Z",
+ "lastUpdated": "2021-04-21T21:14:36.571Z",
+ "keywords": [
+ {
+ "keyword": "abattoir",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "abattoirs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cattle farming"
+ ],
+ "synsets": [
+ "04176768-n"
+ ],
+ "tags": [
+ "work",
+ "primary sector",
+ "cattle farming"
+ ],
+ "_id": 35497,
+ "created": "2019-05-16T20:41:35.000Z",
+ "lastUpdated": "2021-04-21T21:17:34.178Z",
+ "keywords": [
+ {
+ "keyword": "mangeoire automatique",
+ "hasLocution": false,
+ "plural": "mangeoires automatiques",
+ "type": 2
+ },
+ {
+ "keyword": "mangeoire",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "mangeoires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01165162-n",
+ "00102340-v"
+ ],
+ "tags": [
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 35499,
+ "created": "2019-05-16T20:43:46.000Z",
+ "lastUpdated": "2021-07-10T21:45:38.544Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "automutilation",
+ "plural": "automutilations"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "computing"
+ ],
+ "synsets": [
+ "04602355-n"
+ ],
+ "tags": [
+ "computing"
+ ],
+ "_id": 35503,
+ "created": "2019-05-16T20:46:22.000Z",
+ "lastUpdated": "2021-04-21T21:13:40.193Z",
+ "keywords": [
+ {
+ "keyword": "wifi",
+ "hasLocution": false,
+ "plural": "wifis",
+ "type": 2
+ },
+ {
+ "hasLocution": true,
+ "type": 2,
+ "keyword": "wi-fi",
+ "plural": "wi-fi"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "01910816-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 35485,
+ "created": "2019-05-16T20:18:14.000Z",
+ "lastUpdated": "2021-07-10T21:56:59.760Z",
+ "keywords": [
+ {
+ "keyword": "promener le cheval",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "06804229-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35505,
+ "created": "2019-05-16T20:46:49.000Z",
+ "lastUpdated": "2021-07-10T21:06:20.672Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "panneau",
+ "plural": "panneaux"
+ },
+ {
+ "keyword": "signe",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "signes"
+ },
+ {
+ "plural": "pancartes",
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "pancarte"
+ },
+ {
+ "plural": "indicateurs",
+ "keyword": "indicateur",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media"
+ ],
+ "synsets": [
+ "08372002-n",
+ "10489196-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media"
+ ],
+ "_id": 35513,
+ "created": "2019-05-16T20:59:04.000Z",
+ "lastUpdated": "2021-07-19T10:23:28.588Z",
+ "keywords": [
+ {
+ "keyword": "bureau de presse",
+ "hasLocution": false,
+ "plural": "bureaux de presse",
+ "type": 2
+ },
+ {
+ "keyword": "agence de presse",
+ "hasLocution": false,
+ "plural": "agences de presse",
+ "type": 2
+ },
+ {
+ "keyword": "attaché de presse",
+ "hasLocution": false,
+ "plural": "attachés de presse",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "industrial building",
+ "workplace",
+ "land transport",
+ "signaling system"
+ ],
+ "synsets": [
+ "03421550-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "industry",
+ "workplace",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35517,
+ "created": "2019-05-17T09:21:01.000Z",
+ "lastUpdated": "2021-07-19T10:22:54.124Z",
+ "keywords": [
+ {
+ "keyword": "atelier de peinture et de réparation de carrosserie automobile",
+ "hasLocution": false,
+ "plural": "ateliers de peinture et de réparation de carrosserie automobile",
+ "type": 2
+ },
+ {
+ "keyword": "atelier de carrosserie",
+ "hasLocution": false,
+ "plural": "ateliers de carroserie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy"
+ ],
+ "synsets": [
+ "00701253-n"
+ ],
+ "tags": [
+ "health",
+ "physiotherapy"
+ ],
+ "_id": 35511,
+ "created": "2019-05-16T20:57:02.000Z",
+ "lastUpdated": "2021-07-28T09:38:20.378Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "balnéothérapie",
+ "plural": "balnéothérapies"
+ },
+ {
+ "keyword": "kinésithérapie en piscine",
+ "hasLocution": false,
+ "plural": "kinésithérapies en piscine",
+ "type": 2
+ },
+ {
+ "keyword": "physiothérapie en piscine",
+ "hasLocution": false,
+ "plural": "physiothérapies en piscine"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07610082-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 35519,
+ "created": "2019-05-17T09:25:33.000Z",
+ "lastUpdated": "2021-07-21T16:59:36.432Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "vente à emporter",
+ "plural": "ventes à emporter"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "plat à emporter",
+ "plural": "plats à emporter"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00437207-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 35521,
+ "created": "2019-05-17T09:29:07.000Z",
+ "lastUpdated": "2021-07-15T20:53:30.635Z",
+ "keywords": [
+ {
+ "keyword": "confuse",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "désorientée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic needs",
+ "body sensation"
+ ],
+ "synsets": [
+ "01273114-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "person",
+ "basic needs",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 35523,
+ "created": "2019-05-17T09:30:35.000Z",
+ "lastUpdated": "2021-07-15T20:53:22.969Z",
+ "keywords": [
+ {
+ "keyword": "assoiffée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic needs",
+ "body sensation"
+ ],
+ "synsets": [
+ "01272183-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "person",
+ "basic needs",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 35525,
+ "created": "2019-05-17T09:31:18.000Z",
+ "lastUpdated": "2021-07-18T06:20:51.542Z",
+ "keywords": [
+ {
+ "keyword": "affamée",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "14325525-n",
+ "03787723-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 35527,
+ "created": "2019-05-17T09:36:24.000Z",
+ "lastUpdated": "2021-07-16T12:55:49.108Z",
+ "keywords": [
+ {
+ "keyword": "Le moniteur de surveillance des signes vitaux",
+ "hasLocution": false,
+ "plural": "Le moniteurs de surveillance des signes vitaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "signaling system"
+ ],
+ "synsets": [
+ "06804229-n"
+ ],
+ "tags": [
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35507,
+ "created": "2019-05-16T20:47:55.000Z",
+ "lastUpdated": "2021-07-10T21:03:29.921Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "signal",
+ "hasLocution": true,
+ "plural": "signaux"
+ },
+ {
+ "keyword": "panneau",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "panneaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spain region"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [
+ "geography",
+ "political geography",
+ "spain region"
+ ],
+ "_id": 35509,
+ "created": "2019-05-16T20:49:55.000Z",
+ "lastUpdated": "2021-07-10T21:02:00.041Z",
+ "keywords": [
+ {
+ "keyword": "communautés autonomes espagnoles",
+ "hasLocution": false,
+ "plural": "communautés autonomes espagnoles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00080219-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion",
+ "core vocabulary"
+ ],
+ "_id": 35535,
+ "created": "2019-05-17T10:45:36.000Z",
+ "lastUpdated": "2021-07-15T20:52:01.890Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "effrayé",
+ "hasLocution": true
+ },
+ {
+ "keyword": "apeuré",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "body sensation",
+ "covid-19",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge",
+ "core vocabulary-living being",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "02440540-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion",
+ "human body",
+ "body sensation",
+ "covid-19",
+ "core vocabulary"
+ ],
+ "_id": 35537,
+ "created": "2019-05-17T10:46:57.000Z",
+ "lastUpdated": "2021-07-15T20:51:54.765Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fatigué",
+ "hasLocution": true
+ },
+ {
+ "keyword": "épuisé",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01151786-a",
+ "00363547-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion",
+ "core vocabulary"
+ ],
+ "_id": 35533,
+ "created": "2019-05-17T10:44:56.000Z",
+ "lastUpdated": "2021-06-07T07:26:06.777Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "joyeux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00114629-a",
+ "01177241-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion",
+ "core vocabulary"
+ ],
+ "_id": 35539,
+ "created": "2019-05-17T10:47:33.000Z",
+ "lastUpdated": "2021-07-15T20:51:47.817Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fâché",
+ "hasLocution": true
+ },
+ {
+ "keyword": "en colère",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "énervé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "00437207-a",
+ "01688793-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 35541,
+ "created": "2019-05-17T10:48:23.000Z",
+ "lastUpdated": "2021-07-15T20:51:39.156Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "confus",
+ "hasLocution": true
+ },
+ {
+ "keyword": "désorienté",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "symptom",
+ "body sensation"
+ ],
+ "synsets": [
+ "02554818-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 35543,
+ "created": "2019-05-17T10:50:00.000Z",
+ "lastUpdated": "2021-08-04T08:58:46.123Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "écoeuré",
+ "hasLocution": false
+ },
+ {
+ "keyword": "écœuré",
+ "type": 4,
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01364779-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion",
+ "core vocabulary"
+ ],
+ "_id": 35545,
+ "created": "2019-05-17T10:50:25.000Z",
+ "lastUpdated": "2021-06-07T07:16:17.606Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "triste",
+ "hasLocution": true
+ },
+ {
+ "keyword": "malheureux",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "déprimé",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "00591490-a",
+ "01151786-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion",
+ "core vocabulary"
+ ],
+ "_id": 35547,
+ "created": "2019-05-17T10:50:58.000Z",
+ "lastUpdated": "2021-07-15T20:51:14.717Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "content",
+ "hasLocution": true
+ },
+ {
+ "keyword": "heureux",
+ "hasLocution": true,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01346048-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion",
+ "core vocabulary"
+ ],
+ "_id": 35531,
+ "created": "2019-05-17T10:44:20.000Z",
+ "lastUpdated": "2021-07-15T20:52:25.548Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ennuyé",
+ "hasLocution": false
+ },
+ {
+ "hasLocution": false,
+ "keyword": "lassé",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "02366035-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion",
+ "core vocabulary"
+ ],
+ "_id": 35529,
+ "created": "2019-05-17T10:43:27.000Z",
+ "lastUpdated": "2024-10-19T09:47:04.585Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "surpris",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "body sensation"
+ ],
+ "synsets": [
+ "01250274-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 35549,
+ "created": "2019-05-17T10:51:30.000Z",
+ "lastUpdated": "2021-07-16T12:54:00.522Z",
+ "keywords": [
+ {
+ "keyword": "sensible à la chaleur",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "sensibles à la chaleur"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling"
+ ],
+ "synsets": [
+ "07555178-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 35553,
+ "created": "2019-05-17T10:59:53.000Z",
+ "lastUpdated": "2021-06-07T07:14:28.908Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ennui",
+ "hasLocution": true,
+ "plural": "ennuis"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling",
+ "human response"
+ ],
+ "synsets": [
+ "07141714-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 35555,
+ "created": "2019-05-17T11:00:09.000Z",
+ "lastUpdated": "2024-11-27T10:31:12.583Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rire",
+ "hasLocution": true,
+ "plural": "rires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic needs",
+ "body sensation"
+ ],
+ "synsets": [
+ "14063016-n"
+ ],
+ "tags": [
+ "person",
+ "basic needs",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 35559,
+ "created": "2019-05-17T11:00:57.000Z",
+ "lastUpdated": "2021-06-07T07:12:19.413Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "faim",
+ "hasLocution": true,
+ "plural": "faims"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "body sensation"
+ ],
+ "synsets": [
+ "05023355-n",
+ "05733472-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 35561,
+ "created": "2019-05-17T11:01:14.000Z",
+ "lastUpdated": "2021-07-15T20:50:19.598Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaleur",
+ "hasLocution": true,
+ "plural": "chaleurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "body sensation",
+ "meteorology"
+ ],
+ "synsets": [
+ "05733621-n"
+ ],
+ "tags": [
+ "human body",
+ "body sensation",
+ "meteorology"
+ ],
+ "_id": 35557,
+ "created": "2019-05-17T11:00:29.000Z",
+ "lastUpdated": "2024-12-11T06:53:23.962Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "froid",
+ "hasLocution": true,
+ "plural": "froids"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "body sensation",
+ "symptom"
+ ],
+ "synsets": [
+ "14395918-n",
+ "14226828-n"
+ ],
+ "tags": [
+ "human body",
+ "body sensation",
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 35569,
+ "created": "2019-05-17T11:04:25.000Z",
+ "lastUpdated": "2021-07-18T06:20:47.081Z",
+ "keywords": [
+ {
+ "keyword": "étourdissement",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "étoursdissements"
+ },
+ {
+ "keyword": "malaise",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "malaises"
+ },
+ {
+ "keyword": "vertige",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vertiges"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling",
+ "human response"
+ ],
+ "synsets": [
+ "07534492-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion",
+ "human response"
+ ],
+ "_id": 35571,
+ "created": "2019-05-17T11:05:19.000Z",
+ "lastUpdated": "2021-07-15T20:49:39.636Z",
+ "keywords": [
+ {
+ "keyword": "peur",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "peurs"
+ },
+ {
+ "keyword": "frayeur",
+ "type": 2,
+ "plural": "frayeurs",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling",
+ "body sensation",
+ "symptom"
+ ],
+ "synsets": [
+ "14039832-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion",
+ "human body",
+ "body sensation",
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 35573,
+ "created": "2019-05-17T11:06:08.000Z",
+ "lastUpdated": "2021-07-15T20:49:32.100Z",
+ "keywords": [
+ {
+ "keyword": "fatigue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fatigues"
+ },
+ {
+ "keyword": "épuisement",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "épuisements"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling",
+ "human response"
+ ],
+ "synsets": [
+ "07531593-n",
+ "14060021-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion",
+ "human response"
+ ],
+ "_id": 35567,
+ "created": "2019-05-17T11:02:31.000Z",
+ "lastUpdated": "2021-06-07T07:10:51.011Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "colère",
+ "hasLocution": true,
+ "plural": "colères"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "body sensation"
+ ],
+ "synsets": [
+ "01257098-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 35577,
+ "created": "2019-05-17T11:07:40.000Z",
+ "lastUpdated": "2021-07-18T06:20:42.656Z",
+ "keywords": [
+ {
+ "keyword": "frileux",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "sensible au froid",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "tremblant",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "frisonnant",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "basic needs"
+ ],
+ "synsets": [
+ "01272183-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "person",
+ "basic needs"
+ ],
+ "_id": 35579,
+ "created": "2019-05-17T11:08:09.000Z",
+ "lastUpdated": "2021-06-07T07:08:55.693Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "affamé",
+ "hasLocution": true,
+ "plural": "affamés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling",
+ "human response"
+ ],
+ "synsets": [
+ "07525587-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion",
+ "human response"
+ ],
+ "_id": 35565,
+ "created": "2019-05-17T11:02:03.000Z",
+ "lastUpdated": "2021-07-15T20:49:56.887Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "surprise ",
+ "hasLocution": false,
+ "plural": "surprises"
+ },
+ {
+ "keyword": "étonnement",
+ "type": 2,
+ "plural": "étonnements",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "feeling"
+ ],
+ "synsets": [
+ "07523151-n",
+ "05691387-n"
+ ],
+ "tags": [
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 35575,
+ "created": "2019-05-17T11:07:08.000Z",
+ "lastUpdated": "2021-07-15T20:48:59.788Z",
+ "keywords": [
+ {
+ "keyword": "confusion mentale",
+ "hasLocution": false,
+ "plural": "confusions mentales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01165162-n"
+ ],
+ "tags": [
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 35587,
+ "created": "2019-05-17T11:11:34.000Z",
+ "lastUpdated": "2021-07-16T12:52:45.565Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "automutilations",
+ "keyword": "automutilation"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "autopunition",
+ "plural": "autopunitions"
+ },
+ {
+ "keyword": "se blesser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'automutiler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "05022301-n",
+ "05733621-n"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 35589,
+ "created": "2019-05-17T11:11:58.000Z",
+ "lastUpdated": "2021-04-19T21:23:13.683Z",
+ "keywords": [
+ {
+ "keyword": "froid",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "froids"
+ },
+ {
+ "keyword": "froideur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "froideurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "body sensation",
+ "winter",
+ "core vocabulary-communication",
+ "core vocabulary-living being",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "body sensation",
+ "winter",
+ "core vocabulary"
+ ],
+ "_id": 35583,
+ "created": "2019-05-17T11:09:39.000Z",
+ "lastUpdated": "2021-07-16T08:20:12.577Z",
+ "keywords": [
+ {
+ "keyword": "avoir froid",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "atmospheric phenomena"
+ ],
+ "synsets": [
+ "02775199-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "meteorology",
+ "atmospheric phenomena"
+ ],
+ "_id": 35591,
+ "created": "2019-05-17T11:19:26.000Z",
+ "lastUpdated": "2021-04-19T21:21:48.643Z",
+ "keywords": [
+ {
+ "keyword": "souffler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01165162-n"
+ ],
+ "tags": [
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 35593,
+ "created": "2019-05-17T11:19:42.000Z",
+ "lastUpdated": "2021-07-16T12:49:59.361Z",
+ "keywords": [
+ {
+ "keyword": "automutilation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "automutilations"
+ },
+ {
+ "keyword": "autopunition",
+ "hasLocution": false,
+ "plural": "autopunitions",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01165162-n"
+ ],
+ "tags": [
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 35594,
+ "created": "2019-05-17T11:19:42.000Z",
+ "lastUpdated": "2021-07-16T12:49:37.226Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "automutilation",
+ "plural": "automutilations"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "autopunition",
+ "plural": "autopunitions"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "05733472-n",
+ "05023355-n"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 35597,
+ "created": "2019-05-17T11:20:11.000Z",
+ "lastUpdated": "2021-04-19T21:20:53.529Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "chaleur",
+ "hasLocution": true,
+ "plural": "chaleur"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14382579-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 35585,
+ "created": "2019-05-17T11:09:58.000Z",
+ "lastUpdated": "2021-06-07T07:08:16.091Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "toux",
+ "hasLocution": true,
+ "plural": "toux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "special education"
+ ],
+ "synsets": [
+ "03902116-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "education",
+ "special education"
+ ],
+ "_id": 35598,
+ "created": "2019-05-17T11:20:26.000Z",
+ "lastUpdated": "2024-12-12T07:21:04.385Z",
+ "keywords": [
+ {
+ "keyword": "minibus",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "minibus"
+ },
+ {
+ "keyword": "van",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vans"
+ },
+ {
+ "keyword": "fourgonnette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "fourgonnettes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport",
+ "core vocabulary-movement"
+ ],
+ "synsets": [
+ "03902116-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "core vocabulary"
+ ],
+ "_id": 35600,
+ "created": "2019-05-17T11:21:20.000Z",
+ "lastUpdated": "2021-07-15T20:47:53.811Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fourgonnette",
+ "hasLocution": true
+ },
+ {
+ "keyword": "minibus",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare",
+ "crockery",
+ "beverage"
+ ],
+ "synsets": [
+ "03152175-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare",
+ "object",
+ "household",
+ "crockery",
+ "home",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 35607,
+ "created": "2019-05-17T12:10:30.000Z",
+ "lastUpdated": "2021-07-18T06:20:35.957Z",
+ "keywords": [
+ {
+ "keyword": "verre à bec",
+ "hasLocution": false,
+ "plural": "verres à bec",
+ "type": 2
+ },
+ {
+ "keyword": "verre canard",
+ "hasLocution": false,
+ "plural": "verres canards",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "road safety"
+ ],
+ "synsets": [
+ "00726626-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "road safety"
+ ],
+ "_id": 35609,
+ "created": "2019-05-17T12:12:41.000Z",
+ "lastUpdated": "2021-07-15T20:46:18.456Z",
+ "keywords": [
+ {
+ "keyword": "traverser avec attention",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "traverser prudemment",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational institution",
+ "signaling system"
+ ],
+ "synsets": [
+ "08149619-n"
+ ],
+ "tags": [
+ "education",
+ "educational institution",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35603,
+ "created": "2019-05-17T12:02:52.000Z",
+ "lastUpdated": "2021-07-16T12:45:15.426Z",
+ "keywords": [
+ {
+ "keyword": "service éducation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "services éducations"
+ },
+ {
+ "keyword": "département éducation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "départements éducations"
+ },
+ {
+ "keyword": "service pédagogique",
+ "hasLocution": false,
+ "plural": "services pédagogiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cleaning product"
+ ],
+ "synsets": [
+ "02913195-n"
+ ],
+ "tags": [
+ "object",
+ "cleaning product"
+ ],
+ "_id": 35605,
+ "created": "2019-05-17T12:03:15.000Z",
+ "lastUpdated": "2021-04-19T21:20:00.742Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "seau d'eau",
+ "hasLocution": false,
+ "plural": "seaux d'eau"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01896601-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 35617,
+ "created": "2019-05-17T13:14:29.000Z",
+ "lastUpdated": "2021-04-19T21:17:53.992Z",
+ "keywords": [
+ {
+ "keyword": "sauter sur un trampoline",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rebondir sur un trampoline",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 35619,
+ "created": "2019-05-17T13:30:11.000Z",
+ "lastUpdated": "2021-04-19T21:17:05.841Z",
+ "keywords": [
+ {
+ "keyword": "sauter sur un trampoline",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "keyword": "rebondir sur un trampoline",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 35620,
+ "created": "2019-05-17T13:30:11.000Z",
+ "lastUpdated": "2021-04-19T21:16:24.040Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "sauter sur un trampoline",
+ "type": 3
+ },
+ {
+ "keyword": "rebondir sur un trampoline",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "routine"
+ ],
+ "synsets": [
+ "04476749-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "person",
+ "routine"
+ ],
+ "_id": 35611,
+ "created": "2019-05-17T12:13:09.000Z",
+ "lastUpdated": "2021-04-19T21:19:26.880Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "trampoline",
+ "hasLocution": true,
+ "plural": "trampolines"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 35621,
+ "created": "2019-05-17T13:30:11.000Z",
+ "lastUpdated": "2021-04-19T21:15:29.156Z",
+ "keywords": [
+ {
+ "keyword": "sauter sur un trampoline",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "rebondir sur un trampoline",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "00881437-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35615,
+ "created": "2019-05-17T13:10:52.000Z",
+ "lastUpdated": "2021-07-16T09:15:46.082Z",
+ "keywords": [
+ {
+ "keyword": "salle de réveil",
+ "hasLocution": false,
+ "plural": "salles de réveil",
+ "type": 2
+ },
+ {
+ "keyword": "salle de surveillance post opératoire",
+ "hasLocution": false,
+ "plural": "salle de surveillance post opératoire",
+ "type": 2
+ },
+ {
+ "plural": "salle de surveillance post interventionnelle",
+ "keyword": "salle de surveillance post interventionnelle",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical art"
+ ],
+ "synsets": [
+ "01733312-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music"
+ ],
+ "_id": 35625,
+ "created": "2019-09-03T10:53:04.000Z",
+ "lastUpdated": "2021-04-19T21:13:53.725Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "interpréter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "chanter",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical art"
+ ],
+ "synsets": [
+ "01733312-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music"
+ ],
+ "_id": 35626,
+ "created": "2019-09-03T10:53:05.000Z",
+ "lastUpdated": "2021-04-19T21:13:36.678Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "interpréter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "chanter",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "02194389-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 35631,
+ "created": "2019-09-03T10:57:15.000Z",
+ "lastUpdated": "2024-10-20T09:38:51.435Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "5",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "cinq",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "nursing equipment"
+ ],
+ "synsets": [
+ "03730526-n",
+ "14046962-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "nursing equipment"
+ ],
+ "_id": 35613,
+ "created": "2019-05-17T13:06:41.000Z",
+ "lastUpdated": "2021-04-19T21:19:10.638Z",
+ "keywords": [
+ {
+ "keyword": "masque d'anesthésie",
+ "hasLocution": false,
+ "plural": "masques d'anesthésie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "01983255-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 35633,
+ "created": "2019-09-03T10:58:59.000Z",
+ "lastUpdated": "2021-07-15T20:46:02.862Z",
+ "keywords": [
+ {
+ "keyword": "débarquer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "descendre de l'avion",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "07679752-n",
+ "07666512-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 35635,
+ "created": "2019-09-03T11:00:19.000Z",
+ "lastUpdated": "2021-04-19T21:11:28.989Z",
+ "keywords": [
+ {
+ "keyword": "viande hachée",
+ "hasLocution": false,
+ "plural": "viandes hachées",
+ "type": 2
+ },
+ {
+ "keyword": "hachis",
+ "hasLocution": false,
+ "plural": "hachis",
+ "type": 2
+ },
+ {
+ "keyword": "viande de boeuf hachée",
+ "hasLocution": false,
+ "plural": "viandes de boeuf hachée",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "string instrument"
+ ],
+ "synsets": [
+ "02883788-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "string instrument"
+ ],
+ "_id": 35641,
+ "created": "2019-09-03T11:05:01.000Z",
+ "lastUpdated": "2021-04-19T21:07:47.501Z",
+ "keywords": [
+ {
+ "keyword": "instruments à cordes",
+ "hasLocution": false,
+ "plural": "instruments à cordes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic"
+ ],
+ "synsets": [
+ "03133170-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 35637,
+ "created": "2019-09-03T11:02:54.000Z",
+ "lastUpdated": "2021-04-19T21:09:34.717Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crème",
+ "hasLocution": true,
+ "plural": "crèmes"
+ },
+ {
+ "keyword": "pommade",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pommades"
+ },
+ {
+ "keyword": "baume",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "baumes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "03051675-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 35639,
+ "created": "2019-09-03T11:03:19.000Z",
+ "lastUpdated": "2021-04-19T21:08:29.735Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sabots",
+ "hasLocution": true,
+ "plural": "sabots"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "01266847-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 35643,
+ "created": "2019-09-03T11:23:50.000Z",
+ "lastUpdated": "2021-07-19T22:30:44.320Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 3,
+ "keyword": "tremper dans la pâte"
+ },
+ {
+ "keyword": "enrober de pâte",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "computing",
+ "signaling system"
+ ],
+ "synsets": [],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "computing",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35645,
+ "created": "2019-09-03T11:25:59.000Z",
+ "lastUpdated": "2021-07-16T09:10:58.512Z",
+ "keywords": [
+ {
+ "keyword": "data center",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "datas centers"
+ },
+ {
+ "keyword": "centre de données",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "centres de données"
+ },
+ {
+ "keyword": "datacenter",
+ "hasLocution": false,
+ "plural": "datacenters",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "court document",
+ "death"
+ ],
+ "synsets": [
+ "06556133-n"
+ ],
+ "tags": [
+ "document",
+ "justice",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 35629,
+ "created": "2019-09-03T10:56:38.000Z",
+ "lastUpdated": "2021-04-19T21:12:56.749Z",
+ "keywords": [
+ {
+ "keyword": "testament",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "testaments"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "08066153-n",
+ "05905605-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 35647,
+ "created": "2019-09-03T11:30:13.000Z",
+ "lastUpdated": "2021-07-16T09:09:30.343Z",
+ "keywords": [
+ {
+ "keyword": "association pour l'autisme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "associations pour l'autisme"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building",
+ "place"
+ ],
+ "synsets": [
+ "02916498-n"
+ ],
+ "tags": [
+ "place",
+ "building"
+ ],
+ "_id": 35655,
+ "created": "2019-09-03T11:38:56.000Z",
+ "lastUpdated": "2022-11-09T08:19:50.991Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "immeuble",
+ "hasLocution": true,
+ "plural": "immeubles"
+ },
+ {
+ "keyword": "bâtiment",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bâtiments"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "fruit"
+ ],
+ "synsets": [
+ "03462628-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 35657,
+ "created": "2019-09-03T11:39:16.000Z",
+ "lastUpdated": "2021-07-15T20:44:38.879Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fruiterie",
+ "hasLocution": true
+ },
+ {
+ "keyword": "magasin de fruits",
+ "hasLocution": false,
+ "plural": "magasins de fruits",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense",
+ "road safety"
+ ],
+ "synsets": [
+ "08226608-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security",
+ "movement",
+ "traffic",
+ "road safety"
+ ],
+ "_id": 35659,
+ "created": "2019-09-03T11:40:13.000Z",
+ "lastUpdated": "2021-06-07T06:57:34.923Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "police municipale",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "work organization"
+ ],
+ "synsets": [
+ "00405549-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "organization"
+ ],
+ "_id": 35653,
+ "created": "2019-09-03T11:38:30.000Z",
+ "lastUpdated": "2021-07-15T20:44:47.048Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "organiser",
+ "hasLocution": true
+ },
+ {
+ "keyword": "coordonner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fish",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07791351-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish",
+ "gastronomy"
+ ],
+ "_id": 35661,
+ "created": "2019-09-03T11:41:44.000Z",
+ "lastUpdated": "2024-12-08T15:41:07.875Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poisson",
+ "hasLocution": true,
+ "plural": "poissons"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal anatomy",
+ "meat"
+ ],
+ "synsets": [],
+ "tags": [
+ "animal",
+ "anatomy",
+ "animal anatomy",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 35649,
+ "created": "2019-09-03T11:33:40.000Z",
+ "lastUpdated": "2021-04-19T21:06:10.409Z",
+ "keywords": [
+ {
+ "keyword": "pieds de cochon",
+ "hasLocution": false,
+ "plural": "pieds de cochon",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "meat"
+ ],
+ "synsets": [
+ "02930545-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 35663,
+ "created": "2019-09-03T11:42:10.000Z",
+ "lastUpdated": "2021-06-07T06:57:11.353Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boucherie",
+ "hasLocution": true,
+ "plural": "boucheries"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "wind instrument"
+ ],
+ "synsets": [
+ "04594218-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "wind instrument"
+ ],
+ "_id": 35667,
+ "created": "2019-09-03T11:44:52.000Z",
+ "lastUpdated": "2021-04-19T21:01:23.841Z",
+ "keywords": [
+ {
+ "keyword": "instruments à vent",
+ "hasLocution": false,
+ "plural": "instruments à vent",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13766444-n",
+ "02194304-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 35665,
+ "created": "2019-09-03T11:42:58.000Z",
+ "lastUpdated": "2024-10-20T09:39:11.021Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "4",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "quatre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "education"
+ ],
+ "synsets": [
+ "00941308-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education"
+ ],
+ "_id": 35669,
+ "created": "2019-09-03T11:45:21.000Z",
+ "lastUpdated": "2021-06-07T06:57:01.638Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "expliquer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "work organization"
+ ],
+ "synsets": [
+ "01643256-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "work",
+ "organization"
+ ],
+ "_id": 35651,
+ "created": "2019-09-03T11:36:33.000Z",
+ "lastUpdated": "2021-04-19T21:04:32.326Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "planifier",
+ "hasLocution": true
+ },
+ {
+ "hasLocution": true,
+ "keyword": "projeter",
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "work organization"
+ ],
+ "synsets": [
+ "01643256-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "work",
+ "organization"
+ ],
+ "_id": 35671,
+ "created": "2019-09-03T11:45:41.000Z",
+ "lastUpdated": "2021-04-19T21:00:01.217Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "planifier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "projeter",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13765409-n",
+ "02194109-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 35679,
+ "created": "2019-09-03T11:50:43.000Z",
+ "lastUpdated": "2024-10-20T09:38:59.098Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "2",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "deux",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13766184-n",
+ "02194219-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 35681,
+ "created": "2019-09-03T11:51:12.000Z",
+ "lastUpdated": "2024-10-20T09:39:19.989Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "3",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "trois",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13766862-n",
+ "02194472-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 35683,
+ "created": "2019-09-03T11:56:43.000Z",
+ "lastUpdated": "2024-10-20T09:39:07.045Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "6",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "six",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13767056-n",
+ "02194609-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 35685,
+ "created": "2019-09-03T11:57:55.000Z",
+ "lastUpdated": "2024-10-20T09:39:24.644Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "7",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "sept",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "10452296-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 35675,
+ "created": "2019-09-03T11:49:13.000Z",
+ "lastUpdated": "2021-04-19T20:58:33.343Z",
+ "keywords": [
+ {
+ "keyword": "pélerine",
+ "hasLocution": false,
+ "plural": "pélerines",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13767226-n",
+ "02194712-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 35687,
+ "created": "2019-09-03T11:58:20.000Z",
+ "lastUpdated": "2024-10-20T09:39:03.201Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "8",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "huit",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13764713-n",
+ "02193977-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 35677,
+ "created": "2019-09-03T11:49:59.000Z",
+ "lastUpdated": "2024-10-20T09:38:55.158Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "un",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "1",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13767410-n",
+ "02194800-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 35689,
+ "created": "2019-09-03T12:01:45.000Z",
+ "lastUpdated": "2024-10-20T09:39:28.816Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "9",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "neuf",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13768652-n",
+ "02194935-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 35691,
+ "created": "2019-09-03T12:02:15.000Z",
+ "lastUpdated": "2024-10-20T09:39:32.746Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "10",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "dix",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "number",
+ "numeral adjective"
+ ],
+ "synsets": [
+ "13764498-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "alphabet",
+ "number",
+ "mathematics",
+ "adjective",
+ "numeral adjective"
+ ],
+ "_id": 35693,
+ "created": "2019-09-03T12:02:54.000Z",
+ "lastUpdated": "2024-10-20T09:39:14.904Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "0",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "zéro",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03075025-n",
+ "03922150-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "core vocabulary"
+ ],
+ "_id": 35673,
+ "created": "2019-09-03T11:47:29.000Z",
+ "lastUpdated": "2021-04-19T20:59:07.292Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parfum",
+ "hasLocution": true,
+ "plural": "parfums"
+ },
+ {
+ "type": 2,
+ "keyword": "eau de cologne",
+ "hasLocution": true,
+ "plural": "eaux de cologne"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": true,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "trade",
+ "core vocabulary-place",
+ "core vocabulary-work"
+ ],
+ "synsets": [
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector",
+ "core vocabulary"
+ ],
+ "_id": 35695,
+ "created": "2019-09-03T12:08:38.000Z",
+ "lastUpdated": "2021-04-30T13:23:27.692Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin",
+ "hasLocution": true,
+ "plural": "magasins"
+ },
+ {
+ "type": 2,
+ "keyword": "commerce",
+ "hasLocution": true,
+ "plural": "commerces"
+ },
+ {
+ "keyword": "boutique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "boutiques"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "vegetable"
+ ],
+ "synsets": [
+ "03462628-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 35703,
+ "created": "2019-09-03T12:13:39.000Z",
+ "lastUpdated": "2021-07-15T20:43:56.241Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de légumes",
+ "hasLocution": false,
+ "plural": "magasins de légumes"
+ },
+ {
+ "keyword": "primeur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "primeurs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "hygiene product"
+ ],
+ "synsets": [
+ "03922504-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 35701,
+ "created": "2019-09-03T12:12:00.000Z",
+ "lastUpdated": "2021-06-07T06:56:24.836Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "parfumerie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "cold meat"
+ ],
+ "synsets": [
+ "03011781-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "processed food",
+ "cold meat"
+ ],
+ "_id": 35705,
+ "created": "2019-09-03T12:15:41.000Z",
+ "lastUpdated": "2021-07-15T20:42:48.995Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "charcuterie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "fish"
+ ],
+ "synsets": [
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "animal-based food",
+ "fish"
+ ],
+ "_id": 35699,
+ "created": "2019-09-03T12:09:44.000Z",
+ "lastUpdated": "2021-06-07T06:56:31.531Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "poissonnerie",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "beverage"
+ ],
+ "synsets": [
+ "02800154-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 35707,
+ "created": "2019-09-03T12:15:59.000Z",
+ "lastUpdated": "2021-07-15T20:42:38.432Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bar",
+ "hasLocution": true,
+ "plural": "bars"
+ },
+ {
+ "keyword": "café",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cafés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "scenic art"
+ ],
+ "synsets": [
+ "01723780-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "scenic art"
+ ],
+ "_id": 35709,
+ "created": "2019-09-03T12:19:16.000Z",
+ "lastUpdated": "2021-07-15T20:42:28.189Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "jouer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "christianity"
+ ],
+ "synsets": [
+ "02085253-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "christianity"
+ ],
+ "_id": 35713,
+ "created": "2019-09-03T12:21:09.000Z",
+ "lastUpdated": "2021-03-21T11:38:03.514Z",
+ "keywords": [
+ {
+ "keyword": "aller en pèlerinage",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire un pèlerinage",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical art"
+ ],
+ "synsets": [
+ "01730049-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music"
+ ],
+ "_id": 35711,
+ "created": "2019-09-03T12:20:03.000Z",
+ "lastUpdated": "2021-07-15T20:42:20.811Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "interpréter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "jouer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "toy"
+ ],
+ "synsets": [
+ "04469475-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 35697,
+ "created": "2019-09-03T12:09:09.000Z",
+ "lastUpdated": "2021-06-07T06:56:38.624Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magasin de jouets",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "body sensation"
+ ],
+ "synsets": [
+ "00067316-v",
+ "05413094-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 35721,
+ "created": "2019-09-03T12:59:15.000Z",
+ "lastUpdated": "2021-07-16T08:12:34.712Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "suer",
+ "hasLocution": true
+ },
+ {
+ "keyword": "transpirer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "suant",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "transpirant",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "musical art",
+ "mass media",
+ "electrical appliance",
+ "appliance",
+ "mass media device"
+ ],
+ "synsets": [
+ "02175483-v",
+ "02174146-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music",
+ "mass media",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "mass media device"
+ ],
+ "_id": 35719,
+ "created": "2019-09-03T12:23:33.000Z",
+ "lastUpdated": "2024-12-08T07:05:13.062Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "écouter de la musique",
+ "hasLocution": true
+ },
+ {
+ "keyword": "entendre la musique",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "02021901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 35725,
+ "created": "2019-09-03T13:01:58.000Z",
+ "lastUpdated": "2021-07-16T12:41:25.293Z",
+ "keywords": [
+ {
+ "keyword": "embarquer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "monter à bord",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01759660-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 35727,
+ "created": "2019-09-03T13:02:30.000Z",
+ "lastUpdated": "2021-03-21T11:36:11.780Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "faire le lit",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "01366351-v",
+ "01539713-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 35729,
+ "created": "2019-09-03T13:11:10.000Z",
+ "lastUpdated": "2021-07-16T12:40:42.618Z",
+ "keywords": [
+ {
+ "keyword": "mettre du savon",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "lavage des mains",
+ "plural": "lavages des mains"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "01839438-v",
+ "01891013-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 35715,
+ "created": "2019-09-03T12:22:18.000Z",
+ "lastUpdated": "2021-07-16T12:43:25.542Z",
+ "keywords": [
+ {
+ "keyword": "se déplacer en fauteuil roulant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": true,
+ "keyword": "roue",
+ "plural": "roues",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "02423786-v",
+ "02423521-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 35717,
+ "created": "2019-09-03T12:22:52.000Z",
+ "lastUpdated": "2021-03-21T11:37:02.140Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. ind. Se divertir en pratiquant un jeu, s'amuser avec un jeu, un jouet",
+ "keyword": "jouer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "traditional game"
+ ],
+ "synsets": [
+ "02423786-v",
+ "02423521-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 35723,
+ "created": "2019-09-03T13:00:33.000Z",
+ "lastUpdated": "2021-03-21T11:36:24.171Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. ind. Se divertir en pratiquant un jeu, s'amuser avec un jeu, un jouet",
+ "keyword": "jouer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cookery"
+ ],
+ "synsets": [
+ "01264514-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "cookery"
+ ],
+ "_id": 35737,
+ "created": "2019-09-03T13:19:08.000Z",
+ "lastUpdated": "2021-03-21T11:35:44.686Z",
+ "keywords": [
+ {
+ "keyword": "fariner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "construction"
+ ],
+ "synsets": [
+ "01658171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 35739,
+ "created": "2019-09-03T13:19:29.000Z",
+ "lastUpdated": "2021-07-15T20:40:08.054Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "construire",
+ "hasLocution": true
+ },
+ {
+ "keyword": "battir",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "monter un mur",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "00968184-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 35733,
+ "created": "2019-09-03T13:17:47.000Z",
+ "lastUpdated": "2021-07-16T12:39:39.440Z",
+ "keywords": [
+ {
+ "hasLocution": true,
+ "type": 3,
+ "keyword": "enregistrer"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media"
+ ],
+ "synsets": [
+ "00187671-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mass media"
+ ],
+ "_id": 35743,
+ "created": "2019-09-03T13:21:23.000Z",
+ "lastUpdated": "2021-07-15T20:39:59.732Z",
+ "keywords": [
+ {
+ "keyword": "mettre sous enveloppe",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre dans l'enveloppe",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "02021901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 35745,
+ "created": "2019-09-03T13:21:52.000Z",
+ "lastUpdated": "2021-07-15T20:38:48.627Z",
+ "keywords": [
+ {
+ "keyword": "embarquer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "monter à bord",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "dance",
+ "core vocabulary-communication",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "01898642-v",
+ "01712535-v",
+ "00429255-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "scenic art",
+ "dance",
+ "show",
+ "core vocabulary"
+ ],
+ "_id": 35747,
+ "created": "2019-09-03T13:22:23.000Z",
+ "lastUpdated": "2021-06-07T06:53:14.792Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "danse",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "danser",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "day time"
+ ],
+ "synsets": [
+ "00313357-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "time",
+ "calendar"
+ ],
+ "_id": 35731,
+ "created": "2019-09-03T13:16:36.000Z",
+ "lastUpdated": "2021-04-11T23:14:45.517Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "crépuscule",
+ "hasLocution": true,
+ "plural": "crépuscules"
+ },
+ {
+ "keyword": "tombée de la nuit",
+ "hasLocution": false,
+ "plural": "tombées de la nuit",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media",
+ "electrical appliance",
+ "appliance",
+ "mass media device",
+ "musical art"
+ ],
+ "synsets": [
+ "02175483-v",
+ "02174146-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music",
+ "mass media",
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "mass media device"
+ ],
+ "_id": 35741,
+ "created": "2019-09-03T13:19:58.000Z",
+ "lastUpdated": "2024-12-08T06:57:45.521Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "écouter de la musique",
+ "hasLocution": true
+ },
+ {
+ "keyword": "entendre la musique",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport modality",
+ "basketball"
+ ],
+ "synsets": [
+ "01075360-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality",
+ "basketball"
+ ],
+ "_id": 35749,
+ "created": "2019-09-03T13:24:03.000Z",
+ "lastUpdated": "2021-04-11T23:12:12.077Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "jouer au basket-ball ",
+ "hasLocution": false
+ },
+ {
+ "keyword": "jouer au basket",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "condiment"
+ ],
+ "synsets": [
+ "07845388-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment"
+ ],
+ "_id": 35735,
+ "created": "2019-09-03T13:18:31.000Z",
+ "lastUpdated": "2021-04-11T23:13:11.585Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "sauce",
+ "hasLocution": true,
+ "plural": "sauces"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "11907006-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable",
+ "plant",
+ "hervaceouos plant"
+ ],
+ "_id": 35755,
+ "created": "2019-09-03T13:26:15.000Z",
+ "lastUpdated": "2021-03-21T11:32:19.218Z",
+ "keywords": [
+ {
+ "keyword": "roquette",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07673777-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 35759,
+ "created": "2019-09-03T13:29:13.000Z",
+ "lastUpdated": "2021-03-21T11:31:44.574Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bifteck",
+ "hasLocution": true,
+ "plural": "biftecks"
+ },
+ {
+ "keyword": "steak",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "steaks"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "processed food"
+ ],
+ "synsets": [
+ "07866305-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "processed food"
+ ],
+ "_id": 35761,
+ "created": "2019-09-03T13:55:25.000Z",
+ "lastUpdated": "2021-03-21T11:30:15.206Z",
+ "keywords": [
+ {
+ "keyword": "fromage au lait de brebis",
+ "hasLocution": false,
+ "plural": "fromages au lait de brebis",
+ "type": 2
+ },
+ {
+ "keyword": "brebis",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "fromage de brebis",
+ "hasLocution": false,
+ "plural": "fromages de brebis",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "processed food"
+ ],
+ "synsets": [
+ "07866305-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "processed food"
+ ],
+ "_id": 35763,
+ "created": "2019-09-03T13:55:59.000Z",
+ "lastUpdated": "2021-03-21T11:28:17.159Z",
+ "keywords": [
+ {
+ "keyword": "fromage au lait de vache",
+ "hasLocution": false,
+ "plural": "fromages au lait de vache",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "processed food"
+ ],
+ "synsets": [
+ "07866305-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "processed food"
+ ],
+ "_id": 35765,
+ "created": "2019-09-03T13:56:15.000Z",
+ "lastUpdated": "2021-03-21T11:27:49.671Z",
+ "keywords": [
+ {
+ "keyword": "fromage de chèvre",
+ "hasLocution": false,
+ "plural": "fromages de chèvre",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "fromage au lait de chèvre",
+ "type": 2,
+ "plural": "fromages au lait de chèvre"
+ },
+ {
+ "keyword": "chèvre",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "aerial transport"
+ ],
+ "synsets": [
+ "01983255-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "air transport"
+ ],
+ "_id": 35751,
+ "created": "2019-09-03T13:24:36.000Z",
+ "lastUpdated": "2021-07-16T12:38:28.510Z",
+ "keywords": [
+ {
+ "keyword": "débarquer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "descendre de l'avion",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dairy product",
+ "processed food"
+ ],
+ "synsets": [
+ "07868590-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "dairy product",
+ "processed food"
+ ],
+ "_id": 35767,
+ "created": "2019-09-03T13:57:13.000Z",
+ "lastUpdated": "2021-03-21T11:26:36.111Z",
+ "keywords": [
+ {
+ "keyword": "fromage de Brie",
+ "hasLocution": false,
+ "plural": "fromages de Brie",
+ "type": 2
+ },
+ {
+ "keyword": "brie",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "part de Brie",
+ "hasLocution": false,
+ "plural": "parts de Brie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "categorization"
+ ],
+ "synsets": [
+ "07612255-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "categorization"
+ ],
+ "_id": 35769,
+ "created": "2019-09-03T13:57:58.000Z",
+ "lastUpdated": "2021-03-21T11:25:17.293Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "friandises",
+ "hasLocution": true
+ },
+ {
+ "keyword": "desserts",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "pâtisseries",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fungus",
+ "plant-based food"
+ ],
+ "synsets": [
+ "13006180-n",
+ "07752947-n"
+ ],
+ "tags": [
+ "plant",
+ "fungus",
+ "feeding",
+ "food",
+ "plant-based food"
+ ],
+ "_id": 35753,
+ "created": "2019-09-03T13:25:13.000Z",
+ "lastUpdated": "2021-03-21T11:32:32.150Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "truffe",
+ "hasLocution": true,
+ "plural": "truffes"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "02236255-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 35773,
+ "created": "2019-09-03T14:03:05.000Z",
+ "lastUpdated": "2021-07-16T12:37:03.103Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 3,
+ "keyword": "passer le ballon"
+ },
+ {
+ "keyword": "envoyer le ballon",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "02236255-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 35774,
+ "created": "2019-09-03T14:03:06.000Z",
+ "lastUpdated": "2021-07-16T12:37:43.816Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 3,
+ "keyword": "passer le ballon"
+ },
+ {
+ "keyword": "envoyer le ballon",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "02236255-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 35775,
+ "created": "2019-09-03T14:03:06.000Z",
+ "lastUpdated": "2021-07-07T11:45:18.644Z",
+ "keywords": [
+ {
+ "keyword": " passer le ballon",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "condiment",
+ "cookery"
+ ],
+ "synsets": [
+ "01367060-v",
+ "02074224-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment",
+ "cookery"
+ ],
+ "_id": 35779,
+ "created": "2019-09-03T14:04:41.000Z",
+ "lastUpdated": "2021-03-21T11:22:23.111Z",
+ "keywords": [
+ {
+ "keyword": "sauce",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "sauce"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01988916-v",
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 35781,
+ "created": "2019-09-03T18:52:48.000Z",
+ "lastUpdated": "2021-07-15T20:37:53.746Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "s'asseoir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "s'asseoir dans la poussette",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir dans la chaise",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "building facility"
+ ],
+ "synsets": [
+ "01348685-v",
+ "01351669-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 35785,
+ "created": "2019-09-03T19:09:25.000Z",
+ "lastUpdated": "2021-07-15T20:36:25.791Z",
+ "keywords": [
+ {
+ "keyword": "ouvrir le verrou",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "déverrouiller",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "ouvrir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "childcare"
+ ],
+ "synsets": [
+ "01978076-v",
+ "01986058-v",
+ "01371262-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 35783,
+ "created": "2019-09-03T18:53:31.000Z",
+ "lastUpdated": "2021-07-15T20:37:07.957Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "se lever",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "se lever de la chaise",
+ "hasLocution": true
+ },
+ {
+ "keyword": "sortir de la poussette",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "building facility"
+ ],
+ "synsets": [
+ "01351520-v",
+ "01289380-v",
+ "01343121-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 35787,
+ "created": "2019-09-03T19:10:41.000Z",
+ "lastUpdated": "2021-07-16T12:34:09.944Z",
+ "keywords": [
+ {
+ "keyword": "verrouiller",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "fermer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media device",
+ "security and defense"
+ ],
+ "synsets": [
+ "00791970-v",
+ "00791110-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 35757,
+ "created": "2019-09-03T13:27:43.000Z",
+ "lastUpdated": "2021-07-21T16:59:31.650Z",
+ "keywords": [
+ {
+ "keyword": "appeler le 061",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "appeler les secours",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "meat"
+ ],
+ "synsets": [
+ "07672475-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 35771,
+ "created": "2019-09-03T13:58:53.000Z",
+ "lastUpdated": "2021-03-21T11:24:05.342Z",
+ "keywords": [
+ {
+ "keyword": "entrecôte",
+ "hasLocution": false,
+ "plural": "entrecôtes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "day time"
+ ],
+ "synsets": [
+ "15192074-n",
+ "15192396-n"
+ ],
+ "tags": [
+ "time",
+ "calendar"
+ ],
+ "_id": 35789,
+ "created": "2019-09-03T20:18:56.000Z",
+ "lastUpdated": "2021-04-11T23:10:49.639Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "nuit",
+ "hasLocution": true,
+ "plural": "nuits"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "archaeology"
+ ],
+ "synsets": [
+ "09824229-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "history",
+ "archaeology"
+ ],
+ "_id": 35791,
+ "created": "2019-09-03T20:19:17.000Z",
+ "lastUpdated": "2021-04-11T23:06:48.772Z",
+ "keywords": [
+ {
+ "keyword": "archéologue",
+ "hasLocution": false,
+ "plural": "archéologues",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "04414392-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 35793,
+ "created": "2019-09-03T20:23:38.000Z",
+ "lastUpdated": "2021-07-16T12:32:36.357Z",
+ "keywords": [
+ {
+ "keyword": "peintures à l'eau",
+ "hasLocution": false,
+ "plural": "peintures à l'eau",
+ "type": 2
+ },
+ {
+ "keyword": "aquarelles",
+ "hasLocution": true,
+ "plural": "aquarelles",
+ "type": 2
+ },
+ {
+ "keyword": "gouaches",
+ "hasLocution": false,
+ "plural": "gouaches",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "beverage"
+ ],
+ "synsets": [
+ "07939537-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "beverage"
+ ],
+ "_id": 35795,
+ "created": "2019-09-03T20:23:58.000Z",
+ "lastUpdated": "2021-04-11T23:09:35.910Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "milk-shake",
+ "hasLocution": true,
+ "plural": "milks-shakes"
+ },
+ {
+ "keyword": "milkshake",
+ "hasLocution": false,
+ "plural": "milkshakes",
+ "type": 2
+ },
+ {
+ "keyword": "lait frappé",
+ "hasLocution": false,
+ "plural": "laits frappés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "04248522-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 35797,
+ "created": "2019-09-03T20:25:25.000Z",
+ "lastUpdated": "2021-04-11T23:04:54.746Z",
+ "keywords": [
+ {
+ "keyword": "babouches",
+ "hasLocution": false,
+ "plural": "babouches",
+ "type": 2
+ },
+ {
+ "keyword": "mules",
+ "hasLocution": false,
+ "plural": "mules",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "04248522-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 35798,
+ "created": "2019-09-03T20:25:26.000Z",
+ "lastUpdated": "2021-08-03T16:07:19.745Z",
+ "keywords": [
+ {
+ "keyword": "babouches",
+ "hasLocution": false,
+ "plural": "babouches",
+ "type": 2
+ },
+ {
+ "keyword": "mules",
+ "hasLocution": false,
+ "plural": "mules",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "05525488-n"
+ ],
+ "tags": [],
+ "_id": 35807,
+ "created": "2019-09-03T20:28:39.000Z",
+ "lastUpdated": "2021-03-21T11:17:44.859Z",
+ "keywords": [
+ {
+ "keyword": "cloque",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cloques"
+ },
+ {
+ "keyword": "ampoule",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "ampoules"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "05732639-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 35809,
+ "created": "2019-09-03T20:29:58.000Z",
+ "lastUpdated": "2021-03-21T11:16:48.289Z",
+ "keywords": [
+ {
+ "keyword": "mal au pied",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "measurement unit"
+ ],
+ "synsets": [
+ "13779389-n"
+ ],
+ "tags": [
+ "mathematics",
+ "measurement unit"
+ ],
+ "_id": 35811,
+ "created": "2019-09-03T20:30:36.000Z",
+ "lastUpdated": "2021-06-07T06:52:33.189Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pas",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "condiment"
+ ],
+ "synsets": [
+ "07850750-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "condiment"
+ ],
+ "_id": 35813,
+ "created": "2019-09-03T20:32:02.000Z",
+ "lastUpdated": "2021-03-21T11:16:12.350Z",
+ "keywords": [
+ {
+ "keyword": "aïoli",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "aïolis"
+ },
+ {
+ "keyword": "sauce à l'ail",
+ "hasLocution": false,
+ "plural": "sauces à l'ail",
+ "type": 2
+ },
+ {
+ "keyword": "sauce aïoli",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sauces aïolis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07660576-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 35815,
+ "created": "2019-09-03T20:37:29.000Z",
+ "lastUpdated": "2021-07-19T19:30:02.049Z",
+ "keywords": [
+ {
+ "keyword": "beignets de poulet",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "beignets de poulet"
+ },
+ {
+ "keyword": "nuggets",
+ "hasLocution": false,
+ "plural": "nuggets",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "spices"
+ ],
+ "synsets": [
+ "07839790-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "spices"
+ ],
+ "_id": 35817,
+ "created": "2019-09-03T20:38:23.000Z",
+ "lastUpdated": "2021-03-21T11:13:46.783Z",
+ "keywords": [
+ {
+ "keyword": "curry en poudre",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "archaeology",
+ "rome"
+ ],
+ "synsets": [
+ "04204153-n",
+ "07378483-n"
+ ],
+ "tags": [
+ "history",
+ "archaeology",
+ "civilization",
+ "Rome"
+ ],
+ "_id": 35801,
+ "created": "2019-09-03T20:26:01.000Z",
+ "lastUpdated": "2021-03-21T11:19:56.091Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "naufrage",
+ "hasLocution": true,
+ "plural": "naufrage"
+ },
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "épave",
+ "plural": "épaves"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "dietetics"
+ ],
+ "synsets": [
+ "10032138-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "dietetics"
+ ],
+ "_id": 35803,
+ "created": "2019-09-03T20:27:00.000Z",
+ "lastUpdated": "2021-03-21T11:18:32.209Z",
+ "keywords": [
+ {
+ "keyword": "diététicien",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "diététiciens"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "15118861-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 35821,
+ "created": "2019-09-04T11:49:50.000Z",
+ "lastUpdated": "2021-03-21T11:12:59.869Z",
+ "keywords": [
+ {
+ "keyword": "bande de cire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bandes de cire"
+ },
+ {
+ "keyword": "cire froide",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [
+ "15080503-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 35823,
+ "created": "2019-09-04T11:51:36.000Z",
+ "lastUpdated": "2021-07-15T20:32:57.420Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "assouplissant pour cheveux",
+ "hasLocution": false,
+ "plural": "assouplissants pour cheveux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "dietetics"
+ ],
+ "synsets": [
+ "10032138-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "dietetics"
+ ],
+ "_id": 35804,
+ "created": "2019-09-03T20:27:01.000Z",
+ "lastUpdated": "2021-03-21T11:18:12.976Z",
+ "keywords": [
+ {
+ "keyword": "diététicienne",
+ "hasLocution": false,
+ "plural": "diététiciennes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic"
+ ],
+ "synsets": [
+ "03133170-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic"
+ ],
+ "_id": 35829,
+ "created": "2019-09-04T12:00:13.000Z",
+ "lastUpdated": "2021-03-21T11:07:35.079Z",
+ "keywords": [
+ {
+ "keyword": "crème corporelle",
+ "hasLocution": false,
+ "plural": "crèmes corporelles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "intimate hygiene"
+ ],
+ "synsets": [
+ "04142398-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "human body",
+ "intimate hygiene"
+ ],
+ "_id": 35825,
+ "created": "2019-09-04T11:53:05.000Z",
+ "lastUpdated": "2021-05-12T21:03:34.176Z",
+ "keywords": [
+ {
+ "keyword": "serviette hygiénique",
+ "hasLocution": false,
+ "plural": "serviettes hygiéniques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "city"
+ ],
+ "synsets": [],
+ "tags": [
+ "geography",
+ "political geography",
+ "city"
+ ],
+ "_id": 35831,
+ "created": "2019-09-04T12:02:18.000Z",
+ "lastUpdated": "2021-03-21T11:06:46.708Z",
+ "keywords": [
+ {
+ "keyword": "St Jacques de Compostelle",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "commercial building",
+ "clothes"
+ ],
+ "synsets": [
+ "00796669-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "trade",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 35819,
+ "created": "2019-09-03T20:40:54.000Z",
+ "lastUpdated": "2021-04-11T23:02:49.886Z",
+ "keywords": [
+ {
+ "keyword": "cabine d'essayage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cabines d'essayage"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "hygiene product"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 35827,
+ "created": "2019-09-04T11:57:08.000Z",
+ "lastUpdated": "2021-03-21T11:08:39.767Z",
+ "keywords": [
+ {
+ "keyword": "masque capillaire",
+ "hasLocution": false,
+ "plural": "masques capillaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument",
+ "religious building",
+ "religious place",
+ "christianity"
+ ],
+ "synsets": [
+ "02987658-n"
+ ],
+ "tags": [
+ "place",
+ "monument",
+ "building",
+ "religion",
+ "christianity"
+ ],
+ "_id": 35833,
+ "created": "2019-09-04T12:04:30.000Z",
+ "lastUpdated": "2021-03-21T11:06:20.809Z",
+ "keywords": [
+ {
+ "keyword": "Cathédrale de Saint-Jacques-de-Compostelle",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "surf"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "surf"
+ ],
+ "_id": 35839,
+ "created": "2019-09-04T13:25:10.000Z",
+ "lastUpdated": "2021-07-22T14:25:26.540Z",
+ "keywords": [
+ {
+ "keyword": "paddle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paddles"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "paddle surf",
+ "plural": "paddles surfs"
+ },
+ {
+ "keyword": "planche de stand up paddle",
+ "hasLocution": false,
+ "plural": "planches de stand up paddle",
+ "type": 2
+ },
+ {
+ "keyword": "stand up paddle",
+ "hasLocution": false,
+ "plural": "stand up paddles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "surf"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "surf"
+ ],
+ "_id": 35840,
+ "created": "2019-09-04T13:25:10.000Z",
+ "lastUpdated": "2021-07-22T14:25:50.433Z",
+ "keywords": [
+ {
+ "keyword": "paddle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paddles"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "planche de stand up paddle",
+ "plural": "planches de stand up paddle"
+ },
+ {
+ "keyword": "paddle surf",
+ "hasLocution": false,
+ "plural": "paddles surfs",
+ "type": 2
+ },
+ {
+ "keyword": "stand up paddle",
+ "hasLocution": false,
+ "plural": "stand up paddles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "surf"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "surf"
+ ],
+ "_id": 35841,
+ "created": "2019-09-04T13:25:10.000Z",
+ "lastUpdated": "2021-07-22T14:13:58.074Z",
+ "keywords": [
+ {
+ "keyword": "paddle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paddles"
+ },
+ {
+ "keyword": "planche de paddle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "planches de paddle"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "planche de stand up paddle",
+ "plural": "planches de stand up paddle"
+ },
+ {
+ "keyword": "stand up paddle",
+ "hasLocution": false,
+ "plural": "stand up paddles",
+ "type": 2
+ },
+ {
+ "keyword": "paddle surf",
+ "hasLocution": false,
+ "plural": "paddles surfs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "03193215-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 35847,
+ "created": "2019-09-04T13:30:50.000Z",
+ "lastUpdated": "2021-03-21T11:04:56.514Z",
+ "keywords": [
+ {
+ "keyword": "protection sale",
+ "hasLocution": false,
+ "plural": "protections sales",
+ "type": 2
+ },
+ {
+ "keyword": "protection souillée",
+ "hasLocution": false,
+ "plural": "protections souillées",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "couche salie",
+ "plural": "couches salies",
+ "type": 2
+ },
+ {
+ "keyword": "couche sale",
+ "hasLocution": false,
+ "plural": "couches sales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 35835,
+ "created": "2019-09-04T12:06:13.000Z",
+ "lastUpdated": "2021-03-21T11:06:05.149Z",
+ "keywords": [
+ {
+ "keyword": "Chemin de St Jacques",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Chemin de St Jacques de Compostelle",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "percussion instrument"
+ ],
+ "synsets": [
+ "03921556-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 35851,
+ "created": "2019-09-04T13:34:29.000Z",
+ "lastUpdated": "2021-04-11T23:01:17.349Z",
+ "keywords": [
+ {
+ "keyword": "instruments de percussion",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "instruments de percussion"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "marine animal",
+ "categorization"
+ ],
+ "synsets": [
+ "01321958-n"
+ ],
+ "tags": [
+ "animal",
+ "aquatic animal",
+ "marine animal",
+ "sea",
+ "categorization"
+ ],
+ "_id": 35853,
+ "created": "2019-09-04T13:38:07.000Z",
+ "lastUpdated": "2021-03-21T10:59:14.000Z",
+ "keywords": [
+ {
+ "keyword": "animaux marins",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "animaux aquatiques",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport modality",
+ "surf"
+ ],
+ "synsets": [
+ "01422027-v",
+ "01951746-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "sport modality",
+ "surf"
+ ],
+ "_id": 35837,
+ "created": "2019-09-04T13:25:09.000Z",
+ "lastUpdated": "2021-07-22T14:23:13.647Z",
+ "keywords": [
+ {
+ "keyword": "ramer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "pagayer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "type": 3,
+ "keyword": "faire du paddle"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "paddle surf",
+ "plural": "paddles surf",
+ "type": 2
+ },
+ {
+ "keyword": "planche de stand up paddle",
+ "hasLocution": false,
+ "plural": "planches de stand up paddle",
+ "type": 2
+ },
+ {
+ "keyword": "stand up paddle",
+ "hasLocution": false,
+ "plural": "stand up paddles",
+ "type": 2
+ },
+ {
+ "keyword": "paddle",
+ "hasLocution": false,
+ "plural": "paddles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flying animal",
+ "categorization"
+ ],
+ "synsets": [
+ "00015568-n"
+ ],
+ "tags": [
+ "animal",
+ "flying animal",
+ "categorization"
+ ],
+ "_id": 35855,
+ "created": "2019-09-04T13:44:41.000Z",
+ "lastUpdated": "2021-03-21T10:58:06.189Z",
+ "keywords": [
+ {
+ "keyword": "animaux volants",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "volatiles",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "home",
+ "construction",
+ "architecture",
+ "categorization"
+ ],
+ "synsets": [
+ "01106542-n"
+ ],
+ "tags": [
+ "work",
+ "secondary sector",
+ "construction",
+ "architecture",
+ "building",
+ "categorization"
+ ],
+ "_id": 35859,
+ "created": "2019-09-04T13:49:56.000Z",
+ "lastUpdated": "2022-11-09T08:54:02.435Z",
+ "keywords": [
+ {
+ "keyword": "bâtiments",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "constructions",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "terrestrial animal",
+ "categorization"
+ ],
+ "synsets": [
+ "00125790-a",
+ "00015568-n"
+ ],
+ "tags": [
+ "animal",
+ "terrestrial animal",
+ "categorization"
+ ],
+ "_id": 35857,
+ "created": "2019-09-04T13:47:20.000Z",
+ "lastUpdated": "2021-03-21T10:56:59.374Z",
+ "keywords": [
+ {
+ "keyword": "animaux terrestres",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "surf"
+ ],
+ "synsets": [
+ "01422027-v",
+ "01951746-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "surf"
+ ],
+ "_id": 35838,
+ "created": "2019-09-04T13:25:09.000Z",
+ "lastUpdated": "2021-07-22T14:24:58.533Z",
+ "keywords": [
+ {
+ "keyword": "ramer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire du paddle",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "paddle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "paddles"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "planche de stand up paddle",
+ "plural": "planches de stand up paddle"
+ },
+ {
+ "keyword": "pagayer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "stand up paddle",
+ "hasLocution": false,
+ "plural": "stand up paddles",
+ "type": 2
+ },
+ {
+ "keyword": "paddle surf",
+ "hasLocution": false,
+ "plural": "paddles surfs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "christianity"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "religious event",
+ "religion",
+ "christianity"
+ ],
+ "_id": 35865,
+ "created": "2019-09-04T14:05:22.000Z",
+ "lastUpdated": "2021-07-16T14:57:17.996Z",
+ "keywords": [
+ {
+ "keyword": "Fête de Saint Jacques",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "11012332-n",
+ "09047559-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 35863,
+ "created": "2019-09-04T13:55:06.000Z",
+ "lastUpdated": "2021-04-11T22:59:56.668Z",
+ "keywords": [
+ {
+ "keyword": "Parc Güell",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "christianity"
+ ],
+ "synsets": [],
+ "tags": [
+ "religion",
+ "object",
+ "christianity"
+ ],
+ "_id": 35867,
+ "created": "2019-09-04T14:08:30.000Z",
+ "lastUpdated": "2021-03-21T10:51:04.564Z",
+ "keywords": [
+ {
+ "keyword": "Botafumeiro",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "historical character",
+ "christianity"
+ ],
+ "synsets": [],
+ "tags": [
+ "religion",
+ "character",
+ "historical character",
+ "history",
+ "christianity"
+ ],
+ "_id": 35871,
+ "created": "2019-09-04T14:12:29.000Z",
+ "lastUpdated": "2021-05-12T20:59:41.726Z",
+ "keywords": [
+ {
+ "keyword": "Jacques le Majeur",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Saint Jacques de Compostelle",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "10452296-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 35869,
+ "created": "2019-09-04T14:09:27.000Z",
+ "lastUpdated": "2021-03-21T10:47:35.117Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "pèlerins",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "meat",
+ "cookery"
+ ],
+ "synsets": [
+ "00622310-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "animal-based food",
+ "meat",
+ "cookery"
+ ],
+ "_id": 35873,
+ "created": "2019-09-04T21:00:33.000Z",
+ "lastUpdated": "2021-07-15T20:32:16.899Z",
+ "keywords": [
+ {
+ "keyword": "saignant",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "rosé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "meat",
+ "cookery"
+ ],
+ "synsets": [
+ "00619963-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "animal-based food",
+ "meat",
+ "cookery"
+ ],
+ "_id": 35875,
+ "created": "2019-09-04T21:00:54.000Z",
+ "lastUpdated": "2021-07-15T20:32:09.345Z",
+ "keywords": [
+ {
+ "keyword": "bien cuit",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "entertainment facility",
+ "recreational facility",
+ "fiestas del pilar"
+ ],
+ "synsets": [
+ "08632207-n"
+ ],
+ "tags": [
+ "leisure",
+ "place",
+ "facility",
+ "recreational facility",
+ "event",
+ "popular event",
+ "fiestas del pilar"
+ ],
+ "_id": 35861,
+ "created": "2019-09-04T13:52:55.000Z",
+ "lastUpdated": "2021-05-12T21:02:39.354Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "fête foraine",
+ "hasLocution": false,
+ "plural": "fêtes foraines"
+ },
+ {
+ "keyword": "foire",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "foires"
+ },
+ {
+ "keyword": "parc d'attractions",
+ "hasLocution": false,
+ "plural": "parcs d'attractions",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "meat"
+ ],
+ "synsets": [
+ "00620371-s"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "animal-based food",
+ "meat"
+ ],
+ "_id": 35877,
+ "created": "2019-09-04T21:01:09.000Z",
+ "lastUpdated": "2021-07-15T20:32:00.669Z",
+ "keywords": [
+ {
+ "keyword": "à point",
+ "hasLocution": false,
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [],
+ "synsets": [
+ "07638317-n"
+ ],
+ "tags": [],
+ "_id": 35879,
+ "created": "2019-09-04T21:05:07.000Z",
+ "lastUpdated": "2021-03-21T10:44:10.644Z",
+ "keywords": [
+ {
+ "keyword": "petits gâteaux sucrés",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "petits gâteaux secs",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "gâteaux secs",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "pâtisseries",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "election"
+ ],
+ "synsets": [
+ "00185211-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 35883,
+ "created": "2019-09-04T22:18:50.000Z",
+ "lastUpdated": "2021-03-21T10:41:28.329Z",
+ "keywords": [
+ {
+ "keyword": "vote secret",
+ "hasLocution": false,
+ "plural": "votes secrets",
+ "type": 2
+ },
+ {
+ "keyword": "vote à bulletin secret",
+ "hasLocution": false,
+ "plural": "votes à bulletin secret",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "election"
+ ],
+ "synsets": [
+ "00185211-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "election"
+ ],
+ "_id": 35884,
+ "created": "2019-09-04T22:18:50.000Z",
+ "lastUpdated": "2021-03-21T10:40:36.800Z",
+ "keywords": [
+ {
+ "keyword": "vote secret",
+ "hasLocution": false,
+ "plural": "votes secrets",
+ "type": 2
+ },
+ {
+ "keyword": "vote à bulletin secret",
+ "hasLocution": false,
+ "plural": "votes à bulletin secret",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03983015-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 35887,
+ "created": "2019-09-04T22:21:26.000Z",
+ "lastUpdated": "2021-03-21T10:38:44.488Z",
+ "keywords": [
+ {
+ "keyword": "bâton de randonnée",
+ "hasLocution": false,
+ "plural": "bâtons de randonnée",
+ "type": 2
+ },
+ {
+ "keyword": "bâton de marche",
+ "hasLocution": false,
+ "plural": "bâtons de marche",
+ "type": 2
+ },
+ {
+ "keyword": "bâton de marche de randonnée",
+ "hasLocution": false,
+ "plural": "bâtons de marche de randonnée",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical procedure"
+ ],
+ "synsets": [],
+ "tags": [
+ "health",
+ "medicine",
+ "medical procedure"
+ ],
+ "_id": 35889,
+ "created": "2019-09-04T22:23:09.000Z",
+ "lastUpdated": "2021-07-16T14:52:28.980Z",
+ "keywords": [
+ {
+ "keyword": "changement de position",
+ "hasLocution": false,
+ "plural": "changements de position",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human response"
+ ],
+ "synsets": [
+ "00869874-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response"
+ ],
+ "_id": 35881,
+ "created": "2019-09-04T22:17:18.000Z",
+ "lastUpdated": "2021-07-15T20:31:49.301Z",
+ "keywords": [
+ {
+ "keyword": "pleurer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "sanglotter",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "human value"
+ ],
+ "synsets": [
+ "00732883-s",
+ "00731669-s",
+ "00731008-a",
+ "02426474-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "human value"
+ ],
+ "_id": 35893,
+ "created": "2019-09-04T22:25:45.000Z",
+ "lastUpdated": "2021-03-21T10:34:34.807Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "indépendant",
+ "hasLocution": true
+ },
+ {
+ "type": 4,
+ "keyword": "autonome",
+ "hasLocution": true
+ },
+ {
+ "keyword": "devenir indépendant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se libérer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ "07315954-n"
+ ],
+ "tags": [],
+ "_id": 35895,
+ "created": "2019-09-04T22:28:10.000Z",
+ "lastUpdated": "2021-03-21T10:32:18.381Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "accident",
+ "hasLocution": true,
+ "plural": "accidents"
+ },
+ {
+ "keyword": "accident de fauteuil roulant",
+ "hasLocution": false,
+ "plural": "accidents de fauteuil roulant",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "hairdresser"
+ ],
+ "synsets": [
+ "02794147-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 35897,
+ "created": "2019-09-04T22:36:02.000Z",
+ "lastUpdated": "2021-03-21T10:31:24.171Z",
+ "keywords": [
+ {
+ "keyword": "fauteuil de coiffeur",
+ "hasLocution": false,
+ "plural": "fauteuils de coiffeur",
+ "type": 2
+ },
+ {
+ "keyword": "fauteuil de barbier",
+ "hasLocution": false,
+ "plural": "fauteuils de barbier",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07720882-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 35899,
+ "created": "2019-09-04T22:41:23.000Z",
+ "lastUpdated": "2021-03-21T10:30:32.012Z",
+ "keywords": [
+ {
+ "keyword": "barre de céréales",
+ "hasLocution": false,
+ "plural": "barres de céréales"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "04583288-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 35901,
+ "created": "2019-09-05T09:58:01.000Z",
+ "lastUpdated": "2021-03-21T10:30:04.842Z",
+ "keywords": [
+ {
+ "keyword": "fauteuil roulant verticalisateur",
+ "hasLocution": false,
+ "plural": "fauteuils roulants verticalisateurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "basic needs"
+ ],
+ "synsets": [
+ "00860309-n",
+ "00860015-n"
+ ],
+ "tags": [
+ "person",
+ "basic needs"
+ ],
+ "_id": 35891,
+ "created": "2019-09-04T22:23:55.000Z",
+ "lastUpdated": "2021-03-21T10:35:14.071Z",
+ "keywords": [
+ {
+ "keyword": "sieste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "siestes"
+ },
+ {
+ "keyword": "faire la sieste",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building"
+ ],
+ "synsets": [
+ "04244529-n",
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade"
+ ],
+ "_id": 35907,
+ "created": "2019-09-05T10:16:24.000Z",
+ "lastUpdated": "2021-07-18T06:13:37.686Z",
+ "keywords": [
+ {
+ "keyword": "magasin d'équipements de cuisine",
+ "hasLocution": false,
+ "plural": "magasins d'équipements de cuisine",
+ "type": 2
+ },
+ {
+ "keyword": "magasin d'équipements de restauration",
+ "type": 2,
+ "hasLocution": false,
+ "plural": "magasin d'équipements de restauration"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "signaling system"
+ ],
+ "synsets": [
+ "01106229-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35903,
+ "created": "2019-09-05T09:59:42.000Z",
+ "lastUpdated": "2021-04-11T22:58:53.509Z",
+ "keywords": [
+ {
+ "keyword": "restauration",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "mountain"
+ ],
+ "synsets": [
+ "02990834-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "leisure",
+ "outdoor activity",
+ "mountain"
+ ],
+ "_id": 35909,
+ "created": "2019-09-05T10:21:41.000Z",
+ "lastUpdated": "2021-04-11T22:54:48.128Z",
+ "keywords": [
+ {
+ "keyword": "chapeau mou",
+ "hasLocution": false,
+ "plural": "chapeaux mous",
+ "type": 2
+ },
+ {
+ "keyword": "chapeau à larges bords",
+ "hasLocution": false,
+ "plural": "chapeaux à larges bords",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 35913,
+ "created": "2019-09-05T10:52:37.000Z",
+ "lastUpdated": "2021-05-12T20:59:11.901Z",
+ "keywords": [
+ {
+ "keyword": "La Compostela",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02480958-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 35915,
+ "created": "2019-09-05T10:57:03.000Z",
+ "lastUpdated": "2021-07-18T06:13:16.404Z",
+ "keywords": [
+ {
+ "keyword": "faire tamponner le carnet de pèlerinage",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 35917,
+ "created": "2019-09-05T10:59:35.000Z",
+ "lastUpdated": "2021-07-18T06:12:37.366Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "plats aux oeufs",
+ "keyword": "plat aux oeufs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance"
+ ],
+ "synsets": [
+ "04244529-n"
+ ],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home"
+ ],
+ "_id": 35905,
+ "created": "2019-09-05T10:14:01.000Z",
+ "lastUpdated": "2021-04-11T22:57:18.761Z",
+ "keywords": [
+ {
+ "keyword": "trancheuse",
+ "hasLocution": false,
+ "plural": "trancheuses",
+ "type": 2
+ },
+ {
+ "keyword": "machine à trancher",
+ "hasLocution": false,
+ "plural": "machines à trancher",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals"
+ ],
+ "synsets": [
+ "09835195-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work"
+ ],
+ "_id": 35911,
+ "created": "2019-09-05T10:50:07.000Z",
+ "lastUpdated": "2021-07-18T06:13:23.639Z",
+ "keywords": [
+ {
+ "keyword": "assistant de transport",
+ "hasLocution": false,
+ "plural": "assistants de transport",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recycling center",
+ "recycling",
+ "signaling system"
+ ],
+ "synsets": [
+ "08604533-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recycling center",
+ "recycling",
+ "environmental science",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35921,
+ "created": "2019-10-31T21:25:43.000Z",
+ "lastUpdated": "2021-07-15T20:30:18.609Z",
+ "keywords": [
+ {
+ "keyword": "dépôt de ferrailles",
+ "hasLocution": false,
+ "plural": "dépôts de ferrailles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month"
+ ],
+ "synsets": [
+ "15234841-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month"
+ ],
+ "_id": 35923,
+ "created": "2019-10-31T21:28:22.000Z",
+ "lastUpdated": "2021-03-26T02:44:50.316Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Janvier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month"
+ ],
+ "synsets": [
+ "15236280-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month"
+ ],
+ "_id": 35925,
+ "created": "2019-10-31T21:30:30.000Z",
+ "lastUpdated": "2021-03-26T02:49:42.771Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Mai",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month"
+ ],
+ "synsets": [
+ "15238202-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month"
+ ],
+ "_id": 35927,
+ "created": "2019-10-31T21:32:26.000Z",
+ "lastUpdated": "2021-03-26T02:59:42.529Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Novembre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month"
+ ],
+ "synsets": [
+ "15237535-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month"
+ ],
+ "_id": 35929,
+ "created": "2019-10-31T21:33:16.000Z",
+ "lastUpdated": "2021-03-26T02:58:41.345Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Septembre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month"
+ ],
+ "synsets": [
+ "15236963-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month"
+ ],
+ "_id": 35931,
+ "created": "2019-10-31T21:34:50.000Z",
+ "lastUpdated": "2021-03-26T02:57:34.077Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Juillet",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month"
+ ],
+ "synsets": [
+ "15236602-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month"
+ ],
+ "_id": 35933,
+ "created": "2019-10-31T21:35:51.000Z",
+ "lastUpdated": "2021-03-26T02:50:21.976Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Juin",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01617485-v",
+ "01359453-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 35919,
+ "created": "2019-09-05T11:03:58.000Z",
+ "lastUpdated": "2021-07-16T14:38:34.349Z",
+ "keywords": [
+ {
+ "keyword": "coller avec la pâte à fixer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "coller à la patafix",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month"
+ ],
+ "synsets": [
+ "15238570-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month"
+ ],
+ "_id": 35937,
+ "created": "2019-10-31T21:38:55.000Z",
+ "lastUpdated": "2021-03-26T02:59:14.134Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Décembre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month"
+ ],
+ "synsets": [
+ "15235666-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month"
+ ],
+ "_id": 35939,
+ "created": "2019-10-31T21:40:33.000Z",
+ "lastUpdated": "2021-03-26T02:46:49.287Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Mars",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month"
+ ],
+ "synsets": [
+ "15237251-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month"
+ ],
+ "_id": 35941,
+ "created": "2019-10-31T21:42:43.000Z",
+ "lastUpdated": "2021-03-26T02:58:15.737Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Août",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "03193215-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 35848,
+ "created": "2019-09-04T13:30:50.000Z",
+ "lastUpdated": "2021-03-21T11:03:05.278Z",
+ "keywords": [
+ {
+ "keyword": "couche sale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "couches sales"
+ },
+ {
+ "keyword": "couche mouillée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "couches mouillées"
+ },
+ {
+ "keyword": "couche souillée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "couches souillées"
+ },
+ {
+ "keyword": "protection mouillée",
+ "hasLocution": false,
+ "plural": "protections mouillées",
+ "type": 2
+ },
+ {
+ "keyword": "protection salie",
+ "hasLocution": false,
+ "plural": "protections salies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month"
+ ],
+ "synsets": [
+ "15235985-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month"
+ ],
+ "_id": 35935,
+ "created": "2019-10-31T21:37:14.000Z",
+ "lastUpdated": "2021-03-26T02:49:14.717Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Avril",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month"
+ ],
+ "synsets": [
+ "15237911-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month"
+ ],
+ "_id": 35943,
+ "created": "2019-10-31T21:44:00.000Z",
+ "lastUpdated": "2021-03-26T03:00:12.129Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Octobre",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "painting"
+ ],
+ "synsets": [
+ "04234206-n"
+ ],
+ "tags": [
+ "visual art",
+ "painting"
+ ],
+ "_id": 35947,
+ "created": "2019-10-31T21:48:47.000Z",
+ "lastUpdated": "2021-04-11T22:49:11.136Z",
+ "keywords": [
+ {
+ "keyword": "croquis",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "croquis"
+ },
+ {
+ "keyword": "schéma",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "schéma"
+ },
+ {
+ "keyword": "dessin",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "dessins"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mineral origin material"
+ ],
+ "synsets": [
+ "14659900-n"
+ ],
+ "tags": [
+ "material",
+ "raw material",
+ "mineral origin material"
+ ],
+ "_id": 35953,
+ "created": "2019-10-31T21:52:04.000Z",
+ "lastUpdated": "2021-04-11T22:47:21.224Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cuivre",
+ "hasLocution": true,
+ "plural": "cuivres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building room",
+ "signaling system"
+ ],
+ "synsets": [
+ "03391266-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 35955,
+ "created": "2019-10-31T21:52:35.000Z",
+ "lastUpdated": "2021-04-11T22:47:05.162Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "salle de réunions",
+ "hasLocution": true,
+ "plural": "salles de réunions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14556418-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 35957,
+ "created": "2019-10-31T21:53:28.000Z",
+ "lastUpdated": "2021-04-11T22:46:26.965Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "allergie",
+ "hasLocution": true,
+ "plural": "allergies"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "tale character"
+ ],
+ "synsets": [
+ "10365535-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 35951,
+ "created": "2019-10-31T21:51:13.000Z",
+ "lastUpdated": "2021-04-11T22:47:47.452Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "conteur d'histoires",
+ "hasLocution": true,
+ "plural": "conteurs d'histoires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10624661-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 35959,
+ "created": "2019-10-31T21:55:19.000Z",
+ "lastUpdated": "2021-07-15T20:30:05.894Z",
+ "keywords": [
+ {
+ "keyword": "skieur",
+ "plural": "skieurs",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "childcare"
+ ],
+ "synsets": [
+ "03523608-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 35961,
+ "created": "2019-10-31T21:57:25.000Z",
+ "lastUpdated": "2021-07-15T20:29:54.092Z",
+ "keywords": [
+ {
+ "keyword": "chaise haute",
+ "hasLocution": false,
+ "plural": "chaises hautes",
+ "type": 2
+ },
+ {
+ "keyword": "chaise bébé",
+ "hasLocution": false,
+ "plural": "chaises bébé",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 35949,
+ "created": "2019-10-31T21:50:26.000Z",
+ "lastUpdated": "2021-06-07T06:51:13.203Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "pouvoir",
+ "hasLocution": true
+ },
+ {
+ "keyword": "être capable de",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "circus"
+ ],
+ "synsets": [
+ "10246083-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "scenic art",
+ "circus",
+ "show"
+ ],
+ "_id": 35963,
+ "created": "2019-10-31T21:57:52.000Z",
+ "lastUpdated": "2021-04-11T22:46:05.149Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "jongleuse",
+ "hasLocution": false,
+ "plural": "jongleuses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "14338277-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 35965,
+ "created": "2019-10-31T21:58:16.000Z",
+ "lastUpdated": "2021-06-07T06:50:15.447Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éternuer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [
+ ""
+ ],
+ "tags": [],
+ "_id": 35967,
+ "created": "2019-10-31T22:00:05.000Z",
+ "lastUpdated": "2021-04-11T22:45:18.823Z",
+ "keywords": [
+ {
+ "keyword": "reiki",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10623899-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 35971,
+ "created": "2019-10-31T22:00:48.000Z",
+ "lastUpdated": "2021-07-18T06:12:32.441Z",
+ "keywords": [
+ {
+ "keyword": "skateuse",
+ "hasLocution": false,
+ "plural": "skateuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "middle ages",
+ "war"
+ ],
+ "synsets": [
+ "08208160-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "history",
+ "middle ages",
+ "event",
+ "war"
+ ],
+ "_id": 35973,
+ "created": "2019-10-31T22:02:08.000Z",
+ "lastUpdated": "2021-04-11T22:44:29.410Z",
+ "keywords": [
+ {
+ "keyword": "armée",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "armées"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "weapon"
+ ],
+ "synsets": [
+ "10172048-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "weapon"
+ ],
+ "_id": 35975,
+ "created": "2019-10-31T22:03:11.000Z",
+ "lastUpdated": "2021-07-15T20:29:41.994Z",
+ "keywords": [
+ {
+ "keyword": "magasin d'armes",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "magasins d'armes"
+ },
+ {
+ "keyword": "armurerie",
+ "hasLocution": false,
+ "plural": "armureries",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00036925-v",
+ "01539713-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 35977,
+ "created": "2019-10-31T22:04:30.000Z",
+ "lastUpdated": "2021-07-15T20:28:49.123Z",
+ "keywords": [
+ {
+ "keyword": "lavage de mains",
+ "hasLocution": false,
+ "plural": "lavages de mains",
+ "type": 2
+ },
+ {
+ "keyword": "savonner les mains",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire mousser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se savonner",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "00608509-v",
+ "00601387-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 35979,
+ "created": "2019-10-31T22:05:05.000Z",
+ "lastUpdated": "2021-06-07T06:49:20.145Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "étudier",
+ "hasLocution": true
+ },
+ {
+ "keyword": "apprendre",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "05005419-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 35981,
+ "created": "2019-10-31T22:07:50.000Z",
+ "lastUpdated": "2021-04-07T18:48:42.599Z",
+ "keywords": [
+ {
+ "keyword": "bipèdie",
+ "hasLocution": false,
+ "plural": "bipèdies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "miscellaneous"
+ ],
+ "synsets": [],
+ "tags": [],
+ "_id": 35968,
+ "created": "2019-10-31T22:00:05.000Z",
+ "lastUpdated": "2021-04-07T18:50:25.345Z",
+ "keywords": [
+ {
+ "keyword": "reiki",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "reikis"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "05005419-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 35982,
+ "created": "2019-10-31T22:07:50.000Z",
+ "lastUpdated": "2021-04-07T18:48:05.153Z",
+ "keywords": [
+ {
+ "keyword": "bipèdie",
+ "hasLocution": false,
+ "plural": "bipèdies",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 35985,
+ "created": "2019-10-31T22:09:33.000Z",
+ "lastUpdated": "2021-04-07T18:47:10.542Z",
+ "keywords": [
+ {
+ "keyword": "à quatre pattes",
+ "hasLocution": false,
+ "plural": "à quatre pattes",
+ "type": 2
+ },
+ {
+ "keyword": "quadrupédie",
+ "hasLocution": false,
+ "plural": "quadrupédie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00345085-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 35989,
+ "created": "2019-10-31T22:10:51.000Z",
+ "lastUpdated": "2021-07-18T06:12:23.973Z",
+ "keywords": [
+ {
+ "keyword": "assis",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "position assise",
+ "hasLocution": false,
+ "plural": "positions assises",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "object"
+ ],
+ "synsets": [
+ "04731092-n"
+ ],
+ "tags": [
+ "object"
+ ],
+ "_id": 35993,
+ "created": "2019-11-01T09:23:47.000Z",
+ "lastUpdated": "2021-04-07T18:41:46.669Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "qualité",
+ "hasLocution": true,
+ "plural": "qualités"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [
+ "00345085-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 35990,
+ "created": "2019-10-31T22:10:51.000Z",
+ "lastUpdated": "2021-07-18T06:12:19.869Z",
+ "keywords": [
+ {
+ "keyword": "assise",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "position assise",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "popular event"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event"
+ ],
+ "_id": 35995,
+ "created": "2019-11-01T09:26:53.000Z",
+ "lastUpdated": "2021-04-07T18:41:27.349Z",
+ "keywords": [
+ {
+ "keyword": "château",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "châteaux"
+ },
+ {
+ "keyword": "castell",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "castells"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dog-assisted therapy"
+ ],
+ "synsets": [
+ "05162155-n"
+ ],
+ "tags": [
+ "animal",
+ "animal-assisted therapy",
+ "dog-assisted therapy"
+ ],
+ "_id": 35997,
+ "created": "2019-11-01T09:29:05.000Z",
+ "lastUpdated": "2021-04-07T18:38:29.275Z",
+ "keywords": [
+ {
+ "keyword": "chien d'assistance",
+ "hasLocution": false,
+ "plural": "chiens d'assistance",
+ "type": 2
+ },
+ {
+ "keyword": "chien d'aide",
+ "hasLocution": false,
+ "plural": "chiens d'aide",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "cleaning product",
+ "hygiene product"
+ ],
+ "synsets": [
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "cleaning product",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 35999,
+ "created": "2019-11-01T09:33:50.000Z",
+ "lastUpdated": "2021-07-16T07:51:27.583Z",
+ "keywords": [
+ {
+ "keyword": "magasin de produits d'entretien",
+ "hasLocution": false,
+ "plural": "magasins de produits d'entretien",
+ "type": 2
+ },
+ {
+ "keyword": "magasin de produits ménagers",
+ "hasLocution": false,
+ "plural": "magasin de produits ménagers",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "magasin de produits domestiques",
+ "plural": "magasin de produits domestiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories"
+ ],
+ "synsets": [
+ "03049322-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 36003,
+ "created": "2019-11-01T09:38:14.000Z",
+ "lastUpdated": "2021-04-07T18:36:09.568Z",
+ "keywords": [
+ {
+ "keyword": "manteau",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "manteaux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 35986,
+ "created": "2019-10-31T22:09:34.000Z",
+ "lastUpdated": "2021-04-07T18:44:15.464Z",
+ "keywords": [
+ {
+ "keyword": "à quatre pattes",
+ "hasLocution": false,
+ "plural": "à quatre pattes",
+ "type": 2
+ },
+ {
+ "keyword": "quadrupédie",
+ "hasLocution": false,
+ "plural": "quadrupédie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene"
+ ],
+ "synsets": [
+ "00037507-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 36005,
+ "created": "2019-11-01T09:44:43.000Z",
+ "lastUpdated": "2021-04-11T22:39:48.760Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "épiler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "month"
+ ],
+ "synsets": [
+ "15235282-n"
+ ],
+ "tags": [
+ "time",
+ "calendar",
+ "month"
+ ],
+ "_id": 35945,
+ "created": "2019-10-31T21:47:18.000Z",
+ "lastUpdated": "2021-03-26T02:45:58.100Z",
+ "keywords": [
+ {
+ "type": 6,
+ "keyword": "Février",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "psychomotor equipment"
+ ],
+ "synsets": [
+ "00311492-n"
+ ],
+ "tags": [
+ "object",
+ "psychomotor equipment"
+ ],
+ "_id": 36001,
+ "created": "2019-11-01T09:34:35.000Z",
+ "lastUpdated": "2022-01-19T10:55:02.714Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "circuit",
+ "hasLocution": false,
+ "plural": "circuits"
+ },
+ {
+ "keyword": "parcours",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "parcours"
+ },
+ {
+ "keyword": "matériel psychomoteur",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene"
+ ],
+ "synsets": [
+ "00037507-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 36006,
+ "created": "2019-11-01T09:44:43.000Z",
+ "lastUpdated": "2021-04-11T22:39:27.621Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "épiler",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07873707-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 36015,
+ "created": "2019-11-01T10:04:16.000Z",
+ "lastUpdated": "2021-04-11T22:36:21.474Z",
+ "keywords": [
+ {
+ "keyword": "houmous",
+ "hasLocution": false,
+ "plural": "houmous",
+ "type": 2
+ },
+ {
+ "keyword": "hommos",
+ "hasLocution": false,
+ "plural": "hommos",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10623899-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 36017,
+ "created": "2019-11-01T10:05:09.000Z",
+ "lastUpdated": "2021-04-11T22:33:47.918Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patineur",
+ "hasLocution": true,
+ "plural": "patineurs"
+ },
+ {
+ "keyword": "patineur sur glace",
+ "hasLocution": true,
+ "plural": "patineurs sur glace",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physics"
+ ],
+ "synsets": [
+ "00576797-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "physics"
+ ],
+ "_id": 36009,
+ "created": "2019-11-01T09:51:36.000Z",
+ "lastUpdated": "2021-04-11T22:38:41.073Z",
+ "keywords": [
+ {
+ "keyword": "vaporiser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "évaporer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'évaporer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "painting"
+ ],
+ "synsets": [
+ "03805232-n"
+ ],
+ "tags": [
+ "visual art",
+ "painting"
+ ],
+ "_id": 36011,
+ "created": "2019-11-01T09:55:54.000Z",
+ "lastUpdated": "2021-07-16T07:49:00.670Z",
+ "keywords": [
+ {
+ "keyword": "peinture murale",
+ "hasLocution": false,
+ "plural": "peintures murales",
+ "type": 2
+ },
+ {
+ "keyword": "fresque",
+ "hasLocution": false,
+ "plural": "fresques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "road safety"
+ ],
+ "synsets": [
+ "01863207-v",
+ "01442997-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "road safety"
+ ],
+ "_id": 36021,
+ "created": "2019-11-01T10:15:29.000Z",
+ "lastUpdated": "2021-07-15T20:26:41.578Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "arrêter",
+ "hasLocution": true
+ },
+ {
+ "keyword": "stopper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physics"
+ ],
+ "synsets": [
+ "00374806-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "physics"
+ ],
+ "_id": 36023,
+ "created": "2019-11-01T10:21:39.000Z",
+ "lastUpdated": "2021-04-11T22:28:08.892Z",
+ "keywords": [
+ {
+ "keyword": "geler",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "surgeler",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "congeler",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07654678-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 36025,
+ "created": "2019-11-01T10:42:07.000Z",
+ "lastUpdated": "2021-04-11T22:24:50.908Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "donut au chocolat",
+ "hasLocution": false,
+ "plural": "donuts au chocolat"
+ },
+ {
+ "keyword": "beignet",
+ "hasLocution": true,
+ "plural": "beignets",
+ "type": 2
+ },
+ {
+ "keyword": "beignet au chocolat",
+ "hasLocution": false,
+ "plural": "beignets au chocolat",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physics"
+ ],
+ "synsets": [
+ "00366928-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "physics"
+ ],
+ "_id": 36027,
+ "created": "2019-11-01T10:47:02.000Z",
+ "lastUpdated": "2021-04-11T22:23:15.368Z",
+ "keywords": [
+ {
+ "keyword": "condenser",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se condenser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "educational material"
+ ],
+ "synsets": [
+ "02400251-s"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "education",
+ "educational material"
+ ],
+ "_id": 36013,
+ "created": "2019-11-01T10:02:19.000Z",
+ "lastUpdated": "2021-07-16T07:47:50.408Z",
+ "keywords": [
+ {
+ "keyword": "panneau tactile",
+ "hasLocution": false,
+ "plural": "panneaux tactiles",
+ "type": 2
+ },
+ {
+ "keyword": "tableau tactile",
+ "hasLocution": false,
+ "plural": "tableaux tactiles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "crime"
+ ],
+ "synsets": [
+ "08663538-n"
+ ],
+ "tags": [
+ "law",
+ "crime"
+ ],
+ "_id": 36019,
+ "created": "2019-11-01T10:08:35.000Z",
+ "lastUpdated": "2021-04-11T22:31:28.641Z",
+ "keywords": [
+ {
+ "keyword": "scène du crime",
+ "hasLocution": false,
+ "plural": "scènes de crime",
+ "type": 2
+ },
+ {
+ "keyword": "lieu du crime",
+ "hasLocution": false,
+ "plural": "lieux du crime",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "03215404-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 36031,
+ "created": "2019-11-01T16:24:14.000Z",
+ "lastUpdated": "2021-04-11T22:20:52.074Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "distributeur",
+ "hasLocution": true,
+ "plural": "distributeurs"
+ },
+ {
+ "keyword": "dérouleur",
+ "hasLocution": false,
+ "plural": "dérouleurs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility"
+ ],
+ "synsets": [
+ "04044101-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place"
+ ],
+ "_id": 36029,
+ "created": "2019-11-01T10:51:05.000Z",
+ "lastUpdated": "2021-07-16T07:47:38.827Z",
+ "keywords": [
+ {
+ "keyword": "anneau de patin à roulettes",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "anneaux de patin à roulettes"
+ },
+ {
+ "keyword": "piste de patin à roulettes",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pistes de patin à roulettes"
+ },
+ {
+ "keyword": "anneau de roller",
+ "hasLocution": false,
+ "plural": "anneaux de roller",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious person",
+ "judaism"
+ ],
+ "synsets": [
+ "10521914-n"
+ ],
+ "tags": [
+ "religion",
+ "person",
+ "judaism"
+ ],
+ "_id": 36037,
+ "created": "2019-11-01T16:29:11.000Z",
+ "lastUpdated": "2021-04-11T22:17:47.159Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "rabbin",
+ "hasLocution": true,
+ "plural": "rabbins"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil"
+ ],
+ "synsets": [
+ "02793692-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home"
+ ],
+ "_id": 36039,
+ "created": "2019-11-01T16:29:35.000Z",
+ "lastUpdated": "2021-04-11T22:17:10.627Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "barbecue",
+ "hasLocution": true,
+ "plural": "barbecues"
+ },
+ {
+ "keyword": "gril",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "grils"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "religious act",
+ "judaism"
+ ],
+ "synsets": [
+ "00761989-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "religion",
+ "event",
+ "judaism"
+ ],
+ "_id": 36033,
+ "created": "2019-11-01T16:25:10.000Z",
+ "lastUpdated": "2021-04-11T22:18:19.204Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "prier",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "senses"
+ ],
+ "synsets": [
+ "00883327-n"
+ ],
+ "tags": [
+ "human body",
+ "physiology",
+ "human physiology",
+ "senses"
+ ],
+ "_id": 36041,
+ "created": "2019-11-01T16:30:49.000Z",
+ "lastUpdated": "2021-06-07T06:47:59.753Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": true,
+ "keyword": "vue",
+ "plural": "vues"
+ },
+ {
+ "keyword": "vision",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "visions"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01926330-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 36047,
+ "created": "2019-11-01T19:38:02.000Z",
+ "lastUpdated": "2021-04-11T22:12:43.182Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "bruyant",
+ "hasLocution": true,
+ "plural": "bruyants"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious place",
+ "christianity",
+ "signaling system"
+ ],
+ "synsets": [],
+ "tags": [
+ "religion",
+ "place",
+ "christianity",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 36043,
+ "created": "2019-11-01T16:31:51.000Z",
+ "lastUpdated": "2021-03-26T03:09:56.193Z",
+ "keywords": [
+ {
+ "keyword": "évêché",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "évêchés"
+ },
+ {
+ "keyword": "palais épiscopal",
+ "hasLocution": false,
+ "plural": "palais épiscopaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "decorative item"
+ ],
+ "synsets": [
+ "01483990-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "decorative item"
+ ],
+ "_id": 36035,
+ "created": "2019-11-01T16:27:14.000Z",
+ "lastUpdated": "2021-07-15T20:25:54.354Z",
+ "keywords": [
+ {
+ "keyword": "accrocher",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "suspendre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational space",
+ "library science"
+ ],
+ "synsets": [
+ "03666235-n",
+ "01544805-s"
+ ],
+ "tags": [
+ "education",
+ "educational space",
+ "library science"
+ ],
+ "_id": 36049,
+ "created": "2019-11-01T19:38:49.000Z",
+ "lastUpdated": "2021-07-16T07:45:02.909Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bibliothèque adaptée",
+ "hasLocution": true,
+ "plural": "bibliothèques adaptées"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00899241-v",
+ "01020074-v",
+ "00786670-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 36051,
+ "created": "2019-11-01T19:39:22.000Z",
+ "lastUpdated": "2021-07-15T20:25:32.886Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "demander",
+ "hasLocution": true
+ },
+ {
+ "keyword": "interroger",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "poser une question",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics",
+ "chemistry"
+ ],
+ "synsets": [
+ "13505847-n"
+ ],
+ "tags": [
+ "physics",
+ "chemistry"
+ ],
+ "_id": 36053,
+ "created": "2019-11-01T19:40:16.000Z",
+ "lastUpdated": "2021-04-11T22:12:03.379Z",
+ "keywords": [
+ {
+ "keyword": "congélation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "congélations"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "animal behaviour"
+ ],
+ "synsets": [
+ "01122487-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "animal behavior"
+ ],
+ "_id": 36045,
+ "created": "2019-11-01T16:34:05.000Z",
+ "lastUpdated": "2021-04-11T22:14:02.505Z",
+ "keywords": [
+ {
+ "keyword": "attaquer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "agresser",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recycling"
+ ],
+ "synsets": [
+ "14881648-n"
+ ],
+ "tags": [
+ "environmental science",
+ "recycling"
+ ],
+ "_id": 36061,
+ "created": "2019-11-01T19:43:14.000Z",
+ "lastUpdated": "2021-04-11T22:06:15.077Z",
+ "keywords": [
+ {
+ "keyword": "ferraille",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ferrailles"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational task"
+ ],
+ "synsets": [
+ "05763880-n"
+ ],
+ "tags": [
+ "education",
+ "educational task"
+ ],
+ "_id": 36055,
+ "created": "2019-11-01T19:40:56.000Z",
+ "lastUpdated": "2021-04-11T22:10:56.933Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "études",
+ "hasLocution": true,
+ "plural": "études"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport modality"
+ ],
+ "synsets": [
+ "04569548-n",
+ "01944107-v"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport modality"
+ ],
+ "_id": 36063,
+ "created": "2019-11-01T19:43:35.000Z",
+ "lastUpdated": "2021-04-11T22:04:27.640Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ski nautique",
+ "hasLocution": true,
+ "plural": "skis nautiques"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "water transport"
+ ],
+ "synsets": [
+ "03416249-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "water transport"
+ ],
+ "_id": 36057,
+ "created": "2019-11-01T19:41:51.000Z",
+ "lastUpdated": "2021-04-11T22:09:52.808Z",
+ "keywords": [
+ {
+ "keyword": "galion",
+ "hasLocution": false,
+ "plural": "galions",
+ "type": 2
+ },
+ {
+ "keyword": "navire à voiles",
+ "hasLocution": false,
+ "plural": "navires à voiles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "industrial building",
+ "worksite",
+ "land transport",
+ "signaling system"
+ ],
+ "synsets": [
+ "03421550-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "industry",
+ "work",
+ "workplace",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 36065,
+ "created": "2019-11-01T19:44:45.000Z",
+ "lastUpdated": "2021-07-16T07:44:35.543Z",
+ "keywords": [
+ {
+ "keyword": "atelier de motos",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ateliers de motos"
+ },
+ {
+ "keyword": "garage de motos",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "garages de motos"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "war"
+ ],
+ "synsets": [
+ "04308278-n"
+ ],
+ "tags": [
+ "event",
+ "war"
+ ],
+ "_id": 36067,
+ "created": "2019-11-01T19:45:34.000Z",
+ "lastUpdated": "2021-04-11T22:03:58.823Z",
+ "keywords": [
+ {
+ "keyword": "étendard",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "étendards"
+ },
+ {
+ "keyword": "bannière",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bannières"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication",
+ "object"
+ ],
+ "synsets": [
+ "01978076-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary",
+ "object"
+ ],
+ "_id": 36073,
+ "created": "2019-11-01T19:47:10.000Z",
+ "lastUpdated": "2024-12-10T18:23:34.932Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Mouvoir quelque chose de bas en haut, le faire monter, le placer à un niveau supérieur",
+ "keyword": "lever",
+ "hasLocution": true
+ },
+ {
+ "keyword": "soulever",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "performing artist",
+ "professional artist",
+ "theater",
+ "core vocabulary-work",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "09784701-n",
+ "09831743-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "scenic art",
+ "visual art",
+ "theater",
+ "show",
+ "core vocabulary"
+ ],
+ "_id": 36075,
+ "created": "2019-11-01T19:47:27.000Z",
+ "lastUpdated": "2021-04-11T21:59:28.073Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "acteur",
+ "hasLocution": true,
+ "plural": "acteurs"
+ },
+ {
+ "keyword": "comédien",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "comédiens"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics",
+ "chemistry"
+ ],
+ "synsets": [
+ "13472521-n"
+ ],
+ "tags": [
+ "physics",
+ "chemistry"
+ ],
+ "_id": 36059,
+ "created": "2019-11-01T19:42:48.000Z",
+ "lastUpdated": "2021-04-11T22:07:27.861Z",
+ "keywords": [
+ {
+ "keyword": "condensation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "condensations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "playground"
+ ],
+ "synsets": [
+ "03676175-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "outdoor activity",
+ "mountain",
+ "playground"
+ ],
+ "_id": 36077,
+ "created": "2019-11-01T19:47:45.000Z",
+ "lastUpdated": "2021-07-15T20:23:50.902Z",
+ "keywords": [
+ {
+ "keyword": "tyrolienne",
+ "hasLocution": false,
+ "plural": "tyroliennes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational building",
+ "educational_building",
+ "special education",
+ "signaling system"
+ ],
+ "synsets": [
+ "15170546-n",
+ "05836008-n",
+ "00656128-n"
+ ],
+ "tags": [
+ "education",
+ "building",
+ "place",
+ "special education",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 36079,
+ "created": "2019-11-01T19:50:27.000Z",
+ "lastUpdated": "2021-08-18T15:42:00.870Z",
+ "keywords": [
+ {
+ "keyword": "CAMSP",
+ "hasLocution": false,
+ "plural": "CAMSP",
+ "type": 2
+ },
+ {
+ "keyword": "Centre d'Action Médico-Sociale Précoce",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "Centres d'Action Médico-Sociale Précoce"
+ },
+ {
+ "keyword": "jardin d'enfants adapté",
+ "hasLocution": false,
+ "plural": "jardins d'enfants adaptés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indefinite adjective",
+ "indefinite pronoun",
+ "basic concepts"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "indefinite adjective",
+ "pronoun",
+ "indefinite pronoun",
+ "object",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 36081,
+ "created": "2019-11-01T19:52:26.000Z",
+ "lastUpdated": "2024-10-13T05:09:12.078Z",
+ "keywords": [
+ {
+ "hasLocution": true,
+ "keyword": "tous",
+ "type": 1
+ },
+ {
+ "keyword": "chacun",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "tout le monde",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "leader"
+ ],
+ "synsets": [
+ "08380739-n"
+ ],
+ "tags": [
+ "person",
+ "leader"
+ ],
+ "_id": 36069,
+ "created": "2019-11-01T19:46:16.000Z",
+ "lastUpdated": "2021-04-11T22:00:54.891Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "monarchie",
+ "hasLocution": true,
+ "plural": "monarchies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture",
+ "telecommunication",
+ "mass media"
+ ],
+ "synsets": [
+ "03995432-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture",
+ "work",
+ "tertiary sector",
+ "telecommunication",
+ "communication",
+ "mass media"
+ ],
+ "_id": 36083,
+ "created": "2019-11-01T19:52:49.000Z",
+ "lastUpdated": "2021-06-07T06:46:13.570Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "boîte à lettres",
+ "hasLocution": true,
+ "plural": "boîtes à lettres"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "war"
+ ],
+ "synsets": [
+ "09957730-n"
+ ],
+ "tags": [
+ "event",
+ "war"
+ ],
+ "_id": 36085,
+ "created": "2019-11-01T19:53:50.000Z",
+ "lastUpdated": "2021-04-11T22:02:57.195Z",
+ "keywords": [
+ {
+ "keyword": "porte-étendard",
+ "hasLocution": false,
+ "plural": "porte-étendards",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "workplace",
+ "worksite",
+ "building room"
+ ],
+ "synsets": [
+ "03847186-n"
+ ],
+ "tags": [
+ "place",
+ "workplace",
+ "work",
+ "building",
+ "room"
+ ],
+ "_id": 36089,
+ "created": "2019-11-01T19:55:51.000Z",
+ "lastUpdated": "2021-04-11T21:53:52.640Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bureau",
+ "hasLocution": true,
+ "plural": "bureaux"
+ },
+ {
+ "keyword": "bureau d'affaires",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bureaux d'affaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "christianity",
+ "judaism"
+ ],
+ "synsets": [
+ "02740472-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "christianity",
+ "judaism"
+ ],
+ "_id": 36087,
+ "created": "2019-11-01T19:55:22.000Z",
+ "lastUpdated": "2021-07-16T08:40:54.530Z",
+ "keywords": [
+ {
+ "keyword": "Arche de l'Alliance",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "disease"
+ ],
+ "synsets": [
+ "14556418-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "disease"
+ ],
+ "_id": 36071,
+ "created": "2019-11-01T19:46:49.000Z",
+ "lastUpdated": "2021-04-11T22:00:03.405Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "allergie",
+ "hasLocution": true,
+ "plural": "allergies"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07883140-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 36097,
+ "created": "2019-11-01T19:59:45.000Z",
+ "lastUpdated": "2021-04-11T21:49:09.186Z",
+ "keywords": [
+ {
+ "keyword": "falafel",
+ "hasLocution": false,
+ "plural": "falafels",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 36099,
+ "created": "2019-11-01T20:05:52.000Z",
+ "lastUpdated": "2021-04-11T21:47:52.234Z",
+ "keywords": [
+ {
+ "keyword": "ptitim",
+ "hasLocution": false,
+ "plural": "ptitims",
+ "type": 2
+ },
+ {
+ "keyword": "couscous israëlien",
+ "hasLocution": false,
+ "plural": "couscous israëliens",
+ "type": 2
+ },
+ {
+ "keyword": "couscous perlé",
+ "hasLocution": false,
+ "plural": "couscous perlés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "polite set expression"
+ ],
+ "synsets": [
+ "07243631-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 36093,
+ "created": "2019-11-01T19:57:25.000Z",
+ "lastUpdated": "2021-04-11T21:50:58.610Z",
+ "keywords": [
+ {
+ "type": 5,
+ "keyword": "merci",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "playground",
+ "street furniture",
+ "recreational facility"
+ ],
+ "synsets": [
+ "04378861-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground",
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 36101,
+ "created": "2019-11-01T20:07:03.000Z",
+ "lastUpdated": "2021-03-27T21:47:54.291Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "balançoire filet",
+ "hasLocution": false,
+ "plural": "balançoires filets"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "00460037-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 36103,
+ "created": "2019-11-01T20:09:19.000Z",
+ "lastUpdated": "2021-04-11T21:44:15.544Z",
+ "keywords": [
+ {
+ "keyword": "casque de réalité virtuelle",
+ "hasLocution": false,
+ "plural": "casques de réalité virtuelle",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "synsets": [
+ "07479040-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "event",
+ "sport event",
+ "olympic games",
+ "sport modality",
+ "athletics"
+ ],
+ "_id": 36105,
+ "created": "2019-11-01T20:10:41.000Z",
+ "lastUpdated": "2021-04-11T21:42:28.030Z",
+ "keywords": [
+ {
+ "keyword": "course de relais",
+ "hasLocution": false,
+ "plural": "courses de relais",
+ "type": 2
+ },
+ {
+ "keyword": "relais",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "relais"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basic concepts"
+ ],
+ "synsets": [
+ "02014079-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mathematics",
+ "basic concepts"
+ ],
+ "_id": 36107,
+ "created": "2019-11-01T20:14:22.000Z",
+ "lastUpdated": "2021-06-07T06:45:43.316Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éloigner",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "s'éloigner",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01926330-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 36091,
+ "created": "2019-11-01T19:57:07.000Z",
+ "lastUpdated": "2021-04-11T21:52:07.891Z",
+ "keywords": [
+ {
+ "keyword": "bruyant",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "bruyants"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense",
+ "crime"
+ ],
+ "synsets": [
+ "09997972-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security",
+ "law",
+ "crime"
+ ],
+ "_id": 36113,
+ "created": "2019-11-01T20:17:53.000Z",
+ "lastUpdated": "2021-04-11T21:36:51.764Z",
+ "keywords": [
+ {
+ "keyword": "criminologue",
+ "hasLocution": false,
+ "plural": "criminologues",
+ "type": 2
+ },
+ {
+ "keyword": "expert en criminologie",
+ "hasLocution": false,
+ "plural": "experts en criminologie",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "musical instrument",
+ "string instrument",
+ "musical art"
+ ],
+ "synsets": [
+ "02807289-n"
+ ],
+ "tags": [
+ "music",
+ "musical instrument",
+ "string instrument",
+ "show"
+ ],
+ "_id": 36115,
+ "created": "2019-11-01T20:22:57.000Z",
+ "lastUpdated": "2024-12-09T11:33:09.393Z",
+ "keywords": [
+ {
+ "keyword": "guitare basse",
+ "hasLocution": false,
+ "plural": "guitares basses",
+ "type": 2
+ },
+ {
+ "keyword": "guitare électrique",
+ "hasLocution": true,
+ "plural": "guitares électriques",
+ "type": 2
+ },
+ {
+ "keyword": "guitare basse électrique",
+ "hasLocution": false,
+ "plural": "guitares basses électriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "event",
+ "feeding"
+ ],
+ "synsets": [
+ "15299060-n",
+ "01064741-n"
+ ],
+ "tags": [
+ "event",
+ "feeding"
+ ],
+ "_id": 36109,
+ "created": "2019-11-01T20:15:35.000Z",
+ "lastUpdated": "2021-04-11T21:39:58.411Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "repos",
+ "hasLocution": true,
+ "plural": "repos"
+ },
+ {
+ "keyword": "pause",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pauses"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07699909-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 36117,
+ "created": "2019-11-01T20:28:18.000Z",
+ "lastUpdated": "2021-07-16T08:39:29.002Z",
+ "keywords": [
+ {
+ "keyword": "matzah",
+ "hasLocution": false,
+ "plural": "matzahs",
+ "type": 2
+ },
+ {
+ "keyword": "pain azyme",
+ "hasLocution": false,
+ "plural": "pains azymes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "religious act",
+ "judaism"
+ ],
+ "synsets": [
+ "07468534-n",
+ "02480381-v"
+ ],
+ "tags": [
+ "event",
+ "religious event",
+ "religion",
+ "judaism"
+ ],
+ "_id": 36119,
+ "created": "2019-11-01T20:35:37.000Z",
+ "lastUpdated": "2021-07-16T09:24:37.734Z",
+ "keywords": [
+ {
+ "keyword": "bar-mitsvah",
+ "hasLocution": false,
+ "plural": "bar-mitsvahs",
+ "type": 2
+ },
+ {
+ "keyword": "bar-mitsva",
+ "hasLocution": false,
+ "plural": "bar-mitsvas",
+ "type": 2
+ },
+ {
+ "keyword": "barmitsva",
+ "hasLocution": false,
+ "plural": "barmitsvas",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07654678-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 36095,
+ "created": "2019-11-01T19:57:45.000Z",
+ "lastUpdated": "2021-04-11T21:50:31.393Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "donut",
+ "hasLocution": true,
+ "plural": "donuts"
+ },
+ {
+ "keyword": "beignet",
+ "hasLocution": true,
+ "plural": "beignets",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "religious act",
+ "judaism"
+ ],
+ "synsets": [
+ "01033226-n"
+ ],
+ "tags": [
+ "event",
+ "religious event",
+ "religion",
+ "judaism"
+ ],
+ "_id": 36123,
+ "created": "2019-11-01T20:39:01.000Z",
+ "lastUpdated": "2021-05-12T22:59:12.322Z",
+ "keywords": [
+ {
+ "keyword": "circoncision",
+ "hasLocution": false,
+ "plural": "circoncision",
+ "type": 2
+ },
+ {
+ "keyword": "Brit milah",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "judaism"
+ ],
+ "synsets": [
+ "15223868-n"
+ ],
+ "tags": [
+ "event",
+ "religious event",
+ "religion",
+ "judaism"
+ ],
+ "_id": 36125,
+ "created": "2019-11-01T20:43:13.000Z",
+ "lastUpdated": "2021-05-12T22:57:27.997Z",
+ "keywords": [
+ {
+ "keyword": "Hanouka",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Hanoucca",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Fête des Lumières",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "traditional dish"
+ ],
+ "synsets": [
+ "07697195-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 36127,
+ "created": "2019-11-01T20:45:37.000Z",
+ "lastUpdated": "2021-05-12T20:55:06.737Z",
+ "keywords": [
+ {
+ "keyword": "pain de shabbat",
+ "hasLocution": false,
+ "plural": "pains de shabbat",
+ "type": 2
+ },
+ {
+ "keyword": "pain traditionnel juif",
+ "hasLocution": false,
+ "plural": "pains traditionnels juifs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "cycling"
+ ],
+ "synsets": [
+ "04532128-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "cycling"
+ ],
+ "_id": 36111,
+ "created": "2019-11-01T20:16:34.000Z",
+ "lastUpdated": "2021-04-11T21:38:13.313Z",
+ "keywords": [
+ {
+ "keyword": "vélodrome",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vélodromes"
+ },
+ {
+ "keyword": "piste cyclable",
+ "hasLocution": false,
+ "plural": "pistes cyclables",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "judaism"
+ ],
+ "synsets": [
+ "15220763-n"
+ ],
+ "tags": [
+ "event",
+ "religious event",
+ "religion",
+ "judaism"
+ ],
+ "_id": 36131,
+ "created": "2019-11-01T21:00:08.000Z",
+ "lastUpdated": "2021-05-12T20:49:43.804Z",
+ "keywords": [
+ {
+ "keyword": "Pessah",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Pâque juive",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Pâque",
+ "hasLocution": true,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "judaism"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "religious event",
+ "religion",
+ "judaism"
+ ],
+ "_id": 36133,
+ "created": "2019-11-01T21:05:25.000Z",
+ "lastUpdated": "2021-04-06T19:43:18.567Z",
+ "keywords": [
+ {
+ "keyword": "Sabbat",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Shabbat",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "religious act",
+ "judaism"
+ ],
+ "synsets": [
+ "07468806-n",
+ "02480532-v"
+ ],
+ "tags": [
+ "event",
+ "religious event",
+ "religion",
+ "judaism"
+ ],
+ "_id": 36121,
+ "created": "2019-11-01T20:35:52.000Z",
+ "lastUpdated": "2021-07-16T09:24:00.753Z",
+ "keywords": [
+ {
+ "keyword": "bat mitzvah",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bat mitzvahs"
+ },
+ {
+ "keyword": "batmitsva",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "batmitsvas"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "judaism"
+ ],
+ "synsets": [
+ "04208107-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "judaism"
+ ],
+ "_id": 36129,
+ "created": "2019-11-01T20:47:54.000Z",
+ "lastUpdated": "2021-05-12T20:51:40.157Z",
+ "keywords": [
+ {
+ "keyword": "chofar",
+ "hasLocution": false,
+ "plural": "chofars",
+ "type": 2
+ },
+ {
+ "keyword": "chophar",
+ "hasLocution": false,
+ "plural": "chophars",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00915018-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 36137,
+ "created": "2019-11-01T21:10:42.000Z",
+ "lastUpdated": "2021-06-07T06:45:01.463Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "crier",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "appeler",
+ "hasLocution": true
+ },
+ {
+ "type": 3,
+ "keyword": "vociférer",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "special education"
+ ],
+ "synsets": [
+ "14574579-n"
+ ],
+ "tags": [
+ "education",
+ "special education"
+ ],
+ "_id": 36143,
+ "created": "2019-11-01T21:13:53.000Z",
+ "lastUpdated": "2021-04-06T19:32:46.377Z",
+ "keywords": [
+ {
+ "keyword": "surdité",
+ "hasLocution": false,
+ "plural": "surdités",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "playground"
+ ],
+ "synsets": [
+ "03969939-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground"
+ ],
+ "_id": 36145,
+ "created": "2019-11-01T21:16:19.000Z",
+ "lastUpdated": "2021-07-10T21:37:27.382Z",
+ "keywords": [
+ {
+ "keyword": "parc de jeux",
+ "hasLocution": false,
+ "plural": "parcs de jeux",
+ "type": 2
+ },
+ {
+ "keyword": "aire de jeux",
+ "hasLocution": false,
+ "plural": "aires de jeux",
+ "type": 2
+ },
+ {
+ "keyword": "cour de récréation",
+ "hasLocution": false,
+ "plural": "cours de récréation",
+ "type": 2
+ },
+ {
+ "keyword": "terrain de jeux",
+ "hasLocution": false,
+ "plural": "terrains de jeux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete"
+ ],
+ "synsets": [
+ "10623899-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person"
+ ],
+ "_id": 36135,
+ "created": "2019-11-01T21:09:03.000Z",
+ "lastUpdated": "2021-06-07T06:45:16.003Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "patineur",
+ "hasLocution": true,
+ "plural": "patineurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "painting"
+ ],
+ "synsets": [
+ "02957504-n"
+ ],
+ "tags": [
+ "visual art",
+ "painting"
+ ],
+ "_id": 36139,
+ "created": "2019-11-01T21:11:55.000Z",
+ "lastUpdated": "2021-04-06T19:35:36.249Z",
+ "keywords": [
+ {
+ "keyword": "toile",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "toiles"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "religious character",
+ "christianity"
+ ],
+ "synsets": [
+ "09562841-n",
+ "09562026-n"
+ ],
+ "tags": [
+ "religion",
+ "character",
+ "christianity"
+ ],
+ "_id": 36141,
+ "created": "2019-11-01T21:13:11.000Z",
+ "lastUpdated": "2021-04-06T19:34:31.994Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ange",
+ "hasLocution": true,
+ "plural": "anges"
+ },
+ {
+ "keyword": "chérubin",
+ "hasLocution": false,
+ "plural": "chérubins",
+ "type": 2
+ },
+ {
+ "keyword": "angelot",
+ "hasLocution": false,
+ "plural": "angelots"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "craftsmanship",
+ "categorization"
+ ],
+ "synsets": [
+ "00937062-n",
+ "03999061-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "work",
+ "secondary sector",
+ "craftsmanship",
+ "categorization"
+ ],
+ "_id": 36147,
+ "created": "2019-11-01T21:16:45.000Z",
+ "lastUpdated": "2021-04-06T19:32:19.228Z",
+ "keywords": [
+ {
+ "keyword": "céramiques",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "céramiques"
+ },
+ {
+ "keyword": "poteries",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "poteries"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb"
+ ],
+ "synsets": [
+ "02768426-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 36155,
+ "created": "2019-11-01T21:18:26.000Z",
+ "lastUpdated": "2021-04-06T19:28:52.046Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "brûler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "incendier",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics",
+ "chemistry"
+ ],
+ "synsets": [
+ "13593639-n"
+ ],
+ "tags": [
+ "physics",
+ "chemistry"
+ ],
+ "_id": 36157,
+ "created": "2019-11-01T21:19:53.000Z",
+ "lastUpdated": "2021-07-15T20:22:35.936Z",
+ "keywords": [
+ {
+ "keyword": "évaporation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "évaporations"
+ },
+ {
+ "keyword": "vaporisation",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vaporisations"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07771387-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 36153,
+ "created": "2019-11-01T21:18:12.000Z",
+ "lastUpdated": "2021-04-06T19:29:34.776Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "melon jaune",
+ "hasLocution": false,
+ "plural": "melons jaunes"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00899241-v",
+ "00786670-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 36159,
+ "created": "2019-11-01T21:20:28.000Z",
+ "lastUpdated": "2021-07-15T20:22:27.258Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "demander",
+ "hasLocution": true
+ },
+ {
+ "keyword": "questionner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "poser une question",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00835938-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 36161,
+ "created": "2019-11-01T21:21:46.000Z",
+ "lastUpdated": "2021-04-06T19:26:39.759Z",
+ "keywords": [
+ {
+ "keyword": "mentir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "human value"
+ ],
+ "synsets": [
+ "00263658-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "human value"
+ ],
+ "_id": 36163,
+ "created": "2019-11-01T21:25:27.000Z",
+ "lastUpdated": "2021-07-15T20:22:06.640Z",
+ "keywords": [
+ {
+ "keyword": "brave",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "braves"
+ },
+ {
+ "keyword": "courageux",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "courageux"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "body sensation"
+ ],
+ "synsets": [
+ "01926330-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 36165,
+ "created": "2019-11-01T21:25:48.000Z",
+ "lastUpdated": "2021-06-07T06:42:28.749Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "bruyant",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [
+ "07953701-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 36167,
+ "created": "2019-11-01T21:28:05.000Z",
+ "lastUpdated": "2021-04-06T19:25:11.640Z",
+ "keywords": [
+ {
+ "keyword": "couscous",
+ "hasLocution": false,
+ "plural": "couscous",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom"
+ ],
+ "synsets": [
+ "00004819-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 36149,
+ "created": "2019-11-01T21:17:06.000Z",
+ "lastUpdated": "2021-04-06T19:30:16.103Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "éternuer",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "movie character",
+ "tale character",
+ "verb"
+ ],
+ "synsets": [
+ "10125231-n"
+ ],
+ "tags": [
+ "character",
+ "movie character",
+ "cinema",
+ "book character",
+ "tale character",
+ "literature",
+ "communication",
+ "language",
+ "verb"
+ ],
+ "_id": 36151,
+ "created": "2019-11-01T21:17:54.000Z",
+ "lastUpdated": "2024-12-05T09:03:44.231Z",
+ "keywords": [
+ {
+ "hasLocution": true,
+ "type": 2,
+ "plural": "voyants",
+ "keyword": "voyant"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "diseurs de bonne aventure",
+ "keyword": "diseur de bonne aventure"
+ },
+ {
+ "keyword": "deviner",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "prédire",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 36175,
+ "created": "2019-11-01T21:38:13.000Z",
+ "lastUpdated": "2021-07-18T06:10:36.969Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "grosse tête",
+ "plural": "grosses têtes"
+ },
+ {
+ "keyword": "Grosse tête El Azutero",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "grosse tête de carnaval",
+ "hasLocution": false,
+ "plural": "grosses têtes de carnaval",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "pet"
+ ],
+ "synsets": [
+ "10742224-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "animal",
+ "pet"
+ ],
+ "_id": 36177,
+ "created": "2019-11-03T10:31:36.000Z",
+ "lastUpdated": "2021-07-15T20:21:52.347Z",
+ "keywords": [
+ {
+ "keyword": "entraineur de chien",
+ "hasLocution": false,
+ "plural": "entraineurs de chiens",
+ "type": 2
+ },
+ {
+ "keyword": "moniteur canin",
+ "hasLocution": false,
+ "plural": "moniteurs canins",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fiestas del pilar",
+ "character"
+ ],
+ "synsets": [],
+ "tags": [
+ "event",
+ "popular event",
+ "fiestas del pilar",
+ "character"
+ ],
+ "_id": 36173,
+ "created": "2019-11-01T21:37:50.000Z",
+ "lastUpdated": "2021-07-18T06:10:41.908Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cabochard",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "dog-assisted therapy"
+ ],
+ "synsets": [
+ "10726882-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "animal",
+ "animal-assisted therapy",
+ "dog-assisted therapy"
+ ],
+ "_id": 36179,
+ "created": "2019-11-03T10:37:01.000Z",
+ "lastUpdated": "2021-07-11T00:22:11.912Z",
+ "keywords": [
+ {
+ "keyword": "éducateur chiens guides",
+ "hasLocution": false,
+ "plural": "éducateurs chiens guides",
+ "type": 2
+ },
+ {
+ "keyword": "zoothérapeute",
+ "hasLocution": false,
+ "plural": "zoothérapeutes",
+ "type": 2
+ },
+ {
+ "keyword": "thérapeute en médiation animale",
+ "hasLocution": false,
+ "plural": "thérapeutes en médiation animale",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "dog-assisted therapy"
+ ],
+ "synsets": [
+ "00662334-n"
+ ],
+ "tags": [
+ "animal",
+ "animal-assisted therapy",
+ "dog-assisted therapy"
+ ],
+ "_id": 36181,
+ "created": "2019-11-03T10:39:37.000Z",
+ "lastUpdated": "2021-07-29T00:21:14.815Z",
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "thérapie assistée par l'animal",
+ "plural": "thérapie assistée par l'animal"
+ },
+ {
+ "keyword": "zoothérapie",
+ "hasLocution": false,
+ "plural": "zoothérapies",
+ "type": 2
+ },
+ {
+ "keyword": "thérapie canine",
+ "hasLocution": false,
+ "plural": "thérapies canines",
+ "type": 2
+ },
+ {
+ "keyword": "médiation animale",
+ "hasLocution": false,
+ "plural": "médiations animales",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "construction"
+ ],
+ "synsets": [
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 36185,
+ "created": "2019-11-03T10:45:45.000Z",
+ "lastUpdated": "2021-07-15T20:20:58.547Z",
+ "keywords": [
+ {
+ "keyword": "magasin de matériel du bâtiment",
+ "hasLocution": false,
+ "plural": "magasins de matériel du bâtiment",
+ "type": 2
+ },
+ {
+ "keyword": "magasin de matériel de construction",
+ "hasLocution": false,
+ "plural": "magasins de matériel de construction",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 36169,
+ "created": "2019-11-01T21:32:03.000Z",
+ "lastUpdated": "2021-04-19T20:54:48.846Z",
+ "keywords": [
+ {
+ "keyword": "galette de riz soufflé",
+ "hasLocution": false,
+ "plural": "galettes de riz soufflé",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry"
+ ],
+ "synsets": [
+ "07885751-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector"
+ ],
+ "_id": 36171,
+ "created": "2019-11-01T21:33:04.000Z",
+ "lastUpdated": "2021-07-16T07:39:23.496Z",
+ "keywords": [
+ {
+ "keyword": "kebab",
+ "hasLocution": false,
+ "plural": "kebabs",
+ "type": 2
+ },
+ {
+ "keyword": "restaurant kebab",
+ "hasLocution": false,
+ "plural": "restaurants kebabs",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material",
+ "swimming pool",
+ "sport"
+ ],
+ "synsets": [
+ "09304683-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material",
+ "outdoor activity",
+ "swimming pool"
+ ],
+ "_id": 36187,
+ "created": "2019-11-03T10:51:58.000Z",
+ "lastUpdated": "2024-12-09T11:45:43.021Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bouée",
+ "hasLocution": true,
+ "plural": "bouées"
+ },
+ {
+ "keyword": "flotteur",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "flotteurs"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious object",
+ "judaism"
+ ],
+ "synsets": [
+ "06464033-n"
+ ],
+ "tags": [
+ "religion",
+ "object",
+ "judaism"
+ ],
+ "_id": 36183,
+ "created": "2019-11-03T10:44:04.000Z",
+ "lastUpdated": "2021-04-06T19:23:22.084Z",
+ "keywords": [
+ {
+ "keyword": "Bible hébraïque",
+ "hasLocution": false,
+ "plural": "Bibles hébraïques",
+ "type": 2
+ },
+ {
+ "keyword": "Torah",
+ "hasLocution": true,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "judaism",
+ "death"
+ ],
+ "synsets": [
+ "07962243-n",
+ "10014481-n"
+ ],
+ "tags": [
+ "religion",
+ "judaism",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 36191,
+ "created": "2019-11-03T11:01:11.000Z",
+ "lastUpdated": "2021-06-07T06:41:39.240Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "mort",
+ "hasLocution": true
+ },
+ {
+ "type": 2,
+ "keyword": "défunt",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "adapted sport",
+ "sport material"
+ ],
+ "synsets": [
+ "00464058-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "adapted sport",
+ "sport material"
+ ],
+ "_id": 36189,
+ "created": "2019-11-03T10:56:31.000Z",
+ "lastUpdated": "2021-04-06T19:19:51.877Z",
+ "keywords": [
+ {
+ "keyword": "rampe de boccia",
+ "hasLocution": false,
+ "plural": "rampes de boccia",
+ "type": 2
+ },
+ {
+ "keyword": "gouttière de boccia",
+ "hasLocution": false,
+ "plural": "gouttières de boccia",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 36193,
+ "created": "2019-11-03T11:05:29.000Z",
+ "lastUpdated": "2021-07-11T00:05:59.764Z",
+ "keywords": [
+ {
+ "keyword": "joëlette",
+ "hasLocution": false,
+ "plural": "joëlettes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation"
+ ],
+ "synsets": [
+ "08064499-n"
+ ],
+ "tags": [
+ "international organization"
+ ],
+ "_id": 36197,
+ "created": "2019-11-08T09:21:17.000Z",
+ "lastUpdated": "2021-04-06T19:13:17.882Z",
+ "keywords": [
+ {
+ "keyword": "Croissant Rouge",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "02703861-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 36203,
+ "created": "2019-11-08T09:22:35.000Z",
+ "lastUpdated": "2021-04-06T19:11:56.023Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ambulance",
+ "hasLocution": true,
+ "plural": "ambulances"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre",
+ "core vocabulary-knowledge",
+ "core vocabulary-place"
+ ],
+ "synsets": [
+ "08071169-n",
+ "03545775-n",
+ "03047259-n",
+ "08070828-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "core vocabulary"
+ ],
+ "_id": 36205,
+ "created": "2019-11-08T09:23:35.000Z",
+ "lastUpdated": "2021-04-06T19:11:42.540Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hôpital",
+ "hasLocution": true,
+ "plural": "hôpital"
+ },
+ {
+ "keyword": "clinique",
+ "hasLocution": true,
+ "plural": "cliniques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre"
+ ],
+ "synsets": [
+ "08071169-n",
+ "03545775-n",
+ "03047259-n",
+ "08070828-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building"
+ ],
+ "_id": 36207,
+ "created": "2019-11-08T09:23:57.000Z",
+ "lastUpdated": "2021-04-06T19:10:55.093Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hôpital",
+ "hasLocution": true,
+ "plural": "hôpitaux"
+ },
+ {
+ "keyword": "clinique",
+ "hasLocution": true,
+ "plural": "cliniques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "02703861-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 36199,
+ "created": "2019-11-08T09:21:50.000Z",
+ "lastUpdated": "2021-04-13T20:39:40.028Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ambulance",
+ "hasLocution": true,
+ "plural": "ambulances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre"
+ ],
+ "synsets": [
+ "08071169-n",
+ "03545775-n",
+ "03047259-n",
+ "08070828-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building"
+ ],
+ "_id": 36209,
+ "created": "2019-11-08T09:24:48.000Z",
+ "lastUpdated": "2021-04-06T19:10:27.946Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hôpital",
+ "hasLocution": true,
+ "plural": "hôpitaux"
+ },
+ {
+ "keyword": "clinique",
+ "hasLocution": true,
+ "plural": "cliniques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "international organziation"
+ ],
+ "synsets": [
+ "08064499-n"
+ ],
+ "tags": [
+ "international organization"
+ ],
+ "_id": 36195,
+ "created": "2019-11-08T09:13:44.000Z",
+ "lastUpdated": "2021-04-06T19:16:09.553Z",
+ "keywords": [
+ {
+ "keyword": "Étoile Rouge de David",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Maguen David Adom",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "02703861-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 36200,
+ "created": "2019-11-08T09:21:51.000Z",
+ "lastUpdated": "2021-04-06T19:12:28.054Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ambulance",
+ "hasLocution": true,
+ "plural": "ambulances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "historical character"
+ ],
+ "synsets": [
+ "01648667-s"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history"
+ ],
+ "_id": 36217,
+ "created": "2019-11-08T09:58:10.000Z",
+ "lastUpdated": "2021-04-13T20:38:10.301Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "homme âgé",
+ "hasLocution": false,
+ "plural": "hommes âgés"
+ },
+ {
+ "keyword": "vieil homme",
+ "hasLocution": false,
+ "plural": "vieux hommes",
+ "type": 2
+ },
+ {
+ "keyword": "âgé",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "âgés"
+ },
+ {
+ "keyword": "vieux",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "vieux"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "04357983-n",
+ "00755359-s"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 36219,
+ "created": "2019-11-08T10:00:09.000Z",
+ "lastUpdated": "2021-04-19T20:51:01.309Z",
+ "keywords": [
+ {
+ "keyword": "costume de cour",
+ "hasLocution": false,
+ "plural": "costumes de cour",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "land transport"
+ ],
+ "synsets": [
+ "02703861-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 36214,
+ "created": "2019-11-08T09:34:15.000Z",
+ "lastUpdated": "2021-04-06T19:07:21.185Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "ambulance",
+ "hasLocution": true,
+ "plural": "ambulances"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "06887235-n",
+ "06887441-n",
+ "01916152-v"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 36221,
+ "created": "2019-11-08T10:05:49.000Z",
+ "lastUpdated": "2021-07-11T00:05:39.360Z",
+ "keywords": [
+ {
+ "keyword": "feu vert",
+ "hasLocution": true,
+ "plural": "feux verts",
+ "type": 2
+ },
+ {
+ "keyword": "feu piéton vert",
+ "hasLocution": false,
+ "plural": "feux piétons verts",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "06887235-n",
+ "06887547-n",
+ "01916152-v"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 36223,
+ "created": "2019-11-08T10:09:29.000Z",
+ "lastUpdated": "2021-07-11T00:05:27.707Z",
+ "keywords": [
+ {
+ "keyword": "feu rouge",
+ "hasLocution": true,
+ "plural": "feux rouges",
+ "type": 2
+ },
+ {
+ "keyword": "feu piéton rouge",
+ "hasLocution": false,
+ "plural": "feux piétons rouges",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "international organziation",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "08064499-n"
+ ],
+ "tags": [
+ "international organization",
+ "work",
+ "professional",
+ "medicine"
+ ],
+ "_id": 36225,
+ "created": "2019-11-08T10:11:22.000Z",
+ "lastUpdated": "2024-06-02T09:24:46.617Z",
+ "keywords": [
+ {
+ "keyword": "Croissant Rouge",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "international organziation",
+ "sanitary professional"
+ ],
+ "synsets": [
+ "08064499-n"
+ ],
+ "tags": [
+ "international organization",
+ "work",
+ "professional",
+ "medicine"
+ ],
+ "_id": 36227,
+ "created": "2019-11-08T11:38:30.000Z",
+ "lastUpdated": "2024-06-02T09:25:46.870Z",
+ "keywords": [
+ {
+ "keyword": "Magen David Adom",
+ "hasLocution": false,
+ "type": 1
+ },
+ {
+ "keyword": "Étoile Rouge de David",
+ "hasLocution": false,
+ "type": 1
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical center",
+ "medical centre",
+ "core vocabulary-knowledge",
+ "core vocabulary-place"
+ ],
+ "synsets": [
+ "08071169-n",
+ "03545775-n",
+ "03047259-n",
+ "08070828-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "core vocabulary"
+ ],
+ "_id": 36210,
+ "created": "2019-11-08T09:24:48.000Z",
+ "lastUpdated": "2021-04-06T19:09:23.363Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "hôpital",
+ "hasLocution": true,
+ "plural": "hôpitaux"
+ },
+ {
+ "keyword": "clinique",
+ "hasLocution": true,
+ "plural": "cliniques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 36213,
+ "created": "2019-11-08T09:34:15.000Z",
+ "lastUpdated": "2021-04-13T20:39:26.532Z",
+ "keywords": [
+ {
+ "keyword": "souliers de cour",
+ "hasLocution": false,
+ "plural": "souliers de cour",
+ "type": 2
+ },
+ {
+ "keyword": "chaussures de cour",
+ "hasLocution": false,
+ "plural": "souliers de cour",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hygiene product"
+ ],
+ "synsets": [
+ "01496967-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 36235,
+ "created": "2019-11-08T12:45:19.000Z",
+ "lastUpdated": "2021-07-11T00:04:42.904Z",
+ "keywords": [
+ {
+ "keyword": "mettre du liquide vaisselle",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre du savon sur l'éponge",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "athlete",
+ "football"
+ ],
+ "synsets": [
+ "10121403-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "person",
+ "football"
+ ],
+ "_id": 36229,
+ "created": "2019-11-08T12:40:55.000Z",
+ "lastUpdated": "2021-04-13T20:32:50.152Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "footballeuse",
+ "hasLocution": false,
+ "plural": "footballeuses"
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "joueuse de foot",
+ "plural": "joueuses de foot"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "telecommunication",
+ "mass media"
+ ],
+ "synsets": [
+ "08162561-n",
+ "06275051-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "work",
+ "tertiary sector",
+ "telecommunication",
+ "communication",
+ "mass media"
+ ],
+ "_id": 36233,
+ "created": "2019-11-08T12:42:38.000Z",
+ "lastUpdated": "2021-04-13T20:30:15.394Z",
+ "keywords": [
+ {
+ "keyword": "bureau de poste",
+ "hasLocution": false,
+ "plural": "bureaux de poste",
+ "type": 2
+ },
+ {
+ "keyword": "poste",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "postes"
+ },
+ {
+ "keyword": "service postal",
+ "hasLocution": false,
+ "plural": "services postaux",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "04613372-n"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 36231,
+ "created": "2019-11-08T12:41:53.000Z",
+ "lastUpdated": "2021-06-07T06:40:03.063Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "couronne",
+ "hasLocution": true,
+ "plural": "couronnes"
+ },
+ {
+ "keyword": "couronne mortuaire",
+ "hasLocution": false,
+ "plural": "couronnes mortuaires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cleaning product"
+ ],
+ "synsets": [
+ "01216829-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 36239,
+ "created": "2019-11-08T12:48:23.000Z",
+ "lastUpdated": "2021-07-11T00:00:01.760Z",
+ "keywords": [
+ {
+ "keyword": "prendre l'éponge",
+ "hasLocution": false,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "trade",
+ "signaling system"
+ ],
+ "synsets": [
+ "08424576-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "work",
+ "tertiary sector",
+ "trade",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 36241,
+ "created": "2019-11-08T12:50:31.000Z",
+ "lastUpdated": "2021-07-11T00:04:14.291Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "foire commerciale",
+ "hasLocution": false,
+ "plural": "foires commerciales"
+ },
+ {
+ "keyword": "exposition",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "expositions"
+ },
+ {
+ "keyword": "salon commercial",
+ "hasLocution": false,
+ "plural": "salons commerciaux",
+ "type": 2
+ },
+ {
+ "keyword": "expo",
+ "hasLocution": false,
+ "plural": "expos",
+ "type": 2
+ },
+ {
+ "keyword": "foire",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "foires"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "industry",
+ "signaling system"
+ ],
+ "synsets": [
+ "08605540-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "work",
+ "secondary sector",
+ "industry",
+ "manufacturing industry",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 36243,
+ "created": "2019-11-08T12:55:10.000Z",
+ "lastUpdated": "2021-07-11T00:01:45.168Z",
+ "keywords": [
+ {
+ "keyword": "zone industrielle",
+ "hasLocution": true,
+ "plural": "zones industrielles",
+ "type": 2
+ },
+ {
+ "keyword": "parc industriel",
+ "hasLocution": false,
+ "plural": "parcs industriels",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "information technology",
+ "computing",
+ "signaling system"
+ ],
+ "synsets": [],
+ "tags": [
+ "place",
+ "facility",
+ "work",
+ "tertiary sector",
+ "computing",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 36245,
+ "created": "2019-11-08T13:38:08.000Z",
+ "lastUpdated": "2021-07-10T23:59:11.505Z",
+ "keywords": [
+ {
+ "keyword": "parc technologique",
+ "hasLocution": false,
+ "plural": "parcs technologiques",
+ "type": 2
+ },
+ {
+ "keyword": "technopôle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "technopôles"
+ },
+ {
+ "keyword": "pôle technologique",
+ "hasLocution": false,
+ "plural": "pôles technologiques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cultural building"
+ ],
+ "synsets": [
+ "03082510-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "culture"
+ ],
+ "_id": 36247,
+ "created": "2019-11-08T13:40:20.000Z",
+ "lastUpdated": "2021-07-10T23:57:12.957Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "plural": "salles municipales",
+ "keyword": "salle municipale"
+ },
+ {
+ "keyword": "salle polyvalente",
+ "plural": "salles polyvalentes",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "maison des associations",
+ "plural": "maisons des associations",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cleaning product"
+ ],
+ "synsets": [
+ "00215377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "cleaning product"
+ ],
+ "_id": 36237,
+ "created": "2019-11-08T12:46:36.000Z",
+ "lastUpdated": "2021-07-11T00:04:33.106Z",
+ "keywords": [
+ {
+ "keyword": "mouiller l'éponge",
+ "hasLocution": false,
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "02864487-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 36255,
+ "created": "2019-11-08T13:49:59.000Z",
+ "lastUpdated": "2021-04-21T22:53:37.815Z",
+ "keywords": [
+ {
+ "keyword": "boules de boccia",
+ "hasLocution": false,
+ "plural": "boules de boccia",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication system",
+ "verb"
+ ],
+ "synsets": [
+ "00626756-v"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication system",
+ "language",
+ "verb"
+ ],
+ "_id": 36257,
+ "created": "2019-11-08T13:50:13.000Z",
+ "lastUpdated": "2021-04-13T20:26:56.047Z",
+ "keywords": [
+ {
+ "type": 3,
+ "meaning": "tr. Reconnaître les signes graphiques d'une langue, former mentalement ou à voix haute les sons que ces signes ou leurs combinaisons représentent et leur associer un sens",
+ "keyword": "lire les pictogrammes",
+ "hasLocution": false
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "work machine",
+ "agriculture"
+ ],
+ "synsets": [
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "work machine",
+ "primary sector",
+ "agriculture"
+ ],
+ "_id": 36253,
+ "created": "2019-11-08T13:48:26.000Z",
+ "lastUpdated": "2021-07-15T20:20:19.792Z",
+ "keywords": [
+ {
+ "keyword": "magasin de machines agricoles",
+ "hasLocution": false,
+ "plural": "magasins de machines agricoles",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "ophthalmology"
+ ],
+ "synsets": [
+ "00785203-s"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "ophthalmology"
+ ],
+ "_id": 36259,
+ "created": "2019-11-08T13:51:34.000Z",
+ "lastUpdated": "2021-06-01T09:35:43.647Z",
+ "keywords": [
+ {
+ "keyword": "je ne vois pas bien",
+ "hasLocution": false,
+ "type": 5
+ },
+ {
+ "keyword": "flou",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "flous"
+ },
+ {
+ "keyword": "trouble",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "troubles"
+ },
+ {
+ "keyword": "voilé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "voilés"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "10713754-n",
+ "07123904-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 36263,
+ "created": "2019-11-08T13:58:33.000Z",
+ "lastUpdated": "2021-04-06T18:42:22.059Z",
+ "keywords": [
+ {
+ "keyword": "orthophoniste",
+ "hasLocution": true,
+ "plural": "orthophonistes",
+ "type": 2
+ },
+ {
+ "keyword": "logopède",
+ "hasLocution": false,
+ "plural": "logopèdes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "10713754-n",
+ "07123904-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 36261,
+ "created": "2019-11-08T13:58:16.000Z",
+ "lastUpdated": "2021-04-06T18:43:22.901Z",
+ "keywords": [
+ {
+ "keyword": "orthophoniste",
+ "hasLocution": true,
+ "plural": "orthophonistes",
+ "type": 2
+ },
+ {
+ "keyword": "logopède",
+ "hasLocution": false,
+ "plural": "logopèdes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "10713754-n",
+ "07123904-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 36267,
+ "created": "2019-11-09T10:31:01.000Z",
+ "lastUpdated": "2021-04-06T18:41:28.085Z",
+ "keywords": [
+ {
+ "keyword": "orthophoniste",
+ "hasLocution": true,
+ "plural": "orthophonistes",
+ "type": 2
+ },
+ {
+ "keyword": "logopède",
+ "hasLocution": false,
+ "plural": "logopèdes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "urban area"
+ ],
+ "synsets": [],
+ "tags": [
+ "place",
+ "urban area"
+ ],
+ "_id": 36249,
+ "created": "2019-11-08T13:42:46.000Z",
+ "lastUpdated": "2021-04-06T18:47:18.921Z",
+ "keywords": [
+ {
+ "keyword": "quartier historique",
+ "hasLocution": false,
+ "plural": "quartiers historiques",
+ "type": 2
+ },
+ {
+ "keyword": "vieille ville",
+ "hasLocution": false,
+ "plural": "vieilles villes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01348685-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 36265,
+ "created": "2019-11-09T10:30:43.000Z",
+ "lastUpdated": "2021-07-10T23:48:12.675Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "ouvrir le robinet",
+ "hasLocution": true
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07575758-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 36251,
+ "created": "2019-11-08T13:46:05.000Z",
+ "lastUpdated": "2021-07-10T23:52:38.713Z",
+ "keywords": [
+ {
+ "keyword": "restaurant fast-food",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "restaurants fast-food"
+ },
+ {
+ "keyword": "restauration rapide",
+ "hasLocution": true,
+ "plural": "restaurations rapides",
+ "type": 2
+ },
+ {
+ "keyword": "fast-food",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fast-foods"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "10713754-n",
+ "07123904-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 36271,
+ "created": "2019-11-09T10:31:40.000Z",
+ "lastUpdated": "2021-04-06T18:39:18.327Z",
+ "keywords": [
+ {
+ "keyword": "orthophoniste",
+ "hasLocution": true,
+ "plural": "orthophonistes",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "logopède",
+ "plural": "logopèdes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "05765728-n",
+ "10713754-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 36275,
+ "created": "2019-11-14T10:24:19.000Z",
+ "lastUpdated": "2021-07-18T06:10:17.831Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "enseignant spécialisé",
+ "plural": "enseignants spécialisés"
+ },
+ {
+ "keyword": "professeur d'enseignement adapté",
+ "hasLocution": false,
+ "plural": "professeurs d'enseignement adapté",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "10713754-n",
+ "05765728-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 36273,
+ "created": "2019-11-14T10:24:18.000Z",
+ "lastUpdated": "2021-07-18T06:10:27.443Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "enseignant spécialisé",
+ "plural": "enseignants spécialisés"
+ },
+ {
+ "keyword": "professeur d'enseignement adapté",
+ "hasLocution": false,
+ "plural": "professeurs d'enseignement adapté",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "10778819-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 36279,
+ "created": "2019-11-14T10:25:06.000Z",
+ "lastUpdated": "2021-04-06T18:15:57.647Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "volontaire",
+ "hasLocution": false,
+ "plural": "volontaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "10713754-n",
+ "07123904-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 36268,
+ "created": "2019-11-09T10:31:01.000Z",
+ "lastUpdated": "2021-04-06T18:40:22.252Z",
+ "keywords": [
+ {
+ "keyword": "orthophoniste",
+ "hasLocution": true,
+ "plural": "orthophonistes",
+ "type": 2
+ },
+ {
+ "keyword": "logopède",
+ "hasLocution": false,
+ "plural": "logopèdes",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "10778819-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 36280,
+ "created": "2019-11-14T10:25:06.000Z",
+ "lastUpdated": "2021-04-06T18:15:40.244Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "volontaire",
+ "hasLocution": false,
+ "plural": "volontaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational equipment",
+ "furniture"
+ ],
+ "synsets": [
+ "04386330-n",
+ "04611087-n"
+ ],
+ "tags": [
+ "education",
+ "educational equipment",
+ "object",
+ "furniture"
+ ],
+ "_id": 36285,
+ "created": "2019-11-14T10:26:27.000Z",
+ "lastUpdated": "2021-04-06T18:14:28.288Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "bureau d'écolier",
+ "hasLocution": true,
+ "plural": "bureaux d'écolier"
+ },
+ {
+ "keyword": "table d'école",
+ "hasLocution": false,
+ "plural": "tables d'école",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "10778819-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 36283,
+ "created": "2019-11-14T10:25:41.000Z",
+ "lastUpdated": "2021-04-06T18:15:48.139Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "volontaire",
+ "hasLocution": false,
+ "plural": "volontaires"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "land transport"
+ ],
+ "synsets": [
+ "02929672-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport"
+ ],
+ "_id": 36291,
+ "created": "2019-11-14T10:27:44.000Z",
+ "lastUpdated": "2021-04-13T20:23:36.843Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "station d'autobus",
+ "hasLocution": true,
+ "plural": "stations d'autobus"
+ },
+ {
+ "keyword": "dépôt de bus",
+ "hasLocution": false,
+ "plural": "dépôts de bus",
+ "type": 2
+ },
+ {
+ "keyword": "terminus du bus",
+ "hasLocution": false,
+ "plural": "terminus du bus",
+ "type": 2
+ },
+ {
+ "keyword": "gare d'autobus",
+ "hasLocution": false,
+ "plural": "gares d'autobus",
+ "type": 2
+ },
+ {
+ "keyword": "gare routière",
+ "hasLocution": false,
+ "plural": "gares routières",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "death"
+ ],
+ "synsets": [
+ "04523411-n",
+ "02961925-a"
+ ],
+ "tags": [
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 36293,
+ "created": "2019-11-14T10:29:06.000Z",
+ "lastUpdated": "2021-04-06T18:11:09.808Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "urne",
+ "hasLocution": true,
+ "plural": "urnes"
+ },
+ {
+ "keyword": "urne funéraire",
+ "hasLocution": false,
+ "plural": "urnes funéraires",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "road safety"
+ ],
+ "synsets": [
+ "01688793-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "movement",
+ "traffic",
+ "road safety"
+ ],
+ "_id": 36295,
+ "created": "2019-11-14T10:31:48.000Z",
+ "lastUpdated": "2021-04-13T20:19:09.717Z",
+ "keywords": [
+ {
+ "keyword": "perdu",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "perdus"
+ },
+ {
+ "keyword": "désorienté",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "désorientés"
+ },
+ {
+ "keyword": "égaré",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "égarés"
+ },
+ {
+ "keyword": "déboussolé",
+ "hasLocution": false,
+ "plural": "déboussolés",
+ "type": 4
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "monument"
+ ],
+ "synsets": [
+ "08617999-n",
+ "03749393-n"
+ ],
+ "tags": [
+ "place",
+ "monument"
+ ],
+ "_id": 36297,
+ "created": "2019-11-14T10:32:46.000Z",
+ "lastUpdated": "2021-04-06T18:10:21.551Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "monument",
+ "hasLocution": true,
+ "plural": "monuments"
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "performing artist",
+ "professional artist"
+ ],
+ "synsets": [
+ "10300371-n",
+ "00100771-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "artist",
+ "scenic art",
+ "visual art"
+ ],
+ "_id": 36299,
+ "created": "2019-11-14T10:33:41.000Z",
+ "lastUpdated": "2021-04-06T18:09:36.993Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "magicienne",
+ "hasLocution": true,
+ "plural": "magiciennes"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "prestidigitatrice",
+ "plural": "prestidigitatrices",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "death"
+ ],
+ "synsets": [
+ "04209460-n",
+ "07466063-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "event",
+ "social event",
+ "death"
+ ],
+ "_id": 36301,
+ "created": "2019-11-14T10:44:30.000Z",
+ "lastUpdated": "2021-04-06T18:08:37.013Z",
+ "keywords": [
+ {
+ "keyword": "pompes funèbres",
+ "hasLocution": false,
+ "plural": "pompes funèbres",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "facility",
+ "death",
+ "halloween"
+ ],
+ "synsets": [
+ "08538806-n"
+ ],
+ "tags": [
+ "place",
+ "facility",
+ "event",
+ "social event",
+ "death",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 36289,
+ "created": "2019-11-14T10:27:24.000Z",
+ "lastUpdated": "2021-04-06T18:13:10.533Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "cimetière",
+ "hasLocution": true,
+ "plural": "cimetières"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media device"
+ ],
+ "synsets": [
+ "00791110-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media"
+ ],
+ "_id": 36305,
+ "created": "2019-11-14T10:54:08.000Z",
+ "lastUpdated": "2021-04-13T20:16:08.548Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "appeler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "téléphoner",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "sonner",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media device"
+ ],
+ "synsets": [
+ "00791110-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "appliance",
+ "mass media device",
+ "mass media"
+ ],
+ "_id": 36306,
+ "created": "2019-11-14T10:54:08.000Z",
+ "lastUpdated": "2021-04-13T20:15:33.643Z",
+ "keywords": [
+ {
+ "type": 3,
+ "keyword": "appeler",
+ "hasLocution": true
+ },
+ {
+ "keyword": "téléphoner",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "sonner",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "utensil",
+ "core vocabulary-object"
+ ],
+ "synsets": [
+ "03813077-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "utensil",
+ "home",
+ "core vocabulary"
+ ],
+ "_id": 36303,
+ "created": "2019-11-14T10:52:52.000Z",
+ "lastUpdated": "2021-04-06T17:57:42.387Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "serviette",
+ "hasLocution": true,
+ "plural": "serviette"
+ },
+ {
+ "keyword": "serviette en papier",
+ "hasLocution": false,
+ "plural": "serviettes en papier",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cereal",
+ "herbaceous plant"
+ ],
+ "synsets": [
+ "12164193-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "cereal",
+ "plant",
+ "hervaceouos plant"
+ ],
+ "_id": 36287,
+ "created": "2019-11-14T10:27:04.000Z",
+ "lastUpdated": "2021-04-06T18:13:24.592Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "maïs",
+ "hasLocution": true,
+ "plural": "maïs"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "trade",
+ "signaling system"
+ ],
+ "synsets": [
+ "00036367-s"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 36313,
+ "created": "2019-11-14T11:06:24.000Z",
+ "lastUpdated": "2021-04-13T20:12:50.629Z",
+ "keywords": [
+ {
+ "keyword": "magasin ouvert",
+ "hasLocution": false,
+ "plural": "magasins ouverts",
+ "type": 2
+ },
+ {
+ "keyword": "boutique ouverte",
+ "hasLocution": false,
+ "plural": "boutiques ouvertes",
+ "type": 2
+ },
+ {
+ "keyword": "atelier ouvert",
+ "hasLocution": false,
+ "plural": "ateliers ouverts",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "building",
+ "signaling system",
+ "trade"
+ ],
+ "synsets": [
+ "00036367-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "place",
+ "building",
+ "signaling system",
+ "work",
+ "tertiary sector",
+ "trade"
+ ],
+ "_id": 36309,
+ "created": "2019-11-14T10:55:02.000Z",
+ "lastUpdated": "2024-12-09T06:11:01.460Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "ouvert",
+ "hasLocution": true,
+ "plural": "ouverts"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "building",
+ "signaling system"
+ ],
+ "synsets": [
+ "01657224-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "place",
+ "building",
+ "signaling system"
+ ],
+ "_id": 36311,
+ "created": "2019-11-14T10:56:51.000Z",
+ "lastUpdated": "2021-04-13T20:13:09.432Z",
+ "keywords": [
+ {
+ "type": 4,
+ "keyword": "fermé",
+ "hasLocution": true,
+ "plural": "fermés"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "trade",
+ "signaling system"
+ ],
+ "synsets": [
+ "closed"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "tertiary sector",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 36315,
+ "created": "2019-11-14T11:06:40.000Z",
+ "lastUpdated": "2021-07-10T23:43:11.920Z",
+ "keywords": [
+ {
+ "keyword": "magasin fermé",
+ "hasLocution": false,
+ "plural": "magasins fermés",
+ "type": 2
+ },
+ {
+ "keyword": "boutique fermée",
+ "hasLocution": false,
+ "plural": "boutiques fermées",
+ "type": 2
+ },
+ {
+ "keyword": "atelier fermé",
+ "hasLocution": false,
+ "plural": "ateliers fermés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building",
+ "signaling system"
+ ],
+ "synsets": [
+ "00036367-s"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 36317,
+ "created": "2019-11-14T11:08:45.000Z",
+ "lastUpdated": "2021-07-10T23:42:06.431Z",
+ "keywords": [
+ {
+ "keyword": "bâtiment ouvert",
+ "hasLocution": false,
+ "plural": "bâtiments ouverts",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building",
+ "signaling system"
+ ],
+ "synsets": [
+ "01657224-a"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 36319,
+ "created": "2019-11-14T11:09:05.000Z",
+ "lastUpdated": "2021-07-10T23:41:24.695Z",
+ "keywords": [
+ {
+ "keyword": "bâtiment fermé",
+ "hasLocution": false,
+ "plural": "bâtiments fermés",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "14503199-n",
+ "14504004-n"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 36325,
+ "created": "2019-11-14T11:12:01.000Z",
+ "lastUpdated": "2021-04-13T20:02:42.951Z",
+ "keywords": [
+ {
+ "keyword": "liquide",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "liquides"
+ },
+ {
+ "keyword": "fluide",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "fluides"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "14503199-n"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 36327,
+ "created": "2019-11-14T11:16:42.000Z",
+ "lastUpdated": "2021-04-13T20:00:40.692Z",
+ "keywords": [
+ {
+ "keyword": "état de la matière",
+ "hasLocution": false,
+ "plural": "états de la matière",
+ "type": 2
+ },
+ {
+ "keyword": "états",
+ "hasLocution": true,
+ "plural": "états",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "14503199-n",
+ "15071467-n"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 36323,
+ "created": "2019-11-14T11:11:44.000Z",
+ "lastUpdated": "2021-04-13T20:04:39.840Z",
+ "keywords": [
+ {
+ "keyword": "solide",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "solides"
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs"
+ ],
+ "synsets": [
+ "00747485-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs"
+ ],
+ "_id": 36329,
+ "created": "2019-11-14T11:18:37.000Z",
+ "lastUpdated": "2021-04-13T19:58:16.086Z",
+ "keywords": [
+ {
+ "keyword": "commander par téléphone",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "commander",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication"
+ ],
+ "synsets": [
+ "00747485-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary"
+ ],
+ "_id": 36330,
+ "created": "2019-11-14T11:18:37.000Z",
+ "lastUpdated": "2021-04-13T19:57:36.480Z",
+ "keywords": [
+ {
+ "keyword": "commander par téléphone",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "commander",
+ "hasLocution": true,
+ "type": 3
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00040478-n",
+ "06892816-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 36333,
+ "created": "2019-11-14T11:28:19.000Z",
+ "lastUpdated": "2021-07-10T23:40:05.563Z",
+ "keywords": [
+ {
+ "keyword": "regarder dans les yeux",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "contact visuels",
+ "hasLocution": false,
+ "plural": "contacts visuels",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "transport services",
+ "industrial building"
+ ],
+ "synsets": [
+ "00318033-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "transport services",
+ "place",
+ "building",
+ "industry"
+ ],
+ "_id": 36335,
+ "created": "2019-11-14T11:40:56.000Z",
+ "lastUpdated": "2021-07-10T23:39:30.920Z",
+ "keywords": [
+ {
+ "keyword": "société de livraison",
+ "hasLocution": false,
+ "plural": "sociétés de livraison",
+ "type": 2
+ },
+ {
+ "keyword": "entreprise de livraison",
+ "hasLocution": false,
+ "plural": "entreprises de livraison",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system",
+ "covid-19"
+ ],
+ "synsets": [
+ "08163600-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system",
+ "covid-19"
+ ],
+ "_id": 36337,
+ "created": "2019-11-14T11:50:42.000Z",
+ "lastUpdated": "2021-04-13T19:55:46.209Z",
+ "keywords": [
+ {
+ "keyword": "Unité de Soins Intensifs pédiatrique",
+ "hasLocution": false,
+ "plural": "Unités de Soins Intensifs pédiatriques",
+ "type": 2
+ },
+ {
+ "keyword": "USI pédiatrique",
+ "hasLocution": false,
+ "plural": "USIs pédiatriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physics"
+ ],
+ "synsets": [
+ "14503199-n",
+ "14504664-n"
+ ],
+ "tags": [
+ "physics"
+ ],
+ "_id": 36321,
+ "created": "2019-11-14T11:11:27.000Z",
+ "lastUpdated": "2021-04-13T20:07:02.339Z",
+ "keywords": [
+ {
+ "type": 2,
+ "keyword": "gaz",
+ "hasLocution": false,
+ "plural": "gaz"
+ },
+ {
+ "keyword": "état gazeux",
+ "hasLocution": false,
+ "plural": "états gazeux",
+ "type": 2
+ },
+ {
+ "keyword": "forme gazeuse",
+ "hasLocution": false,
+ "plural": "formes gazeuses",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "02465209-s",
+ "02466219-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 36341,
+ "keywords": [
+ {
+ "keyword": "anxieux",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "anxieux"
+ },
+ {
+ "keyword": "crispé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "crispés"
+ },
+ {
+ "keyword": "tendu",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "tendus"
+ },
+ {
+ "keyword": "inquiet",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "inquiets"
+ },
+ {
+ "keyword": "soucieux",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "soucieux"
+ },
+ {
+ "keyword": "préoccupé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "préoccupés"
+ },
+ {
+ "keyword": "angoissé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "angoissés"
+ }
+ ],
+ "created": "2019-12-15T11:26:05.438Z",
+ "lastUpdated": "2021-04-13T19:50:46.736Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "security and defense"
+ ],
+ "synsets": [
+ "02697285-n",
+ "07279982-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 36342,
+ "keywords": [
+ {
+ "keyword": "alarme ",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "alarmes"
+ },
+ {
+ "keyword": "alarme incendie",
+ "hasLocution": true,
+ "plural": "alarmes incendies",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.663Z",
+ "lastUpdated": "2021-04-13T19:44:16.772Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "biology",
+ "physiology",
+ "animal physiology",
+ "plant physiology"
+ ],
+ "synsets": [
+ "00006484-n"
+ ],
+ "tags": [
+ "biology",
+ "human body",
+ "physiology",
+ "human physiology",
+ "animal",
+ "animal physiology",
+ "plant",
+ "plant physiology"
+ ],
+ "_id": 36340,
+ "keywords": [
+ {
+ "keyword": "cellule",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cellules"
+ }
+ ],
+ "created": "2019-12-15T10:48:58.238Z",
+ "lastUpdated": "2021-04-13T19:51:39.650Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical equipment"
+ ],
+ "synsets": [
+ "14081734-n",
+ "00178632-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment"
+ ],
+ "_id": 36343,
+ "keywords": [
+ {
+ "keyword": "appareil d'aspiration portable",
+ "hasLocution": false,
+ "plural": "appareils d’aspiration portable",
+ "type": 2
+ },
+ {
+ "keyword": "système anti-étouffement",
+ "hasLocution": false,
+ "plural": "systèmes anti-étouffements",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.663Z",
+ "lastUpdated": "2021-07-16T08:35:36.384Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy",
+ "food"
+ ],
+ "synsets": [],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 36344,
+ "keywords": [
+ {
+ "keyword": "riz au lait",
+ "hasLocution": false,
+ "plural": "riz au lait",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.663Z",
+ "lastUpdated": "2024-11-22T07:56:22.249Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "group"
+ ],
+ "synsets": [
+ "08571072-n",
+ "08066153-n"
+ ],
+ "tags": [
+ "person",
+ "group"
+ ],
+ "_id": 36345,
+ "keywords": [
+ {
+ "keyword": "association",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "associations"
+ }
+ ],
+ "created": "2019-12-15T15:46:06.663Z",
+ "lastUpdated": "2021-07-15T20:19:56.776Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "economy"
+ ],
+ "synsets": [
+ "13276044-n"
+ ],
+ "tags": [
+ "economy"
+ ],
+ "_id": 36346,
+ "keywords": [
+ {
+ "keyword": "revenu",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "revenus"
+ },
+ {
+ "keyword": "salaire",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "salaires"
+ },
+ {
+ "keyword": "recettes",
+ "hasLocution": true,
+ "plural": "recettes",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.663Z",
+ "lastUpdated": "2021-04-19T20:48:21.703Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "routine"
+ ],
+ "synsets": [
+ "14024516-n"
+ ],
+ "tags": [
+ "person",
+ "routine"
+ ],
+ "_id": 36347,
+ "keywords": [
+ {
+ "keyword": "tâches ménagères",
+ "hasLocution": false,
+ "plural": "tâches ménagères",
+ "type": 2
+ },
+ {
+ "keyword": "autonomie personnelle",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "ménage",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "ménages"
+ }
+ ],
+ "created": "2019-12-15T15:46:06.663Z",
+ "lastUpdated": "2021-04-19T20:46:50.046Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hospital room",
+ "signaling system"
+ ],
+ "synsets": [
+ "08163600-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical center",
+ "place",
+ "building",
+ "room",
+ "communication",
+ "signaling system"
+ ],
+ "_id": 36339,
+ "created": "2019-11-14T11:52:24.000Z",
+ "lastUpdated": "2021-04-13T19:53:55.907Z",
+ "keywords": [
+ {
+ "keyword": "Unité de Soins Pédiatriques",
+ "hasLocution": false,
+ "plural": "Unités de Soins Pédiatriques",
+ "type": 2
+ },
+ {
+ "keyword": "USI pédiatrique",
+ "hasLocution": false,
+ "plural": "USIs pédiatriques",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "building facility"
+ ],
+ "synsets": [
+ "00035596-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "place",
+ "building",
+ "building facility"
+ ],
+ "_id": 36349,
+ "keywords": [
+ {
+ "keyword": "se baigner",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "prendre un bain",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "baigner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T15:46:06.663Z",
+ "lastUpdated": "2024-12-05T12:13:05.064Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sweets",
+ "christmas"
+ ],
+ "synsets": [
+ "07617143-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "sweets",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 36350,
+ "keywords": [
+ {
+ "keyword": "sucre d'orge",
+ "hasLocution": true,
+ "plural": "sucres d'orge",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.663Z",
+ "lastUpdated": "2021-04-19T20:30:44.871Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building"
+ ],
+ "synsets": [
+ "02816679-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade"
+ ],
+ "_id": 36351,
+ "keywords": [
+ {
+ "keyword": "bazar",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "bazars"
+ },
+ {
+ "keyword": "farfouille",
+ "hasLocution": false,
+ "plural": "farfouilles",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.663Z",
+ "lastUpdated": "2021-07-10T23:35:33.573Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional dish"
+ ],
+ "synsets": [],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 36352,
+ "keywords": [
+ {
+ "keyword": "aubergines au miel",
+ "hasLocution": false,
+ "plural": "aubergines au miel",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.663Z",
+ "lastUpdated": "2021-07-10T23:32:09.658Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 36353,
+ "keywords": [
+ {
+ "keyword": "boule à facettes",
+ "hasLocution": false,
+ "plural": "boules à facettes",
+ "type": 2
+ },
+ {
+ "keyword": "boule disco",
+ "hasLocution": false,
+ "plural": "boules discos",
+ "type": 2
+ },
+ {
+ "keyword": "boule de discothèque",
+ "hasLocution": false,
+ "plural": "boules de discothèque",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.663Z",
+ "lastUpdated": "2021-04-19T20:39:19.953Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07727808-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 36354,
+ "keywords": [
+ {
+ "keyword": "patate douce",
+ "hasLocution": false,
+ "plural": "patates douces",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.663Z",
+ "lastUpdated": "2021-07-10T23:31:38.650Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07805039-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 36348,
+ "keywords": [
+ {
+ "keyword": "morue à la tomate",
+ "hasLocution": false,
+ "plural": "morues à la tomate",
+ "type": 2
+ },
+ {
+ "keyword": "cabillaud à la sauce tomate",
+ "hasLocution": false,
+ "plural": "cabillauds à la sauce tomate",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.663Z",
+ "lastUpdated": "2021-04-19T20:42:46.454Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "commercial building",
+ "baking"
+ ],
+ "synsets": [
+ "02939042-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "trade",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 36355,
+ "keywords": [
+ {
+ "keyword": "café",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cafés"
+ },
+ {
+ "keyword": "coffee shop",
+ "hasLocution": false,
+ "plural": "coffee shop",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.664Z",
+ "lastUpdated": "2021-07-18T06:10:00.872Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sportswear",
+ "clothes"
+ ],
+ "synsets": [
+ "02853596-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sportswear",
+ "clothing",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 36358,
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vestes de jogging",
+ "keyword": "veste de jogging"
+ },
+ {
+ "hasLocution": false,
+ "plural": "vestes de survêtement",
+ "keyword": "veste de survêtement",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.664Z",
+ "lastUpdated": "2021-07-10T23:27:38.822Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "protective equipment"
+ ],
+ "synsets": [
+ "03266306-n"
+ ],
+ "tags": [
+ "work",
+ "clothes",
+ "workwear",
+ "protective equipment"
+ ],
+ "_id": 36357,
+ "keywords": [
+ {
+ "keyword": "casque anti-bruit",
+ "hasLocution": false,
+ "plural": "casques anti-bruit",
+ "type": 2
+ },
+ {
+ "keyword": "protection antibruit",
+ "hasLocution": false,
+ "plural": "protections antibruits",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.664Z",
+ "lastUpdated": "2021-07-10T23:31:18.428Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cactus"
+ ],
+ "synsets": [
+ "11872047-n"
+ ],
+ "tags": [
+ "plant",
+ "cactus"
+ ],
+ "_id": 36359,
+ "keywords": [
+ {
+ "keyword": "figuier de barbarie",
+ "hasLocution": false,
+ "plural": "figuiers de barbarie",
+ "type": 2
+ },
+ {
+ "keyword": "figue de barbarie",
+ "hasLocution": false,
+ "plural": "figues de barbarie",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.664Z",
+ "lastUpdated": "2021-07-10T23:26:35.240Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "decorative item",
+ "birthday"
+ ],
+ "synsets": [
+ "04095011-n"
+ ],
+ "tags": [
+ "object",
+ "decorative item",
+ "event",
+ "social event",
+ "birthday"
+ ],
+ "_id": 36360,
+ "keywords": [
+ {
+ "keyword": "ruban cadeau",
+ "hasLocution": false,
+ "plural": "rubans cadeau",
+ "type": 2
+ },
+ {
+ "keyword": "bolduc",
+ "hasLocution": false,
+ "plural": "bolducs",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:46:06.664Z",
+ "lastUpdated": "2021-07-10T23:24:32.336Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00891150-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 36361,
+ "keywords": [
+ {
+ "keyword": "leçon d'audiovisuel",
+ "hasLocution": false,
+ "plural": "leçons d'audiovisuel",
+ "type": 2
+ },
+ {
+ "keyword": "cours d'audiovisuel",
+ "hasLocution": false,
+ "plural": "cours d'audiovisuel",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.550Z",
+ "lastUpdated": "2021-07-10T23:23:47.372Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "06047178-n",
+ "00886144-n",
+ "00891150-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 36362,
+ "keywords": [
+ {
+ "keyword": "biologie",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "cours de biologie",
+ "hasLocution": false,
+ "plural": "cours de biologie",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.550Z",
+ "lastUpdated": "2021-05-10T14:55:18.295Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00886144-n",
+ "00891150-n",
+ "03239009-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 36363,
+ "keywords": [
+ {
+ "keyword": "dessin technique",
+ "hasLocution": false,
+ "plural": "dessins techniques",
+ "type": 2
+ },
+ {
+ "keyword": "dessin industriel",
+ "hasLocution": false,
+ "plural": "dessins industriels",
+ "type": 2
+ },
+ {
+ "keyword": "cours de dessin technique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cours de dessin technique"
+ },
+ {
+ "keyword": "cours de dessin industriel",
+ "hasLocution": false,
+ "plural": "cours de dessin industriel",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.550Z",
+ "lastUpdated": "2021-05-10T14:51:30.083Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mass media",
+ "christmas"
+ ],
+ "synsets": [
+ "06636668-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 36356,
+ "keywords": [
+ {
+ "keyword": "lettre au Père Noël",
+ "hasLocution": false,
+ "plural": "lettres au Père Noël",
+ "type": 2
+ },
+ {
+ "keyword": "lettre",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "lettres"
+ }
+ ],
+ "created": "2019-12-15T15:46:06.664Z",
+ "lastUpdated": "2021-07-10T23:29:41.973Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00886144-n",
+ "00891150-n",
+ "06100457-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 36366,
+ "keywords": [
+ {
+ "keyword": "physique",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "cours de physique",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cours de physique"
+ }
+ ],
+ "created": "2019-12-15T15:53:35.550Z",
+ "lastUpdated": "2021-05-10T14:47:59.391Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00886144-n",
+ "00891150-n",
+ "06977643-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 36367,
+ "keywords": [
+ {
+ "keyword": "français",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "cours de français",
+ "hasLocution": false,
+ "plural": "cours de français",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.550Z",
+ "lastUpdated": "2021-05-10T14:53:54.460Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00886144-n",
+ "00891150-n",
+ "06165265-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 36368,
+ "keywords": [
+ {
+ "keyword": "histoire",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "cours d'histoire",
+ "hasLocution": false,
+ "plural": "cours d'histoire",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.550Z",
+ "lastUpdated": "2021-05-10T14:53:42.287Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00886144-n",
+ "00891150-n",
+ "06125308-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 36369,
+ "keywords": [
+ {
+ "keyword": "géologie",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "cours de géologie",
+ "hasLocution": false,
+ "plural": "cours de géologie",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.550Z",
+ "lastUpdated": "2021-05-10T14:53:16.179Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00886144-n",
+ "00891150-n",
+ "06158935-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 36364,
+ "keywords": [
+ {
+ "keyword": "économie",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "sciences économiques",
+ "hasLocution": false,
+ "plural": "sciences économiques",
+ "type": 2
+ },
+ {
+ "keyword": "cours d'économie",
+ "hasLocution": false,
+ "plural": "cours d'économie",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.550Z",
+ "lastUpdated": "2021-05-10T14:54:39.679Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00730776-n",
+ "00891150-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 36371,
+ "keywords": [
+ {
+ "keyword": "leçon d'espagnol",
+ "hasLocution": false,
+ "plural": "leçons d'espagnol",
+ "type": 2
+ },
+ {
+ "keyword": "cours d'espagnol",
+ "hasLocution": false,
+ "plural": "cours d'espagnol",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.551Z",
+ "lastUpdated": "2021-07-10T23:20:50.240Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00886144-n",
+ "00891150-n",
+ "06168062-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 36365,
+ "keywords": [
+ {
+ "keyword": "philosophie",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "cours de philosophie",
+ "hasLocution": false,
+ "plural": "cours de philosophie",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.550Z",
+ "lastUpdated": "2021-05-10T14:48:36.882Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject",
+ "greece"
+ ],
+ "synsets": [
+ "06989052-n",
+ "00891150-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject",
+ "history",
+ "civilization",
+ "Greece"
+ ],
+ "_id": 36370,
+ "keywords": [
+ {
+ "keyword": "grec",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "cours de grec",
+ "hasLocution": false,
+ "plural": "cours de grec",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.550Z",
+ "lastUpdated": "2021-05-10T14:53:04.710Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational staff",
+ "education professionals",
+ "special education"
+ ],
+ "synsets": [
+ "10713754-n",
+ "05765728-n"
+ ],
+ "tags": [
+ "education",
+ "professional",
+ "work",
+ "special education"
+ ],
+ "_id": 36274,
+ "created": "2019-11-14T10:24:19.000Z",
+ "lastUpdated": "2021-07-18T06:10:23.848Z",
+ "keywords": [
+ {
+ "type": 2,
+ "hasLocution": false,
+ "keyword": "enseignant spécialisé",
+ "plural": "enseignants spécialisés"
+ },
+ {
+ "keyword": "professeur d'enseignement adapté",
+ "hasLocution": false,
+ "plural": "professeurs d'enseignement adapté",
+ "type": 2
+ }
+ ]
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00886144-n",
+ "00891150-n",
+ "06134474-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 36375,
+ "keywords": [
+ {
+ "keyword": "technologie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "technologies"
+ },
+ {
+ "keyword": "cours de technologie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cours de technologie"
+ }
+ ],
+ "created": "2019-12-15T15:53:35.551Z",
+ "lastUpdated": "2021-07-10T23:20:30.641Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07597340-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 36376,
+ "keywords": [
+ {
+ "keyword": "cocktail de crevettes",
+ "hasLocution": false,
+ "plural": "cocktails de crevettes",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.551Z",
+ "lastUpdated": "2021-05-10T14:42:39.056Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00886144-n",
+ "00891150-n",
+ "06094057-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 36374,
+ "keywords": [
+ {
+ "keyword": "chimie",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "cours de chimie",
+ "hasLocution": false,
+ "plural": "cours de chimie",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.551Z",
+ "lastUpdated": "2021-05-10T14:51:53.872Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "recycling",
+ "street furniture"
+ ],
+ "synsets": [
+ "04072901-n"
+ ],
+ "tags": [
+ "environmental science",
+ "recycling",
+ "urban area",
+ "street furniture"
+ ],
+ "_id": 36378,
+ "keywords": [
+ {
+ "keyword": "container à verre",
+ "hasLocution": false,
+ "plural": "containers à verre",
+ "type": 2
+ },
+ {
+ "keyword": "benne à verre",
+ "hasLocution": false,
+ "plural": "bennes à verre",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.551Z",
+ "lastUpdated": "2021-05-10T13:15:54.782Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs"
+ ],
+ "synsets": [
+ "01506930-v",
+ "01506036-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs"
+ ],
+ "_id": 36379,
+ "keywords": [
+ {
+ "keyword": "empiler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T15:53:35.551Z",
+ "lastUpdated": "2021-05-10T13:14:41.382Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00730776-n",
+ "00891150-n",
+ "00886144-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 36372,
+ "keywords": [
+ {
+ "keyword": "leçon de catalan",
+ "hasLocution": false,
+ "plural": "leçons de catalan",
+ "type": 2
+ },
+ {
+ "keyword": "cours de catalan",
+ "hasLocution": false,
+ "plural": "cours de catalan",
+ "type": 2
+ },
+ {
+ "keyword": "cours de valencien",
+ "hasLocution": false,
+ "plural": "cours de valencien",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.551Z",
+ "lastUpdated": "2021-07-10T23:22:22.990Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 36380,
+ "keywords": [
+ {
+ "keyword": "faire un doigt d'honneur",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T15:53:35.551Z",
+ "lastUpdated": "2021-07-10T22:50:08.237Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "01242426-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 36381,
+ "keywords": [
+ {
+ "keyword": "pousser",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "faire tomber",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "démolir",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T15:53:35.551Z",
+ "lastUpdated": "2021-07-10T22:49:07.423Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "subject"
+ ],
+ "synsets": [
+ "00886144-n",
+ "00891150-n",
+ "06009822-n"
+ ],
+ "tags": [
+ "education",
+ "subject"
+ ],
+ "_id": 36373,
+ "keywords": [
+ {
+ "keyword": "mathématique",
+ "hasLocution": false,
+ "plural": "mathématiques",
+ "type": 2
+ },
+ {
+ "keyword": "maths",
+ "hasLocution": false,
+ "plural": "maths",
+ "type": 2
+ },
+ {
+ "keyword": "cours de mathématiques",
+ "hasLocution": true,
+ "plural": "cours de mathématiques",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:53:35.551Z",
+ "lastUpdated": "2021-05-10T14:52:44.498Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "law and justice",
+ "court document"
+ ],
+ "synsets": [
+ "04677185-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice",
+ "document"
+ ],
+ "_id": 36377,
+ "keywords": [
+ {
+ "keyword": "responsabilité",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "responsabilités"
+ },
+ {
+ "keyword": "être responsable de ",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T15:53:35.551Z",
+ "lastUpdated": "2021-07-10T22:51:44.176Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume",
+ "carnival",
+ "halloween"
+ ],
+ "synsets": [
+ "03118308-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume",
+ "event",
+ "popular event",
+ "carnival",
+ "halloween"
+ ],
+ "_id": 36382,
+ "keywords": [
+ {
+ "keyword": "costume de sorcière",
+ "hasLocution": false,
+ "plural": "costumes de sorcière",
+ "type": 2
+ },
+ {
+ "keyword": "déguisement de sorcière",
+ "hasLocution": false,
+ "plural": "déguisements de sorcière",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.165Z",
+ "lastUpdated": "2021-07-10T22:47:18.383Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "basic needs"
+ ],
+ "synsets": [
+ "00860309-n",
+ "00860015-n"
+ ],
+ "tags": [
+ "person",
+ "basic needs"
+ ],
+ "_id": 36386,
+ "keywords": [
+ {
+ "keyword": "sieste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "siestes"
+ },
+ {
+ "keyword": "somme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sommes"
+ },
+ {
+ "keyword": "dodo",
+ "hasLocution": false,
+ "plural": "dodos",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.165Z",
+ "lastUpdated": "2021-07-10T23:19:50.270Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "09563850-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 36387,
+ "keywords": [
+ {
+ "keyword": "lutin",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "lutins"
+ },
+ {
+ "keyword": "elfe",
+ "hasLocution": false,
+ "plural": "elfes",
+ "type": 2
+ },
+ {
+ "keyword": "farfadet",
+ "hasLocution": false,
+ "plural": "farfadets",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.165Z",
+ "lastUpdated": "2021-07-10T23:18:48.913Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tale character"
+ ],
+ "synsets": [
+ "09563850-n"
+ ],
+ "tags": [
+ "character",
+ "book character",
+ "tale character",
+ "literature"
+ ],
+ "_id": 36388,
+ "keywords": [
+ {
+ "keyword": "lutin",
+ "type": 2,
+ "plural": "lutins",
+ "hasLocution": true
+ },
+ {
+ "keyword": "elfe",
+ "hasLocution": false,
+ "plural": "elfes",
+ "type": 2
+ },
+ {
+ "type": 2,
+ "keyword": "farfadet",
+ "hasLocution": false,
+ "plural": "farfadets"
+ }
+ ],
+ "created": "2019-12-15T15:59:40.165Z",
+ "lastUpdated": "2021-07-10T23:18:13.732Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "basic needs"
+ ],
+ "synsets": [
+ "00860309-n",
+ "00860015-n"
+ ],
+ "tags": [
+ "person",
+ "basic needs"
+ ],
+ "_id": 36385,
+ "keywords": [
+ {
+ "keyword": "sieste",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "siestes"
+ },
+ {
+ "keyword": "somme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sommes"
+ },
+ {
+ "keyword": "dodo",
+ "hasLocution": false,
+ "plural": "dodos",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.165Z",
+ "lastUpdated": "2021-07-10T23:20:09.542Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy",
+ "educational material"
+ ],
+ "synsets": [],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy",
+ "education",
+ "educational material"
+ ],
+ "_id": 36389,
+ "keywords": [
+ {
+ "keyword": "jeu d'empilement",
+ "hasLocution": false,
+ "plural": "jeux d'empilement",
+ "type": 2
+ },
+ {
+ "keyword": "abaque",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "abaques"
+ }
+ ],
+ "created": "2019-12-15T15:59:40.165Z",
+ "lastUpdated": "2021-07-10T23:17:26.496Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task"
+ ],
+ "synsets": [
+ "01362135-v",
+ "01362506-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task"
+ ],
+ "_id": 36390,
+ "keywords": [
+ {
+ "keyword": "enfiler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T15:59:40.165Z",
+ "lastUpdated": "2021-07-10T23:10:45.867Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recreational facility",
+ "entertainment facility"
+ ],
+ "synsets": [
+ "08449355-n",
+ "02644022-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure"
+ ],
+ "_id": 36391,
+ "keywords": [
+ {
+ "keyword": "faire la queue",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "attendre en ligne",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T15:59:40.165Z",
+ "lastUpdated": "2021-07-10T23:09:36.800Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication",
+ "character",
+ "book character",
+ "health personnel",
+ "religious person",
+ "religious character",
+ "leader",
+ "person according to their age",
+ "professional",
+ "personal pronoun"
+ ],
+ "synsets": [
+ "02661230-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary",
+ "character",
+ "book character",
+ "literature",
+ "health",
+ "medicine",
+ "professional",
+ "religion",
+ "person",
+ "leader",
+ "work",
+ "pronoun",
+ "personal pronoun"
+ ],
+ "_id": 36392,
+ "keywords": [
+ {
+ "hasLocution": true,
+ "keyword": "être",
+ "type": 3
+ },
+ {
+ "keyword": "se trouver",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "exister",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T15:59:40.165Z",
+ "lastUpdated": "2025-01-12T06:48:03.049Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "economy"
+ ],
+ "synsets": [
+ "13296518-n"
+ ],
+ "tags": [
+ "economy"
+ ],
+ "_id": 36384,
+ "keywords": [
+ {
+ "keyword": "dépenses",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dépenses"
+ },
+ {
+ "keyword": "frais",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "frais"
+ }
+ ],
+ "created": "2019-12-15T15:59:40.165Z",
+ "lastUpdated": "2021-07-10T22:48:11.400Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume",
+ "halloween"
+ ],
+ "synsets": [
+ "03118308-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume",
+ "event",
+ "popular event",
+ "halloween"
+ ],
+ "_id": 36383,
+ "keywords": [
+ {
+ "keyword": "costume de squelette",
+ "hasLocution": false,
+ "plural": "costumes de squelette",
+ "type": 2
+ },
+ {
+ "keyword": "déguisement de squelette",
+ "hasLocution": false,
+ "plural": "déguisements de squelette",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.165Z",
+ "lastUpdated": "2021-07-10T22:47:27.280Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04469246-n",
+ "03410635-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 36396,
+ "keywords": [
+ {
+ "keyword": "casier",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "casiers"
+ },
+ {
+ "keyword": "meuble à casier",
+ "hasLocution": false,
+ "plural": "meubles à casiers",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.167Z",
+ "lastUpdated": "2021-07-15T20:19:44.712Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sports facility",
+ "physical exercise"
+ ],
+ "synsets": [
+ "03477235-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "facility",
+ "sports facility",
+ "place",
+ "physical exercise"
+ ],
+ "_id": 36397,
+ "keywords": [
+ {
+ "keyword": "salle de gym",
+ "hasLocution": false,
+ "plural": "salles de gym",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "type": 2,
+ "keyword": "salle de sports",
+ "plural": "salles de sports"
+ }
+ ],
+ "created": "2019-12-15T15:59:40.167Z",
+ "lastUpdated": "2021-03-20T21:51:36.510Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00965602-v",
+ "00964479-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 36398,
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 3,
+ "keyword": "parler en même temps"
+ },
+ {
+ "hasLocution": false,
+ "type": 3,
+ "keyword": "parler tous à la fois"
+ }
+ ],
+ "created": "2019-12-15T15:59:40.167Z",
+ "lastUpdated": "2021-07-10T23:08:18.103Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00072483-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 36399,
+ "keywords": [
+ {
+ "keyword": "se mouiller",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "faire pipi dans sa culotte",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T15:59:40.167Z",
+ "lastUpdated": "2021-07-06T23:16:50.451Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "flower",
+ "christmas"
+ ],
+ "synsets": [
+ "12940964-n"
+ ],
+ "tags": [
+ "plant",
+ "flower",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 36394,
+ "keywords": [
+ {
+ "keyword": "poinsettia",
+ "hasLocution": false,
+ "plural": "poinsettias",
+ "type": 2
+ },
+ {
+ "keyword": "étoile de Noël",
+ "hasLocution": true,
+ "plural": "étoiles de Noël",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.167Z",
+ "lastUpdated": "2021-03-20T21:56:42.252Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "baking",
+ "dessert"
+ ],
+ "synsets": [
+ "04209460-n",
+ "07630109-n",
+ "07623948-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 36401,
+ "keywords": [
+ {
+ "keyword": "glacier",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "glaciers"
+ },
+ {
+ "keyword": "marchand de glaces",
+ "hasLocution": false,
+ "plural": "marchands de glaces",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.168Z",
+ "lastUpdated": "2021-03-20T21:49:13.688Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "04109379-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 36393,
+ "keywords": [
+ {
+ "keyword": "store roulant",
+ "hasLocution": false,
+ "plural": "stores roulants",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.167Z",
+ "lastUpdated": "2021-05-31T12:46:12.496Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "crockery"
+ ],
+ "synsets": [
+ "00036773-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "household",
+ "crockery",
+ "home"
+ ],
+ "_id": 36395,
+ "keywords": [
+ {
+ "keyword": "frotter le gobelet",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "hasLocution": false,
+ "keyword": "récurer la tasse"
+ }
+ ],
+ "created": "2019-12-15T15:59:40.167Z",
+ "lastUpdated": "2021-03-20T21:54:21.810Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00072483-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 36400,
+ "keywords": [
+ {
+ "keyword": "se mouiller",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "faire pipi dans sa culotte",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T15:59:40.167Z",
+ "lastUpdated": "2021-07-06T23:16:39.131Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07784834-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 36402,
+ "keywords": [
+ {
+ "keyword": "figue de Barbarie",
+ "hasLocution": false,
+ "plural": "figues de Barbarie",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.168Z",
+ "lastUpdated": "2021-03-20T21:48:10.744Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "street furniture",
+ "playground"
+ ],
+ "synsets": [
+ "02790007-n"
+ ],
+ "tags": [
+ "urban area",
+ "street furniture",
+ "place",
+ "facility",
+ "recreational facility",
+ "leisure",
+ "playground"
+ ],
+ "_id": 36406,
+ "keywords": [
+ {
+ "keyword": "kiosque à musique",
+ "hasLocution": false,
+ "plural": "kiosques à musique",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.169Z",
+ "lastUpdated": "2021-03-20T21:44:23.306Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy equipment"
+ ],
+ "synsets": [
+ "03514538-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "physiotherapy equipment"
+ ],
+ "_id": 36407,
+ "keywords": [
+ {
+ "keyword": "lampe chauffante",
+ "hasLocution": false,
+ "plural": "lampes chauffantes",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.169Z",
+ "lastUpdated": "2021-03-20T21:43:32.228Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00487681-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 36404,
+ "keywords": [
+ {
+ "keyword": "jeu des chaises musicales",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "chaises musicales",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.168Z",
+ "lastUpdated": "2021-03-20T21:45:59.626Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "economy"
+ ],
+ "synsets": [
+ "13380745-n"
+ ],
+ "tags": [
+ "economy"
+ ],
+ "_id": 36403,
+ "keywords": [
+ {
+ "keyword": "économies",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.168Z",
+ "lastUpdated": "2021-03-20T21:47:19.615Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material",
+ "game",
+ "core vocabulary-miscellaneous"
+ ],
+ "synsets": [
+ "00431591-n"
+ ],
+ "tags": [
+ "education",
+ "educational material",
+ "leisure",
+ "game",
+ "core vocabulary"
+ ],
+ "_id": 36405,
+ "keywords": [
+ {
+ "keyword": "jeux éducatifs",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.169Z",
+ "lastUpdated": "2021-06-15T16:38:54.529Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07858409-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 36409,
+ "keywords": [
+ {
+ "keyword": "oeuf mimosa",
+ "hasLocution": false,
+ "plural": "oeufs mimosas",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "oeuf farci",
+ "plural": "oeufs farcis",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.169Z",
+ "lastUpdated": "2021-03-26T14:28:14.271Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 36408,
+ "keywords": [
+ {
+ "keyword": "boule disco",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "boules disco"
+ },
+ {
+ "keyword": "boule à facettes",
+ "hasLocution": false,
+ "plural": "boules à facettes",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T15:59:40.169Z",
+ "lastUpdated": "2021-07-06T23:16:18.199Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "service building",
+ "mass media"
+ ],
+ "synsets": [],
+ "tags": [
+ "place",
+ "building",
+ "service building",
+ "communication",
+ "mass media"
+ ],
+ "_id": 36412,
+ "keywords": [
+ {
+ "keyword": "centre d'appel",
+ "hasLocution": false,
+ "plural": "centres d'appel",
+ "type": 2
+ },
+ {
+ "keyword": "centre d'appels téléphoniques",
+ "hasLocution": false,
+ "plural": "centres d'appels téléphoniques",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:15:05.789Z",
+ "lastUpdated": "2021-03-20T21:30:31.571Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "06291469-n",
+ "03641539-n"
+ ],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 36410,
+ "keywords": [
+ {
+ "keyword": "lampe à fibres optiques",
+ "hasLocution": false,
+ "plural": "lampes à fibres optiques",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:15:05.789Z",
+ "lastUpdated": "2021-03-20T21:37:49.724Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "security and defense"
+ ],
+ "synsets": [
+ "03350850-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 36413,
+ "keywords": [
+ {
+ "keyword": "tuyau d'incendie",
+ "hasLocution": false,
+ "plural": "tuyaux d'incendie",
+ "type": 2
+ },
+ {
+ "keyword": "lances à incendie",
+ "hasLocution": false,
+ "plural": "lances à incendie",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:15:05.789Z",
+ "lastUpdated": "2021-03-20T21:28:43.278Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "processed food"
+ ],
+ "synsets": [
+ "15079034-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "processed food"
+ ],
+ "_id": 36414,
+ "keywords": [
+ {
+ "keyword": "farine de maïs",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "farines de maïs"
+ },
+ {
+ "keyword": "amidon de maïs",
+ "hasLocution": false,
+ "plural": "amidons de maïs",
+ "type": 2
+ },
+ {
+ "keyword": "fécule de maïs",
+ "hasLocution": false,
+ "plural": "fécules de maïs",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:15:05.789Z",
+ "lastUpdated": "2021-03-20T21:27:13.842Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "06719615-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 36417,
+ "keywords": [
+ {
+ "keyword": "Médaille d’argent",
+ "hasLocution": false,
+ "plural": "Médailles d’argent",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:15:05.789Z",
+ "lastUpdated": "2021-02-02T18:09:35.999Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sensory stimulation material"
+ ],
+ "synsets": [
+ "10317650-n"
+ ],
+ "tags": [
+ "object",
+ "sensory stimulation"
+ ],
+ "_id": 36415,
+ "keywords": [
+ {
+ "keyword": "masseur de tête",
+ "hasLocution": false,
+ "plural": "masseurs de tête",
+ "type": 2
+ },
+ {
+ "keyword": "masseur de cuir chevelu",
+ "hasLocution": false,
+ "plural": "masseurs de cuir chevelu",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:15:05.789Z",
+ "lastUpdated": "2021-03-20T21:25:08.505Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "teaching activity",
+ "students"
+ ],
+ "synsets": [
+ "00187671-v",
+ "01496967-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "teaching activity",
+ "students"
+ ],
+ "_id": 36418,
+ "keywords": [
+ {
+ "keyword": "mettre son déjeuner",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "ranger son repas",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T16:15:05.789Z",
+ "lastUpdated": "2021-07-10T23:06:46.209Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "orthopedic product"
+ ],
+ "synsets": [
+ "04289632-n"
+ ],
+ "tags": [
+ "object",
+ "orthopedic product"
+ ],
+ "_id": 36419,
+ "keywords": [
+ {
+ "keyword": "attelle",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "attelles"
+ },
+ {
+ "keyword": "orthèse",
+ "hasLocution": false,
+ "plural": "orthèses",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:15:05.789Z",
+ "lastUpdated": "2021-03-20T21:21:41.677Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "historical character",
+ "christmas"
+ ],
+ "synsets": [
+ "10411115-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 36420,
+ "keywords": [
+ {
+ "keyword": "page",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pages"
+ }
+ ],
+ "created": "2019-12-15T16:15:05.789Z",
+ "lastUpdated": "2021-07-10T23:16:55.233Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "historical character",
+ "christmas"
+ ],
+ "synsets": [
+ "10411115-n"
+ ],
+ "tags": [
+ "character",
+ "historical character",
+ "history",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 36421,
+ "keywords": [
+ {
+ "keyword": "page",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "pages"
+ }
+ ],
+ "created": "2019-12-15T16:15:05.789Z",
+ "lastUpdated": "2021-07-10T23:05:05.369Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "trousseau"
+ ],
+ "synsets": [
+ "03155743-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 36422,
+ "keywords": [
+ {
+ "keyword": "panneau japonais",
+ "hasLocution": false,
+ "plural": "panneaux japonais",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:15:05.789Z",
+ "lastUpdated": "2021-07-15T20:19:34.223Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "02082451-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 36411,
+ "keywords": [
+ {
+ "keyword": "fou",
+ "type": 4,
+ "hasLocution": true,
+ "plural": "fous"
+ },
+ {
+ "plural": "folles",
+ "keyword": "folle",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "dérangé",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "dérangés"
+ }
+ ],
+ "created": "2019-12-15T16:15:05.789Z",
+ "lastUpdated": "2021-03-20T21:31:41.518Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sportswear",
+ "clothes"
+ ],
+ "synsets": [
+ "04377375-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sportswear",
+ "clothing",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 36423,
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pantalons de jogging",
+ "keyword": "pantalon de jogging"
+ },
+ {
+ "hasLocution": false,
+ "plural": "pantalons de survêtement",
+ "keyword": "pantalon de survêtement",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:15:05.789Z",
+ "lastUpdated": "2021-07-10T23:01:41.640Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "pet",
+ "dog-assisted therapy"
+ ],
+ "synsets": [
+ "01910816-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "animal",
+ "pet",
+ "animal-assisted therapy",
+ "dog-assisted therapy"
+ ],
+ "_id": 36424,
+ "keywords": [
+ {
+ "keyword": "promener le chien",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "sortir le chien",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T16:19:24.919Z",
+ "lastUpdated": "2021-07-10T23:00:06.147Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07728304-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 36425,
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "pommes de terre sautées",
+ "type": 2,
+ "plural": "pommes de terre sautées"
+ },
+ {
+ "keyword": "chips",
+ "hasLocution": true,
+ "plural": "chips",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "pommes de terre rôties",
+ "plural": "pommes de terre rôties",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:19:24.919Z",
+ "lastUpdated": "2021-07-10T22:59:56.174Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "cinema"
+ ],
+ "synsets": [
+ "06626039-n"
+ ],
+ "tags": [
+ "scenic art",
+ "cinema",
+ "show"
+ ],
+ "_id": 36427,
+ "keywords": [
+ {
+ "keyword": "film DVD",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "films DVD"
+ },
+ {
+ "keyword": "film Blu Ray",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "films Blu Ray"
+ }
+ ],
+ "created": "2019-12-15T16:19:24.919Z",
+ "lastUpdated": "2021-03-20T21:18:51.461Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07791351-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 36428,
+ "keywords": [
+ {
+ "keyword": "poisson grillé",
+ "hasLocution": false,
+ "plural": "poissons grillés",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:19:24.919Z",
+ "lastUpdated": "2021-03-20T21:13:42.825Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07791351-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 36429,
+ "keywords": [
+ {
+ "keyword": "poisson bouilli",
+ "hasLocution": false,
+ "plural": "poissons bouillis",
+ "type": 2
+ },
+ {
+ "keyword": "poisson poché",
+ "hasLocution": false,
+ "plural": "poisson pochés",
+ "type": 2
+ },
+ {
+ "keyword": "poisson à l'eau",
+ "hasLocution": false,
+ "plural": "poissons à l'eau",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:19:24.919Z",
+ "lastUpdated": "2021-07-10T22:56:53.654Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07791351-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 36430,
+ "keywords": [
+ {
+ "keyword": "poisson aux asperges",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "poissons aux asperges"
+ },
+ {
+ "keyword": "poisson à la sauce d'asperges",
+ "hasLocution": false,
+ "plural": "poissons à la sauce d'asperges",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:19:24.919Z",
+ "lastUpdated": "2021-07-11T09:32:39.881Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "00456623-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 36431,
+ "keywords": [
+ {
+ "keyword": "Pierre Papier Ciseaux",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "Chifoumi",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "Shifumi",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:19:24.919Z",
+ "lastUpdated": "2021-02-02T18:06:24.303Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "expression"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "expression"
+ ],
+ "_id": 36426,
+ "keywords": [
+ {
+ "keyword": "le doigt",
+ "hasLocution": false,
+ "plural": "les doigts",
+ "type": 2
+ },
+ {
+ "keyword": "le majeur",
+ "hasLocution": false,
+ "plural": "les majeurs",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:19:24.919Z",
+ "lastUpdated": "2021-03-20T21:20:08.218Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07608339-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 36432,
+ "keywords": [
+ {
+ "keyword": "Ratatouille",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:19:24.919Z",
+ "lastUpdated": "2021-02-02T18:04:31.877Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "feeling"
+ ],
+ "synsets": [
+ "00149403-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 36434,
+ "keywords": [
+ {
+ "keyword": "devenir sérieux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T16:19:24.919Z",
+ "lastUpdated": "2021-03-20T21:11:53.119Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "building facility",
+ "security and defense"
+ ],
+ "synsets": [
+ "02697285-n",
+ "07279982-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "building facility",
+ "work",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 36435,
+ "keywords": [
+ {
+ "keyword": "bouton d'alarme",
+ "hasLocution": false,
+ "plural": "boutons d'alarme",
+ "type": 2
+ },
+ {
+ "keyword": "bouton d'alarme incendie",
+ "hasLocution": false,
+ "plural": "boutons d'alarme incendie",
+ "type": 2
+ },
+ {
+ "keyword": "boitier d'alarme incendie",
+ "hasLocution": false,
+ "plural": "boitiers d'alarme incendie",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:19:24.919Z",
+ "lastUpdated": "2021-05-31T12:41:07.081Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "psychomotor equipment"
+ ],
+ "synsets": [
+ "04576806-n",
+ "03571509-n"
+ ],
+ "tags": [
+ "object",
+ "psychomotor equipment"
+ ],
+ "_id": 36433,
+ "keywords": [
+ {
+ "keyword": "cale",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "cales"
+ },
+ {
+ "keyword": "plan incliné",
+ "hasLocution": false,
+ "plural": "plans inclinés",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:19:24.919Z",
+ "lastUpdated": "2021-03-20T21:12:59.144Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "communication aid"
+ ],
+ "synsets": [
+ "05162155-n"
+ ],
+ "tags": [
+ "communication",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 36436,
+ "keywords": [
+ {
+ "keyword": "licorne",
+ "hasLocution": false,
+ "plural": "licornes",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:19:24.919Z",
+ "lastUpdated": "2021-03-20T21:08:30.191Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cosmetic",
+ "educational material"
+ ],
+ "synsets": [
+ "04960121-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "cosmetic",
+ "education",
+ "educational material"
+ ],
+ "_id": 36437,
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "Paillettes",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:19:24.919Z",
+ "lastUpdated": "2021-02-02T18:03:02.998Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recycling"
+ ],
+ "synsets": [
+ "00430013-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "environmental science",
+ "recycling"
+ ],
+ "_id": 36439,
+ "keywords": [
+ {
+ "keyword": "réduire",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "diminuer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T16:19:24.920Z",
+ "lastUpdated": "2021-02-02T18:01:57.248Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "catering establishment",
+ "hospitality industry",
+ "traditional dish"
+ ],
+ "synsets": [
+ "04088393-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "catering establishment",
+ "hospitality industry",
+ "work",
+ "tertiary sector",
+ "feeding",
+ "food",
+ "gastronomy",
+ "traditional dish"
+ ],
+ "_id": 36440,
+ "keywords": [
+ {
+ "keyword": "restaurant chinois",
+ "hasLocution": false,
+ "plural": "restaurants chinois",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:19:24.920Z",
+ "lastUpdated": "2022-03-14T12:05:19.226Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "recycling"
+ ],
+ "synsets": [
+ "01164741-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "environmental science",
+ "recycling"
+ ],
+ "_id": 36441,
+ "keywords": [
+ {
+ "keyword": "recycler",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "réutiliser",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T16:19:24.920Z",
+ "lastUpdated": "2021-03-20T21:05:23.864Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gastronomy"
+ ],
+ "synsets": [
+ "07858284-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "gastronomy"
+ ],
+ "_id": 36442,
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "oeufs brouillés",
+ "type": 2
+ },
+ {
+ "keyword": "omelette",
+ "hasLocution": true,
+ "plural": "omelettes",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:19:24.920Z",
+ "lastUpdated": "2021-03-25T21:55:01.809Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "teaching activity",
+ "students"
+ ],
+ "synsets": [
+ "01355093-v",
+ "01999243-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "teaching activity",
+ "students"
+ ],
+ "_id": 36444,
+ "keywords": [
+ {
+ "keyword": "sortir son repas",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enlever son déjeuner",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T16:23:31.123Z",
+ "lastUpdated": "2021-07-10T23:16:44.316Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "06887887-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 36445,
+ "keywords": [
+ {
+ "keyword": "feu jaune",
+ "hasLocution": false,
+ "plural": "feux jaunes",
+ "type": 2
+ },
+ {
+ "keyword": "feu orange",
+ "hasLocution": false,
+ "plural": "feux oranges",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.123Z",
+ "lastUpdated": "2021-07-15T20:19:18.899Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "06719615-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 36416,
+ "keywords": [
+ {
+ "keyword": "Médaille de bronze",
+ "hasLocution": false,
+ "plural": "médailles de bronze",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:15:05.789Z",
+ "lastUpdated": "2021-02-02T18:10:48.154Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "communication aid"
+ ],
+ "synsets": [
+ "01355093-v",
+ "01999243-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "augmentative communication",
+ "communication aid"
+ ],
+ "_id": 36447,
+ "keywords": [
+ {
+ "keyword": "sortir le code de communication",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-03-20T21:01:13.429Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "06887441-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 36448,
+ "keywords": [
+ {
+ "keyword": "feu vert",
+ "hasLocution": true,
+ "plural": "feux verts",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-03-20T20:59:52.170Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traffic signal"
+ ],
+ "synsets": [
+ "06887547-n"
+ ],
+ "tags": [
+ "movement",
+ "traffic",
+ "road safety",
+ "traffic signal"
+ ],
+ "_id": 36446,
+ "keywords": [
+ {
+ "keyword": "feu rouge",
+ "hasLocution": true,
+ "plural": "feux rouges",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.123Z",
+ "lastUpdated": "2021-03-20T21:01:54.406Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious event",
+ "islamism"
+ ],
+ "synsets": [
+ "01245636-n"
+ ],
+ "tags": [
+ "event",
+ "religious event",
+ "religion",
+ "islamism"
+ ],
+ "_id": 36438,
+ "keywords": [
+ {
+ "keyword": "Ramadan",
+ "hasLocution": false,
+ "type": 1
+ }
+ ],
+ "created": "2019-12-15T16:19:24.920Z",
+ "lastUpdated": "2021-02-02T18:02:17.104Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "02130695-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 36449,
+ "keywords": [
+ {
+ "keyword": "sérieux",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "grave",
+ "hasLocution": false,
+ "type": 4,
+ "plural": "graves"
+ },
+ {
+ "keyword": "important",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "importants"
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-03-20T20:59:07.403Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "sexuality"
+ ],
+ "synsets": [],
+ "tags": [
+ "work",
+ "professional",
+ "sexuality"
+ ],
+ "_id": 36452,
+ "keywords": [
+ {
+ "keyword": "sexologue",
+ "plural": "sexologues",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-02-02T18:00:07.636Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "sexuality"
+ ],
+ "synsets": [],
+ "tags": [
+ "work",
+ "professional",
+ "sexuality"
+ ],
+ "_id": 36453,
+ "keywords": [
+ {
+ "keyword": "sexologue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sexologues"
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-02-02T17:59:42.310Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "sexuality"
+ ],
+ "synsets": [],
+ "tags": [
+ "work",
+ "professional",
+ "sexuality"
+ ],
+ "_id": 36451,
+ "keywords": [
+ {
+ "keyword": "sexologue",
+ "hasLocution": false,
+ "plural": "sexologues",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-02-02T18:00:28.149Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "theater",
+ "show"
+ ],
+ "synsets": [
+ "07019235-n"
+ ],
+ "tags": [
+ "scenic art",
+ "theater",
+ "show",
+ "leisure",
+ "work"
+ ],
+ "_id": 36455,
+ "keywords": [
+ {
+ "keyword": "spectacle de lumière noire",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-07-15T20:18:27.413Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device",
+ "physiotherapy equipment"
+ ],
+ "synsets": [],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device",
+ "physiotherapy equipment"
+ ],
+ "_id": 36456,
+ "keywords": [
+ {
+ "hasLocution": false,
+ "plural": "électrostimulateurs",
+ "type": 2,
+ "keyword": "électrostimulateur"
+ },
+ {
+ "hasLocution": false,
+ "keyword": "neurostimulation électrique transcutanée",
+ "plural": "neurostimulations électriques transcutanées",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "plural": "TENS",
+ "keyword": "TENS",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-07-16T07:30:54.457Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "psychology",
+ "therapy"
+ ],
+ "synsets": [
+ "06664208-n"
+ ],
+ "tags": [
+ "psychology",
+ "therapy"
+ ],
+ "_id": 36457,
+ "keywords": [
+ {
+ "keyword": "thérapie de couple",
+ "plural": "thérapies de couple",
+ "type": 2,
+ "hasLocution": false
+ },
+ {
+ "keyword": "thérapie conjugale",
+ "hasLocution": false,
+ "plural": "thérapies conjugales",
+ "type": 2
+ },
+ {
+ "type": 2,
+ "keyword": "médiation de couple",
+ "hasLocution": false,
+ "plural": "médiations de couple"
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-07-29T00:22:32.673Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "sexuality"
+ ],
+ "synsets": [],
+ "tags": [
+ "work",
+ "professional",
+ "sexuality"
+ ],
+ "_id": 36450,
+ "keywords": [
+ {
+ "keyword": "sexologue",
+ "plural": "sexologues",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-02-02T18:00:51.994Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "traditional game"
+ ],
+ "synsets": [
+ "07487308-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "traditional game"
+ ],
+ "_id": 36454,
+ "keywords": [
+ {
+ "keyword": "jeu de la corde",
+ "hasLocution": true,
+ "plural": "jeux de la corde",
+ "type": 2
+ },
+ {
+ "keyword": "tir à la corde",
+ "hasLocution": false,
+ "plural": "tirs à la corde",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-07-15T20:18:36.591Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "psychology",
+ "therapy"
+ ],
+ "synsets": [
+ "06664208-n"
+ ],
+ "tags": [
+ "psychology",
+ "therapy"
+ ],
+ "_id": 36458,
+ "keywords": [
+ {
+ "keyword": "thérapie de couple",
+ "plural": "thérapies de couple",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-07-15T20:18:01.943Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "psychology"
+ ],
+ "synsets": [
+ "06664208-n"
+ ],
+ "tags": [
+ "psychology"
+ ],
+ "_id": 36460,
+ "keywords": [
+ {
+ "keyword": "thérapie de couple",
+ "hasLocution": false,
+ "plural": "thérapies de couple",
+ "type": 2
+ },
+ {
+ "keyword": "thérapie conjugale",
+ "hasLocution": false,
+ "plural": "thérapies conjugales",
+ "type": 2
+ },
+ {
+ "keyword": "médiation de couple",
+ "hasLocution": false,
+ "plural": "médiations de couple"
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-07-29T00:20:13.582Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "psychology",
+ "therapy"
+ ],
+ "synsets": [
+ "06664208-n"
+ ],
+ "tags": [
+ "psychology",
+ "therapy"
+ ],
+ "_id": 36461,
+ "keywords": [
+ {
+ "keyword": "thérapie de couple",
+ "hasLocution": false,
+ "plural": "thérapies de couple",
+ "type": 2
+ },
+ {
+ "keyword": "thérapie conjugale",
+ "hasLocution": false,
+ "plural": "thérapies conjugales",
+ "type": 2
+ },
+ {
+ "keyword": "médiation de couple",
+ "hasLocution": false,
+ "plural": "médiations de couple",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-07-29T00:27:08.198Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "trousseau"
+ ],
+ "synsets": [
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 36463,
+ "keywords": [
+ {
+ "keyword": "magasin de rideaux",
+ "hasLocution": false,
+ "plural": "magasins de rideaux",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.125Z",
+ "lastUpdated": "2021-07-15T20:16:42.021Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "construction"
+ ],
+ "synsets": [
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "work",
+ "secondary sector",
+ "construction"
+ ],
+ "_id": 36464,
+ "keywords": [
+ {
+ "keyword": "magasin de volets",
+ "hasLocution": false,
+ "plural": "magasins de volets",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.125Z",
+ "lastUpdated": "2021-07-15T20:16:34.631Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "trousseau"
+ ],
+ "synsets": [
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "household",
+ "trousseau",
+ "home"
+ ],
+ "_id": 36465,
+ "keywords": [
+ {
+ "keyword": "magasin de linge de maison",
+ "hasLocution": false,
+ "plural": "magasins de linge de maison",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.125Z",
+ "lastUpdated": "2021-07-16T07:27:33.940Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "psychology",
+ "therapy"
+ ],
+ "synsets": [
+ "06664208-n"
+ ],
+ "tags": [
+ "psychology",
+ "therapy"
+ ],
+ "_id": 36462,
+ "keywords": [
+ {
+ "keyword": "thérapie de couple",
+ "hasLocution": false,
+ "plural": "thérapies de couple",
+ "type": 2
+ },
+ {
+ "keyword": "thérapie conjugale",
+ "hasLocution": false,
+ "plural": "thérapies conjugales",
+ "type": 2
+ },
+ {
+ "keyword": "médiation de couple",
+ "hasLocution": false,
+ "plural": "médiations de couple",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.125Z",
+ "lastUpdated": "2021-07-29T00:25:43.224Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy equipment"
+ ],
+ "synsets": [
+ "04398656-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "physiotherapy equipment"
+ ],
+ "_id": 36467,
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "bandes de kinésiologie",
+ "plural": "bandes de kinésiologie",
+ "type": 2
+ },
+ {
+ "keyword": "K tape",
+ "hasLocution": false,
+ "plural": "K tapes",
+ "type": 2
+ },
+ {
+ "keyword": "bandes de couleurs",
+ "hasLocution": false,
+ "plural": "bandes de couleurs",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.125Z",
+ "lastUpdated": "2021-07-16T07:35:08.043Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "commercial building",
+ "regional costume"
+ ],
+ "synsets": [
+ "04209460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "trade",
+ "object",
+ "fashion",
+ "clothes",
+ "regional costume"
+ ],
+ "_id": 36466,
+ "keywords": [
+ {
+ "keyword": "magasin de vêtements de flamenco",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.125Z",
+ "lastUpdated": "2021-07-15T20:15:52.844Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "percussion instrument"
+ ],
+ "synsets": [
+ "01736413-v",
+ "01728928-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "music",
+ "musical instrument",
+ "percussion instrument"
+ ],
+ "_id": 36468,
+ "keywords": [
+ {
+ "keyword": "jouer du tambour",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "sonner le tambour",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T16:23:31.125Z",
+ "lastUpdated": "2021-07-15T20:15:18.599Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking"
+ ],
+ "synsets": [
+ "07699362-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking"
+ ],
+ "_id": 36469,
+ "keywords": [
+ {
+ "keyword": "pain pita",
+ "hasLocution": false,
+ "plural": "pains pitas",
+ "type": 2
+ },
+ {
+ "keyword": "pitas",
+ "hasLocution": false,
+ "plural": "pitas",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.125Z",
+ "lastUpdated": "2021-07-16T07:26:44.810Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hardware"
+ ],
+ "synsets": [
+ "04471850-n"
+ ],
+ "tags": [
+ "computing",
+ "hardware"
+ ],
+ "_id": 36470,
+ "keywords": [
+ {
+ "keyword": "trackball",
+ "hasLocution": false,
+ "plural": "trackballs"
+ },
+ {
+ "keyword": "souris adaptée",
+ "hasLocution": false,
+ "plural": "souris adaptées",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.125Z",
+ "lastUpdated": "2021-05-31T12:33:49.932Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "regional costume"
+ ],
+ "synsets": [
+ "00534073-n",
+ "03241438-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "regional costume"
+ ],
+ "_id": 36471,
+ "keywords": [
+ {
+ "keyword": "robe de flamenco",
+ "hasLocution": false,
+ "plural": "robes de flamenco",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.125Z",
+ "lastUpdated": "2021-03-29T00:06:30.197Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "gender identity"
+ ],
+ "synsets": [
+ "02608655-a"
+ ],
+ "tags": [
+ "sexuality",
+ "gender identity"
+ ],
+ "_id": 36472,
+ "keywords": [
+ {
+ "keyword": "transgenre",
+ "hasLocution": false,
+ "type": 4
+ }
+ ],
+ "created": "2019-12-15T16:23:31.125Z",
+ "lastUpdated": "2021-07-15T20:15:07.689Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "psychology",
+ "therapy"
+ ],
+ "synsets": [
+ "06664208-n"
+ ],
+ "tags": [
+ "psychology",
+ "therapy"
+ ],
+ "_id": 36459,
+ "keywords": [
+ {
+ "keyword": "thérapie de couple",
+ "hasLocution": false,
+ "plural": "thérapies de couple",
+ "type": 2
+ },
+ {
+ "keyword": "thérapie conjugale",
+ "hasLocution": false,
+ "plural": "thérapies conjugales",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "médiation de couple",
+ "plural": "médiations de couple",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.124Z",
+ "lastUpdated": "2021-07-29T00:28:12.522Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "movement",
+ "educational building",
+ "educational_building"
+ ],
+ "synsets": [
+ "01839438-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "education",
+ "building",
+ "place"
+ ],
+ "_id": 36473,
+ "keywords": [
+ {
+ "keyword": "aller à l'école",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "aller",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-15T16:23:31.125Z",
+ "lastUpdated": "2021-07-15T20:14:57.875Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "christmas"
+ ],
+ "synsets": [
+ "07623948-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 36474,
+ "keywords": [
+ {
+ "keyword": "nougat au chocolat",
+ "hasLocution": false,
+ "plural": "nougats au chocolat",
+ "type": 2
+ },
+ {
+ "keyword": "touron au chocolat",
+ "hasLocution": false,
+ "plural": "tourons au chocolat",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.125Z",
+ "lastUpdated": "2021-07-16T07:25:34.809Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "cinema"
+ ],
+ "synsets": [
+ "08326684-n"
+ ],
+ "tags": [
+ "scenic art",
+ "cinema",
+ "show"
+ ],
+ "_id": 36477,
+ "keywords": [
+ {
+ "keyword": "débat de cinéma",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.126Z",
+ "lastUpdated": "2021-07-15T20:14:44.674Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense"
+ ],
+ "synsets": [
+ "10789727-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 36478,
+ "keywords": [
+ {
+ "keyword": "garde",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "gardes"
+ },
+ {
+ "keyword": "agent de sécurité",
+ "hasLocution": true,
+ "plural": "agents de sécurité",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.126Z",
+ "lastUpdated": "2021-07-15T20:14:14.154Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "security and defense"
+ ],
+ "synsets": [
+ "10789727-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "tertiary sector",
+ "defense",
+ "security"
+ ],
+ "_id": 36479,
+ "keywords": [
+ {
+ "keyword": "gardienne",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "gardiennes"
+ },
+ {
+ "keyword": "agent de sécurité",
+ "hasLocution": true,
+ "plural": "agents de sécurité",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.126Z",
+ "lastUpdated": "2021-07-15T20:14:04.874Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "christmas"
+ ],
+ "synsets": [
+ "07623948-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "event",
+ "popular event",
+ "christmas"
+ ],
+ "_id": 36475,
+ "keywords": [
+ {
+ "keyword": "nougat",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "nougats"
+ },
+ {
+ "keyword": "touron",
+ "hasLocution": false,
+ "plural": "tourons",
+ "type": 2
+ }
+ ],
+ "created": "2019-12-15T16:23:31.125Z",
+ "lastUpdated": "2021-07-16T07:25:05.962Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical treatment"
+ ],
+ "synsets": [
+ "00825545-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "treatment"
+ ],
+ "_id": 36476,
+ "keywords": [
+ {
+ "keyword": "vaccination ",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vaccinations"
+ }
+ ],
+ "created": "2019-12-15T16:23:31.126Z",
+ "lastUpdated": "2021-02-02T17:58:42.150Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "usual verbs",
+ "core vocabulary-communication",
+ "adjective"
+ ],
+ "synsets": [
+ "02610777-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "usual verbs",
+ "core vocabulary",
+ "adjective"
+ ],
+ "_id": 36480,
+ "keywords": [
+ {
+ "keyword": "être",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2019-12-20T15:23:18.670Z",
+ "lastUpdated": "2025-01-08T15:31:03.288Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07728819-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 36443,
+ "keywords": [
+ {
+ "keyword": "tranches d'aubergines",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "aubergine",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "aubergine"
+ }
+ ],
+ "created": "2019-12-15T16:19:24.920Z",
+ "lastUpdated": "2021-03-20T21:02:56.350Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01268418-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 36481,
+ "keywords": [
+ {
+ "keyword": "drôle",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "drôles"
+ },
+ {
+ "keyword": "amusant",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "amusants"
+ }
+ ],
+ "created": "2019-12-26T10:12:19.577Z",
+ "lastUpdated": "2021-07-15T20:13:07.506Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "feeling"
+ ],
+ "synsets": [
+ "01268418-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "feeling",
+ "emotion"
+ ],
+ "_id": 36482,
+ "keywords": [
+ {
+ "keyword": "drôle",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "amusante",
+ "hasLocution": false,
+ "type": 4
+ }
+ ],
+ "created": "2019-12-26T10:12:19.577Z",
+ "lastUpdated": "2021-07-15T20:12:53.933Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "vehicle component",
+ "land transport"
+ ],
+ "synsets": [
+ "01349486-v",
+ "01348685-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "vehicle component",
+ "land transport"
+ ],
+ "_id": 36483,
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 3,
+ "keyword": "ouvrir les portes du bus"
+ }
+ ],
+ "created": "2020-02-03T17:25:48.003Z",
+ "lastUpdated": "2021-07-15T20:12:46.211Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": true,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior",
+ "crime"
+ ],
+ "synsets": [
+ "00077703-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior",
+ "law",
+ "crime"
+ ],
+ "_id": 36484,
+ "keywords": [
+ {
+ "keyword": "étrangler",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:25:48.003Z",
+ "lastUpdated": "2024-12-05T09:42:29.431Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00189224-a",
+ "00276465-r"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 36485,
+ "keywords": [
+ {
+ "keyword": "dormir en classe",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "dormir sur la table",
+ "type": 3,
+ "hasLocution": false
+ }
+ ],
+ "created": "2020-02-03T17:25:48.003Z",
+ "lastUpdated": "2021-07-15T20:11:50.045Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00276465-r",
+ "00189224-a"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 36486,
+ "keywords": [
+ {
+ "keyword": "dormir en classe",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "dormir sur la table",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:25:48.003Z",
+ "lastUpdated": "2021-07-15T20:11:43.037Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear"
+ ],
+ "synsets": [
+ "03302032-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 36487,
+ "keywords": [
+ {
+ "keyword": "espadrille",
+ "hasLocution": false,
+ "plural": "espadrilles",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:25:48.003Z",
+ "lastUpdated": "2021-03-29T00:05:01.253Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07759520-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 36488,
+ "keywords": [
+ {
+ "keyword": "myrtille",
+ "type": 2,
+ "plural": "myrtilles",
+ "hasLocution": false
+ }
+ ],
+ "created": "2020-02-03T17:25:48.003Z",
+ "lastUpdated": "2021-02-02T17:57:23.969Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "disruptive behavior"
+ ],
+ "synsets": [
+ "00014735-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "disruptive behavior"
+ ],
+ "_id": 36489,
+ "keywords": [
+ {
+ "keyword": "dormir en classe",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "dormir sur la table",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:25:48.003Z",
+ "lastUpdated": "2021-07-15T20:11:35.667Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport rules",
+ "adapted sport",
+ "professional"
+ ],
+ "synsets": [
+ "10534022-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport rules",
+ "adapted sport",
+ "work",
+ "professional"
+ ],
+ "_id": 36490,
+ "keywords": [
+ {
+ "keyword": "arbitre de boccia",
+ "hasLocution": false,
+ "plural": "arbitres de boccia",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:25:48.003Z",
+ "lastUpdated": "2021-07-16T08:20:44.919Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport rules",
+ "adapted sport",
+ "professional"
+ ],
+ "synsets": [
+ "10534022-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport rules",
+ "adapted sport",
+ "work",
+ "professional"
+ ],
+ "_id": 36491,
+ "keywords": [
+ {
+ "keyword": "arbitre de boccia",
+ "hasLocution": false,
+ "plural": "arbitres de boccia"
+ }
+ ],
+ "created": "2020-02-03T17:25:48.004Z",
+ "lastUpdated": "2021-07-16T08:21:07.395Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01548431-v",
+ "00337904-n"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 36492,
+ "keywords": [
+ {
+ "keyword": "se mettre à genoux",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "poser un genou à terre",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'agenouiller",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:25:48.004Z",
+ "lastUpdated": "2021-07-15T20:11:22.201Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "architectural element",
+ "building facility"
+ ],
+ "synsets": [
+ "02042202-v",
+ "02156396-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "architecture",
+ "building",
+ "architectural element",
+ "place",
+ "building facility"
+ ],
+ "_id": 36493,
+ "keywords": [
+ {
+ "keyword": "se pencher par la fenêtre",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:25:48.004Z",
+ "lastUpdated": "2021-07-15T20:10:39.748Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basketball"
+ ],
+ "synsets": [
+ "01120867-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "basketball"
+ ],
+ "_id": 36494,
+ "keywords": [
+ {
+ "keyword": "attaquer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "s'opposer",
+ "hasLocution": false
+ }
+ ],
+ "created": "2020-02-03T17:29:44.450Z",
+ "lastUpdated": "2021-07-15T20:10:03.535Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basketball"
+ ],
+ "synsets": [
+ "01086877-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "basketball"
+ ],
+ "_id": 36495,
+ "keywords": [
+ {
+ "keyword": "tirer un panier",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "tirer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:29:44.450Z",
+ "lastUpdated": "2021-07-15T20:09:44.184Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "football"
+ ],
+ "synsets": [
+ "01120867-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "football"
+ ],
+ "_id": 36496,
+ "keywords": [
+ {
+ "keyword": "attaquer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "frapper",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:29:44.450Z",
+ "lastUpdated": "2021-04-11T15:36:09.783Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 36497,
+ "keywords": [
+ {
+ "keyword": "enlever son pyjama",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enlever le pyjama combinaison",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:29:44.450Z",
+ "lastUpdated": "2021-07-16T08:20:02.456Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes"
+ ],
+ "synsets": [
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 36498,
+ "keywords": [
+ {
+ "keyword": "retirer le collant",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enlever le collant",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:29:44.450Z",
+ "lastUpdated": "2021-04-12T20:59:47.377Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "03242695-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 36499,
+ "keywords": [
+ {
+ "keyword": "peignoir",
+ "type": 2,
+ "hasLocution": true,
+ "plural": "peignoirs"
+ },
+ {
+ "keyword": "Robe de chambre",
+ "hasLocution": false,
+ "plural": "robes de chambre",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:29:44.450Z",
+ "lastUpdated": "2021-02-02T17:56:14.789Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "clothes"
+ ],
+ "synsets": [
+ "03823187-n",
+ "03242695-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes"
+ ],
+ "_id": 36500,
+ "keywords": [
+ {
+ "keyword": "robe de chambre",
+ "hasLocution": false,
+ "plural": "robes de chambre",
+ "type": 2
+ },
+ {
+ "keyword": "peignoir",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "peignoirs"
+ }
+ ],
+ "created": "2020-02-03T17:29:44.450Z",
+ "lastUpdated": "2021-04-11T15:34:51.894Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "baking",
+ "gastronomy"
+ ],
+ "synsets": [
+ "07696677-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food",
+ "dessert",
+ "baking",
+ "gastronomy"
+ ],
+ "_id": 36501,
+ "keywords": [
+ {
+ "keyword": "pain à burger",
+ "hasLocution": false,
+ "plural": "pains à burger",
+ "type": 2
+ },
+ {
+ "keyword": "bun",
+ "hasLocution": false,
+ "plural": "buns",
+ "type": 2
+ },
+ {
+ "keyword": "petit pain",
+ "hasLocution": true,
+ "plural": "petits pains",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:29:44.450Z",
+ "lastUpdated": "2024-12-09T11:41:02.058Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "sport material"
+ ],
+ "synsets": [
+ "02876113-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 36502,
+ "keywords": [
+ {
+ "keyword": "chaussure de montagne",
+ "hasLocution": false,
+ "plural": "chaussures de montagne",
+ "type": 2
+ },
+ {
+ "keyword": "chaussure de randonnée",
+ "hasLocution": false,
+ "plural": "chaussures de randonnée",
+ "type": 2
+ },
+ {
+ "keyword": "chaussure de marche",
+ "hasLocution": false,
+ "plural": "chaussures de marche",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:29:44.450Z",
+ "lastUpdated": "2021-04-11T15:31:44.970Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "sport material",
+ "football"
+ ],
+ "synsets": [
+ "03045434-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "leisure",
+ "sport",
+ "sport material",
+ "football"
+ ],
+ "_id": 36503,
+ "keywords": [
+ {
+ "keyword": "chaussure à crampon",
+ "hasLocution": false,
+ "plural": "chaussures à crampon",
+ "type": 2
+ },
+ {
+ "keyword": "chaussure de football",
+ "hasLocution": false,
+ "plural": "chaussures de football",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:29:44.451Z",
+ "lastUpdated": "2021-04-11T15:30:19.868Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medicament",
+ "core vocabulary-knowledge"
+ ],
+ "synsets": [
+ "15113825-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medicament",
+ "core vocabulary"
+ ],
+ "_id": 36504,
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "flacon de vitamines",
+ "plural": "flacons de vitamines",
+ "type": 2
+ },
+ {
+ "keyword": "vitamine",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "vitamines"
+ },
+ {
+ "keyword": "vitamine C",
+ "hasLocution": false,
+ "plural": "vitamines C",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:29:44.451Z",
+ "lastUpdated": "2021-04-11T15:27:22.343Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture",
+ "scenic art",
+ "theater",
+ "cinema",
+ "social event"
+ ],
+ "synsets": [
+ "08665191-n",
+ "04169042-n"
+ ],
+ "tags": [
+ "object",
+ "furniture",
+ "scenic art",
+ "theater",
+ "show",
+ "cinema",
+ "event",
+ "social event"
+ ],
+ "_id": 36505,
+ "keywords": [
+ {
+ "keyword": "siège",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "sièges"
+ },
+ {
+ "keyword": "siège de cinéma",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "sièges de cinéma"
+ },
+ {
+ "keyword": "siège de théâtre",
+ "hasLocution": false,
+ "plural": "sièges de théâtre",
+ "type": 2
+ },
+ {
+ "keyword": "fauteuil de cinéma",
+ "hasLocution": false,
+ "plural": "fauteuils de cinéma",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:39:50.093Z",
+ "lastUpdated": "2024-12-09T11:25:32.420Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "physical exercise"
+ ],
+ "synsets": [
+ "00100659-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "physical exercise"
+ ],
+ "_id": 36506,
+ "keywords": [
+ {
+ "keyword": "Échauffement ",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "échauffements"
+ },
+ {
+ "keyword": "s’échauffer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "échauffer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:39:50.094Z",
+ "lastUpdated": "2021-02-02T17:55:09.098Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "toy"
+ ],
+ "synsets": [
+ "03726538-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "toy"
+ ],
+ "_id": 36507,
+ "keywords": [
+ {
+ "keyword": "bille",
+ "type": 2,
+ "plural": "billes",
+ "hasLocution": false
+ }
+ ],
+ "created": "2020-02-03T17:39:50.094Z",
+ "lastUpdated": "2021-02-02T17:54:18.448Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human response",
+ "christianity"
+ ],
+ "synsets": [
+ "04847636-n",
+ "01091559-n"
+ ],
+ "tags": [
+ "psychology",
+ "human response",
+ "religion",
+ "christianity"
+ ],
+ "_id": 36508,
+ "keywords": [
+ {
+ "keyword": "charité",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "bienveillance",
+ "hasLocution": false,
+ "type": 2
+ },
+ {
+ "keyword": "bienfaisance",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:39:50.094Z",
+ "lastUpdated": "2021-04-12T20:54:30.755Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "accessories",
+ "rome",
+ "costume"
+ ],
+ "synsets": [
+ "03518520-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "accessories",
+ "history",
+ "civilization",
+ "Rome",
+ "clothes",
+ "costume"
+ ],
+ "_id": 36509,
+ "keywords": [
+ {
+ "keyword": "casque romain",
+ "hasLocution": false,
+ "plural": "casques romains",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:39:50.094Z",
+ "lastUpdated": "2024-12-05T06:33:51.619Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "polite set expression"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "expression",
+ "polite set expression"
+ ],
+ "_id": 36510,
+ "keywords": [
+ {
+ "keyword": "check",
+ "hasLocution": false,
+ "plural": "checks",
+ "type": 2
+ },
+ {
+ "keyword": "check de poing",
+ "hasLocution": false,
+ "plural": "checks de poing",
+ "type": 2
+ },
+ {
+ "keyword": "checker",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "faire un check",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:39:50.094Z",
+ "lastUpdated": "2021-07-19T21:23:56.076Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "01999243-v",
+ "01355093-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 36511,
+ "keywords": [
+ {
+ "keyword": "sortir la brosse à cheveux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:39:50.094Z",
+ "lastUpdated": "2021-04-12T20:53:12.336Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hygiene product"
+ ],
+ "synsets": [
+ "01216829-v",
+ "01210022-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 36512,
+ "keywords": [
+ {
+ "keyword": "prendre une lingette",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:39:50.094Z",
+ "lastUpdated": "2021-07-15T20:05:00.625Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "indefinite adjective"
+ ],
+ "synsets": [
+ "02275443-s"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "indefinite adjective"
+ ],
+ "_id": 36513,
+ "keywords": [
+ {
+ "keyword": "quiconque",
+ "hasLocution": false,
+ "type": 6
+ },
+ {
+ "keyword": "n'importe qui",
+ "hasLocution": true,
+ "type": 6
+ },
+ {
+ "keyword": "quelqu'un",
+ "hasLocution": true,
+ "plural": "quelques uns",
+ "type": 6
+ },
+ {
+ "keyword": "quelques",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "quelques"
+ }
+ ],
+ "created": "2020-02-03T17:39:50.094Z",
+ "lastUpdated": "2021-07-15T20:04:42.930Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element"
+ ],
+ "synsets": [
+ "03153393-n",
+ "03225216-n"
+ ],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element"
+ ],
+ "_id": 36514,
+ "keywords": [
+ {
+ "keyword": "dôme",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "dômes"
+ },
+ {
+ "keyword": "coupole",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "coupoles"
+ }
+ ],
+ "created": "2020-02-03T17:39:50.094Z",
+ "lastUpdated": "2021-04-12T20:52:34.720Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07781049-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 36515,
+ "keywords": [
+ {
+ "keyword": "datte",
+ "hasLocution": true,
+ "plural": "dattes",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:39:50.094Z",
+ "lastUpdated": "2021-02-02T17:53:30.716Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basketball"
+ ],
+ "synsets": [
+ "01130221-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "basketball"
+ ],
+ "_id": 36516,
+ "keywords": [
+ {
+ "keyword": "défendre",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:45:09.988Z",
+ "lastUpdated": "2021-02-02T17:51:18.368Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "basketball"
+ ],
+ "synsets": [
+ "00871260-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "basketball"
+ ],
+ "_id": 36517,
+ "keywords": [
+ {
+ "keyword": "s'opposer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "contrer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "contrer un tir",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:45:09.988Z",
+ "lastUpdated": "2021-07-15T20:04:31.285Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response",
+ "object",
+ "feeding",
+ "mode of transport",
+ "educational material",
+ "sport material",
+ "toy"
+ ],
+ "synsets": [
+ "01829179-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response",
+ "object",
+ "feeding",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "education",
+ "educational material",
+ "leisure",
+ "sport",
+ "sport material",
+ "toy"
+ ],
+ "_id": 36518,
+ "keywords": [
+ {
+ "keyword": "vouloir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "désirer",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:45:09.988Z",
+ "lastUpdated": "2025-01-11T07:55:44.063Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "medical device"
+ ],
+ "synsets": [
+ "03176301-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "medical device"
+ ],
+ "_id": 36519,
+ "keywords": [
+ {
+ "keyword": "défibrillateur",
+ "hasLocution": false,
+ "plural": "défibrillateurs",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:45:09.988Z",
+ "lastUpdated": "2021-04-12T20:51:49.581Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom"
+ ],
+ "synsets": [
+ "07493458-n",
+ "00023639-v"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom"
+ ],
+ "_id": 36520,
+ "keywords": [
+ {
+ "keyword": "s'évanouir",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "tomber dans les pommes",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "évanouissement",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "syncope",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:45:09.988Z",
+ "lastUpdated": "2021-07-15T20:04:09.620Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "football"
+ ],
+ "synsets": [
+ "01130221-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "football"
+ ],
+ "_id": 36521,
+ "keywords": [
+ {
+ "keyword": "défendre",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:45:09.988Z",
+ "lastUpdated": "2021-04-12T20:50:20.537Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "04261230-n"
+ ],
+ "tags": [
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 36524,
+ "keywords": [
+ {
+ "keyword": "distributeur de savon",
+ "hasLocution": false,
+ "plural": "distributeurs de savon",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:45:09.988Z",
+ "lastUpdated": "2021-04-12T20:47:51.524Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "routine"
+ ],
+ "synsets": [
+ "04261230-n",
+ "01366351-v",
+ "01539713-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 36525,
+ "keywords": [
+ {
+ "keyword": "mettre du savon",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "lavage de mains",
+ "hasLocution": false,
+ "plural": "lavages de mains",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:45:09.988Z",
+ "lastUpdated": "2021-04-12T20:45:58.043Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "sport rules",
+ "basketball"
+ ],
+ "synsets": [
+ "09861343-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "sport",
+ "sport rules",
+ "basketball"
+ ],
+ "_id": 36526,
+ "keywords": [
+ {
+ "keyword": "entraîneur de basket",
+ "hasLocution": false,
+ "plural": "entraîneurs de basket",
+ "type": 2
+ },
+ {
+ "hasLocution": false,
+ "keyword": "coach",
+ "plural": "coachs",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:45:09.990Z",
+ "lastUpdated": "2021-02-01T18:05:40.795Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "sport rules",
+ "basketball"
+ ],
+ "synsets": [
+ "09861343-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "sport",
+ "sport rules",
+ "basketball"
+ ],
+ "_id": 36527,
+ "keywords": [
+ {
+ "keyword": "coach de basket",
+ "hasLocution": false,
+ "plural": "coach de basket",
+ "type": 2
+ },
+ {
+ "keyword": "entraîneuse de basket",
+ "hasLocution": false,
+ "plural": "entraîneuses de basket",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:45:09.992Z",
+ "lastUpdated": "2021-04-12T20:44:24.223Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cinema"
+ ],
+ "synsets": [],
+ "tags": [
+ "scenic art",
+ "cinema",
+ "show"
+ ],
+ "_id": 36528,
+ "keywords": [
+ {
+ "keyword": "rehausseur",
+ "hasLocution": false,
+ "plural": "rehausseurs",
+ "type": 2
+ },
+ {
+ "keyword": "rehausseur de cinéma ",
+ "hasLocution": false,
+ "plural": "rehausseurs de cinéma ",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:45:09.992Z",
+ "lastUpdated": "2021-04-12T20:41:24.764Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "professional",
+ "sport rules",
+ "football"
+ ],
+ "synsets": [
+ "10742224-n",
+ "09951098-n"
+ ],
+ "tags": [
+ "work",
+ "professional",
+ "leisure",
+ "sport",
+ "sport rules",
+ "football"
+ ],
+ "_id": 36529,
+ "keywords": [
+ {
+ "keyword": "entraîneuse",
+ "hasLocution": false,
+ "plural": "entraîneuses",
+ "type": 2
+ },
+ {
+ "keyword": "sélectionneuse",
+ "hasLocution": false,
+ "plural": "sélectionneuses",
+ "type": 2
+ },
+ {
+ "keyword": "coach",
+ "hasLocution": false,
+ "plural": "coachs",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T17:45:09.992Z",
+ "lastUpdated": "2021-04-12T20:37:07.907Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "tv show"
+ ],
+ "synsets": [
+ "07210735-n"
+ ],
+ "tags": [
+ "communication",
+ "mass media",
+ "tertiary sector",
+ "TV show"
+ ],
+ "_id": 36530,
+ "keywords": [
+ {
+ "keyword": "nterview",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "interviews"
+ }
+ ],
+ "created": "2020-02-03T17:45:09.992Z",
+ "lastUpdated": "2021-03-12T13:31:03.223Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "mass media"
+ ],
+ "synsets": [
+ "00810517-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "mass media"
+ ],
+ "_id": 36531,
+ "keywords": [
+ {
+ "keyword": "interroger",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "interviewer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "faire passer un entretien",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T17:45:09.992Z",
+ "lastUpdated": "2021-04-12T20:33:24.354Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational organization"
+ ],
+ "synsets": [
+ "06663446-n",
+ "09988375-n"
+ ],
+ "tags": [
+ "education",
+ "organization"
+ ],
+ "_id": 36532,
+ "keywords": [
+ {
+ "hasLocution": false,
+ "type": 2,
+ "plural": "équipes d'orientation",
+ "keyword": "équipe d'orientation"
+ },
+ {
+ "hasLocution": false,
+ "plural": "services d'orientation",
+ "keyword": "service d'orientation",
+ "type": 2
+ },
+ {
+ "keyword": "équipe de suivi",
+ "hasLocution": false,
+ "plural": "équipes de suivi"
+ }
+ ],
+ "created": "2020-02-03T17:45:09.992Z",
+ "lastUpdated": "2021-07-18T06:08:30.793Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "physical exercise",
+ "body position"
+ ],
+ "synsets": [
+ "01241074-s",
+ "01242407-s",
+ "01241913-s"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "physical exercise",
+ "human body",
+ "position"
+ ],
+ "_id": 36534,
+ "keywords": [
+ {
+ "keyword": "allongé",
+ "hasLocution": false,
+ "type": 4
+ },
+ {
+ "keyword": "à plat dos",
+ "hasLocution": false,
+ "type": 4
+ }
+ ],
+ "created": "2020-02-03T18:02:26.392Z",
+ "lastUpdated": "2021-07-15T20:03:31.668Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "prevention measure"
+ ],
+ "synsets": [
+ "14338277-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "prevention measure"
+ ],
+ "_id": 36535,
+ "keywords": [
+ {
+ "keyword": "éternuement",
+ "hasLocution": false,
+ "plural": "éternuements",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:02:26.392Z",
+ "lastUpdated": "2021-04-12T20:26:22.756Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "symptom",
+ "prevention measure"
+ ],
+ "synsets": [
+ "14338277-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "symptom",
+ "prevention measure"
+ ],
+ "_id": 36536,
+ "keywords": [
+ {
+ "keyword": "éternuement",
+ "hasLocution": false,
+ "plural": "éternuements",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:02:26.392Z",
+ "lastUpdated": "2021-04-12T20:25:48.359Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "symptom",
+ "prevention measure"
+ ],
+ "synsets": [
+ "00004819-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "health",
+ "medicine",
+ "symptom",
+ "prevention measure"
+ ],
+ "_id": 36537,
+ "keywords": [
+ {
+ "keyword": "éternuer",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:02:26.392Z",
+ "lastUpdated": "2021-04-12T20:23:32.932Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "christianity"
+ ],
+ "synsets": [
+ "05955536-n"
+ ],
+ "tags": [
+ "religion",
+ "christianity"
+ ],
+ "_id": 36538,
+ "keywords": [
+ {
+ "keyword": "foi",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:02:26.392Z",
+ "lastUpdated": "2021-04-12T20:22:47.870Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human value"
+ ],
+ "synsets": [
+ "05037846-n",
+ "05036872-n"
+ ],
+ "tags": [
+ "psychology",
+ "human value"
+ ],
+ "_id": 36539,
+ "keywords": [
+ {
+ "keyword": "force",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "pouvoir",
+ "hasLocution": true,
+ "type": 2
+ },
+ {
+ "keyword": "puissance",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:02:26.392Z",
+ "lastUpdated": "2021-04-12T20:18:35.047Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "fruit"
+ ],
+ "synsets": [
+ "07761442-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "fruit"
+ ],
+ "_id": 36540,
+ "keywords": [
+ {
+ "hasLocution": false,
+ "keyword": "framboise",
+ "type": 2,
+ "plural": "framboises"
+ }
+ ],
+ "created": "2020-02-03T18:02:26.392Z",
+ "lastUpdated": "2021-02-01T18:04:22.829Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "sport event"
+ ],
+ "synsets": [
+ "01102556-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "event",
+ "sport event"
+ ],
+ "_id": 36541,
+ "keywords": [
+ {
+ "keyword": "vaincre",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "gagner",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "battre",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:02:26.392Z",
+ "lastUpdated": "2021-04-12T20:15:10.498Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "02208876-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 36542,
+ "keywords": [
+ {
+ "keyword": "ranger la brosse à cheveux",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:02:26.392Z",
+ "lastUpdated": "2021-04-12T20:12:24.458Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "02208876-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 36543,
+ "keywords": [
+ {
+ "keyword": "ranger le peigne",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:02:26.392Z",
+ "lastUpdated": "2021-04-12T20:09:12.569Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "human response"
+ ],
+ "synsets": [
+ "00965602-v",
+ "01040538-v",
+ "00966726-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "psychology",
+ "human response"
+ ],
+ "_id": 36544,
+ "keywords": [
+ {
+ "keyword": "parler",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "se parler",
+ "hasLocution": false
+ },
+ {
+ "keyword": "bavarder",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "papoter",
+ "hasLocution": false
+ }
+ ],
+ "created": "2020-02-03T18:02:26.392Z",
+ "lastUpdated": "2021-07-15T20:03:17.785Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "football"
+ ],
+ "synsets": [
+ "01075360-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "football"
+ ],
+ "_id": 36545,
+ "keywords": [
+ {
+ "keyword": "jouer au football",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:02:26.392Z",
+ "lastUpdated": "2021-04-12T20:06:35.413Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "law and justice"
+ ],
+ "synsets": [
+ "10247948-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 36546,
+ "keywords": [
+ {
+ "keyword": "jurée",
+ "hasLocution": false,
+ "plural": "jurées",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:02:26.392Z",
+ "lastUpdated": "2021-04-12T20:05:11.366Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "law and justice"
+ ],
+ "synsets": [
+ "10247948-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 36547,
+ "keywords": [
+ {
+ "keyword": "juré",
+ "hasLocution": false,
+ "plural": "jurés",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:02:26.392Z",
+ "lastUpdated": "2021-04-12T20:04:25.277Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "law and justice"
+ ],
+ "synsets": [
+ "02506927-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 36548,
+ "keywords": [
+ {
+ "keyword": "juger",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:02:26.393Z",
+ "lastUpdated": "2021-04-12T20:02:44.765Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "law and justice"
+ ],
+ "synsets": [
+ "02506927-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "law",
+ "justice"
+ ],
+ "_id": 36549,
+ "keywords": [
+ {
+ "keyword": "juger",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:02:26.393Z",
+ "lastUpdated": "2021-04-12T20:02:16.421Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "religious building",
+ "islamism",
+ "monument"
+ ],
+ "synsets": [
+ "09016460-n"
+ ],
+ "tags": [
+ "place",
+ "building",
+ "religion",
+ "islamism",
+ "monument"
+ ],
+ "_id": 36550,
+ "keywords": [
+ {
+ "keyword": "La Mecque",
+ "hasLocution": false,
+ "type": 1
+ }
+ ],
+ "created": "2020-02-03T18:02:26.393Z",
+ "lastUpdated": "2021-04-12T20:00:35.235Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "weapon"
+ ],
+ "synsets": [
+ "04278001-n"
+ ],
+ "tags": [
+ "object",
+ "weapon"
+ ],
+ "_id": 36551,
+ "keywords": [
+ {
+ "keyword": "lance",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "lances"
+ },
+ {
+ "keyword": " javelot",
+ "hasLocution": false,
+ "type": 2,
+ "plural": " javelots"
+ },
+ {
+ "keyword": "pique",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "piques"
+ }
+ ],
+ "created": "2020-02-03T18:02:26.393Z",
+ "lastUpdated": "2021-04-12T20:00:00.738Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hairdresser"
+ ],
+ "synsets": [
+ "01538034-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "work",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 36552,
+ "keywords": [
+ {
+ "keyword": "laver les cheveux",
+ "hasLocution": true,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:13:17.892Z",
+ "lastUpdated": "2021-04-12T19:58:06.584Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product"
+ ],
+ "synsets": [
+ "01389676-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product"
+ ],
+ "_id": 36553,
+ "keywords": [
+ {
+ "keyword": "limer",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "limer les ongles",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "limer les ongles des orteils ",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:13:17.892Z",
+ "lastUpdated": "2021-04-12T19:56:44.095Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "hairdresser"
+ ],
+ "synsets": [],
+ "tags": [
+ "work",
+ "tool",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 36554,
+ "keywords": [
+ {
+ "keyword": "bac à shampoing",
+ "hasLocution": false,
+ "plural": "bacs à shampoing",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:13:17.892Z",
+ "lastUpdated": "2021-04-12T19:52:48.195Z"
+ },
+ {
+ "schematic": false,
+ "sex": true,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "corporal hygiene",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "00035769-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "human body",
+ "hygiene",
+ "corporal hygiene",
+ "object",
+ "hygiene product",
+ "person",
+ "routine"
+ ],
+ "_id": 36555,
+ "keywords": [
+ {
+ "keyword": "s'essuyer",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "essuyer le pipi",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "essuyer l'urine",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:13:17.892Z",
+ "lastUpdated": "2021-07-15T20:02:50.528Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport rules",
+ "football"
+ ],
+ "synsets": [
+ "10283628-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport rules",
+ "football"
+ ],
+ "_id": 36556,
+ "keywords": [
+ {
+ "keyword": "juge de touche",
+ "hasLocution": false,
+ "plural": "juges de touche",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:13:17.892Z",
+ "lastUpdated": "2021-04-12T19:48:50.269Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "sport rules",
+ "football"
+ ],
+ "synsets": [
+ "10283628-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport rules",
+ "football"
+ ],
+ "_id": 36557,
+ "keywords": [
+ {
+ "keyword": "juge de touche",
+ "hasLocution": false,
+ "plural": "juges de touche",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:13:17.892Z",
+ "lastUpdated": "2021-04-12T19:47:25.322Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "electrical appliance",
+ "work tool",
+ "hairdresser"
+ ],
+ "synsets": [],
+ "tags": [
+ "object",
+ "appliance",
+ "electrical appliance",
+ "home",
+ "work",
+ "tool",
+ "tertiary sector",
+ "personal services",
+ "hairdresser"
+ ],
+ "_id": 36558,
+ "keywords": [
+ {
+ "keyword": "tondeuse à cheveux",
+ "hasLocution": false,
+ "plural": "tondeuses à cheveux",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:13:17.892Z",
+ "lastUpdated": "2021-04-12T19:44:33.864Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "atmospheric phenomena",
+ "qualifying adjective"
+ ],
+ "synsets": [
+ "01581362-v",
+ "00215377-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "meteorology",
+ "atmospheric phenomena",
+ "adjective",
+ "qualifying adjective"
+ ],
+ "_id": 36559,
+ "keywords": [
+ {
+ "keyword": "mouillé",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "être mouillé",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "se faire mouiller",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "trempé",
+ "hasLocution": false,
+ "type": 4
+ }
+ ],
+ "created": "2020-02-03T18:13:17.892Z",
+ "lastUpdated": "2024-12-12T15:49:56.990Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "group",
+ "child"
+ ],
+ "synsets": [
+ "09937051-n"
+ ],
+ "tags": [
+ "person",
+ "group",
+ "child"
+ ],
+ "_id": 36560,
+ "keywords": [
+ {
+ "keyword": "enfants",
+ "hasLocution": true,
+ "plural": "enfants",
+ "type": 2
+ },
+ {
+ "keyword": "gamins",
+ "hasLocution": false,
+ "plural": "gamins",
+ "type": 2
+ },
+ {
+ "keyword": "mineurs",
+ "hasLocution": false,
+ "plural": "mineurs",
+ "type": 2
+ },
+ {
+ "keyword": "gosses",
+ "hasLocution": false,
+ "plural": "gosses",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:13:17.892Z",
+ "lastUpdated": "2021-04-12T19:39:52.063Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "body position"
+ ],
+ "synsets": [
+ "08630777-n"
+ ],
+ "tags": [
+ "human body",
+ "position"
+ ],
+ "_id": 36561,
+ "keywords": [
+ {
+ "keyword": "profil",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "profils"
+ },
+ {
+ "keyword": "enfants de profil",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "de profil",
+ "hasLocution": false
+ }
+ ],
+ "created": "2020-02-03T18:13:17.892Z",
+ "lastUpdated": "2021-07-15T20:01:55.675Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "mathematics"
+ ],
+ "synsets": [
+ "00871261-n"
+ ],
+ "tags": [
+ "mathematics"
+ ],
+ "_id": 36562,
+ "keywords": [
+ {
+ "keyword": "opérations",
+ "hasLocution": false,
+ "plural": "opérations",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:13:17.892Z",
+ "lastUpdated": "2021-04-12T19:34:59.748Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "human value",
+ "human response",
+ "education"
+ ],
+ "synsets": [
+ "04647895-n"
+ ],
+ "tags": [
+ "psychology",
+ "human value",
+ "human response",
+ "education"
+ ],
+ "_id": 36563,
+ "keywords": [
+ {
+ "keyword": "patience",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:13:17.892Z",
+ "lastUpdated": "2024-12-19T06:56:16.788Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "cutlery"
+ ],
+ "synsets": [
+ "03029438-n"
+ ],
+ "tags": [
+ "object",
+ "household",
+ "cutlery",
+ "home"
+ ],
+ "_id": 36564,
+ "keywords": [
+ {
+ "keyword": "baguette",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "baguettes"
+ }
+ ],
+ "created": "2020-02-03T18:13:17.892Z",
+ "lastUpdated": "2021-04-12T19:31:41.797Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "architectural element"
+ ],
+ "synsets": [],
+ "tags": [
+ "architecture",
+ "building",
+ "architectural element"
+ ],
+ "_id": 36565,
+ "keywords": [
+ {
+ "keyword": "pendentif",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "pendentifs"
+ }
+ ],
+ "created": "2020-02-03T18:13:17.892Z",
+ "lastUpdated": "2021-04-12T19:30:33.364Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "costume"
+ ],
+ "synsets": [
+ "04591493-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "clothes",
+ "costume"
+ ],
+ "_id": 36566,
+ "keywords": [
+ {
+ "keyword": "perruque",
+ "type": 2,
+ "plural": "perruques",
+ "hasLocution": false
+ }
+ ],
+ "created": "2020-02-03T18:13:17.893Z",
+ "lastUpdated": "2021-02-01T18:02:55.475Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "07774558-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 36567,
+ "keywords": [
+ {
+ "keyword": "cornichon",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "cornichons"
+ }
+ ],
+ "created": "2020-02-03T18:13:17.893Z",
+ "lastUpdated": "2021-04-12T19:29:02.330Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "childcare"
+ ],
+ "synsets": [
+ "03831453-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "babycare"
+ ],
+ "_id": 36568,
+ "keywords": [
+ {
+ "keyword": "téterelle",
+ "hasLocution": false,
+ "plural": "téterelles",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:13:17.893Z",
+ "lastUpdated": "2021-04-12T19:26:14.753Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "cosmetic",
+ "hygiene product"
+ ],
+ "synsets": [
+ "01365439-v",
+ "01366185-v",
+ "00042667-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "cosmetic",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene"
+ ],
+ "_id": 36569,
+ "keywords": [
+ {
+ "keyword": "vernir les ongles de pied ",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre du vernis sur les ongles de pied",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:13:17.893Z",
+ "lastUpdated": "2021-04-12T19:23:44.823Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "physiotherapy equipment"
+ ],
+ "synsets": [],
+ "tags": [
+ "health",
+ "medicine",
+ "medical equipment",
+ "physiotherapy equipment"
+ ],
+ "_id": 36570,
+ "keywords": [
+ {
+ "keyword": "station-debout",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "stations-debout"
+ },
+ {
+ "keyword": "station-debout dorsale",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "stations-debout dorsales"
+ },
+ {
+ "keyword": "appareil de station-debout",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "appareils de stations-debout"
+ }
+ ],
+ "created": "2020-02-03T18:21:04.572Z",
+ "lastUpdated": "2021-07-06T17:32:19.936Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming",
+ "routine"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming",
+ "person",
+ "routine"
+ ],
+ "_id": 36571,
+ "keywords": [
+ {
+ "keyword": "mettre le maillot de bain",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre le caleçon de bain",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enfiler le maillot de bain",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:21:04.572Z",
+ "lastUpdated": "2021-04-12T19:20:35.212Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming",
+ "routine"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming",
+ "person",
+ "routine"
+ ],
+ "_id": 36572,
+ "keywords": [
+ {
+ "keyword": "mettre le maillot de bain",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enfiler le maillot de bain",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:21:04.572Z",
+ "lastUpdated": "2021-04-12T19:17:55.093Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 36573,
+ "keywords": [
+ {
+ "keyword": "mettre la chaussette",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enfiler la chaussette",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:21:04.572Z",
+ "lastUpdated": "2021-04-12T19:15:12.179Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "students"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "education",
+ "students"
+ ],
+ "_id": 36574,
+ "keywords": [
+ {
+ "keyword": "mettre sa blouse",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enfiler sa blouse",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:21:04.572Z",
+ "lastUpdated": "2021-07-15T20:01:43.826Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "footwear"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "footwear"
+ ],
+ "_id": 36575,
+ "keywords": [
+ {
+ "keyword": "mettre ses bottes",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enfiler ses bottes",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:21:04.572Z",
+ "lastUpdated": "2021-07-15T20:01:33.887Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories",
+ "routine"
+ ],
+ "synsets": [
+ "00050369-v",
+ "00141452-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories",
+ "person",
+ "routine"
+ ],
+ "_id": 36576,
+ "keywords": [
+ {
+ "keyword": "mettre son écharpe",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enrouler son écharpe",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:21:04.572Z",
+ "lastUpdated": "2021-07-15T20:01:13.491Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 36577,
+ "keywords": [
+ {
+ "keyword": "mettre sa casquette",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:21:04.572Z",
+ "lastUpdated": "2021-07-15T20:01:01.410Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "psychology",
+ "hospital room"
+ ],
+ "synsets": [
+ "10509529-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "psychology",
+ "medical center",
+ "place",
+ "building",
+ "room"
+ ],
+ "_id": 36578,
+ "keywords": [
+ {
+ "keyword": "psychologue clinicien",
+ "hasLocution": false,
+ "plural": "psychologues cliniciens",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:21:04.572Z",
+ "lastUpdated": "2023-03-28T07:53:54.065Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming",
+ "routine"
+ ],
+ "synsets": [
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming",
+ "person",
+ "routine"
+ ],
+ "_id": 36579,
+ "keywords": [
+ {
+ "keyword": "enlever son maillot de bain",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "quitter son maillot de bain",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "retirer son maillot de bain",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:21:04.572Z",
+ "lastUpdated": "2021-07-15T20:00:35.540Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 36581,
+ "keywords": [
+ {
+ "keyword": "enlever sa chaussette",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:21:04.572Z",
+ "lastUpdated": "2021-07-15T20:00:26.009Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "accessories"
+ ],
+ "synsets": [
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "accessories"
+ ],
+ "_id": 36582,
+ "keywords": [
+ {
+ "keyword": "enlever sa casquette",
+ "hasLocution": false
+ }
+ ],
+ "created": "2020-02-03T18:21:04.572Z",
+ "lastUpdated": "2021-06-07T06:28:30.164Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "vegetable"
+ ],
+ "synsets": [
+ "11915427-n",
+ "07751663-n",
+ "11915561-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "plant-based food",
+ "vegetable"
+ ],
+ "_id": 36583,
+ "keywords": [
+ {
+ "hasLocution": true,
+ "keyword": "radis",
+ "plural": "radis",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:21:04.572Z",
+ "lastUpdated": "2021-02-01T18:01:59.176Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "medical test"
+ ],
+ "synsets": [
+ "10523799-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 36584,
+ "keywords": [
+ {
+ "keyword": "Radiologue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "radiologues"
+ }
+ ],
+ "created": "2020-02-03T18:21:04.573Z",
+ "lastUpdated": "2021-02-01T18:01:02.696Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "health personnel",
+ "sanitary professional",
+ "medical test"
+ ],
+ "synsets": [
+ "10523799-n"
+ ],
+ "tags": [
+ "health",
+ "medicine",
+ "professional",
+ "work",
+ "medical procedure",
+ "medical test"
+ ],
+ "_id": 36585,
+ "keywords": [
+ {
+ "keyword": "adiologue",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "radiologues"
+ }
+ ],
+ "created": "2020-02-03T18:21:04.573Z",
+ "lastUpdated": "2021-06-26T14:05:40.369Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "ultra-processed food"
+ ],
+ "synsets": [
+ "07699531-n"
+ ],
+ "tags": [
+ "feeding",
+ "food",
+ "ultra-processed food"
+ ],
+ "_id": 36586,
+ "keywords": [
+ {
+ "keyword": "tranches de pain",
+ "hasLocution": false,
+ "plural": "tranches de pain",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:21:04.573Z",
+ "lastUpdated": "2021-04-17T08:02:40.916Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "football"
+ ],
+ "synsets": [
+ "01113439-v",
+ "02326737-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "football"
+ ],
+ "_id": 36587,
+ "keywords": [
+ {
+ "keyword": "prendre la balle",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "intercepter la balle",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:21:04.573Z",
+ "lastUpdated": "2021-07-15T20:00:17.026Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "political representation",
+ "public administration"
+ ],
+ "synsets": [
+ "08328212-n",
+ "02860924-n"
+ ],
+ "tags": [
+ "work",
+ "tertiary sector",
+ "political representation",
+ "public administration"
+ ],
+ "_id": 36589,
+ "keywords": [
+ {
+ "keyword": "assemblée",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "assemblées"
+ },
+ {
+ "keyword": "conseil municipal",
+ "hasLocution": false,
+ "plural": "conseils municipaux",
+ "type": 2
+ },
+ {
+ "keyword": "salle plénière",
+ "hasLocution": false,
+ "plural": "salles plénières",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-06-07T06:28:12.773Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "hygiene product",
+ "routine"
+ ],
+ "synsets": [
+ "01355093-v",
+ "01999243-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "hygiene product",
+ "hygiene",
+ "corporal hygiene",
+ "person",
+ "routine"
+ ],
+ "_id": 36590,
+ "keywords": [
+ {
+ "keyword": "prendre son peigne",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-07-15T20:00:03.868Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "health sciences"
+ ],
+ "synsets": [
+ "13946812-n",
+ "14471374-n"
+ ],
+ "tags": [
+ "health"
+ ],
+ "_id": 36591,
+ "keywords": [
+ {
+ "keyword": "santé",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "santés"
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-03-14T22:06:28.215Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "educational task",
+ "routine"
+ ],
+ "synsets": [
+ "01545905-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "education",
+ "educational task",
+ "person",
+ "routine"
+ ],
+ "_id": 36592,
+ "keywords": [
+ {
+ "keyword": "temps de parole",
+ "hasLocution": false,
+ "plural": "temps de parole",
+ "type": 2
+ },
+ {
+ "keyword": "s'assoir en demi-cercle",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "s'asseoir en demi-cercle",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "temps de groupe",
+ "hasLocution": false,
+ "plural": "temps de groupe",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2024-12-09T06:39:13.967Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "02021901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 36593,
+ "keywords": [
+ {
+ "keyword": "monter dans le bus",
+ "hasLocution": false
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-07-15T19:59:41.241Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "02021901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 36594,
+ "keywords": [
+ {
+ "keyword": "monter dans le bus",
+ "hasLocution": false
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-07-15T19:59:35.276Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "land transport",
+ "road safety"
+ ],
+ "synsets": [
+ "02021901-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "movement",
+ "traffic",
+ "mode of transport",
+ "land transport",
+ "road safety"
+ ],
+ "_id": 36595,
+ "keywords": [
+ {
+ "keyword": "monter dans le bus",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-07-15T19:59:28.911Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 36596,
+ "keywords": [
+ {
+ "keyword": "mettre ses chaussettes",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "mettre ses collants",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enfiler ses chaussettes",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enfiler ses collants",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-07-15T19:59:17.977Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "clothes",
+ "routine"
+ ],
+ "synsets": [
+ "00050369-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "object",
+ "fashion",
+ "clothes",
+ "person",
+ "routine"
+ ],
+ "_id": 36597,
+ "keywords": [
+ {
+ "keyword": "mettre son pyjama",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enfiler son pyjama combinaison",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-07-15T23:30:51.015Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": true,
+ "downloads": 0,
+ "categories": [
+ "qualifying adjective",
+ "symptom",
+ "body sensation"
+ ],
+ "synsets": [],
+ "tags": [
+ "communication",
+ "language",
+ "adjective",
+ "qualifying adjective",
+ "health",
+ "medicine",
+ "symptom",
+ "human body",
+ "body sensation"
+ ],
+ "_id": 36598,
+ "keywords": [
+ {
+ "keyword": "en sueur",
+ "hasLocution": true,
+ "type": 4
+ },
+ {
+ "keyword": "transpirante",
+ "hasLocution": false,
+ "type": 4
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-05-31T10:46:43.053Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "sport material"
+ ],
+ "synsets": [
+ "03266775-n"
+ ],
+ "tags": [
+ "leisure",
+ "sport",
+ "sport material"
+ ],
+ "_id": 36599,
+ "keywords": [
+ {
+ "keyword": "bouchon d'oreille",
+ "plural": "bouchons d'oreille",
+ "hasLocution": false,
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-05-04T15:28:01.133Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": true,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "core vocabulary-communication",
+ "human response",
+ "education"
+ ],
+ "synsets": [
+ "02731589-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "core vocabulary",
+ "psychology",
+ "human response",
+ "education"
+ ],
+ "_id": 36600,
+ "keywords": [
+ {
+ "keyword": "patient",
+ "hasLocution": true,
+ "type": 4,
+ "plural": "patients"
+ },
+ {
+ "keyword": "être patient",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "patienter",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "avoir de la patience",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2024-12-19T06:55:58.490Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "routine"
+ ],
+ "synsets": [
+ "01450719-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "person",
+ "routine"
+ ],
+ "_id": 36601,
+ "keywords": [
+ {
+ "keyword": "tirer la chasse d'eau",
+ "hasLocution": true,
+ "type": 3
+ },
+ {
+ "keyword": "tirer la chasse",
+ "hasLocution": false,
+ "type": 3
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-03-14T22:05:21.958Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "educational material"
+ ],
+ "synsets": [
+ "03006695-n"
+ ],
+ "tags": [
+ "education",
+ "educational material"
+ ],
+ "_id": 36602,
+ "keywords": [
+ {
+ "keyword": "craie",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "craies"
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-03-14T22:03:23.251Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "furniture"
+ ],
+ "synsets": [
+ "04467144-n"
+ ],
+ "tags": [
+ "object",
+ "furniture"
+ ],
+ "_id": 36603,
+ "keywords": [
+ {
+ "keyword": "barre de serviette",
+ "hasLocution": false,
+ "plural": "barres de serviette",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-06-07T06:27:05.124Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "work tool",
+ "carpentry"
+ ],
+ "synsets": [
+ "03233947-n"
+ ],
+ "tags": [
+ "work",
+ "tool",
+ "secondary sector",
+ "carpentry"
+ ],
+ "_id": 36604,
+ "keywords": [
+ {
+ "keyword": "cheville",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "chevilles"
+ },
+ {
+ "keyword": "cheville en bois",
+ "hasLocution": false,
+ "plural": "chevilles en bois",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-03-14T22:02:06.716Z"
+ },
+ {
+ "schematic": true,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "animal housing",
+ "horse riding",
+ "equine-assisted therapy"
+ ],
+ "synsets": [
+ "04302017-n"
+ ],
+ "tags": [
+ "animal",
+ "animal housing",
+ "leisure",
+ "sport",
+ "horse riding",
+ "animal-assisted therapy",
+ "equine-assisted therapy"
+ ],
+ "_id": 36605,
+ "keywords": [
+ {
+ "keyword": "étable",
+ "hasLocution": true,
+ "type": 2,
+ "plural": "étables"
+ },
+ {
+ "keyword": "écurie",
+ "hasLocution": false,
+ "type": 2,
+ "plural": "écuries"
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2021-05-04T15:27:05.573Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": false,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "footwear",
+ "workwear"
+ ],
+ "synsets": [
+ "03051675-n"
+ ],
+ "tags": [
+ "object",
+ "fashion",
+ "footwear",
+ "work",
+ "clothes",
+ "workwear"
+ ],
+ "_id": 36606,
+ "keywords": [
+ {
+ "keyword": "sabot",
+ "hasLocution": true,
+ "plural": "sabots",
+ "type": 2
+ }
+ ],
+ "created": "2020-02-03T18:51:38.299Z",
+ "lastUpdated": "2022-12-06T15:48:27.938Z"
+ },
+ {
+ "schematic": false,
+ "sex": false,
+ "violence": false,
+ "aac": false,
+ "aacColor": false,
+ "skin": true,
+ "hair": false,
+ "downloads": 0,
+ "categories": [
+ "verb",
+ "swimming",
+ "routine"
+ ],
+ "synsets": [
+ "00050171-v"
+ ],
+ "tags": [
+ "communication",
+ "language",
+ "verb",
+ "leisure",
+ "sport",
+ "swimming",
+ "person",
+ "routine"
+ ],
+ "_id": 36607,
+ "keywords": [
+ {
+ "keyword": "retirer le maillot de bain ",
+ "hasLocution": false,
+ "type": 3
+ },
+ {
+ "keyword": "enlever le maillot de bain",
+ "hasLocution": false
+ }
+ ],
+ "crea