# Temporary OpenAPI test

Test block here

## Ready an order

> Move an order from the NEW state to the READY state.

```json
{"openapi":"3.1.0","info":{"title":"TilliT Integration","version":"1"},"servers":[{"url":"https://tillit.cloud","description":"TilliT Production"},{"url":"https://tillit-stage.cloud","description":"TilliT Stage"}],"paths":{"/core/order-manager/ready":{"post":{"summary":"Ready an order","description":"Move an order from the NEW state to the READY state.","tags":["Order Lifecycle"],"requestBody":{"$ref":"#/components/requestBodies/OrderManagerLifecycle"},"responses":{"200":{"$ref":"#/components/responses/OrderManagerLifecycle"},"400":{"$ref":"#/components/responses/BadRequestResult"},"404":{"$ref":"#/components/responses/NotFoundError"},"500":{"$ref":"#/components/responses/InternalServerError"}}}}},"components":{"requestBodies":{"OrderManagerLifecycle":{"description":"The lifecycle of an order can be done on a per-order basis with an ID or use an orderNumber to change the state across all operations for that order","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/OrderManagerById"},{"$ref":"#/components/schemas/OrderManagerByOrderNumber"}]}}}}},"schemas":{"OrderManagerById":{"type":"object","properties":{"id":{"required":"true","type":"integer"}}},"OrderManagerByOrderNumber":{"type":"object","properties":{"orderNumber":{"required":"true","type":"string"},"operation":{"required":"false","type":"array","items":{"type":"string"}}}},"OrderInstance":{"type":"object","properties":{"id":{"type":"integer"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"name":{"type":"string"},"orderDate":{"type":"string"},"orderNumber":{"type":"string"},"operation":{"type":"string"},"batchNumber":{"type":"string"},"quantityTarget":{"type":"string"},"scheduledStart":{"type":"string"},"scheduledEnd":{"type":"string"},"actualStart":{"type":"string"},"actualEnd":{"type":"string"},"dueDateTime":{"type":"string"},"defaultRunRate":{"type":"number"},"notes":{"type":"string"},"status":{"type":"string","enum":["NEW","READY","CHANGEOVER","RUNNING","SUSPENDED","COMPLETED","CANCELLED"]}}},"Error":{"type":"object","properties":{"status":{"type":"integer"},"message":{"type":"string"},"reqId":{"type":"string"},"correlationId":{"type":"string"}}}},"responses":{"OrderManagerLifecycle":{"description":"Test Description here","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderInstance"}}}},"BadRequestResult":{"summary":"BadRequestResult","description":"The requested action could not be performed due an invalid request object or an impossible action within the system","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"NotFoundError":{"summary":"NotFoundError","description":"Could not find any entity matching the supplied items. Please check that you are connected to the correct environment + tenant and that you have not misspelled or left empty characters in your request.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"InternalServerError":{"summary":"InternalServerError","description":"An unexpected error occurred while trying to perform the request. If this continues then there is likely a critical failure in the system that the TilliT team needs to take action in order to resolve.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}
```

## Start an order changeover

> Move an order from the READY or SUSPENDED state to the CHANGEOVER state.

```json
{"openapi":"3.1.0","info":{"title":"TilliT Integration","version":"1"},"servers":[{"url":"https://tillit.cloud","description":"TilliT Production"},{"url":"https://tillit-stage.cloud","description":"TilliT Stage"}],"paths":{"/core/order-manager/changeover":{"post":{"summary":"Start an order changeover","description":"Move an order from the READY or SUSPENDED state to the CHANGEOVER state.","tags":["Order Lifecycle"],"requestBody":{"$ref":"#/components/requestBodies/OrderManagerLifecycle"},"responses":{"200":{"$ref":"#/components/responses/OrderManagerLifecycle"},"400":{"$ref":"#/components/responses/BadRequestResult"},"404":{"$ref":"#/components/responses/NotFoundError"},"500":{"$ref":"#/components/responses/InternalServerError"}}}}},"components":{"requestBodies":{"OrderManagerLifecycle":{"description":"The lifecycle of an order can be done on a per-order basis with an ID or use an orderNumber to change the state across all operations for that order","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/OrderManagerById"},{"$ref":"#/components/schemas/OrderManagerByOrderNumber"}]}}}}},"schemas":{"OrderManagerById":{"type":"object","properties":{"id":{"required":"true","type":"integer"}}},"OrderManagerByOrderNumber":{"type":"object","properties":{"orderNumber":{"required":"true","type":"string"},"operation":{"required":"false","type":"array","items":{"type":"string"}}}},"OrderInstance":{"type":"object","properties":{"id":{"type":"integer"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"name":{"type":"string"},"orderDate":{"type":"string"},"orderNumber":{"type":"string"},"operation":{"type":"string"},"batchNumber":{"type":"string"},"quantityTarget":{"type":"string"},"scheduledStart":{"type":"string"},"scheduledEnd":{"type":"string"},"actualStart":{"type":"string"},"actualEnd":{"type":"string"},"dueDateTime":{"type":"string"},"defaultRunRate":{"type":"number"},"notes":{"type":"string"},"status":{"type":"string","enum":["NEW","READY","CHANGEOVER","RUNNING","SUSPENDED","COMPLETED","CANCELLED"]}}},"Error":{"type":"object","properties":{"status":{"type":"integer"},"message":{"type":"string"},"reqId":{"type":"string"},"correlationId":{"type":"string"}}}},"responses":{"OrderManagerLifecycle":{"description":"Test Description here","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderInstance"}}}},"BadRequestResult":{"summary":"BadRequestResult","description":"The requested action could not be performed due an invalid request object or an impossible action within the system","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"NotFoundError":{"summary":"NotFoundError","description":"Could not find any entity matching the supplied items. Please check that you are connected to the correct environment + tenant and that you have not misspelled or left empty characters in your request.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"InternalServerError":{"summary":"InternalServerError","description":"An unexpected error occurred while trying to perform the request. If this continues then there is likely a critical failure in the system that the TilliT team needs to take action in order to resolve.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}
```

Another Test here

## Start an order

> Move an order from the READY or CHANGEOVER state to the RUNNING state.

```json
{"openapi":"3.1.0","info":{"title":"TilliT Integration","version":"1"},"servers":[{"url":"https://tillit.cloud","description":"TilliT Production"},{"url":"https://tillit-stage.cloud","description":"TilliT Stage"}],"paths":{"/core/order-manager/start":{"post":{"summary":"Start an order","description":"Move an order from the READY or CHANGEOVER state to the RUNNING state.","tags":["Order Lifecycle"],"requestBody":{"$ref":"#/components/requestBodies/OrderManagerLifecycle"},"responses":{"200":{"$ref":"#/components/responses/OrderManagerLifecycle"},"400":{"$ref":"#/components/responses/BadRequestResult"},"404":{"$ref":"#/components/responses/NotFoundError"},"500":{"$ref":"#/components/responses/InternalServerError"}}}}},"components":{"requestBodies":{"OrderManagerLifecycle":{"description":"The lifecycle of an order can be done on a per-order basis with an ID or use an orderNumber to change the state across all operations for that order","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/OrderManagerById"},{"$ref":"#/components/schemas/OrderManagerByOrderNumber"}]}}}}},"schemas":{"OrderManagerById":{"type":"object","properties":{"id":{"required":"true","type":"integer"}}},"OrderManagerByOrderNumber":{"type":"object","properties":{"orderNumber":{"required":"true","type":"string"},"operation":{"required":"false","type":"array","items":{"type":"string"}}}},"OrderInstance":{"type":"object","properties":{"id":{"type":"integer"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"name":{"type":"string"},"orderDate":{"type":"string"},"orderNumber":{"type":"string"},"operation":{"type":"string"},"batchNumber":{"type":"string"},"quantityTarget":{"type":"string"},"scheduledStart":{"type":"string"},"scheduledEnd":{"type":"string"},"actualStart":{"type":"string"},"actualEnd":{"type":"string"},"dueDateTime":{"type":"string"},"defaultRunRate":{"type":"number"},"notes":{"type":"string"},"status":{"type":"string","enum":["NEW","READY","CHANGEOVER","RUNNING","SUSPENDED","COMPLETED","CANCELLED"]}}},"Error":{"type":"object","properties":{"status":{"type":"integer"},"message":{"type":"string"},"reqId":{"type":"string"},"correlationId":{"type":"string"}}}},"responses":{"OrderManagerLifecycle":{"description":"Test Description here","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderInstance"}}}},"BadRequestResult":{"summary":"BadRequestResult","description":"The requested action could not be performed due an invalid request object or an impossible action within the system","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"NotFoundError":{"summary":"NotFoundError","description":"Could not find any entity matching the supplied items. Please check that you are connected to the correct environment + tenant and that you have not misspelled or left empty characters in your request.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"InternalServerError":{"summary":"InternalServerError","description":"An unexpected error occurred while trying to perform the request. If this continues then there is likely a critical failure in the system that the TilliT team needs to take action in order to resolve.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}
```

## Suspend an order

> Move an order from the RUNNING or CHANGEOVER state to the SUSPENDED state

```json
{"openapi":"3.1.0","info":{"title":"TilliT Integration","version":"1"},"servers":[{"url":"https://tillit.cloud","description":"TilliT Production"},{"url":"https://tillit-stage.cloud","description":"TilliT Stage"}],"paths":{"/core/order-manager/suspend":{"post":{"summary":"Suspend an order","description":"Move an order from the RUNNING or CHANGEOVER state to the SUSPENDED state","tags":["Order Lifecycle"],"requestBody":{"$ref":"#/components/requestBodies/OrderManagerLifecycle"},"responses":{"200":{"$ref":"#/components/responses/OrderManagerLifecycle"},"400":{"$ref":"#/components/responses/BadRequestResult"},"404":{"$ref":"#/components/responses/NotFoundError"},"500":{"$ref":"#/components/responses/InternalServerError"}}}}},"components":{"requestBodies":{"OrderManagerLifecycle":{"description":"The lifecycle of an order can be done on a per-order basis with an ID or use an orderNumber to change the state across all operations for that order","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/OrderManagerById"},{"$ref":"#/components/schemas/OrderManagerByOrderNumber"}]}}}}},"schemas":{"OrderManagerById":{"type":"object","properties":{"id":{"required":"true","type":"integer"}}},"OrderManagerByOrderNumber":{"type":"object","properties":{"orderNumber":{"required":"true","type":"string"},"operation":{"required":"false","type":"array","items":{"type":"string"}}}},"OrderInstance":{"type":"object","properties":{"id":{"type":"integer"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"name":{"type":"string"},"orderDate":{"type":"string"},"orderNumber":{"type":"string"},"operation":{"type":"string"},"batchNumber":{"type":"string"},"quantityTarget":{"type":"string"},"scheduledStart":{"type":"string"},"scheduledEnd":{"type":"string"},"actualStart":{"type":"string"},"actualEnd":{"type":"string"},"dueDateTime":{"type":"string"},"defaultRunRate":{"type":"number"},"notes":{"type":"string"},"status":{"type":"string","enum":["NEW","READY","CHANGEOVER","RUNNING","SUSPENDED","COMPLETED","CANCELLED"]}}},"Error":{"type":"object","properties":{"status":{"type":"integer"},"message":{"type":"string"},"reqId":{"type":"string"},"correlationId":{"type":"string"}}}},"responses":{"OrderManagerLifecycle":{"description":"Test Description here","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderInstance"}}}},"BadRequestResult":{"summary":"BadRequestResult","description":"The requested action could not be performed due an invalid request object or an impossible action within the system","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"NotFoundError":{"summary":"NotFoundError","description":"Could not find any entity matching the supplied items. Please check that you are connected to the correct environment + tenant and that you have not misspelled or left empty characters in your request.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"InternalServerError":{"summary":"InternalServerError","description":"An unexpected error occurred while trying to perform the request. If this continues then there is likely a critical failure in the system that the TilliT team needs to take action in order to resolve.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}
```

## Resume an order

> Move an order from the SUSPENDED state to the RUNNING state.

```json
{"openapi":"3.1.0","info":{"title":"TilliT Integration","version":"1"},"servers":[{"url":"https://tillit.cloud","description":"TilliT Production"},{"url":"https://tillit-stage.cloud","description":"TilliT Stage"}],"paths":{"/core/order-manager/resume":{"post":{"summary":"Resume an order","description":"Move an order from the SUSPENDED state to the RUNNING state.","tags":["Order Lifecycle"],"requestBody":{"$ref":"#/components/requestBodies/OrderManagerLifecycle"},"responses":{"200":{"$ref":"#/components/responses/OrderManagerLifecycle"},"400":{"$ref":"#/components/responses/BadRequestResult"},"404":{"$ref":"#/components/responses/NotFoundError"},"500":{"$ref":"#/components/responses/InternalServerError"}}}}},"components":{"requestBodies":{"OrderManagerLifecycle":{"description":"The lifecycle of an order can be done on a per-order basis with an ID or use an orderNumber to change the state across all operations for that order","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/OrderManagerById"},{"$ref":"#/components/schemas/OrderManagerByOrderNumber"}]}}}}},"schemas":{"OrderManagerById":{"type":"object","properties":{"id":{"required":"true","type":"integer"}}},"OrderManagerByOrderNumber":{"type":"object","properties":{"orderNumber":{"required":"true","type":"string"},"operation":{"required":"false","type":"array","items":{"type":"string"}}}},"OrderInstance":{"type":"object","properties":{"id":{"type":"integer"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"name":{"type":"string"},"orderDate":{"type":"string"},"orderNumber":{"type":"string"},"operation":{"type":"string"},"batchNumber":{"type":"string"},"quantityTarget":{"type":"string"},"scheduledStart":{"type":"string"},"scheduledEnd":{"type":"string"},"actualStart":{"type":"string"},"actualEnd":{"type":"string"},"dueDateTime":{"type":"string"},"defaultRunRate":{"type":"number"},"notes":{"type":"string"},"status":{"type":"string","enum":["NEW","READY","CHANGEOVER","RUNNING","SUSPENDED","COMPLETED","CANCELLED"]}}},"Error":{"type":"object","properties":{"status":{"type":"integer"},"message":{"type":"string"},"reqId":{"type":"string"},"correlationId":{"type":"string"}}}},"responses":{"OrderManagerLifecycle":{"description":"Test Description here","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderInstance"}}}},"BadRequestResult":{"summary":"BadRequestResult","description":"The requested action could not be performed due an invalid request object or an impossible action within the system","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"NotFoundError":{"summary":"NotFoundError","description":"Could not find any entity matching the supplied items. Please check that you are connected to the correct environment + tenant and that you have not misspelled or left empty characters in your request.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"InternalServerError":{"summary":"InternalServerError","description":"An unexpected error occurred while trying to perform the request. If this continues then there is likely a critical failure in the system that the TilliT team needs to take action in order to resolve.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}
```

## Ready an order

> Move an order from the SUSPENDED state to the CANCELLED state.

```json
{"openapi":"3.1.0","info":{"title":"TilliT Integration","version":"1"},"servers":[{"url":"https://tillit.cloud","description":"TilliT Production"},{"url":"https://tillit-stage.cloud","description":"TilliT Stage"}],"paths":{"/core/order-manager/cancel":{"post":{"summary":"Ready an order","description":"Move an order from the SUSPENDED state to the CANCELLED state.","tags":["Order Lifecycle"],"requestBody":{"$ref":"#/components/requestBodies/OrderManagerLifecycle"},"responses":{"200":{"$ref":"#/components/responses/OrderManagerLifecycle"},"400":{"$ref":"#/components/responses/BadRequestResult"},"404":{"$ref":"#/components/responses/NotFoundError"},"500":{"$ref":"#/components/responses/InternalServerError"}}}}},"components":{"requestBodies":{"OrderManagerLifecycle":{"description":"The lifecycle of an order can be done on a per-order basis with an ID or use an orderNumber to change the state across all operations for that order","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/OrderManagerById"},{"$ref":"#/components/schemas/OrderManagerByOrderNumber"}]}}}}},"schemas":{"OrderManagerById":{"type":"object","properties":{"id":{"required":"true","type":"integer"}}},"OrderManagerByOrderNumber":{"type":"object","properties":{"orderNumber":{"required":"true","type":"string"},"operation":{"required":"false","type":"array","items":{"type":"string"}}}},"OrderInstance":{"type":"object","properties":{"id":{"type":"integer"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"name":{"type":"string"},"orderDate":{"type":"string"},"orderNumber":{"type":"string"},"operation":{"type":"string"},"batchNumber":{"type":"string"},"quantityTarget":{"type":"string"},"scheduledStart":{"type":"string"},"scheduledEnd":{"type":"string"},"actualStart":{"type":"string"},"actualEnd":{"type":"string"},"dueDateTime":{"type":"string"},"defaultRunRate":{"type":"number"},"notes":{"type":"string"},"status":{"type":"string","enum":["NEW","READY","CHANGEOVER","RUNNING","SUSPENDED","COMPLETED","CANCELLED"]}}},"Error":{"type":"object","properties":{"status":{"type":"integer"},"message":{"type":"string"},"reqId":{"type":"string"},"correlationId":{"type":"string"}}}},"responses":{"OrderManagerLifecycle":{"description":"Test Description here","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderInstance"}}}},"BadRequestResult":{"summary":"BadRequestResult","description":"The requested action could not be performed due an invalid request object or an impossible action within the system","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"NotFoundError":{"summary":"NotFoundError","description":"Could not find any entity matching the supplied items. Please check that you are connected to the correct environment + tenant and that you have not misspelled or left empty characters in your request.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"InternalServerError":{"summary":"InternalServerError","description":"An unexpected error occurred while trying to perform the request. If this continues then there is likely a critical failure in the system that the TilliT team needs to take action in order to resolve.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}
```

## Ready an order

> Move an order from the RUNNING or SUSPENDED state to the COMPLETED state.

```json
{"openapi":"3.1.0","info":{"title":"TilliT Integration","version":"1"},"servers":[{"url":"https://tillit.cloud","description":"TilliT Production"},{"url":"https://tillit-stage.cloud","description":"TilliT Stage"}],"paths":{"/core/order-manager/complete":{"post":{"summary":"Ready an order","description":"Move an order from the RUNNING or SUSPENDED state to the COMPLETED state.","tags":["Order Lifecycle"],"requestBody":{"$ref":"#/components/requestBodies/OrderManagerLifecycle"},"responses":{"200":{"$ref":"#/components/responses/OrderManagerLifecycle"},"400":{"$ref":"#/components/responses/BadRequestResult"},"404":{"$ref":"#/components/responses/NotFoundError"},"500":{"$ref":"#/components/responses/InternalServerError"}}}}},"components":{"requestBodies":{"OrderManagerLifecycle":{"description":"The lifecycle of an order can be done on a per-order basis with an ID or use an orderNumber to change the state across all operations for that order","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/OrderManagerById"},{"$ref":"#/components/schemas/OrderManagerByOrderNumber"}]}}}}},"schemas":{"OrderManagerById":{"type":"object","properties":{"id":{"required":"true","type":"integer"}}},"OrderManagerByOrderNumber":{"type":"object","properties":{"orderNumber":{"required":"true","type":"string"},"operation":{"required":"false","type":"array","items":{"type":"string"}}}},"OrderInstance":{"type":"object","properties":{"id":{"type":"integer"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"name":{"type":"string"},"orderDate":{"type":"string"},"orderNumber":{"type":"string"},"operation":{"type":"string"},"batchNumber":{"type":"string"},"quantityTarget":{"type":"string"},"scheduledStart":{"type":"string"},"scheduledEnd":{"type":"string"},"actualStart":{"type":"string"},"actualEnd":{"type":"string"},"dueDateTime":{"type":"string"},"defaultRunRate":{"type":"number"},"notes":{"type":"string"},"status":{"type":"string","enum":["NEW","READY","CHANGEOVER","RUNNING","SUSPENDED","COMPLETED","CANCELLED"]}}},"Error":{"type":"object","properties":{"status":{"type":"integer"},"message":{"type":"string"},"reqId":{"type":"string"},"correlationId":{"type":"string"}}}},"responses":{"OrderManagerLifecycle":{"description":"Test Description here","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderInstance"}}}},"BadRequestResult":{"summary":"BadRequestResult","description":"The requested action could not be performed due an invalid request object or an impossible action within the system","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"NotFoundError":{"summary":"NotFoundError","description":"Could not find any entity matching the supplied items. Please check that you are connected to the correct environment + tenant and that you have not misspelled or left empty characters in your request.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"InternalServerError":{"summary":"InternalServerError","description":"An unexpected error occurred while trying to perform the request. If this continues then there is likely a critical failure in the system that the TilliT team needs to take action in order to resolve.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}
```

## The Error object

```json
{"openapi":"3.1.0","info":{"title":"TilliT Integration","version":"1"},"components":{"schemas":{"Error":{"type":"object","properties":{"status":{"type":"integer"},"message":{"type":"string"},"reqId":{"type":"string"},"correlationId":{"type":"string"}}}}}}
```

## The OrderManagerById object

```json
{"openapi":"3.1.0","info":{"title":"TilliT Integration","version":"1"},"components":{"schemas":{"OrderManagerById":{"type":"object","properties":{"id":{"required":"true","type":"integer"}}}}}}
```

## The OrderManagerByOrderNumber object

```json
{"openapi":"3.1.0","info":{"title":"TilliT Integration","version":"1"},"components":{"schemas":{"OrderManagerByOrderNumber":{"type":"object","properties":{"orderNumber":{"required":"true","type":"string"},"operation":{"required":"false","type":"array","items":{"type":"string"}}}}}}}
```

## The OrderInstance object

```json
{"openapi":"3.1.0","info":{"title":"TilliT Integration","version":"1"},"components":{"schemas":{"OrderInstance":{"type":"object","properties":{"id":{"type":"integer"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"name":{"type":"string"},"orderDate":{"type":"string"},"orderNumber":{"type":"string"},"operation":{"type":"string"},"batchNumber":{"type":"string"},"quantityTarget":{"type":"string"},"scheduledStart":{"type":"string"},"scheduledEnd":{"type":"string"},"actualStart":{"type":"string"},"actualEnd":{"type":"string"},"dueDateTime":{"type":"string"},"defaultRunRate":{"type":"number"},"notes":{"type":"string"},"status":{"type":"string","enum":["NEW","READY","CHANGEOVER","RUNNING","SUSPENDED","COMPLETED","CANCELLED"]}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.tillit.cloud/api/activity-api/temporary-openapi-test.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
