Skip to main content

PatchSeriesReaderSettingsRequest

Partial update to a user's content-setting overrides for one series.

Each field has three states, the usual PATCH semantics:

  • absent: leave the setting as it is
  • null: clear the override, so the setting inherits again
  • a value: override the setting with it

Clearing the last override removes the stored record entirely, which is the same end state as DELETE on the same path.

readingDirectionstring | nullnullable

Reading direction: ltr, rtl, ttb or webtoon. Null clears the override so the series metadata or library default applies again.

Typed as a string rather than as the enum because a $ref cannot also be nullable, and the null is the whole point of the field: a schema that could not express it would not describe how to stop overriding. The value is validated in the handler, as it is on the series metadata endpoints.

Example: rtl
PatchSeriesReaderSettingsRequest
{
"readingDirection": "rtl"
}