Concepts
Content type data types
Data types for Built.js themes and plugin content types.
The data types available for a Built.js Content Type are all the common data-types plus the following:
relation
A relation describes a relationship between this content type and another.
Property | Description | Required |
---|---|---|
type | The data type | true |
target | The name of the relation content type. | true |
relation | oneToOne , manyToOne or oneToMany | true |
required | Determines if value is required. Default: false | false |
uid
A data type for slugs which is typically used to create a unique URL.
The slug
field of a Content Type uses this data type and is required for every Content Type.
Property | Description | Required |
---|---|---|
type | The data type | true |
targetField | The name of the field to create the slug from. | true |
required | Determines if value is required. | true |