SAP Ariba · Schema

SupplierReference

Reference to a supplier on the SAP Ariba Network

B2BContract ManagementProcurementSourcingSpend AnalysisSupplier ManagementSupply Chain

Properties

Name Type Description
supplierId string Supplier unique identifier (AN-ID on the Ariba Network or internal supplier number)
name string Supplier company name
erpSupplierId string Supplier number in the ERP system
View JSON Schema on GitHub

JSON Schema

sap-ariba-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 on the SAP Ariba Network",
  "required": [
    "supplierId"
  ],
  "properties": {
    "supplierId": {
      "type": "string",
      "description": "Supplier unique identifier (AN-ID on the Ariba Network or internal supplier number)",
      "examples": [
        "AN01000000001"
      ]
    },
    "name": {
      "type": "string",
      "description": "Supplier company name",
      "example": "Example Title"
    },
    "erpSupplierId": {
      "type": "string",
      "description": "Supplier number in the ERP system",
      "example": "500123"
    }
  }
}