Oracle E-Business Suite · Schema
SupplierSite
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| vendorSiteId | integer | Vendor site identifier |
| vendorSiteCode | string | Vendor site code |
| addressLine1 | string | |
| addressLine2 | string | |
| city | string | |
| state | string | |
| zip | string | |
| country | string | |
| purchasingSiteFlag | string | |
| paymentSiteFlag | string | |
| orgId | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SupplierSite",
"title": "SupplierSite",
"type": "object",
"properties": {
"vendorSiteId": {
"type": "integer",
"description": "Vendor site identifier",
"example": "500123"
},
"vendorSiteCode": {
"type": "string",
"description": "Vendor site code",
"example": "example_value"
},
"addressLine1": {
"type": "string",
"example": "example_value"
},
"addressLine2": {
"type": "string",
"example": "example_value"
},
"city": {
"type": "string",
"example": "example_value"
},
"state": {
"type": "string",
"example": "example_value"
},
"zip": {
"type": "string",
"example": "example_value"
},
"country": {
"type": "string",
"example": "example_value"
},
"purchasingSiteFlag": {
"type": "string",
"enum": [
"Y",
"N"
],
"example": "Y"
},
"paymentSiteFlag": {
"type": "string",
"enum": [
"Y",
"N"
],
"example": "Y"
},
"orgId": {
"type": "integer",
"example": "500123"
}
}
}