Apideck · Schema

LinkedSupplier

The supplier this entity is linked to.

IntegrationsUnified API

Properties

Name Type Description
id string The ID of the supplier this entity is linked to.
display_id string The display ID of the supplier.
display_name string The display name of the supplier.
company_name string The company name of the supplier.
address object
View JSON Schema on GitHub

JSON Schema

apideck-linkedsupplier-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LinkedSupplier",
  "title": "LinkedSupplier",
  "type": "object",
  "x-apideck-schema-id": "LinkedSupplier",
  "description": "The supplier this entity is linked to.",
  "x-apideck-weights": {
    "id": "medium",
    "display_id": "medium",
    "display_name": "high",
    "company_name": "edge-case",
    "address": "low"
  },
  "nullable": true,
  "properties": {
    "id": {
      "type": "string",
      "title": "Supplier ID",
      "description": "The ID of the supplier this entity is linked to.",
      "example": "12345"
    },
    "display_id": {
      "type": "string",
      "title": "Display ID",
      "description": "The display ID of the supplier.",
      "example": "SUPP00101",
      "nullable": true,
      "readOnly": true
    },
    "display_name": {
      "type": "string",
      "title": "Display Name",
      "description": "The display name of the supplier.",
      "example": "Windsurf Shop",
      "nullable": true
    },
    "company_name": {
      "type": "string",
      "title": "Company Name",
      "description": "The company name of the supplier.",
      "example": "The boring company",
      "nullable": true,
      "readOnly": true
    },
    "address": {
      "$ref": "#/components/schemas/Address"
    }
  }
}