JAL-1739 reverted BioJSON schema to use one main version for the whole schema and...
[jalview.git] / src / jalview / json / binding / biojson / v1 / SequencePojo.java
index 17c6506..9d39d42 100644 (file)
@@ -6,10 +6,11 @@ import com.github.reinert.jjschema.Attributes;
 
 public class SequencePojo
 {
-  @Attributes(required = true, description = "Serial version identifier for the <b>seqs</b> object model")
-  private String svid = "1.0";
-
-  @Attributes(required = true,minLength=3,maxLength=1999999999, description = "Sequence residue characters. An aligned sequence may contain <br>one of the following gap characters “.”, “-” or “ ”")
+  @Attributes(
+    required = true,
+    minLength = 3,
+    maxLength = 2147483647,
+    description = "Sequence residue characters. An aligned sequence may contain <br>one of the following gap characters “.”, “-” or “ ”")
   private String seq;
 
   @Attributes(required = true, description = "Sequence name")
@@ -102,10 +103,6 @@ public class SequencePojo
     this.order = order;
   }
 
-  public String getSvid()
-  {
-    return svid;
-  }
 
   public String getType()
   {