YAML

Example 1

fruitApplesizeLargecolor   RedGreen
```kroki {_type=plantuml}

@startyaml
fruit: Apple
size: Large
color: 
  - Red
  - Green
@endyaml

````

Example 2

20240515   20240601   disabled enabled ticketI1234movedtoDisabled ObjectsmovedfromCorp\Dept\Usersapprovedby   pocbrian.kingBrian.KingSam.Smith
```kroki {_type=plantuml}

@startyaml

<style>
  .red {
    FontColor white
    BackgroundColor red
  }
  .green {
    FontColor white
    BackgroundColor green
  }
</style>

#highlight "20240601"
#highlight "20240515" / "disabled" <<red>>
#highlight "20240601" / "enabled" <<green>>

20240515:
  disabled: ""

20240601:
  enabled: ""
  ticket: I1234
  movedto: Disabled Objects
  movedfrom: Corp\Dept\Users
  approvedby:
    - Brian.King
    - Sam.Smith
  poc: brian.king

@endyaml

````