Variable $CursoFindOneResultDtoConst

$CursoFindOneResultDto: {
    properties: {
        campus: {
            allOf: readonly [{
                $ref: "#/components/schemas/CampusFindOneResultDto";
            }];
            description: "Campus que o curso pertence.";
            nullable: false;
        };
        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";
        };
        imagemCapa: {
            allOf: readonly [{
                $ref: "#/components/schemas/ImagemFindOneResultDto";
            }];
            description: "Imagem de capa";
            nullable: true;
        };
        modalidade: {
            allOf: readonly [{
                $ref: "#/components/schemas/ModalidadeFindOneResultDto";
            }];
            description: "Modalidade a que o curso pertence.";
            nullable: false;
        };
        nome: {
            description: "Nome do curso.";
            nullable: false;
            type: "string";
        };
        nomeAbreviado: {
            description: "Nome abreviado do curso.";
            nullable: false;
            type: "string";
        };
    };
    required: readonly ["nome", "nomeAbreviado", "campus", "modalidade", "imagemCapa", "id", "dateCreated", "dateUpdated", "dateDeleted"];
    type: "object";
} = ...