Interface ContentTypeField

Definition of a content type field

interface ContentTypeField {
    allowedResources?: ContentTypeAllowedResources[];
    disabled: boolean;
    id: string;
    items?: FieldItem;
    linkType?: string;
    localized: boolean;
    name: string;
    omitted: boolean;
    required: boolean;
    type: ContentTypeFieldType;
    validations: ContentTypeFieldValidation[];
}

Properties

allowedResources?: ContentTypeAllowedResources[]
disabled: boolean
id: string
items?: FieldItem
linkType?: string
localized: boolean
name: string
omitted: boolean
required: boolean