The different kinds of top level entities you can find in Contentful
Type Definitions
Asset #
Properties:
Name | Type | Description | |||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sys |
Entities.Sys | Standard system metadata with additional entry specific properties
Properties
|
|||||||||||||||||||||||||||
fields |
Object | Object with content for each field
Properties
|
|||||||||||||||||||||||||||
toPlainObject() |
function | Returns this Asset as a plain JS object |
- Source:
AssetCollection #
Properties:
Name | Type | Description |
---|---|---|
total |
number | |
skip |
number | |
limit |
number | |
items |
Array.<Entities.Asset> | |
toPlainObject() |
function | Returns this Asset collection as a plain JS object |
- Source:
ContentType #
Properties:
Name | Type | Description |
---|---|---|
sys |
Entities.Sys | System metadata |
name |
string | |
description |
string | |
displayField |
string | Field used as the main display field for Entries |
Array |
string | All the fields contained in this Content Type |
toPlainObject() |
function | Returns this Content Type as a plain JS object |
- Source:
ContentTypeCollection #
Properties:
Name | Type | Description |
---|---|---|
total |
number | |
skip |
number | |
limit |
number | |
items |
Array.<Entities.ContentType> | |
toPlainObject() |
function | Returns this Content Type collection as a plain JS object |
- Source:
Entry #
Properties:
Name | Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sys |
Entities.Sys | Standard system metadata with additional entry specific properties
Properties
|
||||||||||||
fields |
Object.<EntryFields.Field> | Object with content for each field | ||||||||||||
toPlainObject() |
function | Returns this Entry as a plain JS object |
- Source:
EntryCollection #
Properties:
Name | Type | Attributes | Description |
---|---|---|---|
total |
number | ||
skip |
number | ||
limit |
number | ||
items |
Array.<Entities.Entry> | ||
errors |
Array.<Object> |
<optional> |
Array of errors that might occur when retrieving entries. |
includes |
Object.<Array> |
<optional> |
Object with arrays of includes for Entries and Assets. This will be present if resolveLinks is on, and any linked entries or assets exist. Those links will be resolved in the Entries present in the items array, but they are also present here in raw form. |
toPlainObject() |
function | Returns this Entry collection as a plain JS object | |
stringifySafe(replacer,space) |
function | Stringifies the entry collection, accounting for circular references. Circular references will be replaced with just a Link object, with a circular property set to true . See MDN and json-stringify-safe for more details on the arguments this method can take. |
- Source:
Field #
A Field in an Entry can have one of the following types that can be defined in Contentful. See Field Types for more details.
- Type:
- EntryFields.Symbol | EntryFields.Text | EntryFields.Integer | EntryFields.Number | EntryFields.Date | EntryFields.Boolean | EntryFields.Location | Entities.Link | Array.<(EntryFields.Symbol|Entities.Link)> | Object
- Source:
Link #
Link to another entity. See Links for more details.
Properties:
Name | Type | Description |
---|---|---|
type |
string | type of this entity. Always link. |
id |
string | |
linkType |
string | type of this link. If defined, either Entry or Asset |
- Source:
Space #
Properties:
Name | Type | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
sys |
Object | System metadata
Properties
|
|||||||||
name |
string | Space name | |||||||||
locales |
Array.<string> | Array with locale codes | |||||||||
toPlainObject() |
function | Returns this Space as a plain JS object |
- Source:
Sys #
System metadata. See Common Resource Attributes for more details.
Properties:
Name | Type | Description |
---|---|---|
type |
string | |
id |
string | |
space |
Entities.Link | |
createdAt |
string | |
updatedAt |
string | |
revision |
number |
- Source: