Interface EntitySys

System managed metadata for entities

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

Hierarchy (view full)

Properties

contentSourceMaps?: ContentSourceMaps
contentSourceMapsLookup?: ContentSourceMapsLookup
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: string
updatedAt: `${number}-${number}-${number}T${number}:${number}:${number}Z`