abstractfactory / openmetadata

associate metadata with your folders
Other
45 stars 8 forks source link

type flag of Entry #27

Closed mottosso closed 10 years ago

mottosso commented 10 years ago

Currently, type is inferred by name.

>>> Entry('name.string', parent=..)

Include optional flag, which overrides and inferred type.

>>> Entry('name', type='string', parent=...)
>>> Entry('name.text', type='string', parent=...)

Both of these are of type 'string'