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",
"title": "SupplierSite",
"type": "object",
"properties": {
"vendorSiteId": {
"type": "integer",
"description": "Vendor site identifier"
},
"vendorSiteCode": {
"type": "string",
"description": "Vendor site code"
},
"addressLine1": {
"type": "string"
},
"addressLine2": {
"type": "string"
},
"city": {
"type": "string"
},
"state": {
"type": "string"
},
"zip": {
"type": "string"
},
"country": {
"type": "string"
},
"purchasingSiteFlag": {
"type": "string"
},
"paymentSiteFlag": {
"type": "string"
},
"orgId": {
"type": "integer"
}
}
}