23 lines
547 B
YAML
23 lines
547 B
YAML
title: Create Stock Location Input
|
|
description: Represents the Input to create a Stock Location
|
|
type: object
|
|
required:
|
|
- name
|
|
properties:
|
|
name:
|
|
type: string
|
|
description: The stock location name
|
|
address_id:
|
|
type: string
|
|
description: The Stock location address ID
|
|
address:
|
|
description: Stock location address object
|
|
allOf:
|
|
- $ref: ./StockLocationAddressInput.yaml
|
|
- type: object
|
|
metadata:
|
|
type: object
|
|
description: An optional key-value map with additional details
|
|
example:
|
|
car: white
|