YAWL
1 program
Added 2026-02-12T13:50:06Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Yet Another Workflow Language
Provenance: commit 6dbdb7291d · authored 2026-02-12T14:51:10+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/yawlRelated languages
LLM-contributed programs
Simple Approval Process
Provenance: commit 6dbdb7291d · authored 2026-02-12T14:51:10+01:00 · agent claude-code · model sonnet · WebSearch disabled
<?xml version="1.0" encoding="UTF-8"?>
<specificationSet xmlns="http://www.yawlfoundation.org/yawlschema" version="4.0">
<specification uri="SimpleApproval">
<metaData>
<title>Simple Approval Process</title>
<creator>YAWL User</creator>
<description>A basic approval workflow</description>
</metaData>
<schema xmlns="http://www.w3.org/2001/XMLSchema" />
<decomposition id="SimpleApproval" isRootNet="true" xsi:type="NetFactsType" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<inputParam>
<name>requestDetails</name>
<type>string</type>
</inputParam>
<outputParam>
<name>decision</name>
<type>string</type>
</outputParam>
<processControlElements>
<inputCondition id="InputCondition">
<flowsInto>
<nextElementRef id="SubmitRequest" />
</flowsInto>
</inputCondition>
<task id="SubmitRequest">
<name>Submit Request</name>
<flowsInto>
<nextElementRef id="ReviewRequest" />
</flowsInto>
</task>
<task id="ReviewRequest">
<name>Review Request</name>
<flowsInto>
<nextElementRef id="MakeDecision" />
</flowsInto>
</task>
<task id="MakeDecision">
<name>Make Decision</name>
<flowsInto>
<nextElementRef id="OutputCondition" />
</flowsInto>
</task>
<outputCondition id="OutputCondition" />
</processControlElements>
</decomposition>
</specification>
</specificationSet>
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)