v0.4.0
Changelog
Version v0.4.0
- Support namespaces for identifier properties (#87)
Important change
The identifier
now will be saved as a fully qualified URL instead of the short notation to support e.g. default namespaces.
document
prefix ex <http://www.example.com/>
entity(ex:entityA)
endDocument
Before:
{
"meta:identifier": "ex:entityA"
}
Now:
At the database level, you will find a new metadata field: meta: identifier_original
which contains the original input of the document. In this example ex:entityA
.
{
"meta:identifier": "http://example.com/entityA",
"meta:identifier_original": "ex:entityA",
}