|
| 1 | +#%RAML 1.0 |
| 2 | +title: Stores Data Network API |
| 3 | +types: |
| 4 | + brandNameType: |
| 5 | + type: string |
| 6 | + description: brand name like BBW VSS LZA |
| 7 | + enum: [ |
| 8 | + "CORP", |
| 9 | + "BBW", |
| 10 | + "BPR", |
| 11 | + "BBC", |
| 12 | + "VSS", |
| 13 | + "VSC", |
| 14 | + "VUK", |
| 15 | + "VPR", |
| 16 | + "LZA", |
| 17 | + "LZU" |
| 18 | + ] |
| 19 | + required: true |
| 20 | + entityTypeType: |
| 21 | + type: string |
| 22 | + description: entity type |
| 23 | + enum: [ |
| 24 | + "BACKOFFICELOAD", |
| 25 | + "CMDEXECUTEENTITY", |
| 26 | + "DIMP", |
| 27 | + "Parameter", |
| 28 | + "SOF", |
| 29 | + "Sample", |
| 30 | + "TRIGGERMESSAGE", |
| 31 | + "CENTRALOFFICEDWLOAD", |
| 32 | + "DIMP", |
| 33 | + "POSLOG", |
| 34 | + "EJOURNAL" |
| 35 | + ] |
| 36 | + required: true |
| 37 | + entityNameType: |
| 38 | + type: string |
| 39 | + description: entity name |
| 40 | + enum: [ |
| 41 | + "StoreHierarchyImport", |
| 42 | + "MerchandiseHierarchyImport", |
| 43 | + "MerchandiseHierarchyItemImport", |
| 44 | + "ItemImport", |
| 45 | + "InitialItemImport", |
| 46 | + "SeedServiceItemImport", |
| 47 | + "RedLineItemImport", |
| 48 | + "PriceImport", |
| 49 | + "InitialPriceImport", |
| 50 | + "TaxImport", |
| 51 | + "EmployeeImport", |
| 52 | + "ASSOC_PUNCH_GUARD_PARAMS", |
| 53 | + "HOURS_OF_OPERATION", |
| 54 | + "RoleSecurityMatrix", |
| 55 | + "RoleSecurityMatrixInitial", |
| 56 | + "Parameter", |
| 57 | + "VPOS", |
| 58 | + "ParameterRegisters", |
| 59 | + "ParameterInitial", |
| 60 | + "VPOSParameterInitial", |
| 61 | + "ParameterInitialRegisters", |
| 62 | + "RETRY", |
| 63 | + "CMDEXECUTEENTITY", |
| 64 | + "EmployeeForm", |
| 65 | + "Interface", |
| 66 | + "TRAFFIC", |
| 67 | + "ASMA", |
| 68 | + "ASMU", |
| 69 | + "PAY", |
| 70 | + "TA", |
| 71 | + "TRUEUP", |
| 72 | + "CERTIFICATION", |
| 73 | + "CLOCKHISTORY", |
| 74 | + "CSM_SHIFT", |
| 75 | + "STOREEVENT", |
| 76 | + "FINALPAY", |
| 77 | + "POSLOG", |
| 78 | + "EJOURNAL"] |
| 79 | + required: true |
| 80 | + responseTypeType: |
| 81 | + description: response type of jms response message if needed (used for batch stuff) |
| 82 | + enum: [ |
| 83 | + "xml", |
| 84 | + "map" |
| 85 | + ] |
| 86 | + required: false |
| 87 | + batchIDType: |
| 88 | + description: batch id 1234 or some such |
| 89 | + type: string |
| 90 | + required: true |
| 91 | + batchSequenceIDType: |
| 92 | + description: sequence number or EOB for end of batch |
| 93 | + type: string |
| 94 | + pattern: (\d+|EOB) |
| 95 | + required: true |
| 96 | + processDefinitionIDType: |
| 97 | + type: integer |
| 98 | + description: process definition id for the data |
| 99 | + required: true |
| 100 | + processInstanceIDType: |
| 101 | + type: string |
| 102 | + description: unique process instance of the data |
| 103 | + required: true |
| 104 | + configTypeType: |
| 105 | + type: string |
| 106 | + description: routing config type DEFAULT |
| 107 | + configNameType: |
| 108 | + type: string |
| 109 | + description: config name to lookup the key |
| 110 | + example: STORE, BRAND, DISTRICT,REFSITE |
| 111 | + configKeyType: |
| 112 | + type: string |
| 113 | + description: config key like store # or ref site # |
| 114 | + example: 1234 (STORE), BBW (for Brand), 9971 (refsite) |
| 115 | + routeToHomeOfficeType: |
| 116 | + description: does this data need to be sent to homeoffice too (as is Central Office POS App) |
| 117 | + type: boolean |
| 118 | + required: false |
| 119 | + responseQueueType: |
| 120 | + description: response queue for jms mesage if desired for batch stuff |
| 121 | + type: string |
| 122 | + required: false |
| 123 | + messageEffectiveDateTimeType: |
| 124 | + description: message effective date at store locale Time Zones are ignored for now |
| 125 | + type: datetime-only |
| 126 | + required: false |
| 127 | + messageExpirationDateTimeType: |
| 128 | + description: message expiration date at store locale TIme zones are ignored for now |
| 129 | + type: datetime-only |
| 130 | + required: false |
| 131 | + lastSequenceType: |
| 132 | + type: boolean |
| 133 | + required: false |
| 134 | + default: false |
| 135 | + description: indicates end of batch by setting to true if feasible |
0 commit comments