Price Sheet Item Node

Description

A price sheet item node object which describes where on an item an image may be placed.

Properties

Property Description
bounds

Coordinates of the node bounds.

boundsName

Display friendly name of the node bounds.

boundsOverride

Coordinates to override the default node bounds.

id

The identifier for the price sheet item node.

labCatalogProductNodeId nullable

If the item for which the node is a part is lab fulfilled, the ID of the lab catalog product node which was used to create the item node

links required read-only

Each property defines a hypertext link relationship as indicated by a link object or array of link objects. The target URL of each hypertext link relationship is related to the current resource according to the defined semantics of the link relationship property name.

nodeId

The node ID used by the lab.

type

The type of object represented.

OpenAPI Schema

The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.

{
  "description": "A price sheet item node object which describes where on an item an image\nmay be placed.",
  "properties": {
    "bounds": {
      "description": "Coordinates of the node bounds.",
      "type": "string"
    },
    "boundsName": {
      "description": "Display friendly name of the node bounds.",
      "type": "string"
    },
    "boundsOverride": {
      "description": "Coordinates to override the default node bounds.",
      "type": "string"
    },
    "id": {
      "description": "The identifier for the price sheet item node.",
      "type": "integer"
    },
    "labCatalogProductNodeId": {
      "description": "If the item for which the node is a part is lab fulfilled, the ID of\nthe lab catalog product node which was used to create the item node",
      "nullable": true,
      "type": "integer"
    },
    "links": {
      "$ref": "#/components/schemas/Links"
    },
    "nodeId": {
      "description": "The node ID used by the lab.",
      "type": "integer"
    },
    "type": {
      "description": "The type of object represented.",
      "enum": [
        "price-sheet-item-node"
      ],
      "type": "string"
    }
  },
  "required": [
    "type",
    "nodeId",
    "bounds"
  ],
  "title": "Price Sheet Item Node",
  "type": "object"
}