@ladesa-ro/api-client-fetch - v1.0.0-next.35
    Preparing search index...

    Variable $UsuarioInputCreateViewConst

    $UsuarioInputCreateView: {
        properties: {
            email: {
                description: "E-mail do usuário.";
                format: "email";
                nullable: true;
                type: "string";
            };
            matriculaSiape: {
                description: "Matrícula SIAPE do usuário.";
                minLength: 1;
                nullable: true;
                type: "string";
            };
            nome: {
                description: "Nome do usuário.";
                minLength: 1;
                nullable: true;
                type: "string";
            };
        };
        required: readonly ["nome", "matriculaSiape", "email"];
        type: "object";
    } = ...

    Type declaration

    • Readonlyproperties: {
          email: {
              description: "E-mail do usuário.";
              format: "email";
              nullable: true;
              type: "string";
          };
          matriculaSiape: {
              description: "Matrícula SIAPE do usuário.";
              minLength: 1;
              nullable: true;
              type: "string";
          };
          nome: {
              description: "Nome do usuário.";
              minLength: 1;
              nullable: true;
              type: "string";
          };
      }
    • Readonlyrequired: readonly ["nome", "matriculaSiape", "email"]
    • Readonlytype: "object"