Modify TOSA schema to force version to be written

Previously if the values were the default, they would not be written
to the file

Signed-off-by: Eric Kunze <eric.kunze@arm.com>
Change-Id: Ibdf13d3ce672d3e8f062a7853d65a966ab5b0877
diff --git a/schema/tosa.fbs b/schema/tosa.fbs
index f7224fb..449c4ea 100644
--- a/schema/tosa.fbs
+++ b/schema/tosa.fbs
@@ -267,10 +267,10 @@
 }
 
 table Version {
-  _major: int32 = 0;
-  _minor: int32 = 70;
-  _patch: int32 = 0;
-  _draft: bool = true;
+  _major: int32 = -1;
+  _minor: int32 = -1;
+  _patch: int32 = -1;
+  _draft: bool = 255;
 }
 
 table TosaTensor {
@@ -301,7 +301,7 @@
 }
 
 table TosaGraph {
-  version:Version;
+  version:Version (required);
   regions:[TosaRegion];       // regions array
 }