Variable $DiaCalendarioFindOneResultDtoConst

$DiaCalendarioFindOneResultDto: {
    properties: {
        calendario: {
            allOf: readonly [{
                $ref: "#/components/schemas/CalendarioLetivoFindOneResultDto";
            }];
            description: "Calendario.";
            nullable: true;
        };
        data: {
            description: "Data.";
            format: "date";
            nullable: false;
            type: "string";
        };
        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";
        };
        diaLetivo: {
            description: "Define que o dia é letivo.";
            nullable: false;
            type: "boolean";
        };
        feriado: {
            description: "Define que o dia é feriado.";
            nullable: false;
            type: "boolean";
        };
        id: {
            description: "ID do Registro.";
            format: "uuid";
            nullable: false;
            type: "string";
        };
    };
    required: readonly ["data", "diaLetivo", "feriado", "calendario", "id", "dateCreated", "dateUpdated", "dateDeleted"];
    type: "object";
} = ...