Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions demo/APIC-711/APIC-711.raml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
#%RAML 1.0 Library

types:
StockBalance:
description: Holder stock balance information.
properties:
sourceType:
type:
enum: [site]
example: site
items:
type: StockLine[]
description: Individual inventories.
minItems: 1
xml:
wrapped: true
name: item
StockLine:
type: object
description: Stock line.
properties:
ssccNumber?:
type: string
description: Palet number
example: P19227
materialReference:
type: string
description: Product sku.
example: CL54B
variantId?:
type: string
description: Identification of product variant (or recipe)
example: R0029
batch?:
type: string
description: Batch number.
example: BA02931
quantity:
type: number
description: Product quantity to be despatched.
example: 1
3 changes: 2 additions & 1 deletion demo/apis.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@
"async-api/async-api.yaml": "ASYNC 2.0",
"exchange-experience-api/exchange-experience-api.raml": "RAML 0.8",
"multiple-servers/multiple-servers.yaml": { "type": "OAS 3.0", "mime": "application/yaml" },
"APIC-641/APIC-641.yaml": { "type": "OAS 3.0", "mime": "application/yaml" }
"APIC-641/APIC-641.yaml": { "type": "OAS 3.0", "mime": "application/yaml" },
"APIC-711/APIC-711.raml": "RAML 1.0"
}
Loading