buda-base / owl-schema

BDRC Ontology Schema
11 stars 2 forks source link

:notBefore / :notAfter #74

Closed eroux closed 6 years ago

eroux commented 6 years ago

A few partner datasets (CBETA, 84000, etc.) have some indication of lower/upper limit dates for events (translations), while we can always indicate

  :onOrAbout "700-711"

it seems rather suboptimal, I think having

  :notBefore 700
  :notAfter 711

would be more straightforward and ease search... We would also maybe have an exact version taking an int instead of a string:

  :onExact 700

?

xristy commented 6 years ago

so you would have it that <#> :onOrAbout "7??" or <#> :onOrAbout "72?" would be replaced by

<#> :notBefore 700 ; :notAfter 799 .

and

<#> :notBefore 720 ; :notAfter 729 .

?

eroux commented 6 years ago

I think it would be nice yes

xristy commented 6 years ago

first attempt in commit 0dd115e.

eroux commented 6 years ago

thanks!