AutoBE
    Preparing search index...

    Input properties required to create a new hackathon event.

    Defines the essential information needed to register and configure a new hackathon in the AutoBE system, including identification, naming, and scheduling parameters.

    interface ICreate {
        closed_at: string & Format<"date-time">;
        code: string;
        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.

    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.