Variable $TurmaInputUpdateViewConst

$TurmaInputUpdateView: {
    properties: {
        ambientePadraoAula: {
            allOf: readonly [
                { $ref: "#/components/schemas/AmbienteFindOneInputView" },
            ];
            description: "Dados de entrada para encontrar um ambiente por id.";
            kind: "type";
            nullable: true;
        };
        curso: {
            allOf: readonly [
                { $ref: "#/components/schemas/CursoFindOneInputView" },
            ];
            description: "Dados de entrada para encontrar um Curso por ID.";
            kind: "type";
            nullable: false;
        };
        periodo: {
            description: "Período da Turma.";
            minLength: 1;
            nullable: false;
            type: "string";
        };
    };
    type: "object";
} = ...

Type declaration

  • Readonlyproperties: {
        ambientePadraoAula: {
            allOf: readonly [
                { $ref: "#/components/schemas/AmbienteFindOneInputView" },
            ];
            description: "Dados de entrada para encontrar um ambiente por id.";
            kind: "type";
            nullable: true;
        };
        curso: {
            allOf: readonly [
                { $ref: "#/components/schemas/CursoFindOneInputView" },
            ];
            description: "Dados de entrada para encontrar um Curso por ID.";
            kind: "type";
            nullable: false;
        };
        periodo: {
            description: "Período da Turma.";
            minLength: 1;
            nullable: false;
            type: "string";
        };
    }
  • Readonlytype: "object"