SAP Ariba · Schema

BuyerReference

Reference to a buyer organization

B2BContract ManagementProcurementSourcingSpend AnalysisSupplier ManagementSupply Chain

Properties

Name Type Description
buyerId string Buyer AN-ID on the SAP Ariba Network
name string Buyer organization name
erpBuyerId string Buyer identifier in the ERP system
View JSON Schema on GitHub

JSON Schema

sap-ariba-buyerreference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BuyerReference",
  "title": "BuyerReference",
  "type": "object",
  "description": "Reference to a buyer organization",
  "properties": {
    "buyerId": {
      "type": "string",
      "description": "Buyer AN-ID on the SAP Ariba Network",
      "example": "500123"
    },
    "name": {
      "type": "string",
      "description": "Buyer organization name",
      "example": "Example Title"
    },
    "erpBuyerId": {
      "type": "string",
      "description": "Buyer identifier in the ERP system",
      "example": "500123"
    }
  }
}