Variable $IntervaloDeTempoInputDtoConst

$IntervaloDeTempoInputDto: {
    properties: {
        periodoFim: {
            description: "Horário que o intervalo de tempo termina.";
            format: "time";
            nullable: false;
            type: "string";
        };
        periodoInicio: {
            description: "Horário que o intervalo de tempo inicia.";
            format: "time";
            nullable: false;
            type: "string";
        };
    };
    required: readonly ["periodoInicio", "periodoFim"];
    type: "object";
} = ...