Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 1.67 KB

File metadata and controls

23 lines (18 loc) · 1.67 KB

ExtendPaths

Example Usage

import { ExtendPaths } from "@apideck/unify/models/components";

let value: ExtendPaths = {
  path: "$.nested.property",
  value: {
    "TaxClassificationRef": {
      "value": "EUC-99990201-V1-00020000",
    },
  },
};

Fields

Field Type Required Description Example
path string ✔️ JSONPath string specifying where to apply the value. $.nested.property
value any ✔️ The value to set at the specified path, can be any type. {
"TaxClassificationRef": {
"value": "EUC-99990201-V1-00020000"
}
}