Interface EntrySys

System managed metadata for entries

interface EntrySys {
    contentSourceMaps?: ContentSourceMaps;
    contentSourceMapsLookup?: ContentSourceMapsLookup;
    contentType: {
        sys: ContentTypeLink;
    };
    createdAt: `${number}-${number}-${number}T${number}:${number}:${number}Z`;
    environment: {
        sys: EnvironmentLink;
    };
    id: string;
    locale?: string;
    revision: number;
    space: {
        sys: SpaceLink;
    };
    type: "Entry";
    updatedAt: `${number}-${number}-${number}T${number}:${number}:${number}Z`;
}

Hierarchy (view full)

Properties

contentSourceMaps?: ContentSourceMaps
contentSourceMapsLookup?: ContentSourceMapsLookup
contentType: {
    sys: ContentTypeLink;
}

Type declaration

createdAt: `${number}-${number}-${number}T${number}:${number}:${number}Z`
environment: {
    sys: EnvironmentLink;
}

Type declaration

id: string
locale?: string
revision: number
space: {
    sys: SpaceLink;
}

Type declaration

type: "Entry"
updatedAt: `${number}-${number}-${number}T${number}:${number}:${number}Z`