create( )
- Descriere: crează un model.
- schema: _Metamodel
- Inherit: _Component
runtime.require('metamodel').create();
model( name, définition ) : string
- Descriere: Înlocuiește modelul. Returnează id-ul modelului.
- schema: _Metamodel
- Inherit: _Component
const modelId = runtime.require('metamodel').model('Person', {
'name': 'string',
'firstName': 'string'
});
schema( name, definition ): string
- Descriere: Definește o schemă. Returnează id-ul schemei.
- schema: _Metamodel
- Inherit: _Component
const schemaId = runtime.require('metamodel').schema('Person', {
'name'; 'property',
'firstName': 'property'
});
type( name, definition )
- Descriere: Definește un tip. Returnează id-ul tipului.
- schema: _Metamodel
- Inherit: _Component
const typeId = runtime.require('metamodel').type('color', ['blue', 'white', 'red']);