Variable $BlocoInputCreateViewConst

$BlocoInputCreateView: {
    properties: {
        campus: {
            allOf: readonly [{
                $ref: "#/components/schemas/CampusFindOneInputView";
            }];
            description: "Dados de entrada para encontrar um campus por id.";
            kind: "type";
            nullable: false;
        };
        codigo: {
            description: "Código do Bloco.";
            minLength: 1;
            nullable: false;
            type: "string";
        };
        nome: {
            description: "Nome do Bloco.";
            minLength: 1;
            nullable: false;
            type: "string";
        };
    };
    required: readonly ["nome", "codigo", "campus"];
    type: "object";
} = ...