{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/orders-create-fulfillment-states-configuration-schema.json", "title": "CreateFulfillmentStatesConfiguration", "description": "Create fulfillment states configuration", "type": "object", "properties": { "StoreIds": { "description": "Stores id's", "type": "array", "items": { "format": "int32", "type": "integer" }, "example": [ 1 ] }, "StoreSelectorType": { "description": "Store Selector Type", "enum": [ "None", "Single", "Multiple" ], "type": "string", "example": "None" }, "States": { "description": "Settings", "type": "array", "items": { "$ref": "#/components/schemas/FulfillmentStatusConfigurationItem" }, "example": [] }, "AutomaticTransitionsEnabled": { "description": "Enable automatic transitions", "type": "boolean", "nullable": true, "example": true }, "Name": { "description": "Name", "type": "string", "example": "Example Name" } } }