We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Section 4.1.10.3 Response Information of https://docs.oasis-open-projects.org/oslc-op/core/v3.0/os/oslc-core.html includes Example 4: Resource Paging, partial response with response info resource representation. There are two problems with that example:
A correct example, in Turtle, might be:
@prefix dcterms: <http://purl.org/dc/terms/> . @prefix oslc: <http://open-services.net/ns/core#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . <http://example.com/blogs/entry/1?oslc.paging=true&pageSize=200&pageno=2> a oslc:ResponseInfo ; oslc:nextPage <http://example.com/blogs/entry/1?oslc.paging=true&pageSize=200&pageno=3> . <http://example.com/blogs/entry/1> dcterms:title "John's first blog" ; dcterms:created "2023-04-01'T'09:30:00"^^xsd:dateTime .
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Section 4.1.10.3 Response Information of https://docs.oasis-open-projects.org/oslc-op/core/v3.0/os/oslc-core.html includes Example 4: Resource Paging, partial response with response info resource representation. There are two problems with that example:
A correct example, in Turtle, might be:
The text was updated successfully, but these errors were encountered: