Files
medusa-store/www/apps/api-reference/specs/admin/components/schemas/AdminFulfillmentSet.yaml
github-actions[bot] d6dcda5b8f chore(docs): Updated API Reference (v2) (#8929)
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action
2024-09-02 07:45:24 +00:00

48 lines
986 B
YAML

type: object
description: The fulfillment set that the service zone belongs to.
properties:
id:
type: string
title: id
description: The parent's ID.
name:
type: string
title: name
description: The parent's name.
type:
type: string
title: type
description: The parent's type.
location:
$ref: ./AdminStockLocation.yaml
service_zones:
type: array
description: The parent's service zones.
items:
$ref: ./AdminServiceZone.yaml
created_at:
type: string
format: date-time
title: created_at
description: The parent's created at.
updated_at:
type: string
format: date-time
title: updated_at
description: The parent's updated at.
deleted_at:
type: string
format: date-time
title: deleted_at
description: The parent's deleted at.
required:
- id
- name
- type
- location
- service_zones
- created_at
- updated_at
- deleted_at
x-schemaName: AdminFulfillmentSet