AutoBE
    Preparing search index...

    Complete hackathon information including system-generated metadata.

    Extends the creation properties with system-generated fields that uniquely identify the hackathon and track its creation timestamp. This interface represents the full hackathon entity as stored and retrieved from the system.

    interface ISummary {
        closed_at: string & Format<"date-time">;
        code: string;
        created_at: string & Format<"date-time">;
        id: string & Format<"uuid">;
        name: string;
        opened_at: string & Format<"date-time">;
    }

    Hierarchy (View Summary)

    Index

    Properties

    closed_at: string & Format<"date-time">

    Scheduled end time for the hackathon.

    ISO 8601 formatted date-time string indicating when the hackathon event officially concludes and new submissions are no longer accepted.

    code: string

    Unique code identifier for the hackathon.

    A human-readable code that serves as an alternative identifier for the hackathon, often used for participant registration, URL routing, or event references.

    created_at: string & Format<"date-time">

    Timestamp when the hackathon was created in the system.

    ISO 8601 formatted date-time string indicating when this hackathon event was registered in the AutoBE platform, useful for audit trails and event management.

    id: string & Format<"uuid">

    Unique identifier for the hackathon event.

    A UUID that uniquely identifies this hackathon instance across the entire AutoBE platform, enabling precise tracking and reference of specific events.

    name: string

    Display name of the hackathon event.

    The human-friendly title of the hackathon that appears in user interfaces, event listings, and participant communications.

    opened_at: string & Format<"date-time">

    Scheduled start time for the hackathon.

    ISO 8601 formatted date-time string indicating when the hackathon event officially begins and participants can start their development sessions.