Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support specification of descriptors for object property collection elements #55

Open
ledsoft opened this issue Oct 17, 2019 · 0 comments
Labels

Comments

@ledsoft
Copy link
Contributor

ledsoft commented Oct 17, 2019

Currently, it is possible to specify a descriptor for an object property collection, i.e., a single descriptor is used for all elements of the collection. However, such functionality is not sufficient.

For example, consider the following class:

@OWLClass("skos:Concept")
public class Term {
    @OWLObjectProperty(iri="skos:broader")
    private Set<Term> parents;

    // ... other attributes
}

If the parent terms belong to different vocabularies, which are stored in separate contexts (RDF named graphs), it is currently not possible to reference them.

It should be possible to specify descriptors for individual elements of the collection

@ledsoft ledsoft added this to the 0.14.0 milestone Oct 17, 2019
@ledsoft ledsoft removed this from the 0.14.0 milestone Jan 29, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant