@transreport/pauk-rrms-api
    Preparing search index...

    Type Alias CallsignScheduleCallsignsItem

    Generated by orval 🍺 Do not edit manually. RRMS API

    RRMS API

    The RRMS (Railway Resource Management System) API provides endpoints for managing station settings and job timings for assistance operations.

    All endpoints require staff authentication credentials.

    OpenAPI spec version: v1

    type CallsignScheduleCallsignsItem = {
        end_time: string;
        ends_next_day: boolean;
        id: string;
        name: string;
        position: number;
        start_time: string;
        user_id?: string | null;
        user_name?: string | null;
    }
    Index
    end_time: string

    Shift end in HH:MM; an earlier time is on the following calendar day

    ^\d{2}:\d{2}$

    ends_next_day: boolean

    Whether end_time falls on the calendar day after the operating date

    id: string

    Callsign ID

    name: string

    Callsign name

    position: number

    Zero-based display position

    start_time: string

    Shift start time in HH:MM format

    ^\d{2}:\d{2}$

    user_id?: string | null

    Assigned staff user ID

    user_name?: string | null

    Assigned staff user name