Sha256: 6fc2276a21e476893abe7201d9df84ecd0f125603da5ab3d58404b1b0ef24865

Contents?: true

Size: 1.04 KB

Versions: 6

Compression:

Stored size: 1.04 KB

Contents

# OryKratosClient::JsonPatch

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **from** | **String** | This field is used together with operation \"move\" and uses JSON Pointer notation.  Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5). | [optional] |
| **op** | **String** | The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\". |  |
| **path** | **String** | The path to the target path. Uses JSON pointer notation.  Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5). |  |
| **value** | **Object** | The value to be used within the operations.  Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5). | [optional] |

## Example

```ruby
require 'ory-kratos-client'

instance = OryKratosClient::JsonPatch.new(
  from: /name,
  op: replace,
  path: /name,
  value: foobar
)
```

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ory-kratos-client-1.2.1 docs/JsonPatch.md
ory-kratos-client-1.1.0 docs/JsonPatch.md
ory-kratos-client-1.0.0 docs/JsonPatch.md
ory-kratos-client-0.13.1 docs/JsonPatch.md
ory-kratos-client-0.11.1 docs/JsonPatch.md
ory-kratos-client-0.11.0 docs/JsonPatch.md