Variable $OfertaFormacaoInputUpdateViewConst

$OfertaFormacaoInputUpdateView: {
    properties: {
        modalidade: {
            allOf: readonly [{
                $ref: "#/components/schemas/ModalidadeFindOneInputView";
            }];
            description: "Modalidade da oferta de formação.";
            kind: "type";
            nullable: false;
        };
        nome: {
            description: "Nome da oferta de formação.";
            minLength: 1;
            nullable: false;
            type: "string";
        };
        slug: {
            description: "Apelido da oferta de formação.";
            minLength: 1;
            nullable: false;
            type: "string";
        };
    };
    type: "object";
} = ...