Return to List

Information

Jul 11, 2016 by Smith Kennedy
None
Internet Printing Protocol (IPP)
PWG 5100.19-2015: IPP Implementor's Guide v2.0 (IG)
Unconfirmed
Moderate
Section 5.9: Fix example of "job-constraints-supported" to properly show "1setOf" structure option
Smith Kennedy

Smith Kennedy Jul 11, 2016

The example in section 5.9 shows this:

job-constraints-supported=
{
  resolver-name=“A”
  sides=
  {
    "two-sided-long-edge"
    "two-sided-short-edge"
  }
  media-col=
  {
    media-type="transparency"
  }
}

It should instead show this for "sides" because it is supposed to be illustrating the "1setOf" optional structure.  Curly braces are for collections, not sets.

job-constraints-supported=
{
  resolver-name=“A”
  sides="two-sided-long-edge","two-sided-short-edge"
  media-col=
  {
    media-type="transparency"
  }
}