Variable $IntervaloDeTempoFindOneResultDtoConst

$IntervaloDeTempoFindOneResultDto: {
    properties: {
        dateCreated: {
            description: "Data de Criação do Registro.";
            format: "date-time";
            nullable: false;
            type: "string";
        };
        dateDeleted: {
            description: "Data de Exclusão do Registro.";
            format: "date-time";
            nullable: true;
            type: "string";
        };
        dateUpdated: {
            description: "Data de Atualização do Registro.";
            format: "date-time";
            nullable: false;
            type: "string";
        };
        id: {
            description: "ID do Registro.";
            format: "uuid";
            nullable: false;
            type: "string";
        };
        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", "id", "dateCreated", "dateUpdated", "dateDeleted"];
    type: "object";
} = ...