Skip to main content

Share your solutions on the Orchestration Engine course! ✍🏼

  • November 3, 2025
  • 1 reply
  • 44 views

Nicole Wendler
Celonaut
Forum|alt.badge.img

Are you taking the new Orchestration Engine Fundamentals course? Share your thoughts and solutions to the hands-on exercises in this thread!

1 reply

Warn3ecke
Level 1
  • Level 1
  • December 30, 2025

Great course!

 

My solution via Gemini 3 for the “AI PO Confirmation Form”

 

{
  "display": "form",
  "components": [
    {
      "label": "Purchase Order Number",
      "applyMaskOn": "change",
      "tableView": true,
      "key": "purchaseOrderNumber",
      "type": "textfield",
      "input": true,
      "disabled": true
    },
    {
      "label": "Expected Delivery Date",
      "format": "yyyy-MM-dd",
      "tableView": true,
      "datePicker": {
        "disableWeekends": false,
        "disableWeekdays": false
      },
      "key": "expectedDeliveryDate",
      "type": "datetime",
      "input": true,
      "widget": {
        "type": "calendar",
        "displayInTimezone": "viewer",
        "locale": "en",
        "useLocaleSettings": false,
        "allowInput": true,
        "mode": "single",
        "enableTime": false,
        "noCalendar": false,
        "format": "yyyy-MM-dd"
      }
    },
    {
      "label": "Confirmation Status",
      "widget": "choicesjs",
      "tableView": true,
      "data": {
        "values": [
          { "label": "Confirmed", "value": "confirmed" },
          { "label": "Confirmed with Changes", "value": "confirmed_with_changes" },
          { "label": "Rejected", "value": "rejected" }
        ]
      },
      "selectThreshold": 0.3,
      "validate": {
        "required": true
      },
      "key": "confirmationStatus",
      "type": "select",
      "indexeddb": {
        "filter": {}
      },
      "input": true,
      "description": "Indicate whether the purchase order is confirmed and if the expected delivery date can be met."
    },
    {
      "label": "Comments",
      "autoExpand": false,
      "tableView": true,
      "key": "comments",
      "type": "textarea",
      "input": true,
      "description": "Please provide a reason for the updated or canceled purchase order."
    },
    {
      "type": "button",
      "label": "Submit",
      "key": "submit",
      "disableOnInvalid": true,
      "input": true,
      "tableView": false
    }
  ]
}