uchibeke / composer-form

A modeling tool for generating a web form from a blockchain model type and validating and submitting the filled out form to a Hyperledger Blockchain
https://hyperledger.github.io/composer/
Other
6 stars 9 forks source link

Support for inherited attributes #19

Open mttrbrts opened 6 years ago

mttrbrts commented 6 years ago
concept Bar {
  o String a
}

concept Foo extends Bar {
  o String b
}

Instantiating Foo ...

{
  $class: "Foo",
  a: "A",
  b: "B"
}