-
Notifications
You must be signed in to change notification settings - Fork 35
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
feat: RDF Object Mapper PoC #3447
base: develop
Are you sure you want to change the base?
Conversation
d8e46fc
to
4f782b5
Compare
Version
There are 0 BREAKING CHANGE, 1 feature, 0 fix |
public const URI = 1; | ||
public const LABEL = 2; | ||
public const COMMENT = 3; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having only LITERAL
(for copying values as-is) and RESOURCE
(for URIs pointing to other resources) may suffice.
The former values types here were matching exactly the fields used for the PoC (basically attributes currently found in core_kernel_classes_Resource
; as well as having a URI
type to hold resource URIs (for example, URIs used as primary identifiers for resources).
This may be combined with PHP 7.4+ property type hints as well to validate things like conversions to integer etc.
Associated Jira issue: ADF-1174