Path is similar to Value.Path.
(path string)
| 127 | |
| 128 | // Path is similar to Value.Path. |
| 129 | func (o *Object) Path(path string) *Value { |
| 130 | opChain := o.chain.enter("Path(%q)", path) |
| 131 | defer opChain.leave() |
| 132 | |
| 133 | return jsonPath(opChain, o.value, path) |
| 134 | } |
| 135 | |
| 136 | // Schema is similar to Value.Schema. |
| 137 | func (o *Object) Schema(schema interface{}) *Object { |