Apideck · Schema

LinkedPurchaseOrder

IntegrationsUnified API

Properties

Name Type Description
id string The unique identifier for the purchase order.
line_id string The unique identifier for the purchase order line.
line_number string The line number of the purchase order line.
View JSON Schema on GitHub

JSON Schema

apideck-linkedpurchaseorder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LinkedPurchaseOrder",
  "title": "LinkedPurchaseOrder",
  "type": "object",
  "x-apideck-schema-id": "LinkedPurchaseOrder",
  "x-apideck-weights": {
    "id": "medium",
    "line_id": "medium",
    "line_number": "medium"
  },
  "nullable": true,
  "properties": {
    "id": {
      "title": "Purchase Order ID",
      "description": "The unique identifier for the purchase order.",
      "type": "string",
      "example": "123456"
    },
    "line_id": {
      "type": "string",
      "title": "Purchase Order Line ID",
      "description": "The unique identifier for the purchase order line.",
      "example": "123456",
      "nullable": true
    },
    "line_number": {
      "type": "string",
      "title": "Purchase Order Line Number",
      "description": "The line number of the purchase order line.",
      "example": "1",
      "nullable": true
    }
  }
}