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

Addresses https://github.com/opengeospatial/sensorthings/issues/89 Clarifications on HTTP PATCH #94

Open
wants to merge 1 commit into
base: 18-088
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 20 additions & 1 deletion src/18-088/10_create_update_delete.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,26 @@ Key and other non-updatable properties that are not tied to key properties of th

The service ignores the entity id in the payload when applying the update.

The entity SHALL NOT contain related entities as inline content. It MAY contain binding information for navigation properties. For single-valued navigation properties this replaces the relationship. For collection-valued navigation properties this adds to the relationship.
The entity SHALL NOT contain related entities as inline content. It MAY contain binding information for navigation properties for single-valued navigation properties in the form of
[source]
----
"[navigation property name]":
{
Comment on lines +324 to +325
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All other examples have opening brackets on the same line.

"@iot.id": [ID of entity to link to]
}
----
and for collection-value navigation properties in the form of
[source]
----
"[navigation property name]":
[
Comment on lines +332 to +333
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All other examples have opening brackets on the same line.

{
"@iot.id": [ID of entity to link to]
}
]
----

For single-valued navigation properties this replaces the relationship. For collection-valued navigation properties this adds to the relationship. Nested updates of navigation properties are not supported and SHALL result in a 400 Bad Request error.

On success, the response SHALL be a valid success response.

Expand Down