<?xml version="1.0" encoding="UTF-8"?><xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="/lib/layout" elementFormDefault="qualified">
    <xsd:annotation>
<xsd:documentation>Tag library that defines the basic layouts of Jenkins pages.</xsd:documentation>
</xsd:annotation>
    <xsd:element name="isAdminOrTest">
<xsd:annotation>
<xsd:documentation>Deprecated, do not use.</xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
    <xsd:element name="stopButton">
<xsd:annotation>
<xsd:documentation>
        Creates a clickable "Stop" button.
        
        
        
    </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="href" use="required">
<xsd:annotation>
<xsd:documentation>
            Link target. Relative to the current page.
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="alt" use="required">
<xsd:annotation>
<xsd:documentation>
            Alt text for image.
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="confirm" use="optional">
<xsd:annotation>
<xsd:documentation>
            If defined, the user will be asked for confirmation first, and the value will be used as question.
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="tabBar">
<xsd:annotation>
<xsd:documentation>
    

    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="class">
<xsd:annotation>
<xsd:documentation>
      'tabBarFrame' class specification.  This will allow styling.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="showBaseline">
<xsd:annotation>
<xsd:documentation>
      Set to true to show the baseline
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="breadcrumbBar">
<xsd:annotation>
<xsd:documentation>
    Generates the bar that shows breadcrumbs, along with its associated dynamic behaviours.
    This tag is used by l:layout and not expected to be used by anyone else,
    but it's written as separate tag for better readability of code.

    To render additional breadcrumb items (for example to provide in-page navigations),
    use the &lt;l:breadcrumb&gt; tag.
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
    <xsd:element name="progressiveRendering">
<xsd:annotation>
<xsd:documentation>
        
        
        
    </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="handler" use="required">
<xsd:annotation>
<xsd:documentation>
            Instance of jenkins.util.ProgressiveRendering.
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="callback" use="required">
<xsd:annotation>
<xsd:documentation>
          JavaScript expression that evaluates to the function taking one JSON-valued parameter which renders results as they come.
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="tooltip">
<xsd:annotation>
<xsd:documentation>
            Optional tooltip for progress bar.
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="tasks">
<xsd:annotation>
<xsd:documentation/>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
    <xsd:element name="isAdmin">
<xsd:annotation>
<xsd:documentation/>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
    <xsd:element name="main-panel">
<xsd:annotation>
<xsd:documentation>
    Generates the body as the main content part of a Jenkins page.
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
    <xsd:element name="svgIcon">
<xsd:annotation>
<xsd:documentation>
        

        Opinionated helper to use icons via &lt;svg&gt; tags. Can be used by passing an href or a body:

        # &lt;l:svgIcon href="/path/to/my/sprite.svg#my-icon" /&gt;
        # &lt;l:svgIcon&gt;&lt;path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"&gt;&lt;/path&gt;&lt;/l:svgIcon&gt;

        

        

        

        

        
        
        
        
    </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="class">
<xsd:annotation>
<xsd:documentation>
            Extra CSS classes passed to the icon. Currently only the 'svg-icon' class is applied by default.
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="href">
<xsd:annotation>
<xsd:documentation>
            Href of the 'use' tag. Normally path to a sprite plus an icon id
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="viewBox">
<xsd:annotation>
<xsd:documentation>viewbox (default 0 0 24 24)</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="focusable">
<xsd:annotation>
<xsd:documentation>
            Whether the icon can receive keyboard focus. Possible values 'true' or 'false'
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="onclick">
<xsd:annotation>
<xsd:documentation>onclick handler.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="style">
<xsd:annotation>
<xsd:documentation>style</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="tooltip">
<xsd:annotation>
<xsd:documentation>tooltip</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ariaHidden">
<xsd:annotation>
<xsd:documentation>aria-hidden</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="yui">
<xsd:annotation>
<xsd:documentation>
    Load Yahoo UI module.
    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="module" use="required">
<xsd:annotation>
<xsd:documentation>
      YUI module name to load.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="pageHeader">
<xsd:annotation>
<xsd:documentation>
        Generates the page header, along with its associated dynamic behaviours.
        This tag is used by l:layout and not expected to be used by anyone else,
        but it's written as separate tag for better readability of code.

        

        

        

        

        
    </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="title">
<xsd:annotation>
<xsd:documentation>
            Page title and title attribute for the logo
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="logoAlt">
<xsd:annotation>
<xsd:documentation>
            Alt text for the logo
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="searchPlaceholder">
<xsd:annotation>
<xsd:documentation>
            Placeholder text for the search input
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="searchHelpUrl">
<xsd:annotation>
<xsd:documentation>
            Link value for the help icon on the search box
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="logout">
<xsd:annotation>
<xsd:documentation>
            Text for the logout link
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="confirmationLink">
<xsd:annotation>
<xsd:documentation>
        Produces a hyperlink which when clicked first asks for confirmation, then goes to that URL if confirmed.
        The body is displayed as the link text.
        @since 1.512
        
        
        
        
    </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="href" use="required">
<xsd:annotation>
<xsd:documentation>
            The URL to go to.
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="post">
<xsd:annotation>
<xsd:documentation>
            Use POST rather than GET (recommended).
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="message" use="required">
<xsd:annotation>
<xsd:documentation>
            A confirmation dialog message.
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="class">
<xsd:annotation>
<xsd:documentation>
            A CSS class to use to style the link.
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="header">
<xsd:annotation>
<xsd:documentation>
    Header portion of the HTML page, that gets rendered into the &lt;head&gt; tag.
    Multiple &lt;l:header&gt; elements can be specified, and can even come after
    &lt;l:main-panel&gt;.

    This tag can be placed inside &lt;l:layout&gt;.
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
    <xsd:element name="icon">
<xsd:annotation>
<xsd:documentation>
    @since 1.576
    

    

    
    
    
    

    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="class">
<xsd:annotation>
<xsd:documentation>
      The icon class specification e.g. 'icon-help icon-sm', 'icon-blue icon-md', 'icon-blue-anime icon-xlg'.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="src">
<xsd:annotation>
<xsd:documentation>
      Icon source raw URL. Only relevant if the 'class' attribute is NOT specified.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="onclick">
<xsd:annotation>
<xsd:documentation>onclick handler.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="title">
<xsd:annotation>
<xsd:documentation>title</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="style">
<xsd:annotation>
<xsd:documentation>style</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="tooltip">
<xsd:annotation>
<xsd:documentation>tooltip</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="alt">
<xsd:annotation>
<xsd:documentation>alt</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="tab">
<xsd:annotation>
<xsd:documentation>
    
    
    
    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="name" use="required">
<xsd:annotation>
<xsd:documentation>
      The name of the tab
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="href" use="required">
<xsd:annotation>
<xsd:documentation>
      The url of the tab
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="active">
<xsd:annotation>
<xsd:documentation>
      Whether the tab is active or not
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="title">
<xsd:annotation>
<xsd:documentation>
      The title of the tab
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="hasPermission">
<xsd:annotation>
<xsd:documentation>
    Renders the body only if the current user has the specified permission
    
    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="it" use="optional">
<xsd:annotation>
<xsd:documentation>
      By default it will reuse the current context.
      If the provided value does not inherit from hudson.security.AccessControlled, 
      the tag will look for the first ancestor satisfying the condition.
      The hasPermission will be performed against that value.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="permission" use="required">
<xsd:annotation>
<xsd:documentation>
      permission object to check. If this is null, the body will be also rendered.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="expandButton">
<xsd:annotation>
<xsd:documentation/>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
    <xsd:element name="renderOnDemand">
<xsd:annotation>
<xsd:documentation>
    
    
    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="tag">
<xsd:annotation>
<xsd:documentation>
      Place holder HTML tag. By default it's DIV, but depending on where this is used,
      you might need other tags (e.g., inside a table.)
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="clazz">
<xsd:annotation>
<xsd:documentation>
      Additional CSS class names, so that you can discover this tag more easily from your JavaScript.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="capture">
<xsd:annotation>
<xsd:documentation>
      ','-separated list of variables to capture and make available when later evaluating the body.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="css">
<xsd:annotation>
<xsd:documentation>
    Client-side CSS loading tag. Similar to adjunct, but driven from the client. See page-init.js.

    @since 2.0
    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="src">
<xsd:annotation>
<xsd:documentation>
      CSS source path (relative to Jenkins).
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="hasAdministerOrManage">
<xsd:annotation>
<xsd:documentation/>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
    <xsd:element name="view">
<xsd:annotation>
<xsd:documentation>
        Declares a view as dispatchable. Views that do not use this tag or another tag that invokes this are
        considered fragment views and are not dispatchable.
        
    </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="contentType">
<xsd:annotation>
<xsd:documentation>
            HTTP Content-Type header value to use for this view.
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="side-panel">
<xsd:annotation>
<xsd:documentation>
    Generates a left side content as part of a Jenkins page. Typically known as two-column or left-side +  main-content layouts
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
    <xsd:element name="js">
<xsd:annotation>
<xsd:documentation>
    Client-side JavaScript loading tag. Similar to adjunct, but driven from the client. See page-init.js.

    @since 2.0
    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="src">
<xsd:annotation>
<xsd:documentation>
      JavaScript source path (relative to Jenkins).
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="rightspace">
<xsd:annotation>
<xsd:documentation>
    Creates a space for the right-hand side of the page.
    This sticks to the right of the page even when the content overflows.
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
    <xsd:element name="task">
<xsd:annotation>
<xsd:documentation>
    This tag inside &lt;l:tasks&gt; tag renders the left navigation bar of Hudson.
    Each &lt;task&gt; tag gets an icon and link.

    
    
    
    
    
    
    
    
    
    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="href" use="required">
<xsd:annotation>
<xsd:documentation>
      Link target. Relative to the current page.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="icon" use="required">
<xsd:annotation>
<xsd:documentation>
      URL to an icon image, or the icon class specification.  If using an image URL,
      the image should be 24x24 in size and relative to the context path of Hudson.

      Common values include:

      # "icon-folder icon-md" is an example of using a class spec for a medium folder icon
      # "images/24x24/..." then points to the stock icon resources
      # "plugin/foobar/abc/def.png" that points to "src/main/webapp/abc/def.png" in your plugin resources
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="title" use="required">
<xsd:annotation>
<xsd:documentation>
      Human readable text that follows the icon.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="enabled">
<xsd:annotation>
<xsd:documentation>
      If specified, then this controls whether the task is enabled or not.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="contextMenu">
<xsd:annotation>
<xsd:documentation>
      If "false", remove this item from the context menu.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="permission">
<xsd:annotation>
<xsd:documentation>
      If specified, the link will be only displayed when the current user
      has the specified permission against the "it" object.

      This is useful for showing links to restricted pages, as showing
      them to unprivileged users don't make sense.
      
      If both permission and permissions is set, then permissions will be used
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="permissions">
<xsd:annotation>
<xsd:documentation>
      If specified, the link will be only displayed when the current user has
      one or more of the specified permissions against the "it" object.

      If both permission and permissions is set, then permissions will be used
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="post">
<xsd:annotation>
<xsd:documentation>
      If true, send a POST rather than a GET request.
      (onclick supersedes this except in the context menu.)
      (since 1.504)
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="requiresConfirmation">
<xsd:annotation>
<xsd:documentation>
      If true, require confirmation before clicking.
      Generally used with post="true".
      (onclick supersedes this except in the context menu.)
      (since 1.512)
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="confirmationMessage">
<xsd:annotation>
<xsd:documentation>
      Message to use for confirmation, if requested; defaults to title.
      (since 1.512)
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="tabNewItem">
<xsd:annotation>
<xsd:documentation>
        
        
    </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="href" use="required">
<xsd:annotation>
<xsd:documentation>
            The url of the tab
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="title">
<xsd:annotation>
<xsd:documentation>
            The title of the tab
        </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="layout">
<xsd:annotation>
<xsd:documentation>
    Outer-most tag for a normal (non-AJAX) HTML rendering.
    This is used with nested &lt;header&gt;, &lt;side-panel&gt;, and &lt;main-panel&gt;
    to form Jenkins's basic HTML layout.

    
    
    
    
    
    
    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="title" use="required">
<xsd:annotation>
<xsd:documentation>
      Title of the HTML page. Rendered into &lt;title&gt; tag.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="norefresh">
<xsd:annotation>
<xsd:documentation>
      Deprecated: Used to disable auto refresh for a page. The feature has been removed.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="css">
<xsd:annotation>
<xsd:documentation>
      specify path that starts from "/" for loading additional CSS stylesheet.
      path is interpreted as relative to the context root. e.g.,

      {noformat}&lt;l:layout css="/plugin/mysuperplugin/css/myneatstyle.css"&gt;{noformat}

      This was originally added to allow plugins to load their stylesheets, but
      *the use of the attribute is discouraged now.*
      plugins should now do so by inserting &lt;style&gt; elements and/or &lt;script&gt; elements
      in &lt;l:header/&gt; tag.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="permission">
<xsd:annotation>
<xsd:documentation>
      If given, this page is only made available to users who have the specified permission.
      (The permission will be checked against the "it" object.)
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="permissions">
<xsd:annotation>
<xsd:documentation>
      If given, this page is made available to users who have one or more of the specified permissions.
      (The permissions will be checked against the "it" object.)
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="type" use="optional">
<xsd:annotation>
<xsd:documentation>
      Available values: two-column (by default), one-column (full-width size) or full-screen (since 2.53).
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="nogrid" use="optional">
<xsd:annotation>
<xsd:documentation>
      Do not include Bootstrap 3 grid. When a plugin wants to use a more recent version of Bootstrap then
      the bundled grid will cause conflicts.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="breakable">
<xsd:annotation>
<xsd:documentation>
    Send escaped value to output decorated to be safely broken into lines when necessary
    @since 1.517
    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="value" use="required">
<xsd:annotation>
<xsd:documentation>
      Unescaped value to output
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="breadcrumb">
<xsd:annotation>
<xsd:documentation>
    Used inside &lt;l:layout&gt; to render additional breadcrumb items.

    
    
    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="href">
<xsd:annotation>
<xsd:documentation>
      URL that the breadcrumb item links to. Can be omitted.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="id">
<xsd:annotation>
<xsd:documentation>
      If specified, this ID will be assigned to the LI element.
      This is useful for programmatically adding the context menu
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="title" use="required">
<xsd:annotation>
<xsd:documentation>
      Display name of the breadcrumb.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="pane">
<xsd:annotation>
<xsd:documentation>
    Used in the &lt;l:side-panel&gt; to draw a box with a title.

    The box is drawn as a table, and the body of this tag
    is expected to draw a series of &lt;TR&gt;s to fill in the contents
    of the box.
    
    
    
    
    
    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="title" use="required">
<xsd:annotation>
<xsd:documentation>
      Title of the box. Can include HTML.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="width" use="required">
<xsd:annotation>
<xsd:documentation>
      Specify the number of columns in the table
      (so that the title can stretch to the entire table width.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="id">
<xsd:annotation>
<xsd:documentation>
      @id of the table, if specified.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="class">
<xsd:annotation>
<xsd:documentation>
      Pane table class specification.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="footer">
<xsd:annotation>
<xsd:documentation>
      Footer of the box. Can include HTML.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="ajax">
<xsd:annotation>
<xsd:documentation>
    Sets up the same 'global' variables that the l:layout tag does for content loaded by AJAX scripts.

    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="contentType">
<xsd:annotation>
<xsd:documentation>
      Content-type of the response page. This will be ignored if this tag is encountered while
      evaluating a page that has called l:layout tag.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="copyButton">
<xsd:annotation>
<xsd:documentation>
    Creates a small button that lets the user copies a text into clipboard

    
    
    
    
    
    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="tooltip">
<xsd:annotation>
<xsd:documentation>
      Tooltip of the button.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="text" use="required">
<xsd:annotation>
<xsd:documentation>
      Text to be copied into the clipboard.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="message" use="required">
<xsd:annotation>
<xsd:documentation>
      Confirmation message to be shown once the text is copied.
      This is required as in some browsers, button doesn't properly provide feedback to user actions
      due to the nature of the hack needed to make copy work.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="container">
<xsd:annotation>
<xsd:documentation>
      Specify the CSS selector (like ".foo") that points to the ancestor block element that has "positive:relative".
      According to ZeroClipboard documentation, having such container would improve the accuracy of invisible flash
      overlay.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="style">
<xsd:annotation>
<xsd:documentation>
      Additional CSS styles to apply.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="clazz">
<xsd:annotation>
<xsd:documentation>
      Additional CSS class names, so that you can discover this tag more easily from your JavaScript.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="helpIcon">
<xsd:annotation>
<xsd:documentation>
    Outputs a help icon

    The help link is rendered as an SVG with an (?) icon.
    
    @since 2.234
    
    
    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="iconSize">
<xsd:annotation>
<xsd:documentation>
      Icon size, available are: small, medium, large, xlarge
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="tooltip">
<xsd:annotation>
<xsd:documentation>
      The tooltip to display
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="class">
<xsd:annotation>
<xsd:documentation>
      Class name to apply
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
    <xsd:element name="html">
<xsd:annotation>
<xsd:documentation>

    This Jelly tag is deprecated, use  tag instead. Defined on layout.jelly.

    Outer-most tag for a normal (non-AJAX) HTML rendering.
    This is used with nested &lt;header&gt;, &lt;side-panel&gt;, and &lt;main-panel&gt;
    to form Jenkins's basic HTML layout.

    
    
    
    
  </xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="title" use="required">
<xsd:annotation>
<xsd:documentation>
      Title of the HTML page. Rendered into &lt;title&gt; tag.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="norefresh">
<xsd:annotation>
<xsd:documentation>
      Deprecated: Used to disable auto refresh for a page. The feature has been removed.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="css">
<xsd:annotation>
<xsd:documentation>
      specify path that starts from "/" for loading additional CSS stylesheet.
      path is interpreted as relative to the context root. e.g.,

      {noformat}&lt;l:layout css="/plugin/mysuperplugin/css/myneatstyle.css"&gt;{noformat}

      This was originally added to allow plugins to load their stylesheets, but
      *the use of this attribute is discouraged now.*
      plugins should now do so by inserting &lt;style&gt; elements and/or &lt;script&gt; elements
      in &lt;l:header/&gt; tag.
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="permission">
<xsd:annotation>
<xsd:documentation>
      If given, this page is only made available to users that has the specified permission.
      (The permission will be checked against the "it" object.)
    </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
  </xsd:schema>
