JAL-1739 reverted BioJSON schema to use one main version for the whole schema and...
[jalview.git] / src / jalview / json / binding / biojson / v1 / SequenceGrpPojo.java
index 4bc6e3b..7c2a8fd 100644 (file)
@@ -6,10 +6,9 @@ import com.github.reinert.jjschema.Attributes;
 
 public class SequenceGrpPojo
 {
-  @Attributes(required = true, description = "Serial version identifier for the <b>seqGroup</b> object model")
-  private String svid = "1.0";
-  
-  @Attributes(required = false, description = "The Colour Scheme applied to the Sequence Group")
+  @Attributes(
+    required = false,
+    description = "The <a href=\"colour_schemes.html\">Colour Scheme</a> applied to the Sequence Group")
   private String colourScheme;
 
   @Attributes(required = true, description = "The name assigned to the seqGroup")
@@ -144,9 +143,5 @@ public class SequenceGrpPojo
     this.sequenceRefs = sequenceRefs;
   }
 
-  public String getSvid()
-  {
-    return svid;
-  }
 
 }