Oracle E-Business Suite · Schema
Organization
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| organizationId | integer | Organization identifier |
| name | string | Organization name |
| businessGroupId | integer | Business group identifier |
| dateFrom | string | Organization start date |
| dateTo | string | Organization end date |
| locationId | integer | Location identifier |
| type | string | Organization type |
| internalExternalFlag | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Organization",
"type": "object",
"properties": {
"organizationId": {
"type": "integer",
"description": "Organization identifier"
},
"name": {
"type": "string",
"description": "Organization name"
},
"businessGroupId": {
"type": "integer",
"description": "Business group identifier"
},
"dateFrom": {
"type": "string",
"description": "Organization start date"
},
"dateTo": {
"type": "string",
"description": "Organization end date"
},
"locationId": {
"type": "integer",
"description": "Location identifier"
},
"type": {
"type": "string",
"description": "Organization type"
},
"internalExternalFlag": {
"type": "string"
}
}
}