diff --git a/specs/1.3/viz.rnc b/specs/1.3/viz.rnc
index fe9df10..fe9da08 100644
--- a/specs/1.3/viz.rnc
+++ b/specs/1.3/viz.rnc
@@ -65,15 +65,36 @@ thickness-type = [ a:defaultValue = "1.0" ]
# Node shape
node-shape-type = [ a:defaultValue = "disc" ]
- string "disc" |
- string "square" |
- string "triangle" |
- string "diamond" |
- string "image"
+ # Byte value in Gephi
+ string "disc" | # 0000 0000 0
+ string "triangle" | # 0000 0001 1
+ string "square" | # 0000 0010 2
+ string "diamond" | # 0000 0011 3
+ string "star" | # 0000 0100 4
+ string "pentagon" | # 0000 0101 5
+ string "hexagon" | # 0000 0110 6
+ string "cross" | # 0000 0111 7
+ string "custom_1" | # 1000 0000 128
+ string "custom_2" | # 1000 0001 129
+ string "custom_3" | # 1000 0010 130
+ string "custom_4" | # 1000 0011 131
+ string "custom_5" | # 1000 0100 132
+ string "custom_6" | # 1000 0101 133
+ string "custom_7" | # 1000 0110 134
+ string "custom_8" # 1000 0111 135
# Edge shape
edge-shape-type = [ a:defaultValue = "solid" ]
- string "solid" |
- string "dotted" |
- string "dashed" |
- string "double"
+ # Byte value in Gephi
+ string "solid" | # 0000 0000 0
+ string "dotted" | # 0000 0001 1
+ string "dashed" | # 0000 0010 2
+ string "double" | # 0000 0011 3
+ string "custom_1" | # 1000 0000 128
+ string "custom_2" | # 1000 0001 129
+ string "custom_3" | # 1000 0010 130
+ string "custom_4" | # 1000 0011 131
+ string "custom_5" | # 1000 0100 132
+ string "custom_6" | # 1000 0101 133
+ string "custom_7" | # 1000 0110 134
+ string "custom_8" # 1000 0111 135
diff --git a/specs/1.3/viz.rng b/specs/1.3/viz.rng
index 5da3ea4..952ca80 100644
--- a/specs/1.3/viz.rng
+++ b/specs/1.3/viz.rng
@@ -147,19 +147,68 @@
disc
- square
+
+
triangle
+
+ square
+
diamond
- image
+
+ star
+
+ pentagon
+
+ hexagon
+
+ cross
+
+ custom_1
+
+ custom_2
+
+ custom_3
+
+ custom_4
+
+ custom_5
+
+ custom_6
+
+ custom_7
+
+ custom_8
+
solid
+
+
dotted
+
dashed
+
double
+
+ custom_1
+
+ custom_2
+
+ custom_3
+
+ custom_4
+
+ custom_5
+
+ custom_6
+
+ custom_7
+
+ custom_8
+
diff --git a/specs/1.3/viz.xsd b/specs/1.3/viz.xsd
index 8a55d6f..57eff0e 100644
--- a/specs/1.3/viz.xsd
+++ b/specs/1.3/viz.xsd
@@ -63,12 +63,24 @@
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -76,6 +88,15 @@
+
+
+
+
+
+
+
+
+