# Productspecificaties

Specificaties van de te beheren producten

```plantuml
@startuml productstructuur
skinparam handwritten true
!$pathTemplates = "templates"
!$pathContent = "content"

package "Producten KIK-V Standaard" #Olive {

  package "Templates" as AS #LightGrey {
  
    rectangle "Afsprakenset" as TAS %darken("LightGrey", 25) {

    }

    rectangle "Uitwisselprofielen" as TUP %darken("LightGrey", 25) {

    }

    url of TAS is [[$pathTemplates/afsprakenset{Template Afsprakenset}]]
    url of TUP is [[$pathContent/uitwisselprofielen{Templates Uitwisselprofielen}]]
  }

  package "Content" as CNT #FloralWhite {

  }

  url of Templates is [[$pathTemplates{KIK-V Templates}]]
  url of Content is [[$pathAfsprakenset{Evaluatie Afsprakenset}]]
  "Templates" -[hidden]-> "Content"
}

@enduml
```