Variable $OfertaFormacaoInputCreateViewConst

$OfertaFormacaoInputCreateView: {
    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";
        };
    };
    required: readonly ["nome", "slug", "modalidade"];
    type: "object";
} = ...

Type declaration

  • Readonlyproperties: {
        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";
        };
    }
  • Readonlyrequired: readonly ["nome", "slug", "modalidade"]
  • Readonlytype: "object"