Oracle E-Business Suite · Schema
EnabledTransaction
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| transactionType | string | Transaction type code |
| transactionDescription | string | Transaction description |
| direction | string | Transaction direction |
| documentId | string | ASC X12 or EDIFACT document identifier |
| enabled | boolean | Whether transaction is enabled |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EnabledTransaction",
"title": "EnabledTransaction",
"type": "object",
"properties": {
"transactionType": {
"type": "string",
"description": "Transaction type code",
"example": "example_value"
},
"transactionDescription": {
"type": "string",
"description": "Transaction description",
"example": "example_value"
},
"direction": {
"type": "string",
"description": "Transaction direction",
"enum": [
"INBOUND",
"OUTBOUND"
],
"example": "INBOUND"
},
"documentId": {
"type": "string",
"description": "ASC X12 or EDIFACT document identifier",
"example": "500123"
},
"enabled": {
"type": "boolean",
"description": "Whether transaction is enabled",
"example": true
}
}
}