Coupa · Schema

SupplierReference

Reference to a supplier

BSMBusiness Spend ManagementCloud PlatformEnterpriseFinancial ManagementInvoicingProcurementSupply Chain

Properties

Name Type Description
id integer Coupa unique identifier for the supplier
name string Supplier name
number string Supplier number
View JSON Schema on GitHub

JSON Schema

coupa-supplierreference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SupplierReference",
  "title": "SupplierReference",
  "type": "object",
  "description": "Reference to a supplier",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Coupa unique identifier for the supplier"
    },
    "name": {
      "type": "string",
      "description": "Supplier name"
    },
    "number": {
      "type": "string",
      "description": "Supplier number"
    }
  }
}