Job Definition Format (JDF) is a technical standard in the graphics industry. It defines the JDF file format (based on XML) for job tickets to be exchanged between computer systems, printing machines and other devices. Use this tag for questions related to JDF files.
Job Definition Format (JDF)
Wikipedia defines jdf
as follows:
Job Definition Format (JDF) is a technical standard being developed by the graphic arts industry to facilitate cross-vendor workflow implementations of the application domain. It is an XML format about job ticket, message description, and message interchange. JDF is managed by CIP4, the International Cooperation for the Integration of Processes in Prepress, Press and Postpress Organization.
Example
The following JDF file describes digital printing with in-line finishing.
(from CIP4 JDF Specification 1.5, Example 3-3)
<JDF xmlns="http://www.CIP4.org/JDFSchema_1_1" ID="J1" Status="Waiting"
Type="Combined" Types="DigitalPrinting Gathering Stitching" JobPartID="ID200"
Version="1.4">
<ResourceLinkPool>
<!-- digital printing input RunList -->
<RunListLink CombinedProcessIndex="0" Usage="Input" rRef="L1"/>
<!-- digital printing parameters -->
<DigitalPrintingParamsLink CombinedProcessIndex="0" Usage="Input" rRef="L2"/>
<!-- gathering parameters -->
<GatheringParamsLink CombinedProcessIndex="1" Usage="Input" rRef="L3"/>
<!-- Stitching parameters -->
<StitchingParamsLink CombinedProcessIndex="2" Usage="Input" rRef="L4"/>
<!-- input sheets -->
<MediaLink CombinedProcessIndex="0" Usage="Input" rRef="L5"/>
<!-- stitched output components -->
<ComponentLink CombinedProcessIndex="2" Usage="Output" rRef="L6"/>
</ResourceLinkPool>
<ResourcePool>
<RunList ID="L1" Class="Parameter" Status="Available"/>
<DigitalPrintingParams ID="L2" Class="Parameter" Status="Available"/>
<GatheringParams ID="L3" Class="Parameter" Status="Available"/>
<StitchingParams ID="L4" Class="Parameter" Status="Available"/>
<Media ID="L5" Class="Consumable" Status="Available"/>
<Component ID="L6" Class="Quantity" Status="Unavailable"
ComponentType="Sheet"/>
</ResourcePool>
</JDF>