ContentTypeProps: {
    description: string;
    displayField: string;
    fields: ContentFields[];
    metadata?: ContentTypeMetadata;
    name: string;
    sys: BasicMetaSysProps & {
        environment: SysLink;
        firstPublishedAt?: string;
        publishedCounter?: number;
        publishedVersion?: number;
        space: SysLink;
    };
}

Type declaration

  • description: string
  • displayField: string

    Field used as the main display field for Entries

  • fields: ContentFields[]

    All the fields contained in this Content Type

  • Optional metadata?: ContentTypeMetadata
  • name: string
  • sys: BasicMetaSysProps & {
        environment: SysLink;
        firstPublishedAt?: string;
        publishedCounter?: number;
        publishedVersion?: number;
        space: SysLink;
    }