Variable $EventoFindOneResultDtoConst

$EventoFindOneResultDto: {
    properties: {
        calendario: {
            allOf: readonly [{
                $ref: "#/components/schemas/CalendarioLetivoFindOneResultDto";
            }];
            description: "Calendario.";
            nullable: true;
        };
        cor: {
            description: "Cor da Evento.";
            nullable: true;
            type: "string";
        };
        dataInicio: {
            description: "Data de início.";
            format: "date";
            nullable: false;
            type: "string";
        };
        dataTermino: {
            description: "Data de término.";
            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";
        };
        id: {
            description: "ID do Registro.";
            format: "uuid";
            nullable: false;
            type: "string";
        };
        nome: {
            description: "Nome do evento.";
            nullable: true;
            type: "string";
        };
    };
    required: readonly ["nome", "dataInicio", "dataTermino", "cor", "calendario", "id", "dateCreated", "dateUpdated", "dateDeleted"];
    type: "object";
} = ...