Open ilyash-b opened 6 years ago
NGS needs a way do define and use a schema
Use cases:
Think about the line between type system and schema: Arr[Int] is a type or already a schema? (Parametrized types are not implemented in NGS).
Arr[Int]
Look at JSON schema, RAML, Swagger, etc
Consider binary data formats (pack and unpack functionality in other languages)
pack
unpack
Related: #232
TODO: See which ideas can be borrowed from JSON Schema
NGS needs a way do define and use a schema
Use cases:
Think about the line between type system and schema:
Arr[Int]
is a type or already a schema? (Parametrized types are not implemented in NGS).Look at JSON schema, RAML, Swagger, etc
Consider binary data formats (
pack
andunpack
functionality in other languages)