Entity Languages
The entity_languages table contains data about languages entities speak that are present in the organization.
This table can be used to determine which languages an entity speaks and an entity's preferred language, as well as metadata about the language preference such as when it was created.
Columns
| Column Name | Description | Type | Nullable |
|---|---|---|---|
| id | The numerical identifier of the object. | INT8 | No |
| entity_id | The numerical identifier of the entity this language relates to. Relates to the id column in the entities table. |
INT8 | No |
| language_code | The two digit ISO 639 language code of this language. For example, en for English. |
VARCHAR | No |
| preferred | Whether this language is the preferred language for the entity. | BOOL | Yes |
| created_at | The UTC timestamp when this object was created. | TIMESTAMP | No |
| updated_at | The UTC timestamp when this object was updated. | TIMESTAMP | No |